diff --git a/AGENTS.md b/AGENTS.md index 95cc4dd..fd933d7 100644 --- a/AGENTS.md +++ b/AGENTS.md @@ -2,9 +2,9 @@ ## Project Structure & Module Organization - Core package lives in `src/vlm/`. -- CLI entrypoint is `src/vlm/cli.py` (`vlm` console script). -- Functional modules are split by concern: scanning (`scanner.py`), parsing (`parser.py`), analysis/planning/execution (`analysis.py`, `planner.py`, `executor.py`), state/reporting/logging (`state.py`, `reports.py`, `logging_config.py`). -- Tests live in `tests/` and mirror feature areas (for example `tests/test_scanner.py`, `tests/test_cli_state.py`). +- CLI entrypoint is `src/vlm/cli.py` (`vlm` console script). Commands use `pass_context` and `CLIContext` from `context.py`; some command logic lives in `commands/` (e.g. `scan`, `analyze`, `plan`). +- Functional modules by concern: scanning (`scanner.py`), parsing (`parser.py`), enrichment (`enrichment.py`, `cache.py`, `providers/`), analysis/planning/execution (`analysis.py`, `planner.py`, `executor.py`), I/O helpers (`io.py`), utilities (`utils.py`), state/reporting/logging (`state.py`, `reports.py`, `logging_config.py`), config (`config.py`), models (`models.py`). +- Tests live in `tests/` and mirror feature areas (e.g. `tests/test_scanner.py`, `tests/test_cli_state.py`, `tests/test_enrichment.py`). - Project metadata and tool config are in `pyproject.toml`. ## Build, Test, and Development Commands diff --git a/CLAUDE.md b/CLAUDE.md index e617b45..7a5e84e 100644 --- a/CLAUDE.md +++ b/CLAUDE.md @@ -40,6 +40,7 @@ vlm config init # Common workflow vlm scan # Discover files vlm parse # Extract identities +vlm enrich # (Optional) Enrich titles/reputation via TMDB vlm analyze # Detect gaps/duplicates vlm plan # Generate execution plan vlm execute # Dry-run (default) @@ -52,15 +53,21 @@ vlm execute --confirm # Actually execute VLM follows a read-first, multi-stage pipeline: 1. **Scan** → discovers video files, extracts metadata via ffprobe (optional), saves to inventory.csv 2. **Parse** → extracts titles/years/seasons/episodes from filenames, saves to identities.json -3. **Analyze** → detects episode gaps and duplicates, saves to analysis.json -4. **Plan** → generates reviewable execution plan (plan.json) with file operations -5. **Execute** → performs file operations (dry-run by default, --confirm to execute) -6. **Rollback** → reverses executed operations (best-effort) +3. **Enrich** (optional) → adds bilingual titles and reputation (TMDB); updates identities.json in place; uses SQLite cache for incremental runs +4. **Analyze** → detects episode gaps and duplicates, saves to analysis.json +5. **Plan** → generates reviewable execution plan (plan.json) with file operations +6. **Execute** → performs file operations (dry-run by default, --confirm to execute) +7. **Rollback** → reverses executed operations (best-effort) ### Module Organization -- `cli.py` - Click-based CLI interface, command definitions, all user-facing commands +- `cli.py` - Click-based CLI interface, global options, command registration +- `context.py` - CLIContext (config, paths) and pass_context for commands +- `commands/` - Command implementations (scan, analyze, plan) - `scanner.py` - File discovery using system `find` command, metadata extraction via ffprobe - `parser.py` - Filename parsing using regex patterns (movies: title + year, series: SxxExx) +- `enrichment.py` - Enrichment pipeline; `cache.py` - SQLite cache; `providers/` - TMDB etc. +- `io.py` - Load/save identities JSON/CSV, plan/analysis input helpers +- `utils.py` - UTC time, format_size, shared helpers - `analysis.py` - Completeness checking (episode gaps) and duplicate detection - `planner.py` - Execution plan generation with conflict detection - `executor.py` - File operations (move/rename/quarantine) with rollback logging @@ -108,6 +115,7 @@ Key settings: - `quarantine_dir` - name of quarantine directory (default: `.quarantine`) - `log_level` - logging verbosity - `categories` - mapping of category names to directory name lists +- `enrichment` (or `enrich`) - TMDB/api_keys, cache_db, translation, reputation; see README for full schema ### Category Mappings diff --git a/CODE_IMPROVEMENTS.md b/CODE_IMPROVEMENTS.md new file mode 100644 index 0000000..77109d6 --- /dev/null +++ b/CODE_IMPROVEMENTS.md @@ -0,0 +1,310 @@ +# VLM 代码改进清单 + +本文档记录对 Video Library Manager (VLM) 项目的代码审查发现的问题及对应解决方案。排除 AI/OpenAPI 相关问题。 + +--- + +## 高优先级(确信度 ≥ 0.9) + +### 1. 时间戳未统一使用 UTC + +**问题描述** + +多处使用 `datetime.now()` 未指定 timezone,与项目约定「timestamps in UTC」不一致,可能导致: +- 序列化为 ISO 时缺少 `+00:00` 后缀 +- 多环境部署时依赖本地时区,行为不一致 + +**涉及文件** + +| 文件 | 行号 | +|------|------| +| `planner.py` | 51 | +| `executor.py` | 89, 119, 471 | +| `state.py` | 104, 139, 173 | +| `quarantine.py` | 61, 529 | + +**确信度**: 0.95 + +**解决方案** + +1. 在 `vlm/utils.py` 或现有模块中定义: + +```python +from datetime import datetime, timezone + +def utc_now() -> datetime: + """Return current UTC time (timezone-aware).""" + return datetime.now(timezone.utc) +``` + +2. 全局替换所有 `datetime.now()` 为 `utc_now()` 或 `datetime.now(timezone.utc)` +3. 在 `load_plan`、`load_rollback_log` 等反序列化时,对 naive datetime 做 `replace(tzinfo=timezone.utc)` 以保持向后兼容 + +--- + +### 2. 未使用的依赖 ffmpeg-python + +**问题描述** + +`pyproject.toml` 声明 `ffmpeg-python>=0.2.0`,但代码中未 import。scanner 使用 `subprocess` 直接调用 ffprobe。 + +**确信度**: 0.95 + +**解决方案** + +从 `pyproject.toml` 的 dependencies 中移除 `ffmpeg-python`。若未来改用 ffmpeg-python 库再添加。 + +--- + +### 3. Parser 中 video extensions 硬编码 + +**问题描述** + +`parser.py` 第 100、169 行使用固定扩展名列表 `['.mp4', '.mkv', ...]`,与 `config.video_extensions` 不一致。 + +- 用户在 config 中新增扩展(如 `.ts`),scan 能发现,但 parse 去扩展名时不会匹配 +- 如 `Movie (2020).ts` 可能得到错误的 title 解析 + +**确信度**: 0.9 + +**解决方案** + +1. `parse_movie` / `parse_series` 增加可选参数 `extensions: list[str]` +2. CLI parse 命令调用时传入 `config.video_extensions` +3. 默认值使用与 config 相同的列表以保持向后兼容 + +--- + +### 4. 抽出统一的 I/O 层 + +**问题描述** + +数据读取和转换分散在各 CLI 命令中,同一份 identities JSON 在 analyze、plan 等处有重复且略有不同的转换逻辑。新增字段时需多处同步,易遗漏。 + +**确信度**: 0.9 + +**解决方案** + +新增 `vlm/io.py`,集中: + +- `load_inventory_csv(path) -> list[VideoFile]` +- `save_inventory_csv(files, path, library_root)` +- `load_identities_json(path) -> dict` +- `save_identities_json(data, path)` +- `identities_to_plan_input(data) -> list[(VideoFile, Identity | None)]` +- `identities_to_analysis_input(data) -> (list[MovieIdentity], list[SeriesIdentity], list[VideoFile])` + +CLI 只调用这些函数,不再直接解析和构造 dataclass。 + +--- + +### 5. Analyze 阶段 VideoFile metadata 丢失 + +**问题描述** + +`identities.json` 不含 `size_bytes`、`resolution`、`codec` 等,CLI 构造 `VideoFile` 时用 0 或 None,导致 `compare_quality()` 无法有效比较,duplicate 报告信息不足。 + +**确信度**: 0.9 + +**解决方案** + +1. **方案 A**:analyze 命令同时接受 `--inventory`,从 inventory.csv 加载 metadata 并与 identities 按 path 合并 +2. **方案 B**:parse 输出时在 identities 中附带 size/resolution/codec(从 inventory 合并),避免 analyze 再读 inventory + +--- + +## 中优先级(确信度 0.8–0.89) + +### 6. 拆分 CLI 为 commands 子模块 + +**问题描述** + +`cli.py` 约 1700 行,混合参数定义、业务逻辑、I/O、输出展示,维护和单测困难。 + +**确信度**: 0.85 + +**解决方案** + +``` +src/vlm/ + cli.py # main、参数、ctx 传递、调用 commands + commands/ + __init__.py + scan.py # scan_cmd(ctx, ...) + parse.py # parse_cmd(ctx, ...) + enrich.py + analyze.py + plan.py + execute.py + report.py # 或按子命令拆分 + quarantine.py + state.py + config_cmd.py +``` + +每个 `*_cmd` 接收 `ctx` 和参数,CLI 只做装饰与调用。单测可直接测 `*_cmd` 函数。 + +--- + +### 7. Provider last_request_count 非正式接口 + +**问题描述** + +`enrichment.py` 使用 `getattr(provider, "last_request_count", 1)` 统计 API 调用,依赖实现细节。 + +**确信度**: 0.85 + +**解决方案** + +1. 在 `providers/base.py` 的 `EnrichmentProvider` 协议中显式声明 `last_request_count: int` 属性 +2. TMDBProvider 确保实现该属性 +3. enrichment 通过协议访问,去掉 `getattr` + +--- + +### 8. 异常捕获过宽 + +**问题描述** + +约 20+ 处 `except Exception`,容易吞掉逻辑错误,难以区分可恢复错误与编程错误。 + +**涉及**:`cli.py`、`enrichment.py`、`executor.py`、`quarantine.py` 等。 + +**确信度**: 0.8 + +**解决方案** + +- 针对预期异常(`FileNotFoundError`、`json.JSONDecodeError`、`ValueError`)分别处理 +- 保留顶层 `except Exception` 作为兜底,记录完整 traceback 后 `sys.exit(1)` +- 避免在业务逻辑深处宽泛捕获 + +--- + +### 9. Enrichment 主循环过长 + +**问题描述** + +`enrich_identities_data` 主循环约 80 行,混合迭代、缓存、API 调用、统计、payload 合并,可读性和可测性差。 + +**确信度**: 0.8 + +**解决方案** + +拆分为: + +- `_process_single_record(record, media_type, ...) -> None` +- `_fetch_from_providers(record, media_type, providers, ...) -> tuple[dict, int, list, str]` +- `_update_stats(stats, ...) -> None` +- 主循环只负责迭代与调用上述函数 + +--- + +## 较低优先级(确信度 0.7–0.79) + +### 10. Duplicate 检测 file_map 使用 filename 作为 key + +**问题描述** + +`analysis.py` 第 87 行: + +```python +file_map = {file.filename: file for file in files} +``` + +同 filename 不同路径会互相覆盖(如 `/a/Movie.mkv` 与 `/b/Movie.mkv`),导致 identity 映射到错误 VideoFile。 + +**确信度**: 0.75 + +**解决方案** + +- 使用 `str(file.path)` 作为 key +- 确保 identity 与 VideoFile 的关联方式一致(如通过 path 或 (path, filename) 建立映射) + +--- + +### 11. MovieIdentity / SeriesIdentity 字段重复 + +**问题描述** + +两个 dataclass 有约 10 个共同 enrichment 字段,新增时需改两处,合并逻辑需分支处理。 + +**确信度**: 0.7 + +**解决方案** + +- **方案 A**:抽取 `EnrichmentMixin` 基类,`MovieIdentity` / `SeriesIdentity` 继承 +- **方案 B(推荐)**:引入 `EnrichmentPayload` dataclass,两个 Identity 通过 `enrichment: EnrichmentPayload` 组合,侵入较小 + +--- + +### 12. Config 体积膨胀 + +**问题描述** + +`Config` 约 50 个字段,enrichment/TMDB 相关占多数,职责混杂。 + +**确信度**: 0.7 + +**解决方案** + +拆分 `EnrichmentConfig`、`TMDBConfig` 等子配置,通过嵌套或组合放入主 Config。 + +--- + +### 13. review_status 与 needs_review 语义重叠 + +**问题描述** + +`review_status`(pending/approved/rejected)与 `needs_review`(bool)含义重叠,易混淆。 + +**确信度**: 0.75 + +**解决方案** + +- 在 docstring 或文档中明确定义:`needs_review = (review_status == 'pending') and ...` +- 或在模型中合并为单一状态枚举,避免两个字段语义交叉 + +--- + +## 低优先级(确信度 < 0.7) + +### 14. config_init 与 ctx 一致性 + +**问题描述** + +`config init` 未使用 `@pass_context`,与同组其他命令风格不一致,但当前不依赖 ctx,非功能性 bug。 + +**确信度**: 0.5 + +**解决方案** + +若其他 config 子命令均用 `@pass_context`,可统一为 `config_init` 也接收 ctx 以保持风格一致;否则可保持现状。 + +--- + +### 15. CLI 延迟 import + +**问题描述** + +各命令在函数体内才 `import`,错误在首次执行该命令时才暴露,依赖关系不直观。 + +**确信度**: 0.6 + +**解决方案** + +可接受;若希望启动时即发现依赖问题,可改为模块级 import,但会增加启动开销。 + +--- + +## 执行建议 + +| 阶段 | 项目 | 说明 | +|------|------|------| +| 第一批 | 1, 2, 3 | 改动小、风险低、收益明确 | +| 第二批 | 4, 5 | 需要一定重构,与 I/O 设计相关 | +| 第三批 | 6, 7, 8, 9 | 结构性改进,建议分步完成 | +| 第四批 | 10–15 | 按需和档期安排 | + +--- + +*文档生成日期:2025-02-10* diff --git a/README.md b/README.md index ac5f7e6..8c9187e 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ A Python-based CLI tool for managing personal video collections with a safety-fi - **Comprehensive Analysis**: Detect episode gaps and duplicate files - **Rich Metadata**: Extract video resolution, codec, duration, and bitrate - **Flexible Organization**: Customizable directory structure and naming templates -- **Metadata Enrichment**: Add bilingual titles and reputation signals (TMDB + optional Douban + optional AI fallback) +- **Metadata Enrichment**: Add bilingual titles and reputation signals (TMDB + optional AI fallback) - **Incremental Performance**: SQLite-backed cache avoids repeated metadata lookups - **State Tracking**: Track file status throughout the workflow - **Detailed Reporting**: Generate inventory, completeness, and duplicate reports @@ -86,6 +86,7 @@ This updates `identities.json` in place and adds fields like: - `title_zh`, `title_en`, `display_title` - `reputation_score`, `reputation_votes`, `reputation_source` - `review_status`, `enrichment_confidence` +- summary metrics including `api_calls`, `cache_hits`, and `skip_reasons` To refresh all records instead of using incremental cache: @@ -93,6 +94,12 @@ To refresh all records instead of using incremental cache: vlm enrich --refresh-all ``` +If enrichment cannot run for some records, CLI shows grouped reasons, for example: + +```text +Skip reasons: no_key=4632 +``` + ### 5. Analyze Your Library Detect episode gaps and duplicates: @@ -382,7 +389,7 @@ categories: series: [series, tv, shows] anime: [anime] -# Enrichment settings +# Enrichment settings (`enrich` alias is also supported) enrichment: enabled: true incremental: true @@ -395,8 +402,15 @@ enrichment: mode: "bidirectional" fallback_machine: true api_keys: + # Preferred: TMDB v4 Bearer token + tmdb_bearer: null + # Backward-compatible fallback (legacy query api_key) tmdb: null openai: null + tmdb: + language: "zh-CN" + region: null + include_adult: false reputation: min_votes: 50 low_score_threshold: 6.0 @@ -405,6 +419,39 @@ enrichment: title_format: "{title_zh} {title_en}" ``` +### TMDB Enrichment Setup + +`vlm enrich` works best with TMDB Bearer auth (recommended by TMDB). Legacy `tmdb` api key is still supported for compatibility. + +Minimal config: + +```yaml +enrichment: + providers: [tmdb] + api_keys: + tmdb_bearer: "YOUR_TMDB_BEARER_TOKEN" +``` + +Optional TMDB query tuning: + +```yaml +enrichment: + tmdb: + language: "zh-CN" # localized title language + region: "US" # affects regional release/search behavior + include_adult: false +``` + +Validation flow: + +```bash +# 1) run small incremental pass +vlm enrich --input identities.json --refresh-changed-only + +# 2) then full refresh if output looks correct +vlm enrich --input identities.json --refresh-all +``` + ### Template Variables **Movies:** @@ -576,6 +623,26 @@ vlm config init vlm config validate ``` +### TMDB Auth / Rate Limit / Zero Enriched + +Common enrichment outcomes: + +- `Error during enrichment: TMDB authentication failed (401/403)` + Cause: invalid/missing `tmdb_bearer` (or `tmdb`) key. + Action: update `~/.vlm/config.yaml` and rerun. + +- `Skip reasons: no_key=...` + Cause: no TMDB credentials configured for provider. + Action: set `enrichment.api_keys.tmdb_bearer` (recommended) or `tmdb`. + +- `Skip reasons: rate_limited=...` + Cause: TMDB rate limit hit (`429`). + Action: retry later; VLM already applies bounded retry/backoff. + +- `Enriched now: 0` with non-zero records + Cause: often `no_key`, `no_match`, or provider errors. + Action: check `Skip reasons` and `Failure sample` in CLI output. + ### Permission Errors If you can't access certain files: @@ -646,12 +713,21 @@ pytest --cov=vlm tests/ ``` src/vlm/ -├── cli.py # Click-based CLI interface +├── cli.py # Click-based CLI interface, global options +├── context.py # CLIContext and pass_context for commands +├── commands/ # Command implementations +│ ├── scan.py # Scan command +│ ├── analyze.py # Analyze command +│ └── plan.py # Plan command ├── scanner.py # File discovery and metadata extraction ├── parser.py # Filename parsing (titles, years, episodes) ├── enrichment.py # Title/reputation enrichment pipeline ├── cache.py # SQLite cache for incremental enrichment -├── providers/ # External metadata providers (TMDB/Douban) +├── providers/ # External metadata providers (TMDB, etc.) +│ ├── base.py # Provider interface +│ └── tmdb.py # TMDB API client +├── io.py # JSON/CSV load/save and plan/analysis input helpers +├── utils.py # UTC time, format_size, etc. ├── analysis.py # Completeness and duplicate detection ├── planner.py # Execution plan generation ├── executor.py # File operations and rollback diff --git a/TMDB_REFACTOR_PLAN.md b/TMDB_REFACTOR_PLAN.md new file mode 100644 index 0000000..dc8113c --- /dev/null +++ b/TMDB_REFACTOR_PLAN.md @@ -0,0 +1,95 @@ +# TMDB Enrichment 重构执行计划 + +## 1. 目标与范围 +- 目标:提升 `vlm enrich` 在 TMDB 场景下的正确性、稳定性、可观测性。 +- 范围:`src/vlm/providers/tmdb.py`、`src/vlm/enrichment.py`、`src/vlm/cli.py`、配置与测试。 +- 非目标:不改动 CLI 命令名和现有核心参数,不引入复杂依赖。 + +## 2. 设计原则 +- 简洁优先:保留现有调用链,避免过度抽象。 +- 统计真实:`api_calls` 仅统计真实外部请求。 +- 错误可解释:区分鉴权、限流、无匹配、服务异常。 +- 向后兼容:默认配置缺省时仍可运行,行为可预测。 + +## 3. 分阶段计划 + +### 阶段 0:基线确认 +- 记录当前测试基线: + - `uv run pytest tests/test_enrichment.py tests/test_cli_enrich.py` +- 记录当前运行基线: + - `uv run vlm enrich --input identities.json --refresh-all` +- 输出基线报告(用于对比重构前后变化)。 + +### 阶段 1:TMDB Provider 重构 +- 新增 TMDB HTTP 访问层(可内聚在 provider 文件内): + - 统一请求构建(query/header/timeout)。 + - 统一响应解析与错误分类。 +- 错误分类与策略: + - `401/403`:鉴权失败,停止该条 provider 请求并记录原因。 + - `404`:资源缺失,返回无匹配。 + - `429`:指数退避重试(含上限)。 + - `5xx`:有限重试,最终记录失败。 +- 保留最小调用路径:`search -> details`。 + +### 阶段 2:Enrichment 统计与语义修复 +- 统一并明确统计口径: + - `api_calls`:真实发起的远程请求次数。 + - `enriched`:获得有效 provider 或翻译结果的记录数。 + - `skipped`:未产生 enrich 结果的记录数。 +- 增加 skip/reason 聚合(建议键): + - `no_key`、`no_match`、`rate_limited`、`provider_error`、`invalid_input`。 +- 保持 `needs_review` 判定逻辑稳定且可解释。 + +### 阶段 3:CLI 进度与结果展示 +- TTY:保留 `click.progressbar`。 +- 非 TTY:保留分段文本进度(每 5% 或固定步进)。 +- 结束摘要补充原因分布: + - 示例:`Skip reasons: no_key=4632 no_match=0 provider_error=0` + +### 阶段 4:配置与文档 +- 配置补全(默认模板): + - `enrichment.api_keys.tmdb` + - `enrichment.tmdb.language`(默认 `zh-CN`) + - `enrichment.tmdb.region`(可选) + - `enrichment.tmdb.include_adult`(默认 `false`) +- README 增加: + - key 配置示例。 + - 常见错误排查(401/429/0 enriched)。 + - 小样本验证流程。 + +### 阶段 5:测试与回归 +- Provider 测试: + - 鉴权失败、限流重试、5xx 重试、无匹配。 +- Enrichment 测试: + - 统计口径、skip reason 聚合、无 key 场景。 +- CLI 测试: + - 非 TTY 进度输出、摘要 reason 输出。 +- 回归测试: + - `uv run pytest` 全量通过。 + +## 4. 任务拆解(执行顺序) +1. Task A:实现 TMDB 请求层与错误分类。`[已完成]` +2. Task B:重构 `TMDBProvider.enrich()` 以接入请求层。`[已完成]` +3. Task C:重构 enrichment 统计与 reason 聚合。`[已完成]` +4. Task D:更新 CLI 输出(进度与摘要)。`[已完成]` +5. Task E:补全配置模型与默认配置导出。`[已完成]` +6. Task F:补充/修复测试并回归。`[已完成]` +7. Task G:更新 README 与变更说明。`[待执行]` + +## 5. 验收标准 +- 功能: + - 有 key 时可正常 enrich,统计准确。 + - 无 key 时不误报 `api_calls`,输出原因可解释。 +- 质量: + - 新增测试覆盖关键分支,相关测试通过。 + - 无破坏性 CLI 变更,现有命令仍可用。 +- 体验: + - 非 TTY 场景有清晰进度和失败原因摘要。 + +## 6. 执行记录模板 +每个 Task 完成后记录以下内容: +- 变更文件: +- 关键改动: +- 测试命令: +- 测试结果: +- 风险与后续: diff --git a/analysis.json b/analysis.json new file mode 100644 index 0000000..fdbbee2 --- /dev/null +++ b/analysis.json @@ -0,0 +1,4356 @@ +{ + "metadata": { + "generated": "2026-02-10T08:49:31", + "source_identities": "identities.json", + "total_movies": 637, + "total_series": 1492 + }, + "completeness": [ + { + "series_title": "Westworld", + "season": 4, + "episodes_found": [ + 2, + 4, + 6, + 7 + ], + "episodes_missing": [ + 3, + 5 + ] + }, + { + "series_title": "Silo", + "season": 1, + "episodes_found": [ + 1, + 2, + 4 + ], + "episodes_missing": [ + 3 + ] + } + ], + "duplicates": [ + { + "identity": { + "type": "movie", + "title": "Your Eyes Tell", + "year": 2020 + }, + "files": [ + "/mnt/Downloads/movies/Your.Eyes.Tell.2020.720p.BluRay.x264-WiKi/Sample/Your.Eyes.Tell.2020.720p.BluRay.x264-WiKi.sample.mkv", + "/mnt/Downloads/movies/Your.Eyes.Tell.2020.720p.BluRay.x264-WiKi/Your.Eyes.Tell.2020.720p.BluRay.x264-WiKi.mkv" + ], + "quality_comparison": [ + { + "filename": "Your.Eyes.Tell.2020.720p.BluRay.x264-WiKi.sample.mkv", + "path": "/mnt/Downloads/movies/Your.Eyes.Tell.2020.720p.BluRay.x264-WiKi/Sample/Your.Eyes.Tell.2020.720p.BluRay.x264-WiKi.sample.mkv", + "size_bytes": 0 + }, + { + "filename": "Your.Eyes.Tell.2020.720p.BluRay.x264-WiKi.mkv", + "path": "/mnt/Downloads/movies/Your.Eyes.Tell.2020.720p.BluRay.x264-WiKi/Your.Eyes.Tell.2020.720p.BluRay.x264-WiKi.mkv", + "size_bytes": 0 + } + ] + }, + { + "identity": { + "type": "movie", + "title": "Wish", + "year": 2020 + }, + "files": [ + "/mnt/Downloads/movies/Wish.2020.1080p.BluRay.x264.DTS-WiKi/Sample/Wish.2020.1080p.BluRay.x264.DTS-WiKi.sample.mkv", + "/mnt/Downloads/movies/Wish.2020.1080p.BluRay.x264.DTS-WiKi/Wish.2020.1080p.BluRay.x264.DTS-WiKi.mkv" + ], + "quality_comparison": [ + { + "filename": "Wish.2020.1080p.BluRay.x264.DTS-WiKi.sample.mkv", + "path": "/mnt/Downloads/movies/Wish.2020.1080p.BluRay.x264.DTS-WiKi/Sample/Wish.2020.1080p.BluRay.x264.DTS-WiKi.sample.mkv", + "size_bytes": 0 + }, + { + "filename": "Wish.2020.1080p.BluRay.x264.DTS-WiKi.mkv", + "path": "/mnt/Downloads/movies/Wish.2020.1080p.BluRay.x264.DTS-WiKi/Wish.2020.1080p.BluRay.x264.DTS-WiKi.mkv", + "size_bytes": 0 + } + ] + }, + { + "identity": { + "type": "movie", + "title": "Amsterdam", + "year": 2022 + }, + "files": [ + "/mnt/Downloads/movies/Amsterdam.2022.1080p.BluRay.x265.10bit.DTS-WiKi/Sample/Amsterdam.2022.1080p.BluRay.x265.10bit.DTS-WiKi.Sample.mkv", + "/mnt/Downloads/movies/Amsterdam.2022.1080p.BluRay.x265.10bit.DTS-WiKi/Amsterdam.2022.1080p.BluRay.x265.10bit.DTS-WiKi.mkv" + ], + "quality_comparison": [ + { + "filename": "Amsterdam.2022.1080p.BluRay.x265.10bit.DTS-WiKi.Sample.mkv", + "path": "/mnt/Downloads/movies/Amsterdam.2022.1080p.BluRay.x265.10bit.DTS-WiKi/Sample/Amsterdam.2022.1080p.BluRay.x265.10bit.DTS-WiKi.Sample.mkv", + "size_bytes": 0 + }, + { + "filename": "Amsterdam.2022.1080p.BluRay.x265.10bit.DTS-WiKi.mkv", + "path": "/mnt/Downloads/movies/Amsterdam.2022.1080p.BluRay.x265.10bit.DTS-WiKi/Amsterdam.2022.1080p.BluRay.x265.10bit.DTS-WiKi.mkv", + "size_bytes": 0 + } + ] + }, + { + "identity": { + "type": "movie", + "title": "Food Luck", + "year": 2020 + }, + "files": [ + "/mnt/Downloads/movies/Food.Luck.2020.720p.BluRay.x264-WiKi/Sample/Food.Luck.2020.720p.BluRay.x264-WiKi.sample.mkv", + "/mnt/Downloads/movies/Food.Luck.2020.720p.BluRay.x264-WiKi/Food.Luck.2020.720p.BluRay.x264-WiKi.mkv" + ], + "quality_comparison": [ + { + "filename": "Food.Luck.2020.720p.BluRay.x264-WiKi.sample.mkv", + "path": "/mnt/Downloads/movies/Food.Luck.2020.720p.BluRay.x264-WiKi/Sample/Food.Luck.2020.720p.BluRay.x264-WiKi.sample.mkv", + "size_bytes": 0 + }, + { + "filename": "Food.Luck.2020.720p.BluRay.x264-WiKi.mkv", + "path": "/mnt/Downloads/movies/Food.Luck.2020.720p.BluRay.x264-WiKi/Food.Luck.2020.720p.BluRay.x264-WiKi.mkv", + "size_bytes": 0 + } + ] + }, + { + "identity": { + "type": "movie", + "title": "Next Door Neighbor", + "year": 2020 + }, + "files": [ + "/mnt/Downloads/movies/Next.Door.Neighbor.2020.720p.BluRay.x264-WiKi/Sample/Next.Door.Neighbor.2020.720p.BluRay.x264-WiKi.Sample.mkv", + "/mnt/Downloads/movies/Next.Door.Neighbor.2020.720p.BluRay.x264-WiKi/Next.Door.Neighbor.2020.720p.BluRay.x264-WiKi.mkv" + ], + "quality_comparison": [ + { + "filename": "Next.Door.Neighbor.2020.720p.BluRay.x264-WiKi.Sample.mkv", + "path": "/mnt/Downloads/movies/Next.Door.Neighbor.2020.720p.BluRay.x264-WiKi/Sample/Next.Door.Neighbor.2020.720p.BluRay.x264-WiKi.Sample.mkv", + "size_bytes": 0 + }, + { + "filename": "Next.Door.Neighbor.2020.720p.BluRay.x264-WiKi.mkv", + "path": "/mnt/Downloads/movies/Next.Door.Neighbor.2020.720p.BluRay.x264-WiKi/Next.Door.Neighbor.2020.720p.BluRay.x264-WiKi.mkv", + "size_bytes": 0 + } + ] + }, + { + "identity": { + "type": "movie", + "title": "Bullet Train", + "year": 2022 + }, + "files": [ + "/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", + "/mnt/Downloads/movies/Bullet.Train.2022.1080p.BluRay.x264.DTS-WiKi/Sample/Bullet.Train.2022.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", + "/mnt/Downloads/movies/Bullet.Train.2022.1080p.BluRay.x264.DTS-WiKi/Bullet.Train.2022.1080p.BluRay.x264.DTS-WiKi.mkv" + ], + "quality_comparison": [ + { + "filename": "Bullet.Train.2022.2160p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi.mkv", + "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", + "size_bytes": 0 + }, + { + "filename": "Bullet.Train.2022.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", + "path": "/mnt/Downloads/movies/Bullet.Train.2022.1080p.BluRay.x264.DTS-WiKi/Sample/Bullet.Train.2022.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", + "size_bytes": 0 + }, + { + "filename": "Bullet.Train.2022.1080p.BluRay.x264.DTS-WiKi.mkv", + "path": "/mnt/Downloads/movies/Bullet.Train.2022.1080p.BluRay.x264.DTS-WiKi/Bullet.Train.2022.1080p.BluRay.x264.DTS-WiKi.mkv", + "size_bytes": 0 + } + ] + }, + { + "identity": { + "type": "movie", + "title": "R I P D", + "year": 2013 + }, + "files": [ + "/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", + "/mnt/Downloads/movies/R.I.P.D.2013.1080p.BluRay.x264.DTS-WiKi/R.I.P.D.2013.1080p.BluRay.x264.DTS-WiKi.mkv" + ], + "quality_comparison": [ + { + "filename": "R.I.P.D.2013.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", + "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", + "size_bytes": 0 + }, + { + "filename": "R.I.P.D.2013.1080p.BluRay.x264.DTS-WiKi.mkv", + "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", + "size_bytes": 0 + } + ] + }, + { + "identity": { + "type": "movie", + "title": "Kingdom 2 Far And Away", + "year": 2022 + }, + "files": [ + "/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", + "/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" + ], + "quality_comparison": [ + { + "filename": "Kingdom.2.Far.and.Away.2022.1080p.BluRay.x265.10bit-WiKi.mkv", + "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", + "size_bytes": 0 + }, + { + "filename": "Kingdom.2.Far.and.Away.2022.1080p.BluRay.x265.10bit-WiKi.sample.mkv", + "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", + "size_bytes": 0 + } + ] + }, + { + "identity": { + "type": "movie", + "title": "Exit", + "year": 2019 + }, + "files": [ + "/mnt/Downloads/movies/Exit.2019.720p.BluRay.x264-WiKi/Sample/Exit.2019.720p.BluRay.x264-WiKi.Sample.mkv", + "/mnt/Downloads/movies/Exit.2019.720p.BluRay.x264-WiKi/Exit.2019.720p.BluRay.x264-WiKi.mkv" + ], + "quality_comparison": [ + { + "filename": "Exit.2019.720p.BluRay.x264-WiKi.Sample.mkv", + "path": "/mnt/Downloads/movies/Exit.2019.720p.BluRay.x264-WiKi/Sample/Exit.2019.720p.BluRay.x264-WiKi.Sample.mkv", + "size_bytes": 0 + }, + { + "filename": "Exit.2019.720p.BluRay.x264-WiKi.mkv", + "path": "/mnt/Downloads/movies/Exit.2019.720p.BluRay.x264-WiKi/Exit.2019.720p.BluRay.x264-WiKi.mkv", + "size_bytes": 0 + } + ] + }, + { + "identity": { + "type": "movie", + "title": "Fallen", + "year": 1998 + }, + "files": [ + "/mnt/Downloads/movies/Fallen.1998.1080p.BluRay.x264.DTS-WiKi/Fallen.1998.1080p.BluRay.x264.DTS-WiKi.mkv", + "/mnt/Downloads/movies/Fallen.1998.1080p.BluRay.x264.DTS-WiKi/Sample/Fallen.1998.1080p.BluRay.x264.DTS-WiKi.Sample.mkv" + ], + "quality_comparison": [ + { + "filename": "Fallen.1998.1080p.BluRay.x264.DTS-WiKi.mkv", + "path": "/mnt/Downloads/movies/Fallen.1998.1080p.BluRay.x264.DTS-WiKi/Fallen.1998.1080p.BluRay.x264.DTS-WiKi.mkv", + "size_bytes": 0 + }, + { + "filename": "Fallen.1998.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", + "path": "/mnt/Downloads/movies/Fallen.1998.1080p.BluRay.x264.DTS-WiKi/Sample/Fallen.1998.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", + "size_bytes": 0 + } + ] + }, + { + "identity": { + "type": "movie", + "title": "Knives Out", + "year": 2019 + }, + "files": [ + "/mnt/Downloads/movies/Knives.Out.2019.1080p.BluRay.x264-WiKi/Knives.Out.2019.1080p.BluRay.x264-WiKi.mkv", + "/mnt/Downloads/movies/Knives.Out.2019.1080p.BluRay.x264-WiKi/Sample/Knives.Out.2019.1080p.BluRay.x264-WiKi.Sample.mkv" + ], + "quality_comparison": [ + { + "filename": "Knives.Out.2019.1080p.BluRay.x264-WiKi.mkv", + "path": "/mnt/Downloads/movies/Knives.Out.2019.1080p.BluRay.x264-WiKi/Knives.Out.2019.1080p.BluRay.x264-WiKi.mkv", + "size_bytes": 0 + }, + { + "filename": "Knives.Out.2019.1080p.BluRay.x264-WiKi.Sample.mkv", + "path": "/mnt/Downloads/movies/Knives.Out.2019.1080p.BluRay.x264-WiKi/Sample/Knives.Out.2019.1080p.BluRay.x264-WiKi.Sample.mkv", + "size_bytes": 0 + } + ] + }, + { + "identity": { + "type": "movie", + "title": "Kaguya-Sama Love Is War", + "year": 2019 + }, + "files": [ + "/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", + "/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" + ], + "quality_comparison": [ + { + "filename": "Kaguya-sama.Love.Is.War.2019.1080p.BluRay.x264.DTS-WiKi.mkv", + "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", + "size_bytes": 0 + }, + { + "filename": "Kaguya-sama.Love.Is.War.2019.1080p.BluRay.x264.DTS-WiKi.sample.mkv", + "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", + "size_bytes": 0 + } + ] + }, + { + "identity": { + "type": "movie", + "title": "Happy End", + "year": 1999 + }, + "files": [ + "/mnt/Downloads/movies/Happy.End.1999.1080p.BluRay.x265.10bit.DTS-WiKi/Sample/Happy.End.1999.1080p.BluRay.x265.10bit.DTS-WiKi.Sample.mkv", + "/mnt/Downloads/movies/Happy.End.1999.1080p.BluRay.x265.10bit.DTS-WiKi/Happy.End.1999.1080p.BluRay.x265.10bit.DTS-WiKi.mkv" + ], + "quality_comparison": [ + { + "filename": "Happy.End.1999.1080p.BluRay.x265.10bit.DTS-WiKi.Sample.mkv", + "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", + "size_bytes": 0 + }, + { + "filename": "Happy.End.1999.1080p.BluRay.x265.10bit.DTS-WiKi.mkv", + "path": "/mnt/Downloads/movies/Happy.End.1999.1080p.BluRay.x265.10bit.DTS-WiKi/Happy.End.1999.1080p.BluRay.x265.10bit.DTS-WiKi.mkv", + "size_bytes": 0 + } + ] + }, + { + "identity": { + "type": "movie", + "title": "Signal The Movie", + "year": 2021 + }, + "files": [ + "/mnt/Downloads/movies/Signal.The.Movie.2021.1080p.BluRay.x264.DTS-WiKi/Sample/Signal.The.Movie.2021.1080p.BluRay.x264.DTS-WiKi.sample.mkv", + "/mnt/Downloads/movies/Signal.The.Movie.2021.1080p.BluRay.x264.DTS-WiKi/Signal.The.Movie.2021.1080p.BluRay.x264.DTS-WiKi.mkv" + ], + "quality_comparison": [ + { + "filename": "Signal.The.Movie.2021.1080p.BluRay.x264.DTS-WiKi.sample.mkv", + "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", + "size_bytes": 0 + }, + { + "filename": "Signal.The.Movie.2021.1080p.BluRay.x264.DTS-WiKi.mkv", + "path": "/mnt/Downloads/movies/Signal.The.Movie.2021.1080p.BluRay.x264.DTS-WiKi/Signal.The.Movie.2021.1080p.BluRay.x264.DTS-WiKi.mkv", + "size_bytes": 0 + } + ] + }, + { + "identity": { + "type": "movie", + "title": "1778 Stories Of Me And My Wife", + "year": 2011 + }, + "files": [ + "/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", + "/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" + ], + "quality_comparison": [ + { + "filename": "1778.Stories.of.Me.and.My.Wife.2011.1080p.BluRay.x264-WiKi.sample.mkv", + "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", + "size_bytes": 0 + }, + { + "filename": "1778.Stories.of.Me.and.My.Wife.2011.1080p.BluRay.x264-WiKi.mkv", + "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", + "size_bytes": 0 + } + ] + }, + { + "identity": { + "type": "movie", + "title": "Ai Amok", + "year": 2020 + }, + "files": [ + "/mnt/Downloads/movies/AI.Amok.2020.720p.BluRay.x264-WiKi/Sample/AI.Amok.2020.720p.BluRay.x264-WiKi.sample.mkv", + "/mnt/Downloads/movies/AI.Amok.2020.720p.BluRay.x264-WiKi/AI.Amok.2020.720p.BluRay.x264-WiKi.mkv" + ], + "quality_comparison": [ + { + "filename": "AI.Amok.2020.720p.BluRay.x264-WiKi.sample.mkv", + "path": "/mnt/Downloads/movies/AI.Amok.2020.720p.BluRay.x264-WiKi/Sample/AI.Amok.2020.720p.BluRay.x264-WiKi.sample.mkv", + "size_bytes": 0 + }, + { + "filename": "AI.Amok.2020.720p.BluRay.x264-WiKi.mkv", + "path": "/mnt/Downloads/movies/AI.Amok.2020.720p.BluRay.x264-WiKi/AI.Amok.2020.720p.BluRay.x264-WiKi.mkv", + "size_bytes": 0 + } + ] + }, + { + "identity": { + "type": "movie", + "title": "Ambulance", + "year": 2022 + }, + "files": [ + "/mnt/Downloads/movies/Ambulance.2022.1080p.BluRay.x265.10bit-WiKi/Sample/Ambulance.2022.1080p.BluRay.x265.10bit-WiKi.Sample.mkv", + "/mnt/Downloads/movies/Ambulance.2022.1080p.BluRay.x265.10bit-WiKi/Ambulance.2022.1080p.BluRay.x265.10bit-WiKi.mkv" + ], + "quality_comparison": [ + { + "filename": "Ambulance.2022.1080p.BluRay.x265.10bit-WiKi.Sample.mkv", + "path": "/mnt/Downloads/movies/Ambulance.2022.1080p.BluRay.x265.10bit-WiKi/Sample/Ambulance.2022.1080p.BluRay.x265.10bit-WiKi.Sample.mkv", + "size_bytes": 0 + }, + { + "filename": "Ambulance.2022.1080p.BluRay.x265.10bit-WiKi.mkv", + "path": "/mnt/Downloads/movies/Ambulance.2022.1080p.BluRay.x265.10bit-WiKi/Ambulance.2022.1080p.BluRay.x265.10bit-WiKi.mkv", + "size_bytes": 0 + } + ] + }, + { + "identity": { + "type": "movie", + "title": "The Wings Of The Kirin", + "year": 2012 + }, + "files": [ + "/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", + "/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" + ], + "quality_comparison": [ + { + "filename": "The.Wings.of.the.Kirin.2012.1080p.BluRay.x264.DTS-WiKi.mkv", + "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", + "size_bytes": 0 + }, + { + "filename": "The.Wings.of.the.Kirin.2012.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", + "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", + "size_bytes": 0 + } + ] + }, + { + "identity": { + "type": "movie", + "title": "Flowers", + "year": 2010 + }, + "files": [ + "/mnt/Downloads/movies/Flowers.2010.1080p.BluRay.x264-WiKi/Sample/Flowers.2010.1080p.BluRay.x264-WiKi.sample.mkv", + "/mnt/Downloads/movies/Flowers.2010.1080p.BluRay.x264-WiKi/Flowers.2010.1080p.BluRay.x264-WiKi.mkv" + ], + "quality_comparison": [ + { + "filename": "Flowers.2010.1080p.BluRay.x264-WiKi.sample.mkv", + "path": "/mnt/Downloads/movies/Flowers.2010.1080p.BluRay.x264-WiKi/Sample/Flowers.2010.1080p.BluRay.x264-WiKi.sample.mkv", + "size_bytes": 0 + }, + { + "filename": "Flowers.2010.1080p.BluRay.x264-WiKi.mkv", + "path": "/mnt/Downloads/movies/Flowers.2010.1080p.BluRay.x264-WiKi/Flowers.2010.1080p.BluRay.x264-WiKi.mkv", + "size_bytes": 0 + } + ] + }, + { + "identity": { + "type": "movie", + "title": "Ticket To Paradise", + "year": 2022 + }, + "files": [ + "/mnt/Downloads/movies/Ticket.to.Paradise.2022.1080p.BluRay.x264.DTS-WiKi/Ticket.to.Paradise.2022.1080p.BluRay.x264.DTS-WiKi.mkv", + "/mnt/Downloads/movies/Ticket.to.Paradise.2022.1080p.BluRay.x264.DTS-WiKi/Sample/Ticket.to.Paradise.2022.1080p.BluRay.x264.DTS-WiKi.Sample.mkv" + ], + "quality_comparison": [ + { + "filename": "Ticket.to.Paradise.2022.1080p.BluRay.x264.DTS-WiKi.mkv", + "path": "/mnt/Downloads/movies/Ticket.to.Paradise.2022.1080p.BluRay.x264.DTS-WiKi/Ticket.to.Paradise.2022.1080p.BluRay.x264.DTS-WiKi.mkv", + "size_bytes": 0 + }, + { + "filename": "Ticket.to.Paradise.2022.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", + "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", + "size_bytes": 0 + } + ] + }, + { + "identity": { + "type": "movie", + "title": "Shock Wave 2", + "year": 2020 + }, + "files": [ + "/mnt/Downloads/movies/Shock.Wave.2.2020.720p.BluRay.x264-WiKi/Shock.Wave.2.2020.720p.BluRay.x264-WiKi.mkv", + "/mnt/Downloads/movies/Shock.Wave.2.2020.720p.BluRay.x264-WiKi/Sample/Shock.Wave.2.2020.720p.BluRay.x264-WiKi.Sample.mkv" + ], + "quality_comparison": [ + { + "filename": "Shock.Wave.2.2020.720p.BluRay.x264-WiKi.mkv", + "path": "/mnt/Downloads/movies/Shock.Wave.2.2020.720p.BluRay.x264-WiKi/Shock.Wave.2.2020.720p.BluRay.x264-WiKi.mkv", + "size_bytes": 0 + }, + { + "filename": "Shock.Wave.2.2020.720p.BluRay.x264-WiKi.Sample.mkv", + "path": "/mnt/Downloads/movies/Shock.Wave.2.2020.720p.BluRay.x264-WiKi/Sample/Shock.Wave.2.2020.720p.BluRay.x264-WiKi.Sample.mkv", + "size_bytes": 0 + } + ] + }, + { + "identity": { + "type": "movie", + "title": "The First Gentleman", + "year": 2021 + }, + "files": [ + "/mnt/Downloads/movies/The.First.Gentleman.2021.720p.BluRay.x264-WiKi/Sample/The.First.Gentleman.2021.720p.BluRay.x264-WiKi.sample.mkv", + "/mnt/Downloads/movies/The.First.Gentleman.2021.720p.BluRay.x264-WiKi/The.First.Gentleman.2021.720p.BluRay.x264-WiKi.mkv" + ], + "quality_comparison": [ + { + "filename": "The.First.Gentleman.2021.720p.BluRay.x264-WiKi.sample.mkv", + "path": "/mnt/Downloads/movies/The.First.Gentleman.2021.720p.BluRay.x264-WiKi/Sample/The.First.Gentleman.2021.720p.BluRay.x264-WiKi.sample.mkv", + "size_bytes": 0 + }, + { + "filename": "The.First.Gentleman.2021.720p.BluRay.x264-WiKi.mkv", + "path": "/mnt/Downloads/movies/The.First.Gentleman.2021.720p.BluRay.x264-WiKi/The.First.Gentleman.2021.720p.BluRay.x264-WiKi.mkv", + "size_bytes": 0 + } + ] + }, + { + "identity": { + "type": "movie", + "title": "One Summer Story", + "year": 2020 + }, + "files": [ + "/mnt/Downloads/movies/One.Summer.Story.2020.720p.BluRay.x264.DTS-WiKi/Sample/One.Summer.Story.2020.720p.BluRay.x264.DTS-WiKi.sample.mkv", + "/mnt/Downloads/movies/One.Summer.Story.2020.720p.BluRay.x264.DTS-WiKi/One.Summer.Story.2020.720p.BluRay.x264.DTS-WiKi.mkv" + ], + "quality_comparison": [ + { + "filename": "One.Summer.Story.2020.720p.BluRay.x264.DTS-WiKi.sample.mkv", + "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", + "size_bytes": 0 + }, + { + "filename": "One.Summer.Story.2020.720p.BluRay.x264.DTS-WiKi.mkv", + "path": "/mnt/Downloads/movies/One.Summer.Story.2020.720p.BluRay.x264.DTS-WiKi/One.Summer.Story.2020.720p.BluRay.x264.DTS-WiKi.mkv", + "size_bytes": 0 + } + ] + }, + { + "identity": { + "type": "movie", + "title": "The Card Counter", + "year": 2021 + }, + "files": [ + "/mnt/Downloads/movies/The.Card.Counter.2021.720p.BluRay.x264-WiKi/Sample/The.Card.Counter.2021.720p.BluRay.x264-WiKi.Sample.mkv", + "/mnt/Downloads/movies/The.Card.Counter.2021.720p.BluRay.x264-WiKi/The.Card.Counter.2021.720p.BluRay.x264-WiKi.mkv" + ], + "quality_comparison": [ + { + "filename": "The.Card.Counter.2021.720p.BluRay.x264-WiKi.Sample.mkv", + "path": "/mnt/Downloads/movies/The.Card.Counter.2021.720p.BluRay.x264-WiKi/Sample/The.Card.Counter.2021.720p.BluRay.x264-WiKi.Sample.mkv", + "size_bytes": 0 + }, + { + "filename": "The.Card.Counter.2021.720p.BluRay.x264-WiKi.mkv", + "path": "/mnt/Downloads/movies/The.Card.Counter.2021.720p.BluRay.x264-WiKi/The.Card.Counter.2021.720p.BluRay.x264-WiKi.mkv", + "size_bytes": 0 + } + ] + }, + { + "identity": { + "type": "movie", + "title": "Top Gun Maverick", + "year": 2022 + }, + "files": [ + "/mnt/Downloads/movies/Top.Gun.Maverick.2022.1080p.WEB-DL.AAC5.1.H.264-tG1R0.mkv", + "/mnt/Downloads/movies/Top.Gun.Maverick.2022.1080p.BluRay.x265.10bit-WiKi/Sample/Top.Gun.Maverick.2022.1080p.BluRay.x265.10bit-WiKi.mkv", + "/mnt/Downloads/movies/Top.Gun.Maverick.2022.1080p.BluRay.x265.10bit-WiKi/Top.Gun.Maverick.2022.1080p.BluRay.x265.10bit-WiKi.mkv", + "/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", + "/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" + ], + "quality_comparison": [ + { + "filename": "Top.Gun.Maverick.2022.1080p.WEB-DL.AAC5.1.H.264-tG1R0.mkv", + "path": "/mnt/Downloads/movies/Top.Gun.Maverick.2022.1080p.WEB-DL.AAC5.1.H.264-tG1R0.mkv", + "size_bytes": 0 + }, + { + "filename": "Top.Gun.Maverick.2022.1080p.BluRay.x265.10bit-WiKi.mkv", + "path": "/mnt/Downloads/movies/Top.Gun.Maverick.2022.1080p.BluRay.x265.10bit-WiKi/Sample/Top.Gun.Maverick.2022.1080p.BluRay.x265.10bit-WiKi.mkv", + "size_bytes": 0 + }, + { + "filename": "Top.Gun.Maverick.2022.1080p.BluRay.x265.10bit-WiKi.mkv", + "path": "/mnt/Downloads/movies/Top.Gun.Maverick.2022.1080p.BluRay.x265.10bit-WiKi/Top.Gun.Maverick.2022.1080p.BluRay.x265.10bit-WiKi.mkv", + "size_bytes": 0 + }, + { + "filename": "Top.Gun.Maverick.2022.2160p.WEB-DL.DDP5.1.Atmos.HDR.HEVC-CMRG.mkv", + "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", + "size_bytes": 0 + }, + { + "filename": "Top.Gun.Maverick.2022.IMAX.2160p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi.mkv", + "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", + "size_bytes": 0 + } + ] + }, + { + "identity": { + "type": "movie", + "title": "The Mauritanian", + "year": 2021 + }, + "files": [ + "/mnt/Downloads/movies/The.Mauritanian.2021.1080p.BluRay.x264.DTS-WiKi/Sample/The.Mauritanian.2021.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", + "/mnt/Downloads/movies/The.Mauritanian.2021.1080p.BluRay.x264.DTS-WiKi/The.Mauritanian.2021.1080p.BluRay.x264.DTS-WiKi.mkv" + ], + "quality_comparison": [ + { + "filename": "The.Mauritanian.2021.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", + "path": "/mnt/Downloads/movies/The.Mauritanian.2021.1080p.BluRay.x264.DTS-WiKi/Sample/The.Mauritanian.2021.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", + "size_bytes": 0 + }, + { + "filename": "The.Mauritanian.2021.1080p.BluRay.x264.DTS-WiKi.mkv", + "path": "/mnt/Downloads/movies/The.Mauritanian.2021.1080p.BluRay.x264.DTS-WiKi/The.Mauritanian.2021.1080p.BluRay.x264.DTS-WiKi.mkv", + "size_bytes": 0 + } + ] + }, + { + "identity": { + "type": "movie", + "title": "Spy", + "year": 2015 + }, + "files": [ + "/mnt/Downloads/movies/Spy.2015.720p.BluRay.x264.DTS-WiKi/Sample/Spy.2015.720p.BluRay.x264.DTS-WiKi.Sample.mkv", + "/mnt/Downloads/movies/Spy.2015.720p.BluRay.x264.DTS-WiKi/Spy.2015.720p.BluRay.x264.DTS-WiKi.mkv" + ], + "quality_comparison": [ + { + "filename": "Spy.2015.720p.BluRay.x264.DTS-WiKi.Sample.mkv", + "path": "/mnt/Downloads/movies/Spy.2015.720p.BluRay.x264.DTS-WiKi/Sample/Spy.2015.720p.BluRay.x264.DTS-WiKi.Sample.mkv", + "size_bytes": 0 + }, + { + "filename": "Spy.2015.720p.BluRay.x264.DTS-WiKi.mkv", + "path": "/mnt/Downloads/movies/Spy.2015.720p.BluRay.x264.DTS-WiKi/Spy.2015.720p.BluRay.x264.DTS-WiKi.mkv", + "size_bytes": 0 + } + ] + }, + { + "identity": { + "type": "movie", + "title": "Verdens Verste Menneske", + "year": 2021 + }, + "files": [ + "/mnt/Downloads/movies/Verdens.Verste.Menneske.2021.720p.BluRay.x264-WiKi/Verdens.Verste.Menneske.2021.720p.BluRay.x264-WiKi.mkv", + "/mnt/Downloads/movies/Verdens.Verste.Menneske.2021.720p.BluRay.x264-WiKi/Sample/Verdens.Verste.Menneske.2021.720p.BluRay.x264-WiKi.Sample.mkv" + ], + "quality_comparison": [ + { + "filename": "Verdens.Verste.Menneske.2021.720p.BluRay.x264-WiKi.mkv", + "path": "/mnt/Downloads/movies/Verdens.Verste.Menneske.2021.720p.BluRay.x264-WiKi/Verdens.Verste.Menneske.2021.720p.BluRay.x264-WiKi.mkv", + "size_bytes": 0 + }, + { + "filename": "Verdens.Verste.Menneske.2021.720p.BluRay.x264-WiKi.Sample.mkv", + "path": "/mnt/Downloads/movies/Verdens.Verste.Menneske.2021.720p.BluRay.x264-WiKi/Sample/Verdens.Verste.Menneske.2021.720p.BluRay.x264-WiKi.Sample.mkv", + "size_bytes": 0 + } + ] + }, + { + "identity": { + "type": "movie", + "title": "Yowamushi Pedal", + "year": 2020 + }, + "files": [ + "/mnt/Downloads/movies/Yowamushi.Pedal.2020.1080p.BluRay.x264.DTS-WiKi/Sample/Yowamushi.Pedal.2020.1080p.BluRay.x264.DTS-WiKi.sample.mkv", + "/mnt/Downloads/movies/Yowamushi.Pedal.2020.1080p.BluRay.x264.DTS-WiKi/Yowamushi.Pedal.2020.1080p.BluRay.x264.DTS-WiKi.mkv" + ], + "quality_comparison": [ + { + "filename": "Yowamushi.Pedal.2020.1080p.BluRay.x264.DTS-WiKi.sample.mkv", + "path": "/mnt/Downloads/movies/Yowamushi.Pedal.2020.1080p.BluRay.x264.DTS-WiKi/Sample/Yowamushi.Pedal.2020.1080p.BluRay.x264.DTS-WiKi.sample.mkv", + "size_bytes": 0 + }, + { + "filename": "Yowamushi.Pedal.2020.1080p.BluRay.x264.DTS-WiKi.mkv", + "path": "/mnt/Downloads/movies/Yowamushi.Pedal.2020.1080p.BluRay.x264.DTS-WiKi/Yowamushi.Pedal.2020.1080p.BluRay.x264.DTS-WiKi.mkv", + "size_bytes": 0 + } + ] + }, + { + "identity": { + "type": "movie", + "title": "Sex Is Zero", + "year": 2002 + }, + "files": [ + "/mnt/Downloads/movies/Sex.Is.Zero.2002.1080p.BluRay.x264.DTS-WiKi/Sample/Sex.Is.Zero.2002.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", + "/mnt/Downloads/movies/Sex.Is.Zero.2002.1080p.BluRay.x264.DTS-WiKi/Sex.Is.Zero.2002.1080p.BluRay.x264.DTS-WiKi.mkv" + ], + "quality_comparison": [ + { + "filename": "Sex.Is.Zero.2002.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", + "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", + "size_bytes": 0 + }, + { + "filename": "Sex.Is.Zero.2002.1080p.BluRay.x264.DTS-WiKi.mkv", + "path": "/mnt/Downloads/movies/Sex.Is.Zero.2002.1080p.BluRay.x264.DTS-WiKi/Sex.Is.Zero.2002.1080p.BluRay.x264.DTS-WiKi.mkv", + "size_bytes": 0 + } + ] + }, + { + "identity": { + "type": "movie", + "title": "Hayabusa", + "year": 2011 + }, + "files": [ + "/mnt/Downloads/movies/Hayabusa.2011.1080p.BluRay.x264.DTS-WiKi/Sample/Hayabusa.2011.1080p.BluRay.x264.DTS-WiKi.sample.mkv", + "/mnt/Downloads/movies/Hayabusa.2011.1080p.BluRay.x264.DTS-WiKi/Hayabusa.2011.1080p.BluRay.x264.DTS-WiKi.mkv" + ], + "quality_comparison": [ + { + "filename": "Hayabusa.2011.1080p.BluRay.x264.DTS-WiKi.sample.mkv", + "path": "/mnt/Downloads/movies/Hayabusa.2011.1080p.BluRay.x264.DTS-WiKi/Sample/Hayabusa.2011.1080p.BluRay.x264.DTS-WiKi.sample.mkv", + "size_bytes": 0 + }, + { + "filename": "Hayabusa.2011.1080p.BluRay.x264.DTS-WiKi.mkv", + "path": "/mnt/Downloads/movies/Hayabusa.2011.1080p.BluRay.x264.DTS-WiKi/Hayabusa.2011.1080p.BluRay.x264.DTS-WiKi.mkv", + "size_bytes": 0 + } + ] + }, + { + "identity": { + "type": "movie", + "title": "The Hating Game", + "year": 2021 + }, + "files": [ + "/mnt/Downloads/movies/The.Hating.Game.2021.1080p.BluRay.x264.DTS-WiKi/Sample/The.Hating.Game.2021.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", + "/mnt/Downloads/movies/The.Hating.Game.2021.1080p.BluRay.x264.DTS-WiKi/The.Hating.Game.2021.1080p.BluRay.x264.DTS-WiKi.mkv" + ], + "quality_comparison": [ + { + "filename": "The.Hating.Game.2021.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", + "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", + "size_bytes": 0 + }, + { + "filename": "The.Hating.Game.2021.1080p.BluRay.x264.DTS-WiKi.mkv", + "path": "/mnt/Downloads/movies/The.Hating.Game.2021.1080p.BluRay.x264.DTS-WiKi/The.Hating.Game.2021.1080p.BluRay.x264.DTS-WiKi.mkv", + "size_bytes": 0 + } + ] + }, + { + "identity": { + "type": "movie", + "title": "The Hound Of The Baskervilles Sherlock The Movie", + "year": 2022 + }, + "files": [ + "/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", + "/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" + ], + "quality_comparison": [ + { + "filename": "The.Hound.of.the.Baskervilles.Sherlock.the.Movie.2022.1080p.BluRay.x265.10bit.DTS-WiKi.sample.mkv", + "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", + "size_bytes": 0 + }, + { + "filename": "The.Hound.of.the.Baskervilles.Sherlock.the.Movie.2022.1080p.BluRay.x265.10bit.DTS-WiKi.mkv", + "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", + "size_bytes": 0 + } + ] + }, + { + "identity": { + "type": "movie", + "title": "Lock Stock And Two Smoking Barrels", + "year": 1998 + }, + "files": [ + "/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", + "/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" + ], + "quality_comparison": [ + { + "filename": "Lock.Stock.and.Two.Smoking.Barrels.1998.BluRay.1080p.x264.DTS-WiKi.Sample.mkv", + "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", + "size_bytes": 0 + }, + { + "filename": "Lock.Stock.and.Two.Smoking.Barrels.1998.BluRay.1080p.x264.DTS-WiKi.mkv", + "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", + "size_bytes": 0 + } + ] + }, + { + "identity": { + "type": "movie", + "title": "The Best Of Youth", + "year": 2003 + }, + "files": [ + "/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", + "/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" + ], + "quality_comparison": [ + { + "filename": "The.Best.of.Youth.2003.Blu-ray.1080p.DISC2.x265.10bit.DD5.1.MNHD-FRDS.mkv", + "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", + "size_bytes": 0 + }, + { + "filename": "The.Best.of.Youth.2003.Blu-ray.1080p.DISC1.x265.10bit.DD5.1.MNHD-FRDS.mkv", + "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", + "size_bytes": 0 + } + ] + }, + { + "identity": { + "type": "movie", + "title": "Under The Tuscan Sun", + "year": 2003 + }, + "files": [ + "/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", + "/mnt/Downloads/movies/Under.The.Tuscan.Sun.2003.1080p.BluRay.x264.DTS-WiKi/Under.The.Tuscan.Sun.2003.1080p.BluRay.x264.DTS-WiKi.mkv" + ], + "quality_comparison": [ + { + "filename": "Under.The.Tuscan.Sun.2003.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", + "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", + "size_bytes": 0 + }, + { + "filename": "Under.The.Tuscan.Sun.2003.1080p.BluRay.x264.DTS-WiKi.mkv", + "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", + "size_bytes": 0 + } + ] + }, + { + "identity": { + "type": "movie", + "title": "Weathering With You", + "year": 2019 + }, + "files": [ + "/mnt/Downloads/movies/Weathering.with.You.2019.1080p.BluRay.x264.DTS-WiKi/Sample/Weathering.with.You.2019.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", + "/mnt/Downloads/movies/Weathering.with.You.2019.1080p.BluRay.x264.DTS-WiKi/Weathering.with.You.2019.1080p.BluRay.x264.DTS-WiKi.mkv", + "/mnt/Downloads/movies/Weathering.with.You.2019.RERiP.1080p.BluRay.x264.DTS-WiKi/Weathering.with.You.2019.RERiP.1080p.BluRay.x264.DTS-WiKi.mkv", + "/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" + ], + "quality_comparison": [ + { + "filename": "Weathering.with.You.2019.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", + "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", + "size_bytes": 0 + }, + { + "filename": "Weathering.with.You.2019.1080p.BluRay.x264.DTS-WiKi.mkv", + "path": "/mnt/Downloads/movies/Weathering.with.You.2019.1080p.BluRay.x264.DTS-WiKi/Weathering.with.You.2019.1080p.BluRay.x264.DTS-WiKi.mkv", + "size_bytes": 0 + }, + { + "filename": "Weathering.with.You.2019.RERiP.1080p.BluRay.x264.DTS-WiKi.mkv", + "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", + "size_bytes": 0 + }, + { + "filename": "Weathering.with.You.2019.RERiP.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", + "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", + "size_bytes": 0 + } + ] + }, + { + "identity": { + "type": "movie", + "title": "Airport", + "year": 2013 + }, + "files": [ + "/mnt/Downloads/movies/Airport.2013.1080p.BluRay.x264-WiKi/Sample/Airport.2013.1080p.BluRay.x264-WiKi.sample.mkv", + "/mnt/Downloads/movies/Airport.2013.1080p.BluRay.x264-WiKi/Airport.2013.1080p.BluRay.x264-WiKi.mkv" + ], + "quality_comparison": [ + { + "filename": "Airport.2013.1080p.BluRay.x264-WiKi.sample.mkv", + "path": "/mnt/Downloads/movies/Airport.2013.1080p.BluRay.x264-WiKi/Sample/Airport.2013.1080p.BluRay.x264-WiKi.sample.mkv", + "size_bytes": 0 + }, + { + "filename": "Airport.2013.1080p.BluRay.x264-WiKi.mkv", + "path": "/mnt/Downloads/movies/Airport.2013.1080p.BluRay.x264-WiKi/Airport.2013.1080p.BluRay.x264-WiKi.mkv", + "size_bytes": 0 + } + ] + }, + { + "identity": { + "type": "movie", + "title": "Lady Chatterley'S Lover", + "year": 1981 + }, + "files": [ + "/mnt/Downloads/movies/Lady.Chatterley's.Lover.1981.720p.BluRay.x264-WiKi/Sample/Lady.Chatterley's.Lover.1981.720p.BluRay.x264-WiKi.Sample.mkv", + "/mnt/Downloads/movies/Lady.Chatterley's.Lover.1981.720p.BluRay.x264-WiKi/Lady.Chatterley's.Lover.1981.720p.BluRay.x264-WiKi.mkv" + ], + "quality_comparison": [ + { + "filename": "Lady.Chatterley's.Lover.1981.720p.BluRay.x264-WiKi.Sample.mkv", + "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", + "size_bytes": 0 + }, + { + "filename": "Lady.Chatterley's.Lover.1981.720p.BluRay.x264-WiKi.mkv", + "path": "/mnt/Downloads/movies/Lady.Chatterley's.Lover.1981.720p.BluRay.x264-WiKi/Lady.Chatterley's.Lover.1981.720p.BluRay.x264-WiKi.mkv", + "size_bytes": 0 + } + ] + }, + { + "identity": { + "type": "movie", + "title": "Big Shot'S Funeral", + "year": 2001 + }, + "files": [ + "/mnt/Downloads/movies/Big.Shot's.Funeral.2001.720p.BluRay.x264-WiKi/Sample/Big.Shot's.Funeral.2001.720p.BluRay.x264-WiKi.Sample.mkv", + "/mnt/Downloads/movies/Big.Shot's.Funeral.2001.720p.BluRay.x264-WiKi/Big.Shot's.Funeral.2001.720p.BluRay.x264-WiKi.mkv" + ], + "quality_comparison": [ + { + "filename": "Big.Shot's.Funeral.2001.720p.BluRay.x264-WiKi.Sample.mkv", + "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", + "size_bytes": 0 + }, + { + "filename": "Big.Shot's.Funeral.2001.720p.BluRay.x264-WiKi.mkv", + "path": "/mnt/Downloads/movies/Big.Shot's.Funeral.2001.720p.BluRay.x264-WiKi/Big.Shot's.Funeral.2001.720p.BluRay.x264-WiKi.mkv", + "size_bytes": 0 + } + ] + }, + { + "identity": { + "type": "movie", + "title": "Freaky", + "year": 2020 + }, + "files": [ + "/mnt/Downloads/movies/Freaky.2020.720p.BluRay.x264-WiKi/Sample/Freaky.2020.720p.BluRay.x264-WiKi.Sample.mkv", + "/mnt/Downloads/movies/Freaky.2020.720p.BluRay.x264-WiKi/Freaky.2020.720p.BluRay.x264-WiKi.mkv" + ], + "quality_comparison": [ + { + "filename": "Freaky.2020.720p.BluRay.x264-WiKi.Sample.mkv", + "path": "/mnt/Downloads/movies/Freaky.2020.720p.BluRay.x264-WiKi/Sample/Freaky.2020.720p.BluRay.x264-WiKi.Sample.mkv", + "size_bytes": 0 + }, + { + "filename": "Freaky.2020.720p.BluRay.x264-WiKi.mkv", + "path": "/mnt/Downloads/movies/Freaky.2020.720p.BluRay.x264-WiKi/Freaky.2020.720p.BluRay.x264-WiKi.mkv", + "size_bytes": 0 + } + ] + }, + { + "identity": { + "type": "movie", + "title": "The Father", + "year": 2020 + }, + "files": [ + "/mnt/Downloads/movies/The.Father.2020.1080p.BluRay.x264.DTS-WiKi/Sample/The.Father.2020.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", + "/mnt/Downloads/movies/The.Father.2020.1080p.BluRay.x264.DTS-WiKi/The.Father.2020.1080p.BluRay.x264.DTS-WiKi.mkv" + ], + "quality_comparison": [ + { + "filename": "The.Father.2020.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", + "path": "/mnt/Downloads/movies/The.Father.2020.1080p.BluRay.x264.DTS-WiKi/Sample/The.Father.2020.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", + "size_bytes": 0 + }, + { + "filename": "The.Father.2020.1080p.BluRay.x264.DTS-WiKi.mkv", + "path": "/mnt/Downloads/movies/The.Father.2020.1080p.BluRay.x264.DTS-WiKi/The.Father.2020.1080p.BluRay.x264.DTS-WiKi.mkv", + "size_bytes": 0 + } + ] + }, + { + "identity": { + "type": "movie", + "title": "No Longer Human", + "year": 2019 + }, + "files": [ + "/mnt/Downloads/movies/No.Longer.Human.2019.720p.BluRay.x264-WiKi/No.Longer.Human.2019.720p.BluRay.x264-WiKi.mkv", + "/mnt/Downloads/movies/No.Longer.Human.2019.720p.BluRay.x264-WiKi/Sample/No.Longer.Human.2019.720p.BluRay.x264-WiKi.sample.mkv" + ], + "quality_comparison": [ + { + "filename": "No.Longer.Human.2019.720p.BluRay.x264-WiKi.mkv", + "path": "/mnt/Downloads/movies/No.Longer.Human.2019.720p.BluRay.x264-WiKi/No.Longer.Human.2019.720p.BluRay.x264-WiKi.mkv", + "size_bytes": 0 + }, + { + "filename": "No.Longer.Human.2019.720p.BluRay.x264-WiKi.sample.mkv", + "path": "/mnt/Downloads/movies/No.Longer.Human.2019.720p.BluRay.x264-WiKi/Sample/No.Longer.Human.2019.720p.BluRay.x264-WiKi.sample.mkv", + "size_bytes": 0 + } + ] + }, + { + "identity": { + "type": "movie", + "title": "Assassination", + "year": 2015 + }, + "files": [ + "/mnt/Downloads/movies/Assassination.2015.1080p.BluRay.x264.DTS-WiKi/Sample/Assassination.2015.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", + "/mnt/Downloads/movies/Assassination.2015.1080p.BluRay.x264.DTS-WiKi/Assassination.2015.1080p.BluRay.x264.DTS-WiKi.mkv" + ], + "quality_comparison": [ + { + "filename": "Assassination.2015.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", + "path": "/mnt/Downloads/movies/Assassination.2015.1080p.BluRay.x264.DTS-WiKi/Sample/Assassination.2015.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", + "size_bytes": 0 + }, + { + "filename": "Assassination.2015.1080p.BluRay.x264.DTS-WiKi.mkv", + "path": "/mnt/Downloads/movies/Assassination.2015.1080p.BluRay.x264.DTS-WiKi/Assassination.2015.1080p.BluRay.x264.DTS-WiKi.mkv", + "size_bytes": 0 + } + ] + }, + { + "identity": { + "type": "movie", + "title": "Basic Instinct Director'S Cut", + "year": 1992 + }, + "files": [ + "/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", + "/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" + ], + "quality_comparison": [ + { + "filename": "Basic.Instinct.Director's.Cut.1992.BluRay.720p.x264.DTS-WiKi.mkv", + "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", + "size_bytes": 0 + }, + { + "filename": "Basic.Instinct.Director's.Cut.1992.BluRay.720p.x264.DTS-WiKi.Sample.mkv", + "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", + "size_bytes": 0 + } + ] + }, + { + "identity": { + "type": "movie", + "title": "Raya And The Last Dragon", + "year": 2021 + }, + "files": [ + "/mnt/Downloads/movies/Raya.and.the.Last.Dragon.2021.720p.BluRay.x264-WiKi/Raya.and.the.Last.Dragon.2021.720p.BluRay.x264-WiKi.mkv", + "/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" + ], + "quality_comparison": [ + { + "filename": "Raya.and.the.Last.Dragon.2021.720p.BluRay.x264-WiKi.mkv", + "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", + "size_bytes": 0 + }, + { + "filename": "Raya.and.the.Last.Dragon.2021.720p.BluRay.x264-WiKi.Sample.mkv", + "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", + "size_bytes": 0 + } + ] + }, + { + "identity": { + "type": "movie", + "title": "I Wish", + "year": 2011 + }, + "files": [ + "/mnt/Downloads/movies/I.Wish.2011.1080p.BluRay.x265.10bit-WiKi/Sample/I.Wish.2011.1080p.BluRay.x265.10bit-WiKi.Sample.mkv", + "/mnt/Downloads/movies/I.Wish.2011.1080p.BluRay.x265.10bit-WiKi/I.Wish.2011.1080p.BluRay.x265.10bit-WiKi.mkv" + ], + "quality_comparison": [ + { + "filename": "I.Wish.2011.1080p.BluRay.x265.10bit-WiKi.Sample.mkv", + "path": "/mnt/Downloads/movies/I.Wish.2011.1080p.BluRay.x265.10bit-WiKi/Sample/I.Wish.2011.1080p.BluRay.x265.10bit-WiKi.Sample.mkv", + "size_bytes": 0 + }, + { + "filename": "I.Wish.2011.1080p.BluRay.x265.10bit-WiKi.mkv", + "path": "/mnt/Downloads/movies/I.Wish.2011.1080p.BluRay.x265.10bit-WiKi/I.Wish.2011.1080p.BluRay.x265.10bit-WiKi.mkv", + "size_bytes": 0 + } + ] + }, + { + "identity": { + "type": "movie", + "title": "Howl'S Moving Castle", + "year": 2004 + }, + "files": [ + "/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", + "/mnt/Downloads/movies/Howl's.Moving.Castle.2004.1080p.BluRay.x264.DTS-WiKi/Howl's.Moving.Castle.2004.1080p.BluRay.x264.DTS-WiKi.mkv" + ], + "quality_comparison": [ + { + "filename": "Howl's.Moving.Castle.2004.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", + "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", + "size_bytes": 0 + }, + { + "filename": "Howl's.Moving.Castle.2004.1080p.BluRay.x264.DTS-WiKi.mkv", + "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", + "size_bytes": 0 + } + ] + }, + { + "identity": { + "type": "movie", + "title": "Berserk The Golden Age Arc The Egg Of The King", + "year": 2012 + }, + "files": [ + "/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", + "/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" + ], + "quality_comparison": [ + { + "filename": "Berserk.The.Golden.Age.Arc.The.Egg.of.the.King.2012.1080p.BluRay.x264.DTS-WiKi.mkv", + "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", + "size_bytes": 0 + }, + { + "filename": "Berserk.The.Golden.Age.Arc.The.Egg.of.the.King.2012.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", + "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", + "size_bytes": 0 + } + ] + }, + { + "identity": { + "type": "movie", + "title": "Where The Crawdads Sing", + "year": 2022 + }, + "files": [ + "/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", + "/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" + ], + "quality_comparison": [ + { + "filename": "Where.the.Crawdads.Sing.2022.1080p.BluRay.x265.10bit.DTS-WiKi.Sample.mkv", + "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", + "size_bytes": 0 + }, + { + "filename": "Where.the.Crawdads.Sing.2022.1080p.BluRay.x265.10bit.DTS-WiKi.mkv", + "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", + "size_bytes": 0 + } + ] + }, + { + "identity": { + "type": "movie", + "title": "A Loving Husband", + "year": 2016 + }, + "files": [ + "/mnt/Downloads/movies/A.Loving.Husband.2016.1080p.BluRay.x264-WiKi/Sample/A.Loving.Husband.2016.1080p.BluRay.x264-WiKi.sample.mkv", + "/mnt/Downloads/movies/A.Loving.Husband.2016.1080p.BluRay.x264-WiKi/A.Loving.Husband.2016.1080p.BluRay.x264-WiKi.mkv" + ], + "quality_comparison": [ + { + "filename": "A.Loving.Husband.2016.1080p.BluRay.x264-WiKi.sample.mkv", + "path": "/mnt/Downloads/movies/A.Loving.Husband.2016.1080p.BluRay.x264-WiKi/Sample/A.Loving.Husband.2016.1080p.BluRay.x264-WiKi.sample.mkv", + "size_bytes": 0 + }, + { + "filename": "A.Loving.Husband.2016.1080p.BluRay.x264-WiKi.mkv", + "path": "/mnt/Downloads/movies/A.Loving.Husband.2016.1080p.BluRay.x264-WiKi/A.Loving.Husband.2016.1080p.BluRay.x264-WiKi.mkv", + "size_bytes": 0 + } + ] + }, + { + "identity": { + "type": "movie", + "title": "And The Baton Was Passed", + "year": 2021 + }, + "files": [ + "/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", + "/mnt/Downloads/movies/And.the.Baton.Was.Passed.2021.1080p.BluRay.x264-WiKi/And.the.Baton.Was.Passed.2021.1080p.BluRay.x264-WiKi.mkv" + ], + "quality_comparison": [ + { + "filename": "And.the.Baton.Was.Passed.2021.1080p.BluRay.x264-WiKi.sample.mkv", + "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", + "size_bytes": 0 + }, + { + "filename": "And.the.Baton.Was.Passed.2021.1080p.BluRay.x264-WiKi.mkv", + "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", + "size_bytes": 0 + } + ] + }, + { + "identity": { + "type": "movie", + "title": "The Voice Of Sin", + "year": 2020 + }, + "files": [ + "/mnt/Downloads/movies/The.Voice.of.Sin.2020.720p.BluRay.x264-WiKi/Sample/The.Voice.of.Sin.2020.720p.BluRay.x264-WiKi.sample.mkv", + "/mnt/Downloads/movies/The.Voice.of.Sin.2020.720p.BluRay.x264-WiKi/The.Voice.of.Sin.2020.720p.BluRay.x264-WiKi.mkv" + ], + "quality_comparison": [ + { + "filename": "The.Voice.of.Sin.2020.720p.BluRay.x264-WiKi.sample.mkv", + "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", + "size_bytes": 0 + }, + { + "filename": "The.Voice.of.Sin.2020.720p.BluRay.x264-WiKi.mkv", + "path": "/mnt/Downloads/movies/The.Voice.of.Sin.2020.720p.BluRay.x264-WiKi/The.Voice.of.Sin.2020.720p.BluRay.x264-WiKi.mkv", + "size_bytes": 0 + } + ] + }, + { + "identity": { + "type": "movie", + "title": "Tazza The Hidden Card", + "year": 2014 + }, + "files": [ + "/mnt/Downloads/movies/Tazza.The.Hidden.Card.2014.720p.BluRay.x264-WiKi/Sample/Tazza.The.Hidden.Card.2014.720p.BluRay.x264-WiKi.sample.mkv", + "/mnt/Downloads/movies/Tazza.The.Hidden.Card.2014.720p.BluRay.x264-WiKi/Tazza.The.Hidden.Card.2014.720p.BluRay.x264-WiKi.mkv" + ], + "quality_comparison": [ + { + "filename": "Tazza.The.Hidden.Card.2014.720p.BluRay.x264-WiKi.sample.mkv", + "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", + "size_bytes": 0 + }, + { + "filename": "Tazza.The.Hidden.Card.2014.720p.BluRay.x264-WiKi.mkv", + "path": "/mnt/Downloads/movies/Tazza.The.Hidden.Card.2014.720p.BluRay.x264-WiKi/Tazza.The.Hidden.Card.2014.720p.BluRay.x264-WiKi.mkv", + "size_bytes": 0 + } + ] + }, + { + "identity": { + "type": "movie", + "title": "Baragaki Unbroken Samurai", + "year": 2021 + }, + "files": [ + "/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", + "/mnt/Downloads/movies/Baragaki.Unbroken.Samurai.2021.1080p.BluRay.x265.10bit.DTS-WiKi/Baragaki.Unbroken.Samurai.2021.1080p.BluRay.x265.10bit.DTS-WiKi.mkv" + ], + "quality_comparison": [ + { + "filename": "Baragaki.Unbroken.Samurai.2021.1080p.BluRay.x265.10bit.DTS-WiKi.sample.mkv", + "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", + "size_bytes": 0 + }, + { + "filename": "Baragaki.Unbroken.Samurai.2021.1080p.BluRay.x265.10bit.DTS-WiKi.mkv", + "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", + "size_bytes": 0 + } + ] + }, + { + "identity": { + "type": "movie", + "title": "Be My Master", + "year": 2018 + }, + "files": [ + "/mnt/Downloads/movies/Be.My.Master.2018.1080p.BluRay.x264.DTS-WiKi/Sample/Be.My.Master.2018.1080p.BluRay.x264.DTS-WiK.sample.mkv", + "/mnt/Downloads/movies/Be.My.Master.2018.1080p.BluRay.x264.DTS-WiKi/Be.My.Master.2018.1080p.BluRay.x264.DTS-WiKi.mkv" + ], + "quality_comparison": [ + { + "filename": "Be.My.Master.2018.1080p.BluRay.x264.DTS-WiK.sample.mkv", + "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", + "size_bytes": 0 + }, + { + "filename": "Be.My.Master.2018.1080p.BluRay.x264.DTS-WiKi.mkv", + "path": "/mnt/Downloads/movies/Be.My.Master.2018.1080p.BluRay.x264.DTS-WiKi/Be.My.Master.2018.1080p.BluRay.x264.DTS-WiKi.mkv", + "size_bytes": 0 + } + ] + }, + { + "identity": { + "type": "movie", + "title": "Serendipity", + "year": 2001 + }, + "files": [ + "/mnt/Downloads/movies/Serendipity.2001.1080p.BluRay.x264.DTS-WiKi/Serendipity.2001.1080p.BluRay.x264.DTS-WiKi.mkv", + "/mnt/Downloads/movies/Serendipity.2001.1080p.BluRay.x264.DTS-WiKi/Sample/Serendipity.2001.1080p.BluRay.x264.DTS-WiKi.Sample.mkv" + ], + "quality_comparison": [ + { + "filename": "Serendipity.2001.1080p.BluRay.x264.DTS-WiKi.mkv", + "path": "/mnt/Downloads/movies/Serendipity.2001.1080p.BluRay.x264.DTS-WiKi/Serendipity.2001.1080p.BluRay.x264.DTS-WiKi.mkv", + "size_bytes": 0 + }, + { + "filename": "Serendipity.2001.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", + "path": "/mnt/Downloads/movies/Serendipity.2001.1080p.BluRay.x264.DTS-WiKi/Sample/Serendipity.2001.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", + "size_bytes": 0 + } + ] + }, + { + "identity": { + "type": "movie", + "title": "Thermae Romae", + "year": 2012 + }, + "files": [ + "/mnt/Downloads/movies/Thermae.Romae.2012.1080p.BluRay.x264.DTS-WiKi/Sample/Thermae.Romae.2012.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", + "/mnt/Downloads/movies/Thermae.Romae.2012.1080p.BluRay.x264.DTS-WiKi/Thermae.Romae.2012.1080p.BluRay.x264.DTS-WiKi.mkv" + ], + "quality_comparison": [ + { + "filename": "Thermae.Romae.2012.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", + "path": "/mnt/Downloads/movies/Thermae.Romae.2012.1080p.BluRay.x264.DTS-WiKi/Sample/Thermae.Romae.2012.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", + "size_bytes": 0 + }, + { + "filename": "Thermae.Romae.2012.1080p.BluRay.x264.DTS-WiKi.mkv", + "path": "/mnt/Downloads/movies/Thermae.Romae.2012.1080p.BluRay.x264.DTS-WiKi/Thermae.Romae.2012.1080p.BluRay.x264.DTS-WiKi.mkv", + "size_bytes": 0 + } + ] + }, + { + "identity": { + "type": "movie", + "title": "Summer Sway", + "year": 2020 + }, + "files": [ + "/mnt/Downloads/movies/Summer.Sway.2020.1080p.BluRay.x264.DTS-WiKi/Sample/Summer.Sway.2020.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", + "/mnt/Downloads/movies/Summer.Sway.2020.1080p.BluRay.x264.DTS-WiKi/Summer.Sway.2020.1080p.BluRay.x264.DTS-WiKi.mkv" + ], + "quality_comparison": [ + { + "filename": "Summer.Sway.2020.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", + "path": "/mnt/Downloads/movies/Summer.Sway.2020.1080p.BluRay.x264.DTS-WiKi/Sample/Summer.Sway.2020.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", + "size_bytes": 0 + }, + { + "filename": "Summer.Sway.2020.1080p.BluRay.x264.DTS-WiKi.mkv", + "path": "/mnt/Downloads/movies/Summer.Sway.2020.1080p.BluRay.x264.DTS-WiKi/Summer.Sway.2020.1080p.BluRay.x264.DTS-WiKi.mkv", + "size_bytes": 0 + } + ] + }, + { + "identity": { + "type": "movie", + "title": "War And Peace", + "year": 1966 + }, + "files": [ + "/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", + "/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", + "/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", + "/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" + ], + "quality_comparison": [ + { + "filename": "War.and.Peace.1966.Part.III.The.Year.1812.BluRay.1080p.x265.10bit.2Audio.MNHD-FRDS.mkv", + "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", + "size_bytes": 0 + }, + { + "filename": "War.and.Peace.1966.Part.II.Natasha.Rostova.BluRay.1080p.x265.10bit.2Audio.MNHD-FRDS.mkv", + "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", + "size_bytes": 0 + }, + { + "filename": "War.and.Peace.1966.Part.IV.Pierre.Bezukhov.BluRay.1080p.x265.10bit.2Audio.MNHD-FRDS.mkv", + "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", + "size_bytes": 0 + }, + { + "filename": "War.and.Peace.1966.Part.I.Andrei.Bolkonsky.BluRay.1080p.x265.10bit.2Audio.MNHD-FRDS.mkv", + "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", + "size_bytes": 0 + } + ] + }, + { + "identity": { + "type": "movie", + "title": "Encanto", + "year": 2021 + }, + "files": [ + "/mnt/Downloads/movies/Encanto.2021.720p.BluRay.x264-WiKi/Encanto.2021.720p.BluRay.x264-WiKi.mkv", + "/mnt/Downloads/movies/Encanto.2021.720p.BluRay.x264-WiKi/Sample/Encanto.2021.720p.BluRay.x264-WiKi.Sample.mkv" + ], + "quality_comparison": [ + { + "filename": "Encanto.2021.720p.BluRay.x264-WiKi.mkv", + "path": "/mnt/Downloads/movies/Encanto.2021.720p.BluRay.x264-WiKi/Encanto.2021.720p.BluRay.x264-WiKi.mkv", + "size_bytes": 0 + }, + { + "filename": "Encanto.2021.720p.BluRay.x264-WiKi.Sample.mkv", + "path": "/mnt/Downloads/movies/Encanto.2021.720p.BluRay.x264-WiKi/Sample/Encanto.2021.720p.BluRay.x264-WiKi.Sample.mkv", + "size_bytes": 0 + } + ] + }, + { + "identity": { + "type": "movie", + "title": "Poupelle Of Chimney Town", + "year": 2020 + }, + "files": [ + "/mnt/Downloads/movies/Poupelle.of.Chimney.Town.2020.720p.BluRay.x264-WiKi/Sample/Poupelle.of.Chimney.Town.2020.720p.BluRay.x264-WiKi.Sample.mkv", + "/mnt/Downloads/movies/Poupelle.of.Chimney.Town.2020.720p.BluRay.x264-WiKi/Poupelle.of.Chimney.Town.2020.720p.BluRay.x264-WiKi.mkv" + ], + "quality_comparison": [ + { + "filename": "Poupelle.of.Chimney.Town.2020.720p.BluRay.x264-WiKi.Sample.mkv", + "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", + "size_bytes": 0 + }, + { + "filename": "Poupelle.of.Chimney.Town.2020.720p.BluRay.x264-WiKi.mkv", + "path": "/mnt/Downloads/movies/Poupelle.of.Chimney.Town.2020.720p.BluRay.x264-WiKi/Poupelle.of.Chimney.Town.2020.720p.BluRay.x264-WiKi.mkv", + "size_bytes": 0 + } + ] + }, + { + "identity": { + "type": "movie", + "title": "Tenet", + "year": 2020 + }, + "files": [ + "/mnt/Downloads/movies/Tenet.2020.IMAX.1080p.BluRay.x264.DTS-WiKi/Tenet.2020.IMAX.1080p.BluRay.x264.DTS-WiKi.mkv", + "/mnt/Downloads/movies/Tenet.2020.IMAX.1080p.BluRay.x264.DTS-WiKi/Sample/Tenet.2020.IMAX.1080p.BluRay.x264.DTS-WiKi.Sample.mkv" + ], + "quality_comparison": [ + { + "filename": "Tenet.2020.IMAX.1080p.BluRay.x264.DTS-WiKi.mkv", + "path": "/mnt/Downloads/movies/Tenet.2020.IMAX.1080p.BluRay.x264.DTS-WiKi/Tenet.2020.IMAX.1080p.BluRay.x264.DTS-WiKi.mkv", + "size_bytes": 0 + }, + { + "filename": "Tenet.2020.IMAX.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", + "path": "/mnt/Downloads/movies/Tenet.2020.IMAX.1080p.BluRay.x264.DTS-WiKi/Sample/Tenet.2020.IMAX.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", + "size_bytes": 0 + } + ] + }, + { + "identity": { + "type": "movie", + "title": "Under The Open Sky", + "year": 2020 + }, + "files": [ + "/mnt/Downloads/movies/Under.the.Open.Sky.2020.720p.BluRay.x264-WiKi/Sample/Under.the.Open.Sky.2020.720p.BluRay.x264-WiKi.sample.mkv", + "/mnt/Downloads/movies/Under.the.Open.Sky.2020.720p.BluRay.x264-WiKi/Under.the.Open.Sky.2020.720p.BluRay.x264-WiKi.mkv" + ], + "quality_comparison": [ + { + "filename": "Under.the.Open.Sky.2020.720p.BluRay.x264-WiKi.sample.mkv", + "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", + "size_bytes": 0 + }, + { + "filename": "Under.the.Open.Sky.2020.720p.BluRay.x264-WiKi.mkv", + "path": "/mnt/Downloads/movies/Under.the.Open.Sky.2020.720p.BluRay.x264-WiKi/Under.the.Open.Sky.2020.720p.BluRay.x264-WiKi.mkv", + "size_bytes": 0 + } + ] + }, + { + "identity": { + "type": "movie", + "title": "Wrath Of Man", + "year": 2021 + }, + "files": [ + "/mnt/Downloads/movies/Wrath.of.Man.2021.720p.BluRay.x264-WiKi/Sample/Wrath.of.Man.2021.720p.BluRay.x264-WiKi.Sample.mkv", + "/mnt/Downloads/movies/Wrath.of.Man.2021.720p.BluRay.x264-WiKi/Wrath.of.Man.2021.720p.BluRay.x264-WiKi.mkv" + ], + "quality_comparison": [ + { + "filename": "Wrath.of.Man.2021.720p.BluRay.x264-WiKi.Sample.mkv", + "path": "/mnt/Downloads/movies/Wrath.of.Man.2021.720p.BluRay.x264-WiKi/Sample/Wrath.of.Man.2021.720p.BluRay.x264-WiKi.Sample.mkv", + "size_bytes": 0 + }, + { + "filename": "Wrath.of.Man.2021.720p.BluRay.x264-WiKi.mkv", + "path": "/mnt/Downloads/movies/Wrath.of.Man.2021.720p.BluRay.x264-WiKi/Wrath.of.Man.2021.720p.BluRay.x264-WiKi.mkv", + "size_bytes": 0 + } + ] + }, + { + "identity": { + "type": "movie", + "title": "Intouchables", + "year": 2011 + }, + "files": [ + "/mnt/Downloads/movies/Intouchables.2011.720p.BluRay.x264.DTS-WiKi/Sample/Intouchables.2011.720p.BluRay.x264.DTS-WiKi.Sample.mkv", + "/mnt/Downloads/movies/Intouchables.2011.720p.BluRay.x264.DTS-WiKi/Intouchables.2011.720p.BluRay.x264.DTS-WiKi.mkv" + ], + "quality_comparison": [ + { + "filename": "Intouchables.2011.720p.BluRay.x264.DTS-WiKi.Sample.mkv", + "path": "/mnt/Downloads/movies/Intouchables.2011.720p.BluRay.x264.DTS-WiKi/Sample/Intouchables.2011.720p.BluRay.x264.DTS-WiKi.Sample.mkv", + "size_bytes": 0 + }, + { + "filename": "Intouchables.2011.720p.BluRay.x264.DTS-WiKi.mkv", + "path": "/mnt/Downloads/movies/Intouchables.2011.720p.BluRay.x264.DTS-WiKi/Intouchables.2011.720p.BluRay.x264.DTS-WiKi.mkv", + "size_bytes": 0 + } + ] + }, + { + "identity": { + "type": "movie", + "title": "Extreme Job", + "year": 2019 + }, + "files": [ + "/mnt/Downloads/movies/Extreme.Job.2019.1080p.BluRay.x264.DTS-WiKi/Sample/Extreme.Job.2019.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", + "/mnt/Downloads/movies/Extreme.Job.2019.1080p.BluRay.x264.DTS-WiKi/Extreme.Job.2019.1080p.BluRay.x264.DTS-WiKi.mkv" + ], + "quality_comparison": [ + { + "filename": "Extreme.Job.2019.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", + "path": "/mnt/Downloads/movies/Extreme.Job.2019.1080p.BluRay.x264.DTS-WiKi/Sample/Extreme.Job.2019.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", + "size_bytes": 0 + }, + { + "filename": "Extreme.Job.2019.1080p.BluRay.x264.DTS-WiKi.mkv", + "path": "/mnt/Downloads/movies/Extreme.Job.2019.1080p.BluRay.x264.DTS-WiKi/Extreme.Job.2019.1080p.BluRay.x264.DTS-WiKi.mkv", + "size_bytes": 0 + } + ] + }, + { + "identity": { + "type": "movie", + "title": "The Pass Last Days Of The Samurai", + "year": 2020 + }, + "files": [ + "/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", + "/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" + ], + "quality_comparison": [ + { + "filename": "The.Pass.Last.Days.of.the.Samurai.2020.1080p.BluRay.x265.10bit.DTS-WiKi.mkv", + "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", + "size_bytes": 0 + }, + { + "filename": "The.Pass.Last.Days.of.the.Samurai.2020.1080p.BluRay.x265.10bit.DTS-WiKi.sample.mkv", + "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", + "size_bytes": 0 + } + ] + }, + { + "identity": { + "type": "movie", + "title": "Boss Level", + "year": 2020 + }, + "files": [ + "/mnt/Downloads/movies/Boss.Level.2020.1080p.BluRay.x264.DTS-WiKi/Boss.Level.2020.1080p.BluRay.x264.DTS-WiKi.mkv", + "/mnt/Downloads/movies/Boss.Level.2020.1080p.BluRay.x264.DTS-WiKi/Sample/Boss.Level.2020.1080p.BluRay.x264.DTS-WiKi.Sample.mkv" + ], + "quality_comparison": [ + { + "filename": "Boss.Level.2020.1080p.BluRay.x264.DTS-WiKi.mkv", + "path": "/mnt/Downloads/movies/Boss.Level.2020.1080p.BluRay.x264.DTS-WiKi/Boss.Level.2020.1080p.BluRay.x264.DTS-WiKi.mkv", + "size_bytes": 0 + }, + { + "filename": "Boss.Level.2020.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", + "path": "/mnt/Downloads/movies/Boss.Level.2020.1080p.BluRay.x264.DTS-WiKi/Sample/Boss.Level.2020.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", + "size_bytes": 0 + } + ] + }, + { + "identity": { + "type": "movie", + "title": "The Outpost", + "year": 2020 + }, + "files": [ + "/mnt/Downloads/movies/The.Outpost.2020.720p.BluRay.x264-WiKi/The.Outpost.2020.720p.BluRay.x264-WiKi.mkv", + "/mnt/Downloads/movies/The.Outpost.2020.720p.BluRay.x264-WiKi/Sample/The.Outpost.2020.720p.BluRay.x264-WiKi.Sample.mkv" + ], + "quality_comparison": [ + { + "filename": "The.Outpost.2020.720p.BluRay.x264-WiKi.mkv", + "path": "/mnt/Downloads/movies/The.Outpost.2020.720p.BluRay.x264-WiKi/The.Outpost.2020.720p.BluRay.x264-WiKi.mkv", + "size_bytes": 0 + }, + { + "filename": "The.Outpost.2020.720p.BluRay.x264-WiKi.Sample.mkv", + "path": "/mnt/Downloads/movies/The.Outpost.2020.720p.BluRay.x264-WiKi/Sample/The.Outpost.2020.720p.BluRay.x264-WiKi.Sample.mkv", + "size_bytes": 0 + } + ] + }, + { + "identity": { + "type": "movie", + "title": "Summer Wars", + "year": 2009 + }, + "files": [ + "/mnt/Downloads/movies/Summer.Wars.2009.1080p.BluRay.x264.DTS-WiKi/Sample/Summer.Wars.2009.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", + "/mnt/Downloads/movies/Summer.Wars.2009.1080p.BluRay.x264.DTS-WiKi/Summer.Wars.2009.1080p.BluRay.x264.DTS-WiKi.mkv" + ], + "quality_comparison": [ + { + "filename": "Summer.Wars.2009.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", + "path": "/mnt/Downloads/movies/Summer.Wars.2009.1080p.BluRay.x264.DTS-WiKi/Sample/Summer.Wars.2009.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", + "size_bytes": 0 + }, + { + "filename": "Summer.Wars.2009.1080p.BluRay.x264.DTS-WiKi.mkv", + "path": "/mnt/Downloads/movies/Summer.Wars.2009.1080p.BluRay.x264.DTS-WiKi/Summer.Wars.2009.1080p.BluRay.x264.DTS-WiKi.mkv", + "size_bytes": 0 + } + ] + }, + { + "identity": { + "type": "movie", + "title": "The Crimes That Bind", + "year": 2018 + }, + "files": [ + "/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", + "/mnt/Downloads/movies/The.Crimes.That.Bind.2018.1080p.BluRay.x264.DTS-WiKi/The.Crimes.That.Bind.2018.1080p.BluRay.x264.DTS-WiKi.mkv" + ], + "quality_comparison": [ + { + "filename": "The.Crimes.That.Bind.2018.1080p.BluRay.x264.DTS-WiKi.sample.mkv", + "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", + "size_bytes": 0 + }, + { + "filename": "The.Crimes.That.Bind.2018.1080p.BluRay.x264.DTS-WiKi.mkv", + "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", + "size_bytes": 0 + } + ] + }, + { + "identity": { + "type": "movie", + "title": "Bound", + "year": 1996 + }, + "files": [ + "/mnt/Downloads/movies/Bound.1996.1080p.1080p.BluRay.x264.DTS-WiKi/Bound.1996.1080p.1080p.BluRay.x264.DTS-WiKi.mkv", + "/mnt/Downloads/movies/Bound.1996.1080p.1080p.BluRay.x264.DTS-WiKi/Sample/Bound.1996.1080p.1080p.BluRay.x264.DTS-WiKi.Sample.mkv" + ], + "quality_comparison": [ + { + "filename": "Bound.1996.1080p.1080p.BluRay.x264.DTS-WiKi.mkv", + "path": "/mnt/Downloads/movies/Bound.1996.1080p.1080p.BluRay.x264.DTS-WiKi/Bound.1996.1080p.1080p.BluRay.x264.DTS-WiKi.mkv", + "size_bytes": 0 + }, + { + "filename": "Bound.1996.1080p.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", + "path": "/mnt/Downloads/movies/Bound.1996.1080p.1080p.BluRay.x264.DTS-WiKi/Sample/Bound.1996.1080p.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", + "size_bytes": 0 + } + ] + }, + { + "identity": { + "type": "movie", + "title": "Spider-Man No Way Home", + "year": 2021 + }, + "files": [ + "/mnt/Downloads/movies/Spider-Man.No.Way.Home.2021.720p.BluRay.x264-WiKi/Spider-Man.No.Way.Home.2021.720p.BluRay.x264-WiKi.mkv", + "/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" + ], + "quality_comparison": [ + { + "filename": "Spider-Man.No.Way.Home.2021.720p.BluRay.x264-WiKi.mkv", + "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", + "size_bytes": 0 + }, + { + "filename": "Spider-Man.No.Way.Home.2021.720p.BluRay.x264-WiKi.Sample.mkv", + "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", + "size_bytes": 0 + } + ] + }, + { + "identity": { + "type": "movie", + "title": "Destiny The Tale Of Kamakura", + "year": 2017 + }, + "files": [ + "/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", + "/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" + ], + "quality_comparison": [ + { + "filename": "Destiny.The.Tale.of.Kamakura.2017.1080p.BluRay.x264.DTS-WiKi.mkv", + "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", + "size_bytes": 0 + }, + { + "filename": "Destiny.The.Tale.of.Kamakura.2017.1080p.BluRay.x264.DTS-WiKi.sample.mkv", + "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", + "size_bytes": 0 + } + ] + }, + { + "identity": { + "type": "movie", + "title": "A Christmas Gift From Bob", + "year": 2020 + }, + "files": [ + "/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", + "/mnt/Downloads/movies/A.Christmas.Gift.from.Bob.2020.720p.BluRay.x264-WiKi/A.Christmas.Gift.from.Bob.2020.720p.BluRay.x264-WiKi.mkv" + ], + "quality_comparison": [ + { + "filename": "A.Christmas.Gift.from.Bob.2020.720p.BluRay.x264-WiKi.Sample.mkv", + "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", + "size_bytes": 0 + }, + { + "filename": "A.Christmas.Gift.from.Bob.2020.720p.BluRay.x264-WiKi.mkv", + "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", + "size_bytes": 0 + } + ] + }, + { + "identity": { + "type": "movie", + "title": "Inside Out 2", + "year": 2024 + }, + "files": [ + "/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", + "/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" + ], + "quality_comparison": [ + { + "filename": "Inside.Out.2.2024.1080p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi.mkv", + "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", + "size_bytes": 0 + }, + { + "filename": "Inside.Out.2.2024.PROPER.UHD.BluRay.2160p.10bit.DV.3Audio.TrueHD(Atmos).7.1.x265-beAst.mkv", + "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", + "size_bytes": 0 + } + ] + }, + { + "identity": { + "type": "movie", + "title": "Girls To Buy", + "year": 2021 + }, + "files": [ + "/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", + "/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" + ], + "quality_comparison": [ + { + "filename": "Girls.to.Buy.2021.Uncut.1080p.BluRay.x265.10bit.DTS-WiKi.mkv", + "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", + "size_bytes": 0 + }, + { + "filename": "Girls.to.Buy.2021.Uncut.1080p.BluRay.x265.10bit.DTS-WiKi.Sample.mkv", + "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", + "size_bytes": 0 + } + ] + }, + { + "identity": { + "type": "movie", + "title": "Pig", + "year": 2021 + }, + "files": [ + "/mnt/Downloads/movies/Pig.2021.720p.BluRay.x264-WiKi/Sample/Pig.2021.720p.BluRay.x264-WiKi.Sample.mkv", + "/mnt/Downloads/movies/Pig.2021.720p.BluRay.x264-WiKi/Pig.2021.720p.BluRay.x264-WiKi.mkv" + ], + "quality_comparison": [ + { + "filename": "Pig.2021.720p.BluRay.x264-WiKi.Sample.mkv", + "path": "/mnt/Downloads/movies/Pig.2021.720p.BluRay.x264-WiKi/Sample/Pig.2021.720p.BluRay.x264-WiKi.Sample.mkv", + "size_bytes": 0 + }, + { + "filename": "Pig.2021.720p.BluRay.x264-WiKi.mkv", + "path": "/mnt/Downloads/movies/Pig.2021.720p.BluRay.x264-WiKi/Pig.2021.720p.BluRay.x264-WiKi.mkv", + "size_bytes": 0 + } + ] + }, + { + "identity": { + "type": "movie", + "title": "Your Name", + "year": 2016 + }, + "files": [ + "/mnt/Downloads/movies/Your.Name.2016.RERiP.1080p.BluRay.x264.DTS-WiKi/Sample/Your.Name.2016.RERiP.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", + "/mnt/Downloads/movies/Your.Name.2016.RERiP.1080p.BluRay.x264.DTS-WiKi/Your.Name.2016.RERiP.1080p.BluRay.x264.DTS-WiKi.mkv" + ], + "quality_comparison": [ + { + "filename": "Your.Name.2016.RERiP.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", + "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", + "size_bytes": 0 + }, + { + "filename": "Your.Name.2016.RERiP.1080p.BluRay.x264.DTS-WiKi.mkv", + "path": "/mnt/Downloads/movies/Your.Name.2016.RERiP.1080p.BluRay.x264.DTS-WiKi/Your.Name.2016.RERiP.1080p.BluRay.x264.DTS-WiKi.mkv", + "size_bytes": 0 + } + ] + }, + { + "identity": { + "type": "movie", + "title": "Kakegurui 2 Ultimate Russian Roulette", + "year": 2021 + }, + "files": [ + "/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", + "/mnt/Downloads/movies/Kakegurui.2.Ultimate.Russian.Roulette.2021.720p.BluRay.x264-WiKi/Kakegurui.2.Ultimate.Russian.Roulette.2021.720p.BluRay.x264-WiKi.mkv" + ], + "quality_comparison": [ + { + "filename": "Kakegurui.2.Ultimate.Russian.Roulette.2021.720p.BluRay.x264-WiKi.sample.mkv", + "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", + "size_bytes": 0 + }, + { + "filename": "Kakegurui.2.Ultimate.Russian.Roulette.2021.720p.BluRay.x264-WiKi.mkv", + "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", + "size_bytes": 0 + } + ] + }, + { + "identity": { + "type": "movie", + "title": "A Moment Of Romance", + "year": 1990 + }, + "files": [ + "/mnt/Downloads/movies/A.Moment.of.Romance.1990.1080p.BluRay.x264.DTS-WiKi/A.Moment.of.Romance.1990.1080p.BluRay.x264.DTS-WiKi.mkv", + "/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" + ], + "quality_comparison": [ + { + "filename": "A.Moment.of.Romance.1990.1080p.BluRay.x264.DTS-WiKi.mkv", + "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", + "size_bytes": 0 + }, + { + "filename": "A.Moment.of.Romance.1990.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", + "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", + "size_bytes": 0 + } + ] + }, + { + "identity": { + "type": "movie", + "title": "Golden Slumber", + "year": 2010 + }, + "files": [ + "/mnt/Downloads/movies/Golden.Slumber.2010.1080p.BluRay.x265.10bit.DTS-WiKi/Sample/Golden.Slumber.2010.1080p.BluRay.x265.10bit.DTS-WiKi.Sample.mkv", + "/mnt/Downloads/movies/Golden.Slumber.2010.1080p.BluRay.x265.10bit.DTS-WiKi/Golden.Slumber.2010.1080p.BluRay.x265.10bit.DTS-WiKi.mkv" + ], + "quality_comparison": [ + { + "filename": "Golden.Slumber.2010.1080p.BluRay.x265.10bit.DTS-WiKi.Sample.mkv", + "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", + "size_bytes": 0 + }, + { + "filename": "Golden.Slumber.2010.1080p.BluRay.x265.10bit.DTS-WiKi.mkv", + "path": "/mnt/Downloads/movies/Golden.Slumber.2010.1080p.BluRay.x265.10bit.DTS-WiKi/Golden.Slumber.2010.1080p.BluRay.x265.10bit.DTS-WiKi.mkv", + "size_bytes": 0 + } + ] + }, + { + "identity": { + "type": "movie", + "title": "Godzilla X Kong The New Empire", + "year": 2024 + }, + "files": [ + "/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", + "/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" + ], + "quality_comparison": [ + { + "filename": "Godzilla.x.Kong.The.New.Empire.2024.1080p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi.mkv", + "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", + "size_bytes": 0 + }, + { + "filename": "Godzilla.x.Kong.The.New.Empire.2024.HDR.2160P.WEB.H265-POKE.mkv", + "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", + "size_bytes": 0 + } + ] + }, + { + "identity": { + "type": "movie", + "title": "A Writer'S Odyssey", + "year": 2021 + }, + "files": [ + "/mnt/Downloads/movies/A.Writer's.Odyssey.2021.720p.BluRay.x264-WiKi/Sample/A.Writer's.Odyssey.2021.720p.BluRay.x264-WiKi.Sample.mkv", + "/mnt/Downloads/movies/A.Writer's.Odyssey.2021.720p.BluRay.x264-WiKi/A.Writer's.Odyssey.2021.720p.BluRay.x264-WiKi.mkv" + ], + "quality_comparison": [ + { + "filename": "A.Writer's.Odyssey.2021.720p.BluRay.x264-WiKi.Sample.mkv", + "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", + "size_bytes": 0 + }, + { + "filename": "A.Writer's.Odyssey.2021.720p.BluRay.x264-WiKi.mkv", + "path": "/mnt/Downloads/movies/A.Writer's.Odyssey.2021.720p.BluRay.x264-WiKi/A.Writer's.Odyssey.2021.720p.BluRay.x264-WiKi.mkv", + "size_bytes": 0 + } + ] + }, + { + "identity": { + "type": "movie", + "title": "Baby Driver", + "year": 2017 + }, + "files": [ + "/mnt/Downloads/movies/Baby.Driver.2017.1080p.BluRay.x264.DTS-WiKi/Sample/Baby.Driver.2017.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", + "/mnt/Downloads/movies/Baby.Driver.2017.1080p.BluRay.x264.DTS-WiKi/Baby.Driver.2017.1080p.BluRay.x264.DTS-WiKi.mkv" + ], + "quality_comparison": [ + { + "filename": "Baby.Driver.2017.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", + "path": "/mnt/Downloads/movies/Baby.Driver.2017.1080p.BluRay.x264.DTS-WiKi/Sample/Baby.Driver.2017.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", + "size_bytes": 0 + }, + { + "filename": "Baby.Driver.2017.1080p.BluRay.x264.DTS-WiKi.mkv", + "path": "/mnt/Downloads/movies/Baby.Driver.2017.1080p.BluRay.x264.DTS-WiKi/Baby.Driver.2017.1080p.BluRay.x264.DTS-WiKi.mkv", + "size_bytes": 0 + } + ] + }, + { + "identity": { + "type": "movie", + "title": "Hard Hit", + "year": 2021 + }, + "files": [ + "/mnt/Downloads/movies/Hard.Hit.2021.720p.BluRay.x264-WiKi/Hard.Hit.2021.720p.BluRay.x264-WiKi.mkv", + "/mnt/Downloads/movies/Hard.Hit.2021.720p.BluRay.x264-WiKi/Sample/Hard.Hit.2021.720p.BluRay.x264-WiKi.Sample.mkv" + ], + "quality_comparison": [ + { + "filename": "Hard.Hit.2021.720p.BluRay.x264-WiKi.mkv", + "path": "/mnt/Downloads/movies/Hard.Hit.2021.720p.BluRay.x264-WiKi/Hard.Hit.2021.720p.BluRay.x264-WiKi.mkv", + "size_bytes": 0 + }, + { + "filename": "Hard.Hit.2021.720p.BluRay.x264-WiKi.Sample.mkv", + "path": "/mnt/Downloads/movies/Hard.Hit.2021.720p.BluRay.x264-WiKi/Sample/Hard.Hit.2021.720p.BluRay.x264-WiKi.Sample.mkv", + "size_bytes": 0 + } + ] + }, + { + "identity": { + "type": "movie", + "title": "Tron Ares", + "year": 2025 + }, + "files": [ + "/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", + "/mnt/Downloads/movies/Tron.Ares.2025.Hybrid.1080p.BluRay.DDP7.1.x264-ZoroSenpai.mkv" + ], + "quality_comparison": [ + { + "filename": "Tron Ares 2025 USA BluRay 1080p DTS-HDMA7.1 x265 10bit-CHD.mkv", + "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", + "size_bytes": 0 + }, + { + "filename": "Tron.Ares.2025.Hybrid.1080p.BluRay.DDP7.1.x264-ZoroSenpai.mkv", + "path": "/mnt/Downloads/movies/Tron.Ares.2025.Hybrid.1080p.BluRay.DDP7.1.x264-ZoroSenpai.mkv", + "size_bytes": 0 + } + ] + }, + { + "identity": { + "type": "movie", + "title": "A Man", + "year": 2022 + }, + "files": [ + "/mnt/Downloads/movies/A.Man.2022.1080p.BluRay.x265.10bit.DTS-WiKi/A.Man.2022.1080p.BluRay.x265.10bit.DTS-WiKi.mkv", + "/mnt/Downloads/movies/A.Man.2022.1080p.U-NEXT.WEB-DL.AAC2.0.H.264-xiaopie@CHDWEB.mkv" + ], + "quality_comparison": [ + { + "filename": "A.Man.2022.1080p.BluRay.x265.10bit.DTS-WiKi.mkv", + "path": "/mnt/Downloads/movies/A.Man.2022.1080p.BluRay.x265.10bit.DTS-WiKi/A.Man.2022.1080p.BluRay.x265.10bit.DTS-WiKi.mkv", + "size_bytes": 0 + }, + { + "filename": "A.Man.2022.1080p.U-NEXT.WEB-DL.AAC2.0.H.264-xiaopie@CHDWEB.mkv", + "path": "/mnt/Downloads/movies/A.Man.2022.1080p.U-NEXT.WEB-DL.AAC2.0.H.264-xiaopie@CHDWEB.mkv", + "size_bytes": 0 + } + ] + }, + { + "identity": { + "type": "movie", + "title": "Let Him Go", + "year": 2020 + }, + "files": [ + "/mnt/Downloads/movies/Let.Him.Go.2020.720p.BluRay.x264-WiKi/Sample/Let.Him.Go.2020.720p.BluRay.x264-WiKi.Sample.mkv", + "/mnt/Downloads/movies/Let.Him.Go.2020.720p.BluRay.x264-WiKi/Let.Him.Go.2020.720p.BluRay.x264-WiKi.mkv" + ], + "quality_comparison": [ + { + "filename": "Let.Him.Go.2020.720p.BluRay.x264-WiKi.Sample.mkv", + "path": "/mnt/Downloads/movies/Let.Him.Go.2020.720p.BluRay.x264-WiKi/Sample/Let.Him.Go.2020.720p.BluRay.x264-WiKi.Sample.mkv", + "size_bytes": 0 + }, + { + "filename": "Let.Him.Go.2020.720p.BluRay.x264-WiKi.mkv", + "path": "/mnt/Downloads/movies/Let.Him.Go.2020.720p.BluRay.x264-WiKi/Let.Him.Go.2020.720p.BluRay.x264-WiKi.mkv", + "size_bytes": 0 + } + ] + }, + { + "identity": { + "type": "movie", + "title": "Inside Men", + "year": 2015 + }, + "files": [ + "/mnt/Downloads/movies/Inside.Men.2015.Director's.Cut.720p.BluRay.x264-WiKi/Inside.Men.2015.Director's.Cut.720p.BluRay.x264-WiKi.mkv", + "/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" + ], + "quality_comparison": [ + { + "filename": "Inside.Men.2015.Director's.Cut.720p.BluRay.x264-WiKi.mkv", + "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", + "size_bytes": 0 + }, + { + "filename": "Inside.Men.2015.Director's.Cut.720p.BluRay.x264-WiKi.Sample.mkv", + "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", + "size_bytes": 0 + } + ] + }, + { + "identity": { + "type": "movie", + "title": "The Fable The Killer Who Doesn'T Kill", + "year": 2021 + }, + "files": [ + "/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", + "/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" + ], + "quality_comparison": [ + { + "filename": "The.Fable.The Killer.Who.Doesn't.Kill.2021.1080p.BluRay.x264.DTS-WiKi.sample.mkv", + "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", + "size_bytes": 0 + }, + { + "filename": "The.Fable.The Killer.Who.Doesn't.Kill.2021.1080p.BluRay.x264.DTS-WiKi.mkv", + "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", + "size_bytes": 0 + } + ] + }, + { + "identity": { + "type": "movie", + "title": "Bad Boys For Life", + "year": 2020 + }, + "files": [ + "/mnt/Downloads/movies/Bad.Boys.for.Life.2020.1080p.BluRay.x264-WUTANG/bad.boys.for.life.2020.1080p.bluray.x264-wutang.mkv", + "/mnt/Downloads/movies/Bad.Boys.for.Life.2020.1080p.BluRay.x264-WUTANG/Sample/bad.boys.for.life.2020.1080p.bluray.x264-wutang-sample.mkv" + ], + "quality_comparison": [ + { + "filename": "bad.boys.for.life.2020.1080p.bluray.x264-wutang.mkv", + "path": "/mnt/Downloads/movies/Bad.Boys.for.Life.2020.1080p.BluRay.x264-WUTANG/bad.boys.for.life.2020.1080p.bluray.x264-wutang.mkv", + "size_bytes": 0 + }, + { + "filename": "bad.boys.for.life.2020.1080p.bluray.x264-wutang-sample.mkv", + "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", + "size_bytes": 0 + } + ] + }, + { + "identity": { + "type": "movie", + "title": "Confidential Assignment", + "year": 2017 + }, + "files": [ + "/mnt/Downloads/movies/Confidential.Assignment.2017.1080p.BluRay.x264-WiKi/Confidential.Assignment.2017.1080p.BluRay.x264-WiKi.mkv", + "/mnt/Downloads/movies/Confidential.Assignment.2017.1080p.BluRay.x264-WiKi/Sample/Confidential.Assignment.2017.1080p.BluRay.x264-WiKi.Sample.mkv" + ], + "quality_comparison": [ + { + "filename": "Confidential.Assignment.2017.1080p.BluRay.x264-WiKi.mkv", + "path": "/mnt/Downloads/movies/Confidential.Assignment.2017.1080p.BluRay.x264-WiKi/Confidential.Assignment.2017.1080p.BluRay.x264-WiKi.mkv", + "size_bytes": 0 + }, + { + "filename": "Confidential.Assignment.2017.1080p.BluRay.x264-WiKi.Sample.mkv", + "path": "/mnt/Downloads/movies/Confidential.Assignment.2017.1080p.BluRay.x264-WiKi/Sample/Confidential.Assignment.2017.1080p.BluRay.x264-WiKi.Sample.mkv", + "size_bytes": 0 + } + ] + }, + { + "identity": { + "type": "movie", + "title": "Muzi V Nadeji", + "year": 2011 + }, + "files": [ + "/mnt/Downloads/movies/Muzi.v.nadeji.2011.1080p.BluRay.x264.DTS-WiKi/Sample/Muzi.v.nadeji.2011.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", + "/mnt/Downloads/movies/Muzi.v.nadeji.2011.1080p.BluRay.x264.DTS-WiKi/Muzi.v.nadeji.2011.1080p.BluRay.x264.DTS-WiKi.mkv" + ], + "quality_comparison": [ + { + "filename": "Muzi.v.nadeji.2011.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", + "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", + "size_bytes": 0 + }, + { + "filename": "Muzi.v.nadeji.2011.1080p.BluRay.x264.DTS-WiKi.mkv", + "path": "/mnt/Downloads/movies/Muzi.v.nadeji.2011.1080p.BluRay.x264.DTS-WiKi/Muzi.v.nadeji.2011.1080p.BluRay.x264.DTS-WiKi.mkv", + "size_bytes": 0 + } + ] + }, + { + "identity": { + "type": "movie", + "title": "Maigret Sets A Trap", + "year": 2016 + }, + "files": [ + "/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", + "/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" + ], + "quality_comparison": [ + { + "filename": "Maigret.Sets.a.Trap.2016.720p.BluRay.x264.DTS-WiKi.mkv", + "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", + "size_bytes": 0 + }, + { + "filename": "Maigret.Sets.a.Trap.2016.720p.BluRay.x264.DTS-WiKi.Sample.mkv", + "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", + "size_bytes": 0 + } + ] + }, + { + "identity": { + "type": "movie", + "title": "Maigrets Dead Man", + "year": 2016 + }, + "files": [ + "/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", + "/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" + ], + "quality_comparison": [ + { + "filename": "Maigrets.Dead.Man.2016.720p.BluRay.x264.DTS-WiKi.Sample.mkv", + "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", + "size_bytes": 0 + }, + { + "filename": "Maigrets.Dead.Man.2016.720p.BluRay.x264.DTS-WiKi.mkv", + "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", + "size_bytes": 0 + } + ] + }, + { + "identity": { + "type": "movie", + "title": "Shall We Dance", + "year": 1996 + }, + "files": [ + "/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", + "/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" + ], + "quality_comparison": [ + { + "filename": "Shall.we.dance.1996.1080p.BluRay.x265.10bit.DTS-WiKi.Sample.mkv", + "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", + "size_bytes": 0 + }, + { + "filename": "Shall.we.dance.1996.Remastered.1080p.BluRay.x265.10bit.DTS-WiKi.mkv", + "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", + "size_bytes": 0 + } + ] + }, + { + "identity": { + "type": "movie", + "title": "Way Down", + "year": 2021 + }, + "files": [ + "/mnt/Downloads/movies/Way.Down.2021.720p.BluRay.x264-WiKi/Sample/Way.Down.2021.720p.BluRay.x264-WiKi.Sample.mkv", + "/mnt/Downloads/movies/Way.Down.2021.720p.BluRay.x264-WiKi/Way.Down.2021.720p.BluRay.x264-WiKi.mkv" + ], + "quality_comparison": [ + { + "filename": "Way.Down.2021.720p.BluRay.x264-WiKi.Sample.mkv", + "path": "/mnt/Downloads/movies/Way.Down.2021.720p.BluRay.x264-WiKi/Sample/Way.Down.2021.720p.BluRay.x264-WiKi.Sample.mkv", + "size_bytes": 0 + }, + { + "filename": "Way.Down.2021.720p.BluRay.x264-WiKi.mkv", + "path": "/mnt/Downloads/movies/Way.Down.2021.720p.BluRay.x264-WiKi/Way.Down.2021.720p.BluRay.x264-WiKi.mkv", + "size_bytes": 0 + } + ] + }, + { + "identity": { + "type": "movie", + "title": "Parallel World Love Story", + "year": 2019 + }, + "files": [ + "/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", + "/mnt/Downloads/movies/Parallel.World.Love.Story.2019.1080p.BluRay.x264.DTS-WiKi/Parallel.World.Love.Story.2019.1080p.BluRay.x264.DTS-WiKi.mkv" + ], + "quality_comparison": [ + { + "filename": "Parallel.World.Love.Story.2019.1080p.BluRay.x264.DTS-WiKi.sample.mkv", + "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", + "size_bytes": 0 + }, + { + "filename": "Parallel.World.Love.Story.2019.1080p.BluRay.x264.DTS-WiKi.mkv", + "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", + "size_bytes": 0 + } + ] + }, + { + "identity": { + "type": "movie", + "title": "The Door Into Summer", + "year": 2021 + }, + "files": [ + "/mnt/Downloads/movies/The.Door.Into.Summer.2021.720p.BluRay.x264-WiKi/Sample/The.Door.Into.Summer.2021.720p.BluRay.x264-WiKi.sample.mkv", + "/mnt/Downloads/movies/The.Door.Into.Summer.2021.720p.BluRay.x264-WiKi/The.Door.Into.Summer.2021.720p.BluRay.x264-WiKi.mkv" + ], + "quality_comparison": [ + { + "filename": "The.Door.Into.Summer.2021.720p.BluRay.x264-WiKi.sample.mkv", + "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", + "size_bytes": 0 + }, + { + "filename": "The.Door.Into.Summer.2021.720p.BluRay.x264-WiKi.mkv", + "path": "/mnt/Downloads/movies/The.Door.Into.Summer.2021.720p.BluRay.x264-WiKi/The.Door.Into.Summer.2021.720p.BluRay.x264-WiKi.mkv", + "size_bytes": 0 + } + ] + }, + { + "identity": { + "type": "movie", + "title": "The Confidence Man Jp Sp", + "year": 2019 + }, + "files": [ + "/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", + "/mnt/Downloads/movies/The.Confidence.Man.JP.SP.2019.720p.BluRay.x264-WiKi/The.Confidence.Man.JP.SP.2019.720p.BluRay.x264-WiKi.mkv" + ], + "quality_comparison": [ + { + "filename": "The.Confidence.Man.JP.SP.2019.720p.BluRay.x264-WiKi.sample.mkv", + "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", + "size_bytes": 0 + }, + { + "filename": "The.Confidence.Man.JP.SP.2019.720p.BluRay.x264-WiKi.mkv", + "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", + "size_bytes": 0 + } + ] + }, + { + "identity": { + "type": "movie", + "title": "Luca", + "year": 2021 + }, + "files": [ + "/mnt/Downloads/movies/Luca.2021.1080p.BluRay.x264.DTS-WiKi/Sample/Luca.2021.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", + "/mnt/Downloads/movies/Luca.2021.1080p.BluRay.x264.DTS-WiKi/Luca.2021.1080p.BluRay.x264.DTS-WiKi.mkv" + ], + "quality_comparison": [ + { + "filename": "Luca.2021.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", + "path": "/mnt/Downloads/movies/Luca.2021.1080p.BluRay.x264.DTS-WiKi/Sample/Luca.2021.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", + "size_bytes": 0 + }, + { + "filename": "Luca.2021.1080p.BluRay.x264.DTS-WiKi.mkv", + "path": "/mnt/Downloads/movies/Luca.2021.1080p.BluRay.x264.DTS-WiKi/Luca.2021.1080p.BluRay.x264.DTS-WiKi.mkv", + "size_bytes": 0 + } + ] + }, + { + "identity": { + "type": "movie", + "title": "Dog", + "year": 2022 + }, + "files": [ + "/mnt/Downloads/movies/Dog.2022.1080p.BluRay.x264.DTS-WiKi/Dog.2022.1080p.BluRay.x264.DTS-WiKi.mkv", + "/mnt/Downloads/movies/Dog.2022.1080p.BluRay.x264.DTS-WiKi/Sample/Dog.2022.1080p.BluRay.x264.DTS-WiKi.Sample.mkv" + ], + "quality_comparison": [ + { + "filename": "Dog.2022.1080p.BluRay.x264.DTS-WiKi.mkv", + "path": "/mnt/Downloads/movies/Dog.2022.1080p.BluRay.x264.DTS-WiKi/Dog.2022.1080p.BluRay.x264.DTS-WiKi.mkv", + "size_bytes": 0 + }, + { + "filename": "Dog.2022.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", + "path": "/mnt/Downloads/movies/Dog.2022.1080p.BluRay.x264.DTS-WiKi/Sample/Dog.2022.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", + "size_bytes": 0 + } + ] + }, + { + "identity": { + "type": "movie", + "title": "Detective Vs Sleuths", + "year": 2022 + }, + "files": [ + "/mnt/Downloads/movies/Detective VS. Sleuths 2022 WEB-DL 4K H.265 DDP 2.0 & AAC 4Audios-Dave.mkv", + "/mnt/Downloads/movies/Detective.vs.Sleuths.2022.1080p.BluRay.x265.10bit-WiKi/Sample/Detective.vs.Sleuths.2022.1080p.BluRay.x265.10bit-WiKi.Sample.mkv", + "/mnt/Downloads/movies/Detective.vs.Sleuths.2022.1080p.BluRay.x265.10bit-WiKi/Detective.vs.Sleuths.2022.1080p.BluRay.x265.10bit-WiKi.mkv" + ], + "quality_comparison": [ + { + "filename": "Detective VS. Sleuths 2022 WEB-DL 4K H.265 DDP 2.0 & AAC 4Audios-Dave.mkv", + "path": "/mnt/Downloads/movies/Detective VS. Sleuths 2022 WEB-DL 4K H.265 DDP 2.0 & AAC 4Audios-Dave.mkv", + "size_bytes": 0 + }, + { + "filename": "Detective.vs.Sleuths.2022.1080p.BluRay.x265.10bit-WiKi.Sample.mkv", + "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", + "size_bytes": 0 + }, + { + "filename": "Detective.vs.Sleuths.2022.1080p.BluRay.x265.10bit-WiKi.mkv", + "path": "/mnt/Downloads/movies/Detective.vs.Sleuths.2022.1080p.BluRay.x265.10bit-WiKi/Detective.vs.Sleuths.2022.1080p.BluRay.x265.10bit-WiKi.mkv", + "size_bytes": 0 + } + ] + }, + { + "identity": { + "type": "movie", + "title": "Moonlight Express", + "year": 1999 + }, + "files": [ + "/mnt/Downloads/movies/Moonlight.Express.1999.720p.BluRay.x264-WiKi/Moonlight.Express.1999.720p.BluRay.x264-WiKi.mkv", + "/mnt/Downloads/movies/Moonlight.Express.1999.720p.BluRay.x264-WiKi/Sample/Moonlight.Express.1999.720p.BluRay.x264-WiKi.Sample.mkv" + ], + "quality_comparison": [ + { + "filename": "Moonlight.Express.1999.720p.BluRay.x264-WiKi.mkv", + "path": "/mnt/Downloads/movies/Moonlight.Express.1999.720p.BluRay.x264-WiKi/Moonlight.Express.1999.720p.BluRay.x264-WiKi.mkv", + "size_bytes": 0 + }, + { + "filename": "Moonlight.Express.1999.720p.BluRay.x264-WiKi.Sample.mkv", + "path": "/mnt/Downloads/movies/Moonlight.Express.1999.720p.BluRay.x264-WiKi/Sample/Moonlight.Express.1999.720p.BluRay.x264-WiKi.Sample.mkv", + "size_bytes": 0 + } + ] + }, + { + "identity": { + "type": "movie", + "title": "The Lost City", + "year": 2022 + }, + "files": [ + "/mnt/Downloads/movies/The.Lost.City.2022.1080p.BluRay.x265.10bit-WiKi/Sample/The.Lost.City.2022.1080p.BluRay.x265.10bit-WiKi.Sample.mkv", + "/mnt/Downloads/movies/The.Lost.City.2022.1080p.BluRay.x265.10bit-WiKi/The.Lost.City.2022.1080p.BluRay.x265.10bit-WiKi.mkv" + ], + "quality_comparison": [ + { + "filename": "The.Lost.City.2022.1080p.BluRay.x265.10bit-WiKi.Sample.mkv", + "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", + "size_bytes": 0 + }, + { + "filename": "The.Lost.City.2022.1080p.BluRay.x265.10bit-WiKi.mkv", + "path": "/mnt/Downloads/movies/The.Lost.City.2022.1080p.BluRay.x265.10bit-WiKi/The.Lost.City.2022.1080p.BluRay.x265.10bit-WiKi.mkv", + "size_bytes": 0 + } + ] + }, + { + "identity": { + "type": "movie", + "title": "Shoplifters", + "year": 2018 + }, + "files": [ + "/mnt/Downloads/movies/Shoplifters.2018.1080p.BluRay.x264.DTS-WiKi/Shoplifters.2018.1080p.BluRay.x264.DTS-WiKi.mkv", + "/mnt/Downloads/movies/Shoplifters.2018.1080p.BluRay.x264.DTS-WiKi/Sample/Shoplifters.2018.1080p.BluRay.x264.DTS-WiKi.Sample.mkv" + ], + "quality_comparison": [ + { + "filename": "Shoplifters.2018.1080p.BluRay.x264.DTS-WiKi.mkv", + "path": "/mnt/Downloads/movies/Shoplifters.2018.1080p.BluRay.x264.DTS-WiKi/Shoplifters.2018.1080p.BluRay.x264.DTS-WiKi.mkv", + "size_bytes": 0 + }, + { + "filename": "Shoplifters.2018.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", + "path": "/mnt/Downloads/movies/Shoplifters.2018.1080p.BluRay.x264.DTS-WiKi/Sample/Shoplifters.2018.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", + "size_bytes": 0 + } + ] + }, + { + "identity": { + "type": "movie", + "title": "Shin Ultraman", + "year": 2022 + }, + "files": [ + "/mnt/Downloads/movies/Shin.Ultraman.2022.BluRay.1080p.x264.Atmos.TrueHD7.1-HDChina/Shin.Ultraman.2022.BluRay.1080p.x264.Atmos.TrueHD7.1-HDChina.mkv", + "/mnt/Downloads/movies/Shin.Ultraman.2022.1080p.BluRay.x265.10bit.DTS-WiKi/Shin.Ultraman.2022.1080p.BluRay.x265.10bit.DTS-WiKi.mkv" + ], + "quality_comparison": [ + { + "filename": "Shin.Ultraman.2022.BluRay.1080p.x264.Atmos.TrueHD7.1-HDChina.mkv", + "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", + "size_bytes": 0 + }, + { + "filename": "Shin.Ultraman.2022.1080p.BluRay.x265.10bit.DTS-WiKi.mkv", + "path": "/mnt/Downloads/movies/Shin.Ultraman.2022.1080p.BluRay.x265.10bit.DTS-WiKi/Shin.Ultraman.2022.1080p.BluRay.x265.10bit.DTS-WiKi.mkv", + "size_bytes": 0 + } + ] + }, + { + "identity": { + "type": "movie", + "title": "The Devils Advocate", + "year": 1997 + }, + "files": [ + "/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", + "/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" + ], + "quality_comparison": [ + { + "filename": "The.Devils.Advocate.1997.UNRATED.DC.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", + "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", + "size_bytes": 0 + }, + { + "filename": "The.Devils.Advocate.1997.UNRATED.DC.1080p.BluRay.x264.DTS-WiKi.mkv", + "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", + "size_bytes": 0 + } + ] + }, + { + "identity": { + "type": "movie", + "title": "Fortune Favors Lady Nikuko", + "year": 2021 + }, + "files": [ + "/mnt/Downloads/movies/Fortune.Favors.Lady.Nikuko.2021.1080p.BluRay.x264.DTS-WiKi/Fortune.Favors.Lady.Nikuko.2021.1080p.BluRay.x264.DTS-WiKi.mkv", + "/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" + ], + "quality_comparison": [ + { + "filename": "Fortune.Favors.Lady.Nikuko.2021.1080p.BluRay.x264.DTS-WiKi.mkv", + "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", + "size_bytes": 0 + }, + { + "filename": "Fortune.Favors.Lady.Nikuko.2021.1080p.BluRay.x264.DTS-WiKi.sample.mkv", + "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", + "size_bytes": 0 + } + ] + }, + { + "identity": { + "type": "movie", + "title": "Wotakoi Love Is Hard For Otaku", + "year": 2020 + }, + "files": [ + "/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", + "/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" + ], + "quality_comparison": [ + { + "filename": "Wotakoi.Love.Is.Hard.for.Otaku.2020.720p.BluRay.x264.DTS-WiKi.mkv", + "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", + "size_bytes": 0 + }, + { + "filename": "Wotakoi.Love.Is.Hard.for.Otaku.2020.720p.BluRay.x264.DTS-WiKi.sample.mkv", + "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", + "size_bytes": 0 + } + ] + }, + { + "identity": { + "type": "movie", + "title": "The Mole Song Final", + "year": 2021 + }, + "files": [ + "/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", + "/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" + ], + "quality_comparison": [ + { + "filename": "The.Mole.Song.Final.2021.1080p.BluRay.x265.10bit.DTS-WiKi.sample.mkv", + "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", + "size_bytes": 0 + }, + { + "filename": "The.Mole.Song.Final.2021.1080p.BluRay.x265.10bit.DTS-WiKi.mkv", + "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", + "size_bytes": 0 + } + ] + }, + { + "identity": { + "type": "movie", + "title": "Drive My Car", + "year": 2021 + }, + "files": [ + "/mnt/Downloads/movies/Drive.My.Car.2021.1080p.BluRay.x264.DTS-WiKi/Sample/Drive.My.Car.2021.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", + "/mnt/Downloads/movies/Drive.My.Car.2021.1080p.BluRay.x264.DTS-WiKi/Drive.My.Car.2021.1080p.BluRay.x264.DTS-WiKi.mkv" + ], + "quality_comparison": [ + { + "filename": "Drive.My.Car.2021.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", + "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", + "size_bytes": 0 + }, + { + "filename": "Drive.My.Car.2021.1080p.BluRay.x264.DTS-WiKi.mkv", + "path": "/mnt/Downloads/movies/Drive.My.Car.2021.1080p.BluRay.x264.DTS-WiKi/Drive.My.Car.2021.1080p.BluRay.x264.DTS-WiKi.mkv", + "size_bytes": 0 + } + ] + }, + { + "identity": { + "type": "movie", + "title": "Ghost Book", + "year": 2022 + }, + "files": [ + "/mnt/Downloads/movies/Ghost.Book.2022.1080p.BluRay.x265.10bit.DTS-WiKi/Sample/Ghost.Book.2022.1080p.BluRay.x265.10bit.DTS-WiKi.sample.mkv", + "/mnt/Downloads/movies/Ghost.Book.2022.1080p.BluRay.x265.10bit.DTS-WiKi/Ghost.Book.2022.1080p.BluRay.x265.10bit.DTS-WiKi.mkv" + ], + "quality_comparison": [ + { + "filename": "Ghost.Book.2022.1080p.BluRay.x265.10bit.DTS-WiKi.sample.mkv", + "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", + "size_bytes": 0 + }, + { + "filename": "Ghost.Book.2022.1080p.BluRay.x265.10bit.DTS-WiKi.mkv", + "path": "/mnt/Downloads/movies/Ghost.Book.2022.1080p.BluRay.x265.10bit.DTS-WiKi/Ghost.Book.2022.1080p.BluRay.x265.10bit.DTS-WiKi.mkv", + "size_bytes": 0 + } + ] + }, + { + "identity": { + "type": "movie", + "title": "Deliver Us From Evil", + "year": 2020 + }, + "files": [ + "/mnt/Downloads/movies/Deliver.Us.from.Evil.2020.720p.BluRay.x264-WiKi/Deliver.Us.from.Evil.2020.720p.BluRay.x264-WiKi.mkv", + "/mnt/Downloads/movies/Deliver.Us.from.Evil.2020.720p.BluRay.x264-WiKi/Sample/Deliver.Us.from.Evil.2020.720p.BluRay.x264-WiKi.Sample.mkv" + ], + "quality_comparison": [ + { + "filename": "Deliver.Us.from.Evil.2020.720p.BluRay.x264-WiKi.mkv", + "path": "/mnt/Downloads/movies/Deliver.Us.from.Evil.2020.720p.BluRay.x264-WiKi/Deliver.Us.from.Evil.2020.720p.BluRay.x264-WiKi.mkv", + "size_bytes": 0 + }, + { + "filename": "Deliver.Us.from.Evil.2020.720p.BluRay.x264-WiKi.Sample.mkv", + "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", + "size_bytes": 0 + } + ] + }, + { + "identity": { + "type": "movie", + "title": "Demolition", + "year": 2015 + }, + "files": [ + "/mnt/Downloads/movies/Demolition.2015.720p.BluRay.x264-WiKi/Demolition.2015.720p.BluRay.x264-WiKi.mkv", + "/mnt/Downloads/movies/Demolition.2015.720p.BluRay.x264-WiKi/Sample/Demolition.2015.720p.BluRay.x264-WiKi.sample.mkv" + ], + "quality_comparison": [ + { + "filename": "Demolition.2015.720p.BluRay.x264-WiKi.mkv", + "path": "/mnt/Downloads/movies/Demolition.2015.720p.BluRay.x264-WiKi/Demolition.2015.720p.BluRay.x264-WiKi.mkv", + "size_bytes": 0 + }, + { + "filename": "Demolition.2015.720p.BluRay.x264-WiKi.sample.mkv", + "path": "/mnt/Downloads/movies/Demolition.2015.720p.BluRay.x264-WiKi/Sample/Demolition.2015.720p.BluRay.x264-WiKi.sample.mkv", + "size_bytes": 0 + } + ] + }, + { + "identity": { + "type": "movie", + "title": "Crayon Shinchan The Tornado Legend Of Ninja Mononoke", + "year": 2022 + }, + "files": [ + "/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", + "/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" + ], + "quality_comparison": [ + { + "filename": "Crayon.Shinchan.The.Tornado.Legend.of.Ninja.Mononoke.2022.1080p.BluRay.x265.10bit-WiKi.mkv", + "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", + "size_bytes": 0 + }, + { + "filename": "Crayon.Shinchan.The.Tornado.Legend.of.Ninja.Mononoke.2022.1080p.BluRay.x265.10bit-WiKi.sample.mkv", + "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", + "size_bytes": 0 + } + ] + }, + { + "identity": { + "type": "movie", + "title": "Portrait Of A Beauty", + "year": 2008 + }, + "files": [ + "/mnt/Downloads/movies/Portrait.of.a.Beauty.2008.720p.BluRay.x264-WiKi/Portrait.of.a.Beauty.2008.720p.BluRay.x264-WiKi.mkv", + "/mnt/Downloads/movies/Portrait.of.a.Beauty.2008.720p.BluRay.x264-WiKi/Sample/Portrait.of.a.Beauty.2008.720p.BluRay.x264-WiKi.Sample.mkv" + ], + "quality_comparison": [ + { + "filename": "Portrait.of.a.Beauty.2008.720p.BluRay.x264-WiKi.mkv", + "path": "/mnt/Downloads/movies/Portrait.of.a.Beauty.2008.720p.BluRay.x264-WiKi/Portrait.of.a.Beauty.2008.720p.BluRay.x264-WiKi.mkv", + "size_bytes": 0 + }, + { + "filename": "Portrait.of.a.Beauty.2008.720p.BluRay.x264-WiKi.Sample.mkv", + "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", + "size_bytes": 0 + } + ] + }, + { + "identity": { + "type": "movie", + "title": "Made In Abyss Journey'S Dawn", + "year": 2019 + }, + "files": [ + "/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", + "/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" + ], + "quality_comparison": [ + { + "filename": "Made.in.Abyss.Journey's.Dawn.2019.720p.BluRay.x264-WiKi.mkv", + "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", + "size_bytes": 0 + }, + { + "filename": "Made.in.Abyss.Journey's.Dawn.2019.720p.BluRay.x264-WiKi.sample.mkv", + "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", + "size_bytes": 0 + } + ] + }, + { + "identity": { + "type": "movie", + "title": "The Unbearable Weight Of Massive Talent", + "year": 2022 + }, + "files": [ + "/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", + "/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" + ], + "quality_comparison": [ + { + "filename": "The.Unbearable.Weight.of.Massive.Talent.2022.1080p.BluRay.x265.10bit-WiKi.Sample.mkv", + "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", + "size_bytes": 0 + }, + { + "filename": "The.Unbearable.Weight.of.Massive.Talent.2022.1080p.BluRay.x265.10bit-WiKi.mkv", + "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", + "size_bytes": 0 + } + ] + }, + { + "identity": { + "type": "movie", + "title": "Tonkatsu Dj Agetaro", + "year": 2020 + }, + "files": [ + "/mnt/Downloads/movies/Tonkatsu.DJ.Agetaro.2020.720p.BluRay.x264.DTS-WiKi/Sample/Tonkatsu.DJ.Agetaro.2020.720p.BluRay.x264.DTS-WiKi.sample.mkv", + "/mnt/Downloads/movies/Tonkatsu.DJ.Agetaro.2020.720p.BluRay.x264.DTS-WiKi/Tonkatsu.DJ.Agetaro.2020.720p.BluRay.x264.DTS-WiKi.mkv" + ], + "quality_comparison": [ + { + "filename": "Tonkatsu.DJ.Agetaro.2020.720p.BluRay.x264.DTS-WiKi.sample.mkv", + "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", + "size_bytes": 0 + }, + { + "filename": "Tonkatsu.DJ.Agetaro.2020.720p.BluRay.x264.DTS-WiKi.mkv", + "path": "/mnt/Downloads/movies/Tonkatsu.DJ.Agetaro.2020.720p.BluRay.x264.DTS-WiKi/Tonkatsu.DJ.Agetaro.2020.720p.BluRay.x264.DTS-WiKi.mkv", + "size_bytes": 0 + } + ] + }, + { + "identity": { + "type": "movie", + "title": "Ghostbusters Afterlife", + "year": 2021 + }, + "files": [ + "/mnt/Downloads/movies/Ghostbusters.Afterlife.2021.1080p.BluRay.x264.DTS-WiKi/Ghostbusters.Afterlife.2021.1080p.BluRay.x264.DTS-WiKi.mkv", + "/mnt/Downloads/movies/Ghostbusters.Afterlife.2021.1080p.BluRay.x264.DTS-WiKi/Sample/Ghostbusters.Afterlife.2021.1080p.BluRay.x264.DTS-WiKi.Sample.mkv" + ], + "quality_comparison": [ + { + "filename": "Ghostbusters.Afterlife.2021.1080p.BluRay.x264.DTS-WiKi.mkv", + "path": "/mnt/Downloads/movies/Ghostbusters.Afterlife.2021.1080p.BluRay.x264.DTS-WiKi/Ghostbusters.Afterlife.2021.1080p.BluRay.x264.DTS-WiKi.mkv", + "size_bytes": 0 + }, + { + "filename": "Ghostbusters.Afterlife.2021.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", + "path": "/mnt/Downloads/movies/Ghostbusters.Afterlife.2021.1080p.BluRay.x264.DTS-WiKi/Sample/Ghostbusters.Afterlife.2021.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", + "size_bytes": 0 + } + ] + }, + { + "identity": { + "type": "movie", + "title": "Honest Thief", + "year": 2020 + }, + "files": [ + "/mnt/Downloads/movies/Honest.Thief.2020.720p.BluRay.x264-WiKi/Honest.Thief.2020.720p.BluRay.x264-WiKi.mkv", + "/mnt/Downloads/movies/Honest.Thief.2020.720p.BluRay.x264-WiKi/Sample/Honest.Thief.2020.720p.BluRay.x264-WiKi.Sample.mkv" + ], + "quality_comparison": [ + { + "filename": "Honest.Thief.2020.720p.BluRay.x264-WiKi.mkv", + "path": "/mnt/Downloads/movies/Honest.Thief.2020.720p.BluRay.x264-WiKi/Honest.Thief.2020.720p.BluRay.x264-WiKi.mkv", + "size_bytes": 0 + }, + { + "filename": "Honest.Thief.2020.720p.BluRay.x264-WiKi.Sample.mkv", + "path": "/mnt/Downloads/movies/Honest.Thief.2020.720p.BluRay.x264-WiKi/Sample/Honest.Thief.2020.720p.BluRay.x264-WiKi.Sample.mkv", + "size_bytes": 0 + } + ] + }, + { + "identity": { + "type": "movie", + "title": "The Master Plan", + "year": 2021 + }, + "files": [ + "/mnt/Downloads/movies/The.Master.Plan.2021.720p.BluRay.x264-WiKi/The.Master.Plan.2021.720p.BluRay.x264-WiKi.mkv", + "/mnt/Downloads/movies/The.Master.Plan.2021.720p.BluRay.x264-WiKi/Sample/The.Master.Plan.2021.720p.BluRay.x264-WiKi.sample.mkv" + ], + "quality_comparison": [ + { + "filename": "The.Master.Plan.2021.720p.BluRay.x264-WiKi.mkv", + "path": "/mnt/Downloads/movies/The.Master.Plan.2021.720p.BluRay.x264-WiKi/The.Master.Plan.2021.720p.BluRay.x264-WiKi.mkv", + "size_bytes": 0 + }, + { + "filename": "The.Master.Plan.2021.720p.BluRay.x264-WiKi.sample.mkv", + "path": "/mnt/Downloads/movies/The.Master.Plan.2021.720p.BluRay.x264-WiKi/Sample/The.Master.Plan.2021.720p.BluRay.x264-WiKi.sample.mkv", + "size_bytes": 0 + } + ] + }, + { + "identity": { + "type": "movie", + "title": "The Northman", + "year": 2022 + }, + "files": [ + "/mnt/Downloads/movies/The.Northman.2022.RERiP.1080p.BluRay.x264-WiKi/The.Northman.2022.RERiP.1080p.BluRay.x264-WiKi.mkv", + "/mnt/Downloads/movies/The.Northman.2022.RERiP.1080p.BluRay.x264-WiKi/Sample/The.Northman.2022.RERiP.1080p.BluRay.x264-WiKi.Sample.mkv", + "/mnt/Downloads/movies/The.Northman.2022.1080p.BluRay.x265.10bit-WiKi/Sample/The.Northman.2022.1080p.BluRay.x265.10bit-WiKi.Sample.mkv", + "/mnt/Downloads/movies/The.Northman.2022.1080p.BluRay.x265.10bit-WiKi/The.Northman.2022.1080p.BluRay.x265.10bit-WiKi.mkv" + ], + "quality_comparison": [ + { + "filename": "The.Northman.2022.RERiP.1080p.BluRay.x264-WiKi.mkv", + "path": "/mnt/Downloads/movies/The.Northman.2022.RERiP.1080p.BluRay.x264-WiKi/The.Northman.2022.RERiP.1080p.BluRay.x264-WiKi.mkv", + "size_bytes": 0 + }, + { + "filename": "The.Northman.2022.RERiP.1080p.BluRay.x264-WiKi.Sample.mkv", + "path": "/mnt/Downloads/movies/The.Northman.2022.RERiP.1080p.BluRay.x264-WiKi/Sample/The.Northman.2022.RERiP.1080p.BluRay.x264-WiKi.Sample.mkv", + "size_bytes": 0 + }, + { + "filename": "The.Northman.2022.1080p.BluRay.x265.10bit-WiKi.Sample.mkv", + "path": "/mnt/Downloads/movies/The.Northman.2022.1080p.BluRay.x265.10bit-WiKi/Sample/The.Northman.2022.1080p.BluRay.x265.10bit-WiKi.Sample.mkv", + "size_bytes": 0 + }, + { + "filename": "The.Northman.2022.1080p.BluRay.x265.10bit-WiKi.mkv", + "path": "/mnt/Downloads/movies/The.Northman.2022.1080p.BluRay.x265.10bit-WiKi/The.Northman.2022.1080p.BluRay.x265.10bit-WiKi.mkv", + "size_bytes": 0 + } + ] + }, + { + "identity": { + "type": "movie", + "title": "Innocent Witness", + "year": 2019 + }, + "files": [ + "/mnt/Downloads/movies/Innocent.Witness.2019.720p.BluRay.x264-WiKi/Innocent.Witness.2019.720p.BluRay.x264-WiKi.mkv", + "/mnt/Downloads/movies/Innocent.Witness.2019.720p.BluRay.x264-WiKi/Sample/Innocent.Witness.2019.720p.BluRay.x264-WiKi.Sample.mkv" + ], + "quality_comparison": [ + { + "filename": "Innocent.Witness.2019.720p.BluRay.x264-WiKi.mkv", + "path": "/mnt/Downloads/movies/Innocent.Witness.2019.720p.BluRay.x264-WiKi/Innocent.Witness.2019.720p.BluRay.x264-WiKi.mkv", + "size_bytes": 0 + }, + { + "filename": "Innocent.Witness.2019.720p.BluRay.x264-WiKi.Sample.mkv", + "path": "/mnt/Downloads/movies/Innocent.Witness.2019.720p.BluRay.x264-WiKi/Sample/Innocent.Witness.2019.720p.BluRay.x264-WiKi.Sample.mkv", + "size_bytes": 0 + } + ] + }, + { + "identity": { + "type": "movie", + "title": "Fallen Angels", + "year": 1995 + }, + "files": [ + "/mnt/Downloads/movies/Fallen.Angels.1995.1080p.BluRay.x264.DTS-WiKi/Fallen.Angels.1995.1080p.BluRay.x264.DTS-WiKi.mkv", + "/mnt/Downloads/movies/Fallen.Angels.1995.1080p.BluRay.x264.DTS-WiKi/Sample/Fallen.Angels.1995.1080p.BluRay.x264.DTS-WiKi.Sample.mkv" + ], + "quality_comparison": [ + { + "filename": "Fallen.Angels.1995.1080p.BluRay.x264.DTS-WiKi.mkv", + "path": "/mnt/Downloads/movies/Fallen.Angels.1995.1080p.BluRay.x264.DTS-WiKi/Fallen.Angels.1995.1080p.BluRay.x264.DTS-WiKi.mkv", + "size_bytes": 0 + }, + { + "filename": "Fallen.Angels.1995.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", + "path": "/mnt/Downloads/movies/Fallen.Angels.1995.1080p.BluRay.x264.DTS-WiKi/Sample/Fallen.Angels.1995.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", + "size_bytes": 0 + } + ] + }, + { + "identity": { + "type": "movie", + "title": "The Cell", + "year": 2000 + }, + "files": [ + "/mnt/Downloads/movies/The.Cell.2000.720p.BluRay.x264.DTS-WiKi/The.Cell.2000.720p.BluRay.x264.DTS-WiKi.mkv", + "/mnt/Downloads/movies/The.Cell.2000.720p.BluRay.x264.DTS-WiKi/Sample/The.Cell.2000.720p.BluRay.x264.DTS-WiKi.Sample.mkv" + ], + "quality_comparison": [ + { + "filename": "The.Cell.2000.720p.BluRay.x264.DTS-WiKi.mkv", + "path": "/mnt/Downloads/movies/The.Cell.2000.720p.BluRay.x264.DTS-WiKi/The.Cell.2000.720p.BluRay.x264.DTS-WiKi.mkv", + "size_bytes": 0 + }, + { + "filename": "The.Cell.2000.720p.BluRay.x264.DTS-WiKi.Sample.mkv", + "path": "/mnt/Downloads/movies/The.Cell.2000.720p.BluRay.x264.DTS-WiKi/Sample/The.Cell.2000.720p.BluRay.x264.DTS-WiKi.Sample.mkv", + "size_bytes": 0 + } + ] + }, + { + "identity": { + "type": "movie", + "title": "The Killer", + "year": 2022 + }, + "files": [ + "/mnt/Downloads/movies/The.Killer.2022.1080p.BluRay.x264.DTS-WiKi/The.Killer.2022.1080p.BluRay.x264.DTS-WiKi.mkv", + "/mnt/Downloads/movies/The.Killer.2022.1080p.BluRay.x264.DTS-WiKi/Sample/The.Killer.2022.1080p.BluRay.x264.DTS-WiKi.Sample.mkv" + ], + "quality_comparison": [ + { + "filename": "The.Killer.2022.1080p.BluRay.x264.DTS-WiKi.mkv", + "path": "/mnt/Downloads/movies/The.Killer.2022.1080p.BluRay.x264.DTS-WiKi/The.Killer.2022.1080p.BluRay.x264.DTS-WiKi.mkv", + "size_bytes": 0 + }, + { + "filename": "The.Killer.2022.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", + "path": "/mnt/Downloads/movies/The.Killer.2022.1080p.BluRay.x264.DTS-WiKi/Sample/The.Killer.2022.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", + "size_bytes": 0 + } + ] + }, + { + "identity": { + "type": "movie", + "title": "The Untold Tale Of The Three Kingdoms", + "year": 2020 + }, + "files": [ + "/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", + "/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" + ], + "quality_comparison": [ + { + "filename": "The.Untold.Tale.of.the.Three.Kingdoms.2020.1080p.BluRay.x264.DTS-WiKi.mkv", + "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", + "size_bytes": 0 + }, + { + "filename": "The.Untold.Tale.of.the.Three.Kingdoms.2020.1080p.BluRay.x264.DTS-WiKi.sample.mkv", + "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", + "size_bytes": 0 + } + ] + }, + { + "identity": { + "type": "movie", + "title": "The Little Things", + "year": 2021 + }, + "files": [ + "/mnt/Downloads/movies/The.Little.Things.2021.720p.BluRay.x264-WiKi/Sample/The.Little.Things.2021.720p.BluRay.x264-WiKi.Sample.mkv", + "/mnt/Downloads/movies/The.Little.Things.2021.720p.BluRay.x264-WiKi/The.Little.Things.2021.720p.BluRay.x264-WiKi.mkv" + ], + "quality_comparison": [ + { + "filename": "The.Little.Things.2021.720p.BluRay.x264-WiKi.Sample.mkv", + "path": "/mnt/Downloads/movies/The.Little.Things.2021.720p.BluRay.x264-WiKi/Sample/The.Little.Things.2021.720p.BluRay.x264-WiKi.Sample.mkv", + "size_bytes": 0 + }, + { + "filename": "The.Little.Things.2021.720p.BluRay.x264-WiKi.mkv", + "path": "/mnt/Downloads/movies/The.Little.Things.2021.720p.BluRay.x264-WiKi/The.Little.Things.2021.720p.BluRay.x264-WiKi.mkv", + "size_bytes": 0 + } + ] + }, + { + "identity": { + "type": "movie", + "title": "99 9 Criminal Lawyer The Movie", + "year": 2021 + }, + "files": [ + "/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", + "/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" + ], + "quality_comparison": [ + { + "filename": "99.9.Criminal.Lawyer.The.Movie.2021.1080p.BluRay.x265.10bit.DTS-WiKi.sample.mkv", + "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", + "size_bytes": 0 + }, + { + "filename": "99.9.Criminal.Lawyer.The.Movie.2021.1080p.BluRay.x265.10bit.DTS-WiKi.mkv", + "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", + "size_bytes": 0 + } + ] + }, + { + "identity": { + "type": "movie", + "title": "Sausalito", + "year": 2000 + }, + "files": [ + "/mnt/Downloads/movies/Sausalito.2000.720p.BluRay.x264-WiKi/Sample/Sausalito.2000.720p.BluRay.x264-WiKi.sample.mkv", + "/mnt/Downloads/movies/Sausalito.2000.720p.BluRay.x264-WiKi/Sausalito.2000.720p.BluRay.x264-WiKi.mkv" + ], + "quality_comparison": [ + { + "filename": "Sausalito.2000.720p.BluRay.x264-WiKi.sample.mkv", + "path": "/mnt/Downloads/movies/Sausalito.2000.720p.BluRay.x264-WiKi/Sample/Sausalito.2000.720p.BluRay.x264-WiKi.sample.mkv", + "size_bytes": 0 + }, + { + "filename": "Sausalito.2000.720p.BluRay.x264-WiKi.mkv", + "path": "/mnt/Downloads/movies/Sausalito.2000.720p.BluRay.x264-WiKi/Sausalito.2000.720p.BluRay.x264-WiKi.mkv", + "size_bytes": 0 + } + ] + }, + { + "identity": { + "type": "movie", + "title": "108 Revenge And Adventure Of Goro Kaiba", + "year": 2019 + }, + "files": [ + "/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", + "/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" + ], + "quality_comparison": [ + { + "filename": "108.Revenge.and.Adventure.of.Goro.Kaiba.2019.720p.BluRay.x264-WiKi.mkv", + "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", + "size_bytes": 0 + }, + { + "filename": "108.Revenge.and.Adventure.of.Goro.Kaiba.2019.720p.BluRay.x264-WiKi.sample.mkv", + "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", + "size_bytes": 0 + } + ] + }, + { + "identity": { + "type": "movie", + "title": "Ura Aka L'Aventure", + "year": 2021 + }, + "files": [ + "/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", + "/mnt/Downloads/movies/Ura.Aka.L'Aventure.2021.1080p.BluRay.x264.DTS-WiKi/Ura.Aka.L'Aventure.2021.1080p.BluRay.x264.DTS-WiKi.mkv" + ], + "quality_comparison": [ + { + "filename": "Ura.Aka.L'Aventure.2021.1080p.BluRay.x264.DTS-WiKi.sample.mkv", + "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", + "size_bytes": 0 + }, + { + "filename": "Ura.Aka.L'Aventure.2021.1080p.BluRay.x264.DTS-WiKi.mkv", + "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", + "size_bytes": 0 + } + ] + }, + { + "identity": { + "type": "movie", + "title": "Soul", + "year": 2020 + }, + "files": [ + "/mnt/Downloads/movies/Soul.2020.1080p.BluRay.x264.DTS-WiKi/Soul.2020.1080p.BluRay.x264.DTS-WiKi.mkv", + "/mnt/Downloads/movies/Soul.2020.1080p.BluRay.x264.DTS-WiKi/Sample/Soul.2020.1080p.BluRay.x264.DTS-WiKi.Sample.mkv" + ], + "quality_comparison": [ + { + "filename": "Soul.2020.1080p.BluRay.x264.DTS-WiKi.mkv", + "path": "/mnt/Downloads/movies/Soul.2020.1080p.BluRay.x264.DTS-WiKi/Soul.2020.1080p.BluRay.x264.DTS-WiKi.mkv", + "size_bytes": 0 + }, + { + "filename": "Soul.2020.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", + "path": "/mnt/Downloads/movies/Soul.2020.1080p.BluRay.x264.DTS-WiKi/Sample/Soul.2020.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", + "size_bytes": 0 + } + ] + }, + { + "identity": { + "type": "movie", + "title": "Wu Kong", + "year": 2017 + }, + "files": [ + "/mnt/Downloads/movies/Wu.Kong.2017.1080p.BluRay.x264-WiKi/Wu.Kong.2017.1080p.BluRay.x264-WiKi.mkv", + "/mnt/Downloads/movies/Wu.Kong.2017.1080p.BluRay.x264-WiKi/Sample/Wu.Kong.2017.1080p.BluRay.x264-WiKi.sample.mkv" + ], + "quality_comparison": [ + { + "filename": "Wu.Kong.2017.1080p.BluRay.x264-WiKi.mkv", + "path": "/mnt/Downloads/movies/Wu.Kong.2017.1080p.BluRay.x264-WiKi/Wu.Kong.2017.1080p.BluRay.x264-WiKi.mkv", + "size_bytes": 0 + }, + { + "filename": "Wu.Kong.2017.1080p.BluRay.x264-WiKi.sample.mkv", + "path": "/mnt/Downloads/movies/Wu.Kong.2017.1080p.BluRay.x264-WiKi/Sample/Wu.Kong.2017.1080p.BluRay.x264-WiKi.sample.mkv", + "size_bytes": 0 + } + ] + }, + { + "identity": { + "type": "movie", + "title": "The Program", + "year": 2015 + }, + "files": [ + "/mnt/Downloads/movies/The.Program.2015.1080p.BluRay.x264.DTS-WiKi/The.Program.2015.1080p.BluRay.x264.DTS-WiKi.mkv", + "/mnt/Downloads/movies/The.Program.2015.1080p.BluRay.x264.DTS-WiKi/Sample/The.Program.2015.1080p.BluRay.x264.DTS-WiKi.Sample.mkv" + ], + "quality_comparison": [ + { + "filename": "The.Program.2015.1080p.BluRay.x264.DTS-WiKi.mkv", + "path": "/mnt/Downloads/movies/The.Program.2015.1080p.BluRay.x264.DTS-WiKi/The.Program.2015.1080p.BluRay.x264.DTS-WiKi.mkv", + "size_bytes": 0 + }, + { + "filename": "The.Program.2015.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", + "path": "/mnt/Downloads/movies/The.Program.2015.1080p.BluRay.x264.DTS-WiKi/Sample/The.Program.2015.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", + "size_bytes": 0 + } + ] + }, + { + "identity": { + "type": "movie", + "title": "Mcfarland Usa", + "year": 2015 + }, + "files": [ + "/mnt/Downloads/movies/McFarland.USA.2015.1080p.BluRay.x264.DTS-WiKi/Sample/McFarland.USA.2015.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", + "/mnt/Downloads/movies/McFarland.USA.2015.1080p.BluRay.x264.DTS-WiKi/McFarland.USA.2015.1080p.BluRay.x264.DTS-WiKi.mkv" + ], + "quality_comparison": [ + { + "filename": "McFarland.USA.2015.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", + "path": "/mnt/Downloads/movies/McFarland.USA.2015.1080p.BluRay.x264.DTS-WiKi/Sample/McFarland.USA.2015.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", + "size_bytes": 0 + }, + { + "filename": "McFarland.USA.2015.1080p.BluRay.x264.DTS-WiKi.mkv", + "path": "/mnt/Downloads/movies/McFarland.USA.2015.1080p.BluRay.x264.DTS-WiKi/McFarland.USA.2015.1080p.BluRay.x264.DTS-WiKi.mkv", + "size_bytes": 0 + } + ] + }, + { + "identity": { + "type": "movie", + "title": "Free Guy", + "year": 2021 + }, + "files": [ + "/mnt/Downloads/movies/Free.Guy.2021.1080p.BluRay.x264.DTS-WiKi/Sample/Free.Guy.2021.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", + "/mnt/Downloads/movies/Free.Guy.2021.1080p.BluRay.x264.DTS-WiKi/Free.Guy.2021.1080p.BluRay.x264.DTS-WiKi.mkv" + ], + "quality_comparison": [ + { + "filename": "Free.Guy.2021.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", + "path": "/mnt/Downloads/movies/Free.Guy.2021.1080p.BluRay.x264.DTS-WiKi/Sample/Free.Guy.2021.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", + "size_bytes": 0 + }, + { + "filename": "Free.Guy.2021.1080p.BluRay.x264.DTS-WiKi.mkv", + "path": "/mnt/Downloads/movies/Free.Guy.2021.1080p.BluRay.x264.DTS-WiKi/Free.Guy.2021.1080p.BluRay.x264.DTS-WiKi.mkv", + "size_bytes": 0 + } + ] + }, + { + "identity": { + "type": "movie", + "title": "Obsessed", + "year": 2014 + }, + "files": [ + "/mnt/Downloads/movies/Obsessed.2014.1080p.BluRay.x265.10bit.DTS-WiKi/Sample/Obsessed.2014.1080p.BluRay.x265.10bit.DTS-WiKi.Sample.mkv", + "/mnt/Downloads/movies/Obsessed.2014.1080p.BluRay.x265.10bit.DTS-WiKi/Obsessed.2014.1080p.BluRay.x265.10bit.DTS-WiKi.mkv" + ], + "quality_comparison": [ + { + "filename": "Obsessed.2014.1080p.BluRay.x265.10bit.DTS-WiKi.Sample.mkv", + "path": "/mnt/Downloads/movies/Obsessed.2014.1080p.BluRay.x265.10bit.DTS-WiKi/Sample/Obsessed.2014.1080p.BluRay.x265.10bit.DTS-WiKi.Sample.mkv", + "size_bytes": 0 + }, + { + "filename": "Obsessed.2014.1080p.BluRay.x265.10bit.DTS-WiKi.mkv", + "path": "/mnt/Downloads/movies/Obsessed.2014.1080p.BluRay.x265.10bit.DTS-WiKi/Obsessed.2014.1080p.BluRay.x265.10bit.DTS-WiKi.mkv", + "size_bytes": 0 + } + ] + }, + { + "identity": { + "type": "movie", + "title": "In The Wake", + "year": 2021 + }, + "files": [ + "/mnt/Downloads/movies/In.the.Wake.2021.1080p.BluRay.x264.DTS-WiKi/In.the.Wake.2021.1080p.BluRay.x264.DTS-WiKi.mkv", + "/mnt/Downloads/movies/In.the.Wake.2021.1080p.BluRay.x264.DTS-WiKi/Sample/In.the.Wake.2021.1080p.BluRay.x264.DTS-WiKi.sample.mkv" + ], + "quality_comparison": [ + { + "filename": "In.the.Wake.2021.1080p.BluRay.x264.DTS-WiKi.mkv", + "path": "/mnt/Downloads/movies/In.the.Wake.2021.1080p.BluRay.x264.DTS-WiKi/In.the.Wake.2021.1080p.BluRay.x264.DTS-WiKi.mkv", + "size_bytes": 0 + }, + { + "filename": "In.the.Wake.2021.1080p.BluRay.x264.DTS-WiKi.sample.mkv", + "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", + "size_bytes": 0 + } + ] + }, + { + "identity": { + "type": "movie", + "title": "The Hitman'S Wife'S Bodyguard", + "year": 2021 + }, + "files": [ + "/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", + "/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" + ], + "quality_comparison": [ + { + "filename": "The.Hitman's.Wife's.Bodyguard.2021.720p.BluRay.x264-WiKi.Sample.mkv", + "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", + "size_bytes": 0 + }, + { + "filename": "The.Hitman's.Wife's.Bodyguard.2021.720p.BluRay.x264-WiKi.mkv", + "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", + "size_bytes": 0 + } + ] + }, + { + "identity": { + "type": "movie", + "title": "Midnight In Paris", + "year": 2011 + }, + "files": [ + "/mnt/Downloads/movies/Midnight.in.Paris.2011.1080p.BluRay.x264.DTS-WiKi/Midnight.in.Paris.2011.1080p.BluRay.x264.DTS-WiKi.mkv", + "/mnt/Downloads/movies/Midnight.in.Paris.2011.1080p.BluRay.x264.DTS-WiKi/Sample/Midnight.in.Paris.2011.1080p.BluRay.x264.DTS-WiKi.Sample.mkv" + ], + "quality_comparison": [ + { + "filename": "Midnight.in.Paris.2011.1080p.BluRay.x264.DTS-WiKi.mkv", + "path": "/mnt/Downloads/movies/Midnight.in.Paris.2011.1080p.BluRay.x264.DTS-WiKi/Midnight.in.Paris.2011.1080p.BluRay.x264.DTS-WiKi.mkv", + "size_bytes": 0 + }, + { + "filename": "Midnight.in.Paris.2011.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", + "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", + "size_bytes": 0 + } + ] + }, + { + "identity": { + "type": "movie", + "title": "Boite Noire", + "year": 2021 + }, + "files": [ + "/mnt/Downloads/movies/Boite.noire.2021.1080p.BluRay.x265.10bit.DTS-WiKi/Sample/Boite.noire.2021.1080p.BluRay.x265.10bit.DTS-WiKi.Sample.mkv", + "/mnt/Downloads/movies/Boite.noire.2021.1080p.BluRay.x265.10bit.DTS-WiKi/Boite.noire.2021.1080p.BluRay.x265.10bit.DTS-WiKi.mkv" + ], + "quality_comparison": [ + { + "filename": "Boite.noire.2021.1080p.BluRay.x265.10bit.DTS-WiKi.Sample.mkv", + "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", + "size_bytes": 0 + }, + { + "filename": "Boite.noire.2021.1080p.BluRay.x265.10bit.DTS-WiKi.mkv", + "path": "/mnt/Downloads/movies/Boite.noire.2021.1080p.BluRay.x265.10bit.DTS-WiKi/Boite.noire.2021.1080p.BluRay.x265.10bit.DTS-WiKi.mkv", + "size_bytes": 0 + } + ] + }, + { + "identity": { + "type": "movie", + "title": "Be With You", + "year": 2004 + }, + "files": [ + "/mnt/Downloads/movies/Be.with.You.2004.1080p.BluRay.x264.DTS-WiKi/Be.with.You.2004.1080p.BluRay.x264.DTS-WiKi.mkv", + "/mnt/Downloads/movies/Be.with.You.2004.1080p.BluRay.x264.DTS-WiKi/Sample/Be.with.You.2004.1080p.BluRay.x264.DTS-WiKi.sample.mkv" + ], + "quality_comparison": [ + { + "filename": "Be.with.You.2004.1080p.BluRay.x264.DTS-WiKi.mkv", + "path": "/mnt/Downloads/movies/Be.with.You.2004.1080p.BluRay.x264.DTS-WiKi/Be.with.You.2004.1080p.BluRay.x264.DTS-WiKi.mkv", + "size_bytes": 0 + }, + { + "filename": "Be.with.You.2004.1080p.BluRay.x264.DTS-WiKi.sample.mkv", + "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", + "size_bytes": 0 + } + ] + }, + { + "identity": { + "type": "movie", + "title": "Step", + "year": 2020 + }, + "files": [ + "/mnt/Downloads/movies/Step.2020.720p.BluRay.x264-WiKi/Step.2020.720p.BluRay.x264-WiKi.mkv", + "/mnt/Downloads/movies/Step.2020.720p.BluRay.x264-WiKi/Sample/Step.2020.720p.BluRay.x264-WiKi.sample.mkv" + ], + "quality_comparison": [ + { + "filename": "Step.2020.720p.BluRay.x264-WiKi.mkv", + "path": "/mnt/Downloads/movies/Step.2020.720p.BluRay.x264-WiKi/Step.2020.720p.BluRay.x264-WiKi.mkv", + "size_bytes": 0 + }, + { + "filename": "Step.2020.720p.BluRay.x264-WiKi.sample.mkv", + "path": "/mnt/Downloads/movies/Step.2020.720p.BluRay.x264-WiKi/Sample/Step.2020.720p.BluRay.x264-WiKi.sample.mkv", + "size_bytes": 0 + } + ] + }, + { + "identity": { + "type": "movie", + "title": "Gura Gura", + "year": 2019 + }, + "files": [ + "/mnt/Downloads/movies/Gura.Gura.2019.1080p.BluRay.x264.DTS-WiKi/Gura.Gura.2019.1080p.BluRay.x264.DTS-WiKi.mkv", + "/mnt/Downloads/movies/Gura.Gura.2019.1080p.BluRay.x264.DTS-WiKi/Sample/Gura.Gura.2019.1080p.BluRay.x264.DTS-WiKi.sample.mkv" + ], + "quality_comparison": [ + { + "filename": "Gura.Gura.2019.1080p.BluRay.x264.DTS-WiKi.mkv", + "path": "/mnt/Downloads/movies/Gura.Gura.2019.1080p.BluRay.x264.DTS-WiKi/Gura.Gura.2019.1080p.BluRay.x264.DTS-WiKi.mkv", + "size_bytes": 0 + }, + { + "filename": "Gura.Gura.2019.1080p.BluRay.x264.DTS-WiKi.sample.mkv", + "path": "/mnt/Downloads/movies/Gura.Gura.2019.1080p.BluRay.x264.DTS-WiKi/Sample/Gura.Gura.2019.1080p.BluRay.x264.DTS-WiKi.sample.mkv", + "size_bytes": 0 + } + ] + }, + { + "identity": { + "type": "movie", + "title": "The Hunt", + "year": 2020 + }, + "files": [ + "/mnt/Downloads/movies/The.Hunt.2020.1080p.BluRay.x264.DTS-WiKi/The.Hunt.2020.1080p.BluRay.x264.DTS-WiKi.mkv", + "/mnt/Downloads/movies/The.Hunt.2020.1080p.BluRay.x264.DTS-WiKi/Sample/The.Hunt.2020.1080p.BluRay.x264.DTS-WiKi.Sample.mkv" + ], + "quality_comparison": [ + { + "filename": "The.Hunt.2020.1080p.BluRay.x264.DTS-WiKi.mkv", + "path": "/mnt/Downloads/movies/The.Hunt.2020.1080p.BluRay.x264.DTS-WiKi/The.Hunt.2020.1080p.BluRay.x264.DTS-WiKi.mkv", + "size_bytes": 0 + }, + { + "filename": "The.Hunt.2020.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", + "path": "/mnt/Downloads/movies/The.Hunt.2020.1080p.BluRay.x264.DTS-WiKi/Sample/The.Hunt.2020.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", + "size_bytes": 0 + } + ] + }, + { + "identity": { + "type": "movie", + "title": "My Missing Valentine", + "year": 2020 + }, + "files": [ + "/mnt/Downloads/movies/My.Missing.Valentine.2020.720p.BluRay.x264-WiKi/My.Missing.Valentine.2020.720p.BluRay.x264-WiKi.mkv", + "/mnt/Downloads/movies/My.Missing.Valentine.2020.720p.BluRay.x264-WiKi/Sample/My.Missing.Valentine.2020.720p.BluRay.x264-WiKi.Sample.mkv" + ], + "quality_comparison": [ + { + "filename": "My.Missing.Valentine.2020.720p.BluRay.x264-WiKi.mkv", + "path": "/mnt/Downloads/movies/My.Missing.Valentine.2020.720p.BluRay.x264-WiKi/My.Missing.Valentine.2020.720p.BluRay.x264-WiKi.mkv", + "size_bytes": 0 + }, + { + "filename": "My.Missing.Valentine.2020.720p.BluRay.x264-WiKi.Sample.mkv", + "path": "/mnt/Downloads/movies/My.Missing.Valentine.2020.720p.BluRay.x264-WiKi/Sample/My.Missing.Valentine.2020.720p.BluRay.x264-WiKi.Sample.mkv", + "size_bytes": 0 + } + ] + }, + { + "identity": { + "type": "movie", + "title": "Dirty Grandpa", + "year": 2016 + }, + "files": [ + "/mnt/Downloads/movies/Dirty.Grandpa.2016.1080p.BluRay.x264.DTS-WiKi/Sample/Dirty.Grandpa.2016.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", + "/mnt/Downloads/movies/Dirty.Grandpa.2016.1080p.BluRay.x264.DTS-WiKi/Dirty.Grandpa.2016.1080p.BluRay.x264.DTS-WiKi.mkv" + ], + "quality_comparison": [ + { + "filename": "Dirty.Grandpa.2016.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", + "path": "/mnt/Downloads/movies/Dirty.Grandpa.2016.1080p.BluRay.x264.DTS-WiKi/Sample/Dirty.Grandpa.2016.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", + "size_bytes": 0 + }, + { + "filename": "Dirty.Grandpa.2016.1080p.BluRay.x264.DTS-WiKi.mkv", + "path": "/mnt/Downloads/movies/Dirty.Grandpa.2016.1080p.BluRay.x264.DTS-WiKi/Dirty.Grandpa.2016.1080p.BluRay.x264.DTS-WiKi.mkv", + "size_bytes": 0 + } + ] + }, + { + "identity": { + "type": "movie", + "title": "My Blueberry Nights", + "year": 2007 + }, + "files": [ + "/mnt/Downloads/movies/My.Blueberry.Nights.2007.BluRay.720p.x264.DTS-WiKi/Sample/My.Blueberry.Nights.2007.BluRay.720p.x264.DTS-WiKi.Sample.mkv", + "/mnt/Downloads/movies/My.Blueberry.Nights.2007.BluRay.720p.x264.DTS-WiKi/My.Blueberry.Nights.2007.BluRay.720p.x264.DTS-WiKi.mkv" + ], + "quality_comparison": [ + { + "filename": "My.Blueberry.Nights.2007.BluRay.720p.x264.DTS-WiKi.Sample.mkv", + "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", + "size_bytes": 0 + }, + { + "filename": "My.Blueberry.Nights.2007.BluRay.720p.x264.DTS-WiKi.mkv", + "path": "/mnt/Downloads/movies/My.Blueberry.Nights.2007.BluRay.720p.x264.DTS-WiKi/My.Blueberry.Nights.2007.BluRay.720p.x264.DTS-WiKi.mkv", + "size_bytes": 0 + } + ] + }, + { + "identity": { + "type": "movie", + "title": "Berserk The Golden Age Arc 2 The Battle For Doldrey", + "year": 2012 + }, + "files": [ + "/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", + "/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" + ], + "quality_comparison": [ + { + "filename": "Berserk.The.Golden.Age.Arc.2.The.Battle.for.Doldrey.2012.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", + "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", + "size_bytes": 0 + }, + { + "filename": "Berserk.The.Golden.Age.Arc.2.The.Battle.for.Doldrey.2012.1080p.BluRay.x264.DTS-WiKi.mkv", + "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", + "size_bytes": 0 + } + ] + }, + { + "identity": { + "type": "movie", + "title": "Kim Ji-Young Born", + "year": 1982 + }, + "files": [ + "/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", + "/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" + ], + "quality_comparison": [ + { + "filename": "Kim.Ji-young.Born.1982.2019.1080p.BluRay.x264.DTS-WiKi.mkv", + "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", + "size_bytes": 0 + }, + { + "filename": "Kim.Ji-young.Born.1982.2019.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", + "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", + "size_bytes": 0 + } + ] + }, + { + "identity": { + "type": "movie", + "title": "Anime Supremacy", + "year": 2022 + }, + "files": [ + "/mnt/Downloads/movies/Anime.Supremacy.2022.1080p.BluRay.x265.10bit-WiKi/Anime.Supremacy.2022.1080p.BluRay.x265.10bit-WiKi.mkv", + "/mnt/Downloads/movies/Anime.Supremacy.2022.1080p.BluRay.x265.10bit-WiKi/Sample/Anime.Supremacy.2022.1080p.BluRay.x265.10bit-WiKi.sample.mkv" + ], + "quality_comparison": [ + { + "filename": "Anime.Supremacy.2022.1080p.BluRay.x265.10bit-WiKi.mkv", + "path": "/mnt/Downloads/movies/Anime.Supremacy.2022.1080p.BluRay.x265.10bit-WiKi/Anime.Supremacy.2022.1080p.BluRay.x265.10bit-WiKi.mkv", + "size_bytes": 0 + }, + { + "filename": "Anime.Supremacy.2022.1080p.BluRay.x265.10bit-WiKi.sample.mkv", + "path": "/mnt/Downloads/movies/Anime.Supremacy.2022.1080p.BluRay.x265.10bit-WiKi/Sample/Anime.Supremacy.2022.1080p.BluRay.x265.10bit-WiKi.sample.mkv", + "size_bytes": 0 + } + ] + }, + { + "identity": { + "type": "movie", + "title": "The Confidence Man Jp Hero", + "year": 2022 + }, + "files": [ + "/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", + "/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" + ], + "quality_comparison": [ + { + "filename": "The.Confidence.Man.JP.Hero.2022.1080p.BluRay.x265.10bit.DTS-WiKi.sample.mkv", + "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", + "size_bytes": 0 + }, + { + "filename": "The.Confidence.Man.JP.Hero.2022.1080p.BluRay.x265.10bit.DTS-WiKi.mkv", + "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", + "size_bytes": 0 + } + ] + }, + { + "identity": { + "type": "movie", + "title": "The Attorney", + "year": 2021 + }, + "files": [ + "/mnt/Downloads/movies/The.Attorney.2021.720p.BluRay.x264-WiKi/Sample/The.Attorney.2021.720p.BluRay.x264-WiKi.Sample.mkv", + "/mnt/Downloads/movies/The.Attorney.2021.720p.BluRay.x264-WiKi/The.Attorney.2021.720p.BluRay.x264-WiKi.mkv" + ], + "quality_comparison": [ + { + "filename": "The.Attorney.2021.720p.BluRay.x264-WiKi.Sample.mkv", + "path": "/mnt/Downloads/movies/The.Attorney.2021.720p.BluRay.x264-WiKi/Sample/The.Attorney.2021.720p.BluRay.x264-WiKi.Sample.mkv", + "size_bytes": 0 + }, + { + "filename": "The.Attorney.2021.720p.BluRay.x264-WiKi.mkv", + "path": "/mnt/Downloads/movies/The.Attorney.2021.720p.BluRay.x264-WiKi/The.Attorney.2021.720p.BluRay.x264-WiKi.mkv", + "size_bytes": 0 + } + ] + }, + { + "identity": { + "type": "movie", + "title": "School Meals Time Final Battle", + "year": 2020 + }, + "files": [ + "/mnt/Downloads/movies/School.Meals.Time.Final.Battle.2020.720p.BluRay.x264-WiKi/School.Meals.Time.Final.Battle.2020.720p.BluRay.x264-WiKi.mkv", + "/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" + ], + "quality_comparison": [ + { + "filename": "School.Meals.Time.Final.Battle.2020.720p.BluRay.x264-WiKi.mkv", + "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", + "size_bytes": 0 + }, + { + "filename": "School.Meals.Time.Final.Battle.2020.720p.BluRay.x264-WiKi.sample.mkv", + "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", + "size_bytes": 0 + } + ] + }, + { + "identity": { + "type": "movie", + "title": "Fantastic Beasts The Crimes Of Grindelwald", + "year": 2018 + }, + "files": [ + "/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", + "/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" + ], + "quality_comparison": [ + { + "filename": "Fantastic.Beasts.The.Crimes.of.Grindelwald.2018.720p.BluRay.x264-WiKi.Sample.mkv", + "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", + "size_bytes": 0 + }, + { + "filename": "Fantastic.Beasts.The.Crimes.of.Grindelwald.2018.720p.BluRay.x264-WiKi.mkv", + "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", + "size_bytes": 0 + } + ] + }, + { + "identity": { + "type": "movie", + "title": "1917", + "year": 2019 + }, + "files": [ + "/mnt/Downloads/movies/1917.2019.1080p.BluRay.x264-WiKi/Sample/1917.2019.1080p.BluRay.x264-WiKi.Sample.mkv", + "/mnt/Downloads/movies/1917.2019.1080p.BluRay.x264-WiKi/1917.2019.1080p.BluRay.x264-WiKi.mkv" + ], + "quality_comparison": [ + { + "filename": "1917.2019.1080p.BluRay.x264-WiKi.Sample.mkv", + "path": "/mnt/Downloads/movies/1917.2019.1080p.BluRay.x264-WiKi/Sample/1917.2019.1080p.BluRay.x264-WiKi.Sample.mkv", + "size_bytes": 0 + }, + { + "filename": "1917.2019.1080p.BluRay.x264-WiKi.mkv", + "path": "/mnt/Downloads/movies/1917.2019.1080p.BluRay.x264-WiKi/1917.2019.1080p.BluRay.x264-WiKi.mkv", + "size_bytes": 0 + } + ] + }, + { + "identity": { + "type": "movie", + "title": "Crossing Hennessy", + "year": 2010 + }, + "files": [ + "/mnt/Downloads/movies/Crossing.Hennessy.2010.720p.BluRay.x264.DTS-WiKi/Crossing.Hennessy.2010.720p.BluRay.x264.DTS-WiKi.mkv", + "/mnt/Downloads/movies/Crossing.Hennessy.2010.720p.BluRay.x264.DTS-WiKi/Sample/Crossing.Hennessy.2010.720p.BluRay.x264.DTS-WiKi.Sample.mkv" + ], + "quality_comparison": [ + { + "filename": "Crossing.Hennessy.2010.720p.BluRay.x264.DTS-WiKi.mkv", + "path": "/mnt/Downloads/movies/Crossing.Hennessy.2010.720p.BluRay.x264.DTS-WiKi/Crossing.Hennessy.2010.720p.BluRay.x264.DTS-WiKi.mkv", + "size_bytes": 0 + }, + { + "filename": "Crossing.Hennessy.2010.720p.BluRay.x264.DTS-WiKi.Sample.mkv", + "path": "/mnt/Downloads/movies/Crossing.Hennessy.2010.720p.BluRay.x264.DTS-WiKi/Sample/Crossing.Hennessy.2010.720p.BluRay.x264.DTS-WiKi.Sample.mkv", + "size_bytes": 0 + } + ] + }, + { + "identity": { + "type": "movie", + "title": "Sad Movie", + "year": 2005 + }, + "files": [ + "/mnt/Downloads/movies/Sad.Movie.2005.720p.BluRay.x264-WiKi/Sad.Movie.2005.720p.BluRay.x264-WiKi.mkv", + "/mnt/Downloads/movies/Sad.Movie.2005.720p.BluRay.x264-WiKi/Sample/Sad.Movie.2005.720p.BluRay.x264-WiKi.Sample.mkv" + ], + "quality_comparison": [ + { + "filename": "Sad.Movie.2005.720p.BluRay.x264-WiKi.mkv", + "path": "/mnt/Downloads/movies/Sad.Movie.2005.720p.BluRay.x264-WiKi/Sad.Movie.2005.720p.BluRay.x264-WiKi.mkv", + "size_bytes": 0 + }, + { + "filename": "Sad.Movie.2005.720p.BluRay.x264-WiKi.Sample.mkv", + "path": "/mnt/Downloads/movies/Sad.Movie.2005.720p.BluRay.x264-WiKi/Sample/Sad.Movie.2005.720p.BluRay.x264-WiKi.Sample.mkv", + "size_bytes": 0 + } + ] + }, + { + "identity": { + "type": "movie", + "title": "Masquerade Night", + "year": 2021 + }, + "files": [ + "/mnt/Downloads/movies/Masquerade.Night.2021.1080p.BluRay.x264.DTS-WiKi/Sample/Masquerade.Night.2021.1080p.BluRay.x264.DTS-WiKi.sample.mkv", + "/mnt/Downloads/movies/Masquerade.Night.2021.1080p.BluRay.x264.DTS-WiKi/Masquerade.Night.2021.1080p.BluRay.x264.DTS-WiKi.mkv" + ], + "quality_comparison": [ + { + "filename": "Masquerade.Night.2021.1080p.BluRay.x264.DTS-WiKi.sample.mkv", + "path": "/mnt/Downloads/movies/Masquerade.Night.2021.1080p.BluRay.x264.DTS-WiKi/Sample/Masquerade.Night.2021.1080p.BluRay.x264.DTS-WiKi.sample.mkv", + "size_bytes": 0 + }, + { + "filename": "Masquerade.Night.2021.1080p.BluRay.x264.DTS-WiKi.mkv", + "path": "/mnt/Downloads/movies/Masquerade.Night.2021.1080p.BluRay.x264.DTS-WiKi/Masquerade.Night.2021.1080p.BluRay.x264.DTS-WiKi.mkv", + "size_bytes": 0 + } + ] + }, + { + "identity": { + "type": "movie", + "title": "Druk", + "year": 2020 + }, + "files": [ + "/mnt/Downloads/movies/Druk.2020.720p.BluRay.x264-WiKi/Druk.2020.720p.BluRay.x264-WiKi.mkv", + "/mnt/Downloads/movies/Druk.2020.720p.BluRay.x264-WiKi/Sample/Druk.2020.720p.BluRay.x264-WiKi.Sample.mkv" + ], + "quality_comparison": [ + { + "filename": "Druk.2020.720p.BluRay.x264-WiKi.mkv", + "path": "/mnt/Downloads/movies/Druk.2020.720p.BluRay.x264-WiKi/Druk.2020.720p.BluRay.x264-WiKi.mkv", + "size_bytes": 0 + }, + { + "filename": "Druk.2020.720p.BluRay.x264-WiKi.Sample.mkv", + "path": "/mnt/Downloads/movies/Druk.2020.720p.BluRay.x264-WiKi/Sample/Druk.2020.720p.BluRay.x264-WiKi.Sample.mkv", + "size_bytes": 0 + } + ] + }, + { + "identity": { + "type": "movie", + "title": "Bad Guys The Movie", + "year": 2019 + }, + "files": [ + "/mnt/Downloads/movies/Bad.Guys.The.Movie.2019.720p.BluRay.x264-WiKi/Bad.Guys.The.Movie.2019.720p.BluRay.x264-WiKi.mkv", + "/mnt/Downloads/movies/Bad.Guys.The.Movie.2019.720p.BluRay.x264-WiKi/Sample/Bad.Guys.The.Movie.2019.720p.BluRay.x264-WiKi.Sample.mkv" + ], + "quality_comparison": [ + { + "filename": "Bad.Guys.The.Movie.2019.720p.BluRay.x264-WiKi.mkv", + "path": "/mnt/Downloads/movies/Bad.Guys.The.Movie.2019.720p.BluRay.x264-WiKi/Bad.Guys.The.Movie.2019.720p.BluRay.x264-WiKi.mkv", + "size_bytes": 0 + }, + { + "filename": "Bad.Guys.The.Movie.2019.720p.BluRay.x264-WiKi.Sample.mkv", + "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", + "size_bytes": 0 + } + ] + }, + { + "identity": { + "type": "movie", + "title": "Chickenhare And The Hamster Of Darkness", + "year": 2022 + }, + "files": [ + "/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", + "/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" + ], + "quality_comparison": [ + { + "filename": "Chickenhare.and.the.Hamster.of.Darkness.2022.1080p.BluRay.x265.10bit.DTS-WiKi.mkv", + "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", + "size_bytes": 0 + }, + { + "filename": "Chickenhare.and.the.Hamster.of.Darkness.2022.1080p.BluRay.x265.10bit.DTS-WiKi.Sample.mkv", + "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", + "size_bytes": 0 + } + ] + }, + { + "identity": { + "type": "movie", + "title": "Thermae Romae Ii", + "year": 2014 + }, + "files": [ + "/mnt/Downloads/movies/Thermae.Romae.II.2014.1080p.BluRay.x264.DTS-WiKi/Thermae.Romae.II.2014.1080p.BluRay.x264.DTS-WiKi.mkv", + "/mnt/Downloads/movies/Thermae.Romae.II.2014.1080p.BluRay.x264.DTS-WiKi/Sample/Thermae.Romae.II.2014.1080p.BluRay.x264.DTS-WiKi.sample.mkv" + ], + "quality_comparison": [ + { + "filename": "Thermae.Romae.II.2014.1080p.BluRay.x264.DTS-WiKi.mkv", + "path": "/mnt/Downloads/movies/Thermae.Romae.II.2014.1080p.BluRay.x264.DTS-WiKi/Thermae.Romae.II.2014.1080p.BluRay.x264.DTS-WiKi.mkv", + "size_bytes": 0 + }, + { + "filename": "Thermae.Romae.II.2014.1080p.BluRay.x264.DTS-WiKi.sample.mkv", + "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", + "size_bytes": 0 + } + ] + }, + { + "identity": { + "type": "movie", + "title": "Chilli Laugh Story", + "year": 2022 + }, + "files": [ + "/mnt/Downloads/movies/Chilli.Laugh.Story.2022.1080p.BluRay.x265.10bit-WiKi/Chilli.Laugh.Story.2022.1080p.BluRay.x265.10bit-WiKi.mkv", + "/mnt/Downloads/movies/Chilli.Laugh.Story.2022.1080p.BluRay.x265.10bit-WiKi/Sample/Chilli.Laugh.Story.2022.1080p.BluRay.x265.10bit-WiKi.Sample.mkv" + ], + "quality_comparison": [ + { + "filename": "Chilli.Laugh.Story.2022.1080p.BluRay.x265.10bit-WiKi.mkv", + "path": "/mnt/Downloads/movies/Chilli.Laugh.Story.2022.1080p.BluRay.x265.10bit-WiKi/Chilli.Laugh.Story.2022.1080p.BluRay.x265.10bit-WiKi.mkv", + "size_bytes": 0 + }, + { + "filename": "Chilli.Laugh.Story.2022.1080p.BluRay.x265.10bit-WiKi.Sample.mkv", + "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", + "size_bytes": 0 + } + ] + }, + { + "identity": { + "type": "movie", + "title": "The Confidence Man Jp Princess", + "year": 2020 + }, + "files": [ + "/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", + "/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" + ], + "quality_comparison": [ + { + "filename": "The.Confidence.Man.JP.Princess.2020.1080p.BluRay.x264.DTS-WiKi.mkv", + "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", + "size_bytes": 0 + }, + { + "filename": "The.Confidence.Man.JP.Princess.2020.1080p.BluRay.x264.DTS-WiKi.sample.mkv", + "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", + "size_bytes": 0 + } + ] + }, + { + "identity": { + "type": "movie", + "title": "The Contractor", + "year": 2022 + }, + "files": [ + "/mnt/Downloads/movies/The.Contractor.2022.1080p.BluRay.x265.10bit.DTS-WiKi/Sample/The.Contractor.2022.1080p.BluRay.x265.10bit.DTS-WiKi.Sample.mkv", + "/mnt/Downloads/movies/The.Contractor.2022.1080p.BluRay.x265.10bit.DTS-WiKi/The.Contractor.2022.1080p.BluRay.x265.10bit.DTS-WiKi.mkv" + ], + "quality_comparison": [ + { + "filename": "The.Contractor.2022.1080p.BluRay.x265.10bit.DTS-WiKi.Sample.mkv", + "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", + "size_bytes": 0 + }, + { + "filename": "The.Contractor.2022.1080p.BluRay.x265.10bit.DTS-WiKi.mkv", + "path": "/mnt/Downloads/movies/The.Contractor.2022.1080p.BluRay.x265.10bit.DTS-WiKi/The.Contractor.2022.1080p.BluRay.x265.10bit.DTS-WiKi.mkv", + "size_bytes": 0 + } + ] + }, + { + "identity": { + "type": "series", + "title": "Our Unwritten Seoul", + "season": 1, + "episodes": [ + 8 + ] + }, + "files": [ + "/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", + "/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" + ], + "quality_comparison": [ + { + "filename": "[未知的首尔].Our.Unwritten.Seoul.S01E08.2025.1080p.NF.WEB-DL.x264.AAC-CMCTV.mkv", + "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", + "size_bytes": 0 + }, + { + "filename": "Our.Unwritten.Seoul.S01E08.An.Unconventional.Whole.1080p.NF.WEB-DL.AAC.2.0.H.264-BlackTV.mkv", + "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", + "size_bytes": 0 + } + ] + }, + { + "identity": { + "type": "series", + "title": "Unsere Muetter Unsere Vaeter", + "season": 1, + "episodes": [ + 3 + ] + }, + "files": [ + "/mnt/Downloads/series/Unsere.Muetter.unsere.Vaeter.S01.720p.BluRay.x264-WiKi/Unsere.Muetter.unsere.Vaeter.S01E03.720p.BluRay.x264-WiKi.mkv", + "/mnt/Downloads/series/Unsere.Muetter.unsere.Vaeter.S01.720p.BluRay.x264-WiKi/Sample/Unsere.Muetter.unsere.Vaeter.S01E03.720p.BluRay.x264-WiKi.Sample.mkv" + ], + "quality_comparison": [ + { + "filename": "Unsere.Muetter.unsere.Vaeter.S01E03.720p.BluRay.x264-WiKi.mkv", + "path": "/mnt/Downloads/series/Unsere.Muetter.unsere.Vaeter.S01.720p.BluRay.x264-WiKi/Unsere.Muetter.unsere.Vaeter.S01E03.720p.BluRay.x264-WiKi.mkv", + "size_bytes": 0 + }, + { + "filename": "Unsere.Muetter.unsere.Vaeter.S01E03.720p.BluRay.x264-WiKi.Sample.mkv", + "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", + "size_bytes": 0 + } + ] + }, + { + "identity": { + "type": "series", + "title": "Tokyo Swindlers", + "season": 1, + "episodes": [ + 3, + 3 + ] + }, + "files": [ + "/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", + "/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" + ], + "quality_comparison": [ + { + "filename": "Tokyo.Swindlers.S01E03.Episode03.1080p.NF.WEB-DL.DDP.5.1.H.264-CHDWEB.mkv", + "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", + "size_bytes": 0 + }, + { + "filename": "Tokyo.Swindlers.S01E03.Episode03.1080p.NF.WEB-DL.DDP.5.1.H.264-CHDWEB.mkv", + "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", + "size_bytes": 0 + } + ] + }, + { + "identity": { + "type": "series", + "title": "Tokyo Swindlers", + "season": 1, + "episodes": [ + 6, + 6 + ] + }, + "files": [ + "/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", + "/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" + ], + "quality_comparison": [ + { + "filename": "Tokyo.Swindlers.S01E06.Episode06.1080p.NF.WEB-DL.DDP.5.1.H.264-CHDWEB.mkv", + "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", + "size_bytes": 0 + }, + { + "filename": "Tokyo.Swindlers.S01E06.Episode06.1080p.NF.WEB-DL.DDP.5.1.H.264-CHDWEB.mkv", + "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", + "size_bytes": 0 + } + ] + }, + { + "identity": { + "type": "series", + "title": "Tokyo Swindlers", + "season": 1, + "episodes": [ + 5, + 5 + ] + }, + "files": [ + "/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", + "/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" + ], + "quality_comparison": [ + { + "filename": "Tokyo.Swindlers.S01E05.Episode05.1080p.NF.WEB-DL.DDP.5.1.H.264-CHDWEB.mkv", + "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", + "size_bytes": 0 + }, + { + "filename": "Tokyo.Swindlers.S01E05.Episode05.1080p.NF.WEB-DL.DDP.5.1.H.264-CHDWEB.mkv", + "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", + "size_bytes": 0 + } + ] + }, + { + "identity": { + "type": "series", + "title": "Tokyo Swindlers", + "season": 1, + "episodes": [ + 1, + 1 + ] + }, + "files": [ + "/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", + "/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" + ], + "quality_comparison": [ + { + "filename": "Tokyo.Swindlers.S01E01.Episode01.1080p.NF.WEB-DL.DDP.5.1.H.264-CHDWEB.mkv", + "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", + "size_bytes": 0 + }, + { + "filename": "Tokyo.Swindlers.S01E01.Episode01.1080p.NF.WEB-DL.DDP.5.1.H.264-CHDWEB.mkv", + "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", + "size_bytes": 0 + } + ] + }, + { + "identity": { + "type": "series", + "title": "Tokyo Swindlers", + "season": 1, + "episodes": [ + 2, + 2 + ] + }, + "files": [ + "/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", + "/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" + ], + "quality_comparison": [ + { + "filename": "Tokyo.Swindlers.S01E02.Episode02.1080p.NF.WEB-DL.DDP.5.1.H.264-CHDWEB.mkv", + "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", + "size_bytes": 0 + }, + { + "filename": "Tokyo.Swindlers.S01E02.Episode02.1080p.NF.WEB-DL.DDP.5.1.H.264-CHDWEB.mkv", + "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", + "size_bytes": 0 + } + ] + }, + { + "identity": { + "type": "series", + "title": "Tokyo Swindlers", + "season": 1, + "episodes": [ + 7, + 7 + ] + }, + "files": [ + "/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", + "/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" + ], + "quality_comparison": [ + { + "filename": "Tokyo.Swindlers.S01E07.Episode07.1080p.NF.WEB-DL.DDP.5.1.H.264-CHDWEB.mkv", + "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", + "size_bytes": 0 + }, + { + "filename": "Tokyo.Swindlers.S01E07.Episode07.1080p.NF.WEB-DL.DDP.5.1.H.264-CHDWEB.mkv", + "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", + "size_bytes": 0 + } + ] + }, + { + "identity": { + "type": "series", + "title": "Tokyo Swindlers", + "season": 1, + "episodes": [ + 4, + 4 + ] + }, + "files": [ + "/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", + "/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" + ], + "quality_comparison": [ + { + "filename": "Tokyo.Swindlers.S01E04.Episode04.1080p.NF.WEB-DL.DDP.5.1.H.264-CHDWEB.mkv", + "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", + "size_bytes": 0 + }, + { + "filename": "Tokyo.Swindlers.S01E04.Episode04.1080p.NF.WEB-DL.DDP.5.1.H.264-CHDWEB.mkv", + "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", + "size_bytes": 0 + } + ] + }, + { + "identity": { + "type": "series", + "title": "When Life Gives You Tangerines", + "season": 1, + "episodes": [ + 12 + ] + }, + "files": [ + "/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", + "/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" + ], + "quality_comparison": [ + { + "filename": "When.Life.Gives.You.Tangerines.S01E12.2160p.NF.WEB-DL.H.265.DDP5.1.Atmos-ADWeb.mkv", + "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", + "size_bytes": 0 + }, + { + "filename": "When.Life.Gives.You.Tangerines.S01E12.2025.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-ADWeb.mkv", + "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", + "size_bytes": 0 + } + ] + }, + { + "identity": { + "type": "series", + "title": "Shogun", + "season": 1, + "episodes": [ + 7 + ] + }, + "files": [ + "/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", + "/mnt/Downloads/series/Shogun.S01E07.2024.2160p.DSNP.WEB-DL.DDP5.1.DV.HDR.H.265-HHWEB.mkv" + ], + "quality_comparison": [ + { + "filename": "Shogun.S01E07.2024.2160p.DSNP.WEB-DL.DDP5.1.DV.HDR.H.265-HHWEB.mkv", + "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", + "size_bytes": 0 + }, + { + "filename": "Shogun.S01E07.2024.2160p.DSNP.WEB-DL.DDP5.1.DV.HDR.H.265-HHWEB.mkv", + "path": "/mnt/Downloads/series/Shogun.S01E07.2024.2160p.DSNP.WEB-DL.DDP5.1.DV.HDR.H.265-HHWEB.mkv", + "size_bytes": 0 + } + ] + }, + { + "identity": { + "type": "series", + "title": "Shogun", + "season": 1, + "episodes": [ + 8 + ] + }, + "files": [ + "/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", + "/mnt/Downloads/series/Shogun.S01E08.2024.2160p.DSNP.WEB-DL.H265.HDR.DDP5.1.mkv" + ], + "quality_comparison": [ + { + "filename": "Shogun.S01E08.2024.2160p.DSNP.WEB-DL.DDP5.1.DV.HDR.H.265-HHWEB.mkv", + "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", + "size_bytes": 0 + }, + { + "filename": "Shogun.S01E08.2024.2160p.DSNP.WEB-DL.H265.HDR.DDP5.1.mkv", + "path": "/mnt/Downloads/series/Shogun.S01E08.2024.2160p.DSNP.WEB-DL.H265.HDR.DDP5.1.mkv", + "size_bytes": 0 + } + ] + } + ] +} \ No newline at end of file diff --git a/identities.json b/identities.json new file mode 100644 index 0000000..51d9d23 --- /dev/null +++ b/identities.json @@ -0,0 +1,97174 @@ +{ + "metadata": { + "generated": "2026-02-10T08:49:46", + "source_inventory": "inventory.csv", + "total_files": 4669, + "enriched": true, + "enrichment_policy": "incremental", + "enrichment_refresh_mode": "incremental" + }, + "movies": [ + { + "path": "/mnt/Downloads/movies/Land.of.Bad.2024.1080p.BluRay.x265.10bit.TrueHD5.1-WiKi/Land.of.Bad.2024.1080p.BluRay.x265.10bit.TrueHD5.1-WiKi.mkv", + "filename": "Land.of.Bad.2024.1080p.BluRay.x265.10bit.TrueHD5.1-WiKi.mkv", + "category": "movie", + "title": "Land Of Bad", + "year": 2024, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:969492", + "title_zh": "惊天激战", + "title_en": "Land of Bad", + "translation_source": "tmdb", + "reputation_score": 7.266, + "reputation_votes": 1414, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"969492\"}" + }, + "display_title": "惊天激战 Land of Bad" + }, + { + "path": "/mnt/Downloads/movies/Hunt.2022.1080p.BluRay.x265.10bit.TrueHD5.1-WiKi/Hunt.2022.1080p.BluRay.x265.10bit.TrueHD5.1-WiKi.mkv", + "filename": "Hunt.2022.1080p.BluRay.x265.10bit.TrueHD5.1-WiKi.mkv", + "category": "movie", + "title": "Hunt", + "year": 2022, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:1199324", + "title_zh": "Hunt", + "title_en": "Hunt", + "translation_source": "tmdb", + "reputation_score": 0.0, + "reputation_votes": 1, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"1199324\"}" + }, + "display_title": "Hunt" + }, + { + "path": "/mnt/Downloads/movies/Your.Eyes.Tell.2020.720p.BluRay.x264-WiKi/Sample/Your.Eyes.Tell.2020.720p.BluRay.x264-WiKi.sample.mkv", + "filename": "Your.Eyes.Tell.2020.720p.BluRay.x264-WiKi.sample.mkv", + "category": "movie", + "title": "Your Eyes Tell", + "year": 2020, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:730154", + "title_zh": "你的眼睛在追问", + "title_en": "きみの瞳が問いかけている", + "translation_source": "tmdb", + "reputation_score": 8.532, + "reputation_votes": 501, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"730154\"}" + }, + "display_title": "你的眼睛在追问 きみの瞳が問いかけている" + }, + { + "path": "/mnt/Downloads/movies/Your.Eyes.Tell.2020.720p.BluRay.x264-WiKi/Your.Eyes.Tell.2020.720p.BluRay.x264-WiKi.mkv", + "filename": "Your.Eyes.Tell.2020.720p.BluRay.x264-WiKi.mkv", + "category": "movie", + "title": "Your Eyes Tell", + "year": 2020, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:730154", + "title_zh": "你的眼睛在追问", + "title_en": "きみの瞳が問いかけている", + "translation_source": "tmdb", + "reputation_score": 8.532, + "reputation_votes": 501, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"730154\"}" + }, + "display_title": "你的眼睛在追问 きみの瞳が問いかけている" + }, + { + "path": "/mnt/Downloads/movies/Wish.2020.1080p.BluRay.x264.DTS-WiKi/Sample/Wish.2020.1080p.BluRay.x264.DTS-WiKi.sample.mkv", + "filename": "Wish.2020.1080p.BluRay.x264.DTS-WiKi.sample.mkv", + "category": "movie", + "title": "Wish", + "year": 2020, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:774696", + "title_zh": "Wishlist", + "title_en": "Wishlist", + "translation_source": "tmdb", + "reputation_score": 6.0, + "reputation_votes": 1, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"774696\"}" + }, + "display_title": "Wishlist" + }, + { + "path": "/mnt/Downloads/movies/Wish.2020.1080p.BluRay.x264.DTS-WiKi/Wish.2020.1080p.BluRay.x264.DTS-WiKi.mkv", + "filename": "Wish.2020.1080p.BluRay.x264.DTS-WiKi.mkv", + "category": "movie", + "title": "Wish", + "year": 2020, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:774696", + "title_zh": "Wishlist", + "title_en": "Wishlist", + "translation_source": "tmdb", + "reputation_score": 6.0, + "reputation_votes": 1, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"774696\"}" + }, + "display_title": "Wishlist" + }, + { + "path": "/mnt/Downloads/movies/Amsterdam.2022.1080p.BluRay.x265.10bit.DTS-WiKi/Sample/Amsterdam.2022.1080p.BluRay.x265.10bit.DTS-WiKi.Sample.mkv", + "filename": "Amsterdam.2022.1080p.BluRay.x265.10bit.DTS-WiKi.Sample.mkv", + "category": "movie", + "title": "Amsterdam", + "year": 2022, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:664469", + "title_zh": "阿姆斯特丹", + "title_en": "Amsterdam", + "translation_source": "tmdb", + "reputation_score": 6.065, + "reputation_votes": 1770, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"664469\"}" + }, + "display_title": "阿姆斯特丹 Amsterdam" + }, + { + "path": "/mnt/Downloads/movies/Amsterdam.2022.1080p.BluRay.x265.10bit.DTS-WiKi/Amsterdam.2022.1080p.BluRay.x265.10bit.DTS-WiKi.mkv", + "filename": "Amsterdam.2022.1080p.BluRay.x265.10bit.DTS-WiKi.mkv", + "category": "movie", + "title": "Amsterdam", + "year": 2022, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:664469", + "title_zh": "阿姆斯特丹", + "title_en": "Amsterdam", + "translation_source": "tmdb", + "reputation_score": 6.065, + "reputation_votes": 1770, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"664469\"}" + }, + "display_title": "阿姆斯特丹 Amsterdam" + }, + { + "path": "/mnt/Downloads/movies/Legacy.Of.Lies.2020.1080p.BluRay.x264.DTS-PTH/Legacy.Of.Lies.2020.1080p.BluRay.x264.DTS-PTH.mkv", + "filename": "Legacy.Of.Lies.2020.1080p.BluRay.x264.DTS-PTH.mkv", + "category": "movie", + "title": "Legacy Of Lies", + "year": 2020, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:601165", + "title_zh": "谍海危情", + "title_en": "Legacy of Lies", + "translation_source": "tmdb", + "reputation_score": 5.5, + "reputation_votes": 249, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"601165\"}" + }, + "display_title": "谍海危情 Legacy of Lies" + }, + { + "path": "/mnt/Downloads/movies/Food.Luck.2020.720p.BluRay.x264-WiKi/Sample/Food.Luck.2020.720p.BluRay.x264-WiKi.sample.mkv", + "filename": "Food.Luck.2020.720p.BluRay.x264-WiKi.sample.mkv", + "category": "movie", + "title": "Food Luck", + "year": 2020, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:746554", + "title_zh": "食运", + "title_en": "フード・ラック!食運", + "translation_source": "tmdb", + "reputation_score": 5.8, + "reputation_votes": 6, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"746554\"}" + }, + "display_title": "食运 フード・ラック!食運" + }, + { + "path": "/mnt/Downloads/movies/Food.Luck.2020.720p.BluRay.x264-WiKi/Food.Luck.2020.720p.BluRay.x264-WiKi.mkv", + "filename": "Food.Luck.2020.720p.BluRay.x264-WiKi.mkv", + "category": "movie", + "title": "Food Luck", + "year": 2020, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:746554", + "title_zh": "食运", + "title_en": "フード・ラック!食運", + "translation_source": "tmdb", + "reputation_score": 5.8, + "reputation_votes": 6, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"746554\"}" + }, + "display_title": "食运 フード・ラック!食運" + }, + { + "path": "/mnt/Downloads/movies/Next.Door.Neighbor.2020.720p.BluRay.x264-WiKi/Sample/Next.Door.Neighbor.2020.720p.BluRay.x264-WiKi.Sample.mkv", + "filename": "Next.Door.Neighbor.2020.720p.BluRay.x264-WiKi.Sample.mkv", + "category": "movie", + "title": "Next Door Neighbor", + "year": 2020, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:592608", + "title_zh": "Kill Thy Neighbor", + "title_en": "Kill Thy Neighbor", + "translation_source": "tmdb", + "reputation_score": 5.2, + "reputation_votes": 15, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"592608\"}" + }, + "display_title": "Kill Thy Neighbor" + }, + { + "path": "/mnt/Downloads/movies/Next.Door.Neighbor.2020.720p.BluRay.x264-WiKi/Next.Door.Neighbor.2020.720p.BluRay.x264-WiKi.mkv", + "filename": "Next.Door.Neighbor.2020.720p.BluRay.x264-WiKi.mkv", + "category": "movie", + "title": "Next Door Neighbor", + "year": 2020, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:592608", + "title_zh": "Kill Thy Neighbor", + "title_en": "Kill Thy Neighbor", + "translation_source": "tmdb", + "reputation_score": 5.2, + "reputation_votes": 15, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"592608\"}" + }, + "display_title": "Kill Thy Neighbor" + }, + { + "path": "/mnt/Downloads/movies/Offbeat.Cops.2022.1080p.BluRay.x265.10bit-WiKi/Offbeat.Cops.2022.1080p.BluRay.x265.10bit-WiKi.mkv", + "filename": "Offbeat.Cops.2022.1080p.BluRay.x265.10bit-WiKi.mkv", + "category": "movie", + "title": "Offbeat Cops", + "year": 2022, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:961381", + "title_zh": "调职到乐队!", + "title_en": "異動辞令は音楽隊!", + "translation_source": "tmdb", + "reputation_score": 6.545, + "reputation_votes": 11, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"961381\"}" + }, + "display_title": "调职到乐队! 異動辞令は音楽隊!" + }, + { + "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", + "filename": "Bullet.Train.2022.2160p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi.mkv", + "category": "movie", + "title": "Bullet Train", + "year": 2022, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:718930", + "title_zh": "杀手疾风号", + "title_en": "Bullet Train", + "translation_source": "tmdb", + "reputation_score": 7.417, + "reputation_votes": 7239, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"718930\"}" + }, + "display_title": "杀手疾风号 Bullet Train" + }, + { + "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", + "filename": "R.I.P.D.2013.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", + "category": "movie", + "title": "R I P D", + "year": 2013, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:49524", + "title_zh": "冥界警局", + "title_en": "R.I.P.D.", + "translation_source": "tmdb", + "reputation_score": 5.852, + "reputation_votes": 4220, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"49524\"}" + }, + "display_title": "冥界警局 R.I.P.D." + }, + { + "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", + "filename": "R.I.P.D.2013.1080p.BluRay.x264.DTS-WiKi.mkv", + "category": "movie", + "title": "R I P D", + "year": 2013, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:49524", + "title_zh": "冥界警局", + "title_en": "R.I.P.D.", + "translation_source": "tmdb", + "reputation_score": 5.852, + "reputation_votes": 4220, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"49524\"}" + }, + "display_title": "冥界警局 R.I.P.D." + }, + { + "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", + "filename": "Fast.X.2023.1080p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi.mkv", + "category": "movie", + "title": "Fast X", + "year": 2023, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:385687", + "title_zh": "速度与激情10", + "title_en": "Fast X", + "translation_source": "tmdb", + "reputation_score": 7.005, + "reputation_votes": 6186, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"385687\"}" + }, + "display_title": "速度与激情10 Fast X" + }, + { + "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", + "filename": "The.Fall.Guy.2024.1080p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi.mkv", + "category": "movie", + "title": "The Fall Guy", + "year": 2024, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:746036", + "title_zh": "特技狂人", + "title_en": "The Fall Guy", + "translation_source": "tmdb", + "reputation_score": 6.967, + "reputation_votes": 3491, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"746036\"}" + }, + "display_title": "特技狂人 The Fall Guy" + }, + { + "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", + "filename": "Shaolin.Soccer.2001.BluRay.1080p.x265.10bit.2Audio.MNHD-FRDS.mkv", + "category": "movie", + "title": "Shaolin Soccer", + "year": 2001, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:11770", + "title_zh": "少林足球", + "title_en": "少林足球", + "translation_source": "tmdb", + "reputation_score": 7.15, + "reputation_votes": 2456, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"11770\"}" + }, + "display_title": "少林足球" + }, + { + "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", + "filename": "The.Mermaid.2016.BluRay.1080p.x265.10bit.2Audio.MNHD-FRDS.mkv", + "category": "movie", + "title": "The Mermaid", + "year": 2016, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:702210", + "title_zh": "Time and the Mermaid", + "title_en": "Time and the Mermaid", + "translation_source": "tmdb", + "reputation_score": 0.0, + "reputation_votes": 1, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"702210\"}" + }, + "display_title": "Time and the Mermaid" + }, + { + "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", + "filename": "Justice.My.Foot.1992.BluRay.1080p.x265.10bit.2Audio.MNHD-FRDS.mkv", + "category": "movie", + "title": "Justice My Foot", + "year": 1992, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:32517", + "title_zh": "审死官", + "title_en": "審死官", + "translation_source": "tmdb", + "reputation_score": 6.7, + "reputation_votes": 114, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"32517\"}" + }, + "display_title": "审死官 審死官" + }, + { + "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", + "filename": "The.Mad.Monk.1993.BluRay.1080p.x265.10bit.2Audio.MNHD-FRDS.mkv", + "category": "movie", + "title": "The Mad Monk", + "year": 1993, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:75197", + "title_zh": "济公", + "title_en": "濟公", + "translation_source": "tmdb", + "reputation_score": 5.8, + "reputation_votes": 62, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"75197\"}" + }, + "display_title": "济公 濟公" + }, + { + "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", + "filename": "Royal.Tramp.1992.BluRay.1080p.x265.10bit.2Audio.MNHD-FRDS.mkv", + "category": "movie", + "title": "Royal Tramp", + "year": 1992, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:51731", + "title_zh": "鹿鼎记II神龙教", + "title_en": "鹿鼎記 II : 神龍敎", + "translation_source": "tmdb", + "reputation_score": 7.107, + "reputation_votes": 98, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"51731\"}" + }, + "display_title": "鹿鼎记II神龙教 鹿鼎記 II : 神龍敎" + }, + { + "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", + "filename": "Kung.Fu.Hustle.2004.BluRay.1080p.x265.10bit.2Audio.MNHD-FRDS.mkv", + "category": "movie", + "title": "Kung Fu Hustle", + "year": 2004, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:9470", + "title_zh": "功夫", + "title_en": "功夫", + "translation_source": "tmdb", + "reputation_score": 7.481, + "reputation_votes": 3071, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"9470\"}" + }, + "display_title": "功夫" + }, + { + "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", + "filename": "Legend.of.the.Dragon.1990.BluRay.1080p.x265.10bit.2Audio.MNHD-FRDS.mkv", + "category": "movie", + "title": "Legend Of The Dragon", + "year": 1990, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:1279822", + "title_zh": "Legend of the Lost Dragon", + "title_en": "Legend of the Lost Dragon", + "translation_source": "tmdb", + "reputation_score": 0.0, + "reputation_votes": 1, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"1279822\"}" + }, + "display_title": "Legend of the Lost Dragon" + }, + { + "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", + "filename": "Fight.Back.to.School.2.1992.BluRay.1080p.x265.10bit.2Audio.MNHD-FRDS.mkv", + "category": "movie", + "title": "Fight Back To School 2", + "year": 1992, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:53165", + "title_zh": "逃学威龙2", + "title_en": "逃學威龍2", + "translation_source": "tmdb", + "reputation_score": 6.764, + "reputation_votes": 108, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"53165\"}" + }, + "display_title": "逃学威龙2 逃學威龍2" + }, + { + "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", + "filename": "A.Chinese.Odyssey.Part.1.1995.BluRay.1080p.x265.10bit.2Audio.MNHD-FRDS.mkv", + "category": "movie", + "title": "A Chinese Odyssey Part 1", + "year": 1995, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:13345", + "title_zh": "大话西游之月光宝盒", + "title_en": "西遊記第壹佰零壹回之月光寶盒", + "translation_source": "tmdb", + "reputation_score": 7.554, + "reputation_votes": 298, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"13345\"}" + }, + "display_title": "大话西游之月光宝盒 西遊記第壹佰零壹回之月光寶盒" + }, + { + "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", + "filename": "CJ7.2008.BluRay.1080p.x265.10bit.2Audio.MNHD-FRDS.mkv", + "category": "movie", + "title": "Cj7", + "year": 2008, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:13688", + "title_zh": "长江七号", + "title_en": "長江七號", + "translation_source": "tmdb", + "reputation_score": 7.3, + "reputation_votes": 772, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"13688\"}" + }, + "display_title": "长江七号 長江七號" + }, + { + "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", + "filename": "All's.Well.End's.Well.1992.Extended.BluRay.1080p.x265.10bit.2Audio.MNHD-FRDS.mkv", + "category": "movie", + "title": "All'S Well End'S Well", + "year": 1992, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:60145", + "title_zh": "家有喜事", + "title_en": "家有囍事", + "translation_source": "tmdb", + "reputation_score": 7.0, + "reputation_votes": 88, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"60145\"}" + }, + "display_title": "家有喜事 家有囍事" + }, + { + "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", + "filename": "Sixty.Million.Dollar.Man.1995.BluRay.1080p.x265.10bit.2Audio.MNHD-FRDS.mkv", + "category": "movie", + "title": "Sixty Million Dollar Man", + "year": 1995, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:52324", + "title_zh": "百变星君", + "title_en": "百變星君", + "translation_source": "tmdb", + "reputation_score": 6.5, + "reputation_votes": 90, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"52324\"}" + }, + "display_title": "百变星君 百變星君" + }, + { + "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", + "filename": "Journey.to.the.West.The.Demons.Strike.Back.2017.BluRay.1080p.x265.10bit.2Audio.MNHD-FRDS.mkv", + "category": "movie", + "title": "Journey To The West The Demons Strike Back", + "year": 2017, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:435800", + "title_zh": "西游伏妖篇", + "title_en": "西游伏妖篇", + "translation_source": "tmdb", + "reputation_score": 5.817, + "reputation_votes": 126, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"435800\"}" + }, + "display_title": "西游伏妖篇" + }, + { + "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", + "filename": "When.Fortune.Smiles.1990.BluRay.1080p.x265.10bit.2Audio.MNHD-FRDS.mkv", + "category": "movie", + "title": "When Fortune Smiles", + "year": 1990, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:135061", + "title_zh": "无敌幸运星", + "title_en": "無敵幸運星", + "translation_source": "tmdb", + "reputation_score": 6.8, + "reputation_votes": 33, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"135061\"}" + }, + "display_title": "无敌幸运星 無敵幸運星" + }, + { + "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", + "filename": "Final.Justice.1988.BluRay.1080p.x265.10bit.2Audio.MNHD-FRDS.mkv", + "category": "movie", + "title": "Final Justice", + "year": 1988, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:69727", + "title_zh": "霹雳先锋", + "title_en": "霹靂先鋒", + "translation_source": "tmdb", + "reputation_score": 6.0, + "reputation_votes": 26, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"69727\"}" + }, + "display_title": "霹雳先锋 霹靂先鋒" + }, + { + "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", + "filename": "Tricky.Brains.1991.BluRay.1080p.x265.10bit.2Audio.MNHD-FRDS.mkv", + "category": "movie", + "title": "Tricky Brains", + "year": 1991, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:41364", + "title_zh": "整蛊专家", + "title_en": "整蠱專家", + "translation_source": "tmdb", + "reputation_score": 7.114, + "reputation_votes": 88, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"41364\"}" + }, + "display_title": "整蛊专家 整蠱專家" + }, + { + "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", + "filename": "Hail.the.Judge.1994.BluRay.1080p.x265.10bit.2Audio.MNHD-FRDS.mkv", + "category": "movie", + "title": "Hail The Judge", + "year": 1994, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:55156", + "title_zh": "九品芝麻官", + "title_en": "九品芝麻官", + "translation_source": "tmdb", + "reputation_score": 7.4, + "reputation_votes": 145, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"55156\"}" + }, + "display_title": "九品芝麻官" + }, + { + "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", + "filename": "Look.Out.Officer.1990.BluRay.1080p.x265.10bit.2Audio.MNHD-FRDS.mkv", + "category": "movie", + "title": "Look Out Officer", + "year": 1990, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:138960", + "title_zh": "师兄撞鬼", + "title_en": "師兄撞鬼", + "translation_source": "tmdb", + "reputation_score": 6.1, + "reputation_votes": 42, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"138960\"}" + }, + "display_title": "师兄撞鬼 師兄撞鬼" + }, + { + "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", + "filename": "Fight.Back.to.School.1991.BluRay.1080p.x265.10bit.2Audio.MNHD-FRDS.mkv", + "category": "movie", + "title": "Fight Back To School", + "year": 1991, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:47647", + "title_zh": "逃学威龙", + "title_en": "逃學威龍", + "translation_source": "tmdb", + "reputation_score": 7.0, + "reputation_votes": 158, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"47647\"}" + }, + "display_title": "逃学威龙 逃學威龍" + }, + { + "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", + "filename": "A.Chinese.Odyssey.Part.2.1995.BluRay.1080p.x265.10bit.2Audio.MNHD-FRDS.mkv", + "category": "movie", + "title": "A Chinese Odyssey Part 2", + "year": 1995, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:21835", + "title_zh": "大话西游之大圣娶亲", + "title_en": "西游记大结局之仙履奇缘", + "translation_source": "tmdb", + "reputation_score": 7.7, + "reputation_votes": 255, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"21835\"}" + }, + "display_title": "大话西游之大圣娶亲 西游记大结局之仙履奇缘" + }, + { + "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", + "filename": "Journey.to.the.West.Conquering.the.Demons.2013.BluRay.1080p.x265.10bit.2Audio.MNHD-FRDS.mkv", + "category": "movie", + "title": "Journey To The West Conquering The Demons", + "year": 2013, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:170657", + "title_zh": "西游降魔篇", + "title_en": "西游·降魔篇", + "translation_source": "tmdb", + "reputation_score": 6.91, + "reputation_votes": 423, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"170657\"}" + }, + "display_title": "西游降魔篇 西游·降魔篇" + }, + { + "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", + "filename": "Flirting.Scholar.1993.BluRay.1080p.x265.10bit.2Audio.MNHD-FRDS.mkv", + "category": "movie", + "title": "Flirting Scholar", + "year": 1993, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:37703", + "title_zh": "唐伯虎点秋香", + "title_en": "唐伯虎點秋香", + "translation_source": "tmdb", + "reputation_score": 7.5, + "reputation_votes": 191, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"37703\"}" + }, + "display_title": "唐伯虎点秋香 唐伯虎點秋香" + }, + { + "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", + "filename": "Royal.Tramp.II.1992.BluRay.1080p.x265.10bit.2Audio.MNHD-FRDS.mkv", + "category": "movie", + "title": "Royal Tramp Ii", + "year": 1992, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:51731", + "title_zh": "鹿鼎记II神龙教", + "title_en": "鹿鼎記 II : 神龍敎", + "translation_source": "tmdb", + "reputation_score": 7.107, + "reputation_votes": 98, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"51731\"}" + }, + "display_title": "鹿鼎记II神龙教 鹿鼎記 II : 神龍敎" + }, + { + "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": true, + "canonical_id": "tmdb:movie:53658", + "title_zh": "赌侠II之上海滩赌圣", + "title_en": "賭俠 III 之上海灘賭聖", + "translation_source": "tmdb", + "reputation_score": 7.035, + "reputation_votes": 85, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"53658\"}" + }, + "display_title": "赌侠II之上海滩赌圣 賭俠 III 之上海灘賭聖" + }, + { + "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", + "filename": "Love.is.Love.1990.BluRay.1080p.x265.10bit.2Audio.MNHD-FRDS.mkv", + "category": "movie", + "title": "Love Is Love", + "year": 1990, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:524123", + "title_zh": "Because This Is About Love", + "title_en": "Because This Is About Love", + "translation_source": "tmdb", + "reputation_score": 0.0, + "reputation_votes": 1, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"524123\"}" + }, + "display_title": "Because This Is About Love" + }, + { + "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", + "filename": "Forbidden.City.Cop.1996.BluRay.1080p.x265.10bit.2Audio.MNHD-FRDS.mkv", + "category": "movie", + "title": "Forbidden City Cop", + "year": 1996, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:37702", + "title_zh": "大内密探零零发", + "title_en": "大內密探零零發", + "translation_source": "tmdb", + "reputation_score": 7.0, + "reputation_votes": 133, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"37702\"}" + }, + "display_title": "大内密探零零发 大內密探零零發" + }, + { + "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", + "filename": "King.of.Beggars.1992.BluRay.1080p.x265.10bit.2Audio.MNHD-FRDS.mkv", + "category": "movie", + "title": "King Of Beggars", + "year": 1992, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:47648", + "title_zh": "武状元苏乞儿", + "title_en": "武狀元蘇乞兒", + "translation_source": "tmdb", + "reputation_score": 6.9, + "reputation_votes": 137, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"47648\"}" + }, + "display_title": "武状元苏乞儿 武狀元蘇乞兒" + }, + { + "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", + "filename": "God.of.Gamblers.III.Back.to.Shanghai.1991.BluRay.1080p.x265.10bit.2Audio.MNHD-FRDS.mkv", + "category": "movie", + "title": "God Of Gamblers Iii Back To Shanghai", + "year": 1991, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:53658", + "title_zh": "赌侠II之上海滩赌圣", + "title_en": "賭俠 III 之上海灘賭聖", + "translation_source": "tmdb", + "reputation_score": 7.035, + "reputation_votes": 85, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"53658\"}" + }, + "display_title": "赌侠II之上海滩赌圣 賭俠 III 之上海灘賭聖" + }, + { + "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", + "filename": "Fight.Back.to.School.3.1993.BluRay.1080p.x265.10bit.2Audio.MNHD-FRDS.mkv", + "category": "movie", + "title": "Fight Back To School 3", + "year": 1993, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:66657", + "title_zh": "逃学威龙3:龙过鸡年", + "title_en": "逃學威龍之三:龍過雞年", + "translation_source": "tmdb", + "reputation_score": 6.494, + "reputation_votes": 86, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"66657\"}" + }, + "display_title": "逃学威龙3:龙过鸡年 逃學威龍之三:龍過雞年" + }, + { + "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", + "filename": "Gorgeous.UNCUT.1999.BluRay.1080p.x265.10bit.2Audio.MNHD-FRDS.mkv", + "category": "movie", + "title": "Gorgeous Uncut", + "year": 1999, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:10951", + "title_zh": "玻璃樽", + "title_en": "玻璃樽", + "translation_source": "tmdb", + "reputation_score": 6.423, + "reputation_votes": 405, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"10951\"}" + }, + "display_title": "玻璃樽" + }, + { + "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", + "filename": "From.Beijing.with.Love.1994.BluRay.1080p.x265.10bit.2Audio.MNHD-FRDS.mkv", + "category": "movie", + "title": "From Beijing With Love", + "year": 1994, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:41387", + "title_zh": "国产凌凌漆", + "title_en": "國產凌凌漆", + "translation_source": "tmdb", + "reputation_score": 7.0, + "reputation_votes": 217, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"41387\"}" + }, + "display_title": "国产凌凌漆 國產凌凌漆" + }, + { + "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", + "filename": "Love.on.Delivery.1994.BluRay.1080p.x265.10bit.2Audio.MNHD-FRDS.mkv", + "category": "movie", + "title": "Love On Delivery", + "year": 1994, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:53163", + "title_zh": "破坏之王", + "title_en": "破壞之王", + "translation_source": "tmdb", + "reputation_score": 7.033, + "reputation_votes": 106, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"53163\"}" + }, + "display_title": "破坏之王 破壞之王" + }, + { + "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", + "filename": "Out.of.the.Dark.1995.BluRay.1080p.x265.10bit.2Audio.MNHD-FRDS.mkv", + "category": "movie", + "title": "Out Of The Dark", + "year": 1995, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:45452", + "title_zh": "回魂夜", + "title_en": "回魂夜", + "translation_source": "tmdb", + "reputation_score": 6.8, + "reputation_votes": 98, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"45452\"}" + }, + "display_title": "回魂夜" + }, + { + "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", + "filename": "Kingdom.2.Far.and.Away.2022.1080p.BluRay.x265.10bit-WiKi.mkv", + "category": "movie", + "title": "Kingdom 2 Far And Away", + "year": 2022, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:961420", + "title_zh": "王者天下2:向着遥远的大地", + "title_en": "キングダム2 遥かなる大地へ", + "translation_source": "tmdb", + "reputation_score": 7.282, + "reputation_votes": 126, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"961420\"}" + }, + "display_title": "王者天下2:向着遥远的大地 キングダム2 遥かなる大地へ" + }, + { + "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", + "filename": "Kingdom.2.Far.and.Away.2022.1080p.BluRay.x265.10bit-WiKi.sample.mkv", + "category": "movie", + "title": "Kingdom 2 Far And Away", + "year": 2022, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:961420", + "title_zh": "王者天下2:向着遥远的大地", + "title_en": "キングダム2 遥かなる大地へ", + "translation_source": "tmdb", + "reputation_score": 7.282, + "reputation_votes": 126, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"961420\"}" + }, + "display_title": "王者天下2:向着遥远的大地 キングダム2 遥かなる大地へ" + }, + { + "path": "/mnt/Downloads/movies/Exit.2019.720p.BluRay.x264-WiKi/Sample/Exit.2019.720p.BluRay.x264-WiKi.Sample.mkv", + "filename": "Exit.2019.720p.BluRay.x264-WiKi.Sample.mkv", + "category": "movie", + "title": "Exit", + "year": 2019, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:679783", + "title_zh": "零号出口", + "title_en": "Exit 0", + "translation_source": "tmdb", + "reputation_score": 4.9, + "reputation_votes": 18, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"679783\"}" + }, + "display_title": "零号出口 Exit 0" + }, + { + "path": "/mnt/Downloads/movies/Exit.2019.720p.BluRay.x264-WiKi/Exit.2019.720p.BluRay.x264-WiKi.mkv", + "filename": "Exit.2019.720p.BluRay.x264-WiKi.mkv", + "category": "movie", + "title": "Exit", + "year": 2019, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:679783", + "title_zh": "零号出口", + "title_en": "Exit 0", + "translation_source": "tmdb", + "reputation_score": 4.9, + "reputation_votes": 18, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"679783\"}" + }, + "display_title": "零号出口 Exit 0" + }, + { + "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", + "filename": "Fantastic.Beasts.and.Where.to.Find.Them.2016.BluRay.1080p.x265.10bit.HDR10.2Audio.MNHD-FRDS.mkv", + "category": "movie", + "title": "Fantastic Beasts And Where To Find Them", + "year": 2016, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:259316", + "title_zh": "神奇动物在哪里", + "title_en": "Fantastic Beasts and Where to Find Them", + "translation_source": "tmdb", + "reputation_score": 7.309, + "reputation_votes": 19484, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"259316\"}" + }, + "display_title": "神奇动物在哪里 Fantastic Beasts and Where to Find Them" + }, + { + "path": "/mnt/Downloads/movies/Fallen.1998.1080p.BluRay.x264.DTS-WiKi/Fallen.1998.1080p.BluRay.x264.DTS-WiKi.mkv", + "filename": "Fallen.1998.1080p.BluRay.x264.DTS-WiKi.mkv", + "category": "movie", + "title": "Fallen", + "year": 1998, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:9411", + "title_zh": "夺命感应", + "title_en": "Fallen", + "translation_source": "tmdb", + "reputation_score": 6.787, + "reputation_votes": 1548, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"9411\"}" + }, + "display_title": "夺命感应 Fallen" + }, + { + "path": "/mnt/Downloads/movies/Fallen.1998.1080p.BluRay.x264.DTS-WiKi/Sample/Fallen.1998.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", + "filename": "Fallen.1998.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", + "category": "movie", + "title": "Fallen", + "year": 1998, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:9411", + "title_zh": "夺命感应", + "title_en": "Fallen", + "translation_source": "tmdb", + "reputation_score": 6.787, + "reputation_votes": 1548, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"9411\"}" + }, + "display_title": "夺命感应 Fallen" + }, + { + "path": "/mnt/Downloads/movies/Knives.Out.2019.1080p.BluRay.x264-WiKi/Knives.Out.2019.1080p.BluRay.x264-WiKi.mkv", + "filename": "Knives.Out.2019.1080p.BluRay.x264-WiKi.mkv", + "category": "movie", + "title": "Knives Out", + "year": 2019, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:546554", + "title_zh": "利刃出鞘", + "title_en": "Knives Out", + "translation_source": "tmdb", + "reputation_score": 7.843, + "reputation_votes": 13633, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"546554\"}" + }, + "display_title": "利刃出鞘 Knives Out" + }, + { + "path": "/mnt/Downloads/movies/Knives.Out.2019.1080p.BluRay.x264-WiKi/Sample/Knives.Out.2019.1080p.BluRay.x264-WiKi.Sample.mkv", + "filename": "Knives.Out.2019.1080p.BluRay.x264-WiKi.Sample.mkv", + "category": "movie", + "title": "Knives Out", + "year": 2019, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:546554", + "title_zh": "利刃出鞘", + "title_en": "Knives Out", + "translation_source": "tmdb", + "reputation_score": 7.843, + "reputation_votes": 13633, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"546554\"}" + }, + "display_title": "利刃出鞘 Knives Out" + }, + { + "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", + "filename": "Kaguya-sama.Love.Is.War.2019.1080p.BluRay.x264.DTS-WiKi.mkv", + "category": "movie", + "title": "Kaguya-Sama Love Is War", + "year": 2019, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:617402", + "title_zh": "辉夜大小姐想让我告白:天才们的恋爱头脑战", + "title_en": "かぐや様は告らせたい ~天才たちの恋愛頭脳戦~", + "translation_source": "tmdb", + "reputation_score": 7.5, + "reputation_votes": 39, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"617402\"}" + }, + "display_title": "辉夜大小姐想让我告白:天才们的恋爱头脑战 かぐや様は告らせたい ~天才たちの恋愛頭脳戦~" + }, + { + "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", + "filename": "Kaguya-sama.Love.Is.War.2019.1080p.BluRay.x264.DTS-WiKi.sample.mkv", + "category": "movie", + "title": "Kaguya-Sama Love Is War", + "year": 2019, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:617402", + "title_zh": "辉夜大小姐想让我告白:天才们的恋爱头脑战", + "title_en": "かぐや様は告らせたい ~天才たちの恋愛頭脳戦~", + "translation_source": "tmdb", + "reputation_score": 7.5, + "reputation_votes": 39, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"617402\"}" + }, + "display_title": "辉夜大小姐想让我告白:天才们的恋爱头脑战 かぐや様は告らせたい ~天才たちの恋愛頭脳戦~" + }, + { + "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", + "filename": "Bad.Boys.Ride.or.Die.2024.1080p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi.mkv", + "category": "movie", + "title": "Bad Boys Ride Or Die", + "year": 2024, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:573435", + "title_zh": "绝地战警:生死与共", + "title_en": "Bad Boys: Ride or Die", + "translation_source": "tmdb", + "reputation_score": 7.3, + "reputation_votes": 3210, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"573435\"}" + }, + "display_title": "绝地战警:生死与共 Bad Boys: Ride or Die" + }, + { + "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", + "filename": "Happy.End.1999.1080p.BluRay.x265.10bit.DTS-WiKi.Sample.mkv", + "category": "movie", + "title": "Happy End", + "year": 1999, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:509435", + "title_zh": "Happy End", + "title_en": "Happy End", + "translation_source": "tmdb", + "reputation_score": 0.0, + "reputation_votes": 1, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"509435\"}" + }, + "display_title": "Happy End" + }, + { + "path": "/mnt/Downloads/movies/Happy.End.1999.1080p.BluRay.x265.10bit.DTS-WiKi/Happy.End.1999.1080p.BluRay.x265.10bit.DTS-WiKi.mkv", + "filename": "Happy.End.1999.1080p.BluRay.x265.10bit.DTS-WiKi.mkv", + "category": "movie", + "title": "Happy End", + "year": 1999, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:509435", + "title_zh": "Happy End", + "title_en": "Happy End", + "translation_source": "tmdb", + "reputation_score": 0.0, + "reputation_votes": 1, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"509435\"}" + }, + "display_title": "Happy End" + }, + { + "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", + "filename": "Signal.The.Movie.2021.1080p.BluRay.x264.DTS-WiKi.sample.mkv", + "category": "movie", + "title": "Signal The Movie", + "year": 2021, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:768480", + "title_zh": "信号 长期未解决事件搜查组 剧场版", + "title_en": "劇場版 シグナル 長期未解決事件捜査班", + "translation_source": "tmdb", + "reputation_score": 6.1, + "reputation_votes": 9, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"768480\"}" + }, + "display_title": "信号 长期未解决事件搜查组 剧场版 劇場版 シグナル 長期未解決事件捜査班" + }, + { + "path": "/mnt/Downloads/movies/Signal.The.Movie.2021.1080p.BluRay.x264.DTS-WiKi/Signal.The.Movie.2021.1080p.BluRay.x264.DTS-WiKi.mkv", + "filename": "Signal.The.Movie.2021.1080p.BluRay.x264.DTS-WiKi.mkv", + "category": "movie", + "title": "Signal The Movie", + "year": 2021, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:768480", + "title_zh": "信号 长期未解决事件搜查组 剧场版", + "title_en": "劇場版 シグナル 長期未解決事件捜査班", + "translation_source": "tmdb", + "reputation_score": 6.1, + "reputation_votes": 9, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"768480\"}" + }, + "display_title": "信号 长期未解决事件搜查组 剧场版 劇場版 シグナル 長期未解決事件捜査班" + }, + { + "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", + "filename": "1778.Stories.of.Me.and.My.Wife.2011.1080p.BluRay.x264-WiKi.sample.mkv", + "category": "movie", + "title": "1778 Stories Of Me And My Wife", + "year": 2011, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:72524", + "title_zh": "我和妻子的1778个故事", + "title_en": "僕と妻の1778の物語", + "translation_source": "tmdb", + "reputation_score": 6.4, + "reputation_votes": 13, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"72524\"}" + }, + "display_title": "我和妻子的1778个故事 僕と妻の1778の物語" + }, + { + "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", + "filename": "1778.Stories.of.Me.and.My.Wife.2011.1080p.BluRay.x264-WiKi.mkv", + "category": "movie", + "title": "1778 Stories Of Me And My Wife", + "year": 2011, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:72524", + "title_zh": "我和妻子的1778个故事", + "title_en": "僕と妻の1778の物語", + "translation_source": "tmdb", + "reputation_score": 6.4, + "reputation_votes": 13, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"72524\"}" + }, + "display_title": "我和妻子的1778个故事 僕と妻の1778の物語" + }, + { + "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", + "filename": "The.Lord.of.the.Rings.The.War.of.the.Rohirrim.2024.1080p.BluRay.x265.10bit-WiKi.mkv", + "category": "movie", + "title": "The Lord Of The Rings The War Of The Rohirrim", + "year": 2024, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:839033", + "title_zh": "指环王:洛汗之战", + "title_en": "The Lord of the Rings: The War of the Rohirrim", + "translation_source": "tmdb", + "reputation_score": 6.544, + "reputation_votes": 784, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"839033\"}" + }, + "display_title": "指环王:洛汗之战 The Lord of the Rings: The War of the Rohirrim" + }, + { + "path": "/mnt/Downloads/movies/AI.Amok.2020.720p.BluRay.x264-WiKi/Sample/AI.Amok.2020.720p.BluRay.x264-WiKi.sample.mkv", + "filename": "AI.Amok.2020.720p.BluRay.x264-WiKi.sample.mkv", + "category": "movie", + "title": "Ai Amok", + "year": 2020, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:619083", + "title_zh": "AI崩坏", + "title_en": "AI崩壊", + "translation_source": "tmdb", + "reputation_score": 7.1, + "reputation_votes": 11, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"619083\"}" + }, + "display_title": "AI崩坏 AI崩壊" + }, + { + "path": "/mnt/Downloads/movies/AI.Amok.2020.720p.BluRay.x264-WiKi/AI.Amok.2020.720p.BluRay.x264-WiKi.mkv", + "filename": "AI.Amok.2020.720p.BluRay.x264-WiKi.mkv", + "category": "movie", + "title": "Ai Amok", + "year": 2020, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:619083", + "title_zh": "AI崩坏", + "title_en": "AI崩壊", + "translation_source": "tmdb", + "reputation_score": 7.1, + "reputation_votes": 11, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"619083\"}" + }, + "display_title": "AI崩坏 AI崩壊" + }, + { + "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", + "filename": "P.S.I.Love.You.2007.1080p.BluRay.x265.10bit.DTS-ADE.mkv", + "category": "movie", + "title": "P S I Love You", + "year": 2007, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:6023", + "title_zh": "附注:我爱你", + "title_en": "P.S. I Love You", + "translation_source": "tmdb", + "reputation_score": 7.183, + "reputation_votes": 3430, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"6023\"}" + }, + "display_title": "附注:我爱你 P.S. I Love You" + }, + { + "path": "/mnt/Downloads/movies/The.Call.2020.Netflix.WEB-DL.1080p.x264.DDP-AREY.mkv", + "filename": "The.Call.2020.Netflix.WEB-DL.1080p.x264.DDP-AREY.mkv", + "category": "movie", + "title": "The Call", + "year": 2020, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:746817", + "title_zh": "地狱通话", + "title_en": "The Call", + "translation_source": "tmdb", + "reputation_score": 5.461, + "reputation_votes": 168, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"746817\"}" + }, + "display_title": "地狱通话 The Call" + }, + { + "path": "/mnt/Downloads/movies/Ambulance.2022.1080p.BluRay.x265.10bit-WiKi/Sample/Ambulance.2022.1080p.BluRay.x265.10bit-WiKi.Sample.mkv", + "filename": "Ambulance.2022.1080p.BluRay.x265.10bit-WiKi.Sample.mkv", + "category": "movie", + "title": "Ambulance", + "year": 2022, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:763285", + "title_zh": "亡命救护车", + "title_en": "Ambulance", + "translation_source": "tmdb", + "reputation_score": 6.627, + "reputation_votes": 2362, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"763285\"}" + }, + "display_title": "亡命救护车 Ambulance" + }, + { + "path": "/mnt/Downloads/movies/Ambulance.2022.1080p.BluRay.x265.10bit-WiKi/Ambulance.2022.1080p.BluRay.x265.10bit-WiKi.mkv", + "filename": "Ambulance.2022.1080p.BluRay.x265.10bit-WiKi.mkv", + "category": "movie", + "title": "Ambulance", + "year": 2022, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:763285", + "title_zh": "亡命救护车", + "title_en": "Ambulance", + "translation_source": "tmdb", + "reputation_score": 6.627, + "reputation_votes": 2362, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"763285\"}" + }, + "display_title": "亡命救护车 Ambulance" + }, + { + "path": "/mnt/Downloads/movies/Strange.World.2022.1080p.BluRay.x265.10bit.DTS-WiKi/Strange.World.2022.1080p.BluRay.x265.10bit.DTS-WiKi.mkv", + "filename": "Strange.World.2022.1080p.BluRay.x265.10bit.DTS-WiKi.mkv", + "category": "movie", + "title": "Strange World", + "year": 2022, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:877269", + "title_zh": "奇异世界", + "title_en": "Strange World", + "translation_source": "tmdb", + "reputation_score": 6.2, + "reputation_votes": 1385, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"877269\"}" + }, + "display_title": "奇异世界 Strange World" + }, + { + "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", + "filename": "Memoir.of.a.Snail.2024.2160p.BluRay.x265.10bit.DTS-WiKi.mkv", + "category": "movie", + "title": "Memoir Of A Snail", + "year": 2024, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:1064486", + "title_zh": "蜗牛回忆录", + "title_en": "Memoir of a Snail", + "translation_source": "tmdb", + "reputation_score": 8.1, + "reputation_votes": 730, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"1064486\"}" + }, + "display_title": "蜗牛回忆录 Memoir of a Snail" + }, + { + "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", + "filename": "Boy.Kills.World.2023.1080p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi.mkv", + "category": "movie", + "title": "Boy Kills World", + "year": 2023, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:882059", + "title_zh": "灭世男孩", + "title_en": "Boy Kills World", + "translation_source": "tmdb", + "reputation_score": 6.747, + "reputation_votes": 758, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"882059\"}" + }, + "display_title": "灭世男孩 Boy Kills World" + }, + { + "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", + "filename": "Rebel.Ridge.2024.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-ADWeb.mkv", + "category": "movie", + "title": "Rebel Ridge", + "year": 2024, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:646097", + "title_zh": "Rebel Ridge", + "title_en": "Rebel Ridge", + "translation_source": "tmdb", + "reputation_score": 6.98, + "reputation_votes": 1528, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"646097\"}" + }, + "display_title": "Rebel Ridge" + }, + { + "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", + "filename": "Everything.Everywhere.All.At.Once.2022.1080p.WEB-DL.DDP5.1.H.264-EVO.mkv", + "category": "movie", + "title": "Everything Everywhere All At Once", + "year": 2022, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:545611", + "title_zh": "瞬息全宇宙", + "title_en": "Everything Everywhere All at Once", + "translation_source": "tmdb", + "reputation_score": 7.722, + "reputation_votes": 7646, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"545611\"}" + }, + "display_title": "瞬息全宇宙 Everything Everywhere All at Once" + }, + { + "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", + "filename": "The.Pig.the.Snake.and.the.Pigeon.2023.1080p.NF.WEB-DL.DDP5.1.H264-HHWEB.mkv", + "category": "movie", + "title": "The Pig The Snake And The Pigeon", + "year": 2023, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:1046090", + "title_zh": "周处除三害", + "title_en": "周處除三害", + "translation_source": "tmdb", + "reputation_score": 7.298, + "reputation_votes": 252, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"1046090\"}" + }, + "display_title": "周处除三害 周處除三害" + }, + { + "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", + "filename": "The.Wings.of.the.Kirin.2012.1080p.BluRay.x264.DTS-WiKi.mkv", + "category": "movie", + "title": "The Wings Of The Kirin", + "year": 2012, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:122734", + "title_zh": "麒麟之翼 新参者剧场版", + "title_en": "麒麟の翼 ~劇場版・新参者~", + "translation_source": "tmdb", + "reputation_score": 6.3, + "reputation_votes": 37, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"122734\"}" + }, + "display_title": "麒麟之翼 新参者剧场版 麒麟の翼 ~劇場版・新参者~" + }, + { + "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", + "filename": "The.Wings.of.the.Kirin.2012.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", + "category": "movie", + "title": "The Wings Of The Kirin", + "year": 2012, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:122734", + "title_zh": "麒麟之翼 新参者剧场版", + "title_en": "麒麟の翼 ~劇場版・新参者~", + "translation_source": "tmdb", + "reputation_score": 6.3, + "reputation_votes": 37, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"122734\"}" + }, + "display_title": "麒麟之翼 新参者剧场版 麒麟の翼 ~劇場版・新参者~" + }, + { + "path": "/mnt/Downloads/movies/Flowers.2010.1080p.BluRay.x264-WiKi/Sample/Flowers.2010.1080p.BluRay.x264-WiKi.sample.mkv", + "filename": "Flowers.2010.1080p.BluRay.x264-WiKi.sample.mkv", + "category": "movie", + "title": "Flowers", + "year": 2010, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:790530", + "title_zh": "Soul Flowers", + "title_en": "Soul Flowers", + "translation_source": "tmdb", + "reputation_score": 0.0, + "reputation_votes": 1, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"790530\"}" + }, + "display_title": "Soul Flowers" + }, + { + "path": "/mnt/Downloads/movies/Flowers.2010.1080p.BluRay.x264-WiKi/Flowers.2010.1080p.BluRay.x264-WiKi.mkv", + "filename": "Flowers.2010.1080p.BluRay.x264-WiKi.mkv", + "category": "movie", + "title": "Flowers", + "year": 2010, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:790530", + "title_zh": "Soul Flowers", + "title_en": "Soul Flowers", + "translation_source": "tmdb", + "reputation_score": 0.0, + "reputation_votes": 1, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"790530\"}" + }, + "display_title": "Soul Flowers" + }, + { + "path": "/mnt/Downloads/movies/Ticket.to.Paradise.2022.1080p.BluRay.x264.DTS-WiKi/Ticket.to.Paradise.2022.1080p.BluRay.x264.DTS-WiKi.mkv", + "filename": "Ticket.to.Paradise.2022.1080p.BluRay.x264.DTS-WiKi.mkv", + "category": "movie", + "title": "Ticket To Paradise", + "year": 2022, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:800939", + "title_zh": "天堂门票", + "title_en": "Ticket to Paradise", + "translation_source": "tmdb", + "reputation_score": 6.422, + "reputation_votes": 1363, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"800939\"}" + }, + "display_title": "天堂门票 Ticket to Paradise" + }, + { + "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", + "filename": "Ticket.to.Paradise.2022.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", + "category": "movie", + "title": "Ticket To Paradise", + "year": 2022, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:800939", + "title_zh": "天堂门票", + "title_en": "Ticket to Paradise", + "translation_source": "tmdb", + "reputation_score": 6.422, + "reputation_votes": 1363, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"800939\"}" + }, + "display_title": "天堂门票 Ticket to Paradise" + }, + { + "path": "/mnt/Downloads/movies/Young.Woman.and.the.Sea.2024.2160p.DSNP.WEB-DL.DDP5.1.Atmos.DV.HDR.H.265-FLUX.mkv", + "filename": "Young.Woman.and.the.Sea.2024.2160p.DSNP.WEB-DL.DDP5.1.Atmos.DV.HDR.H.265-FLUX.mkv", + "category": "movie", + "title": "Young Woman And The Sea", + "year": 2024, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:774531", + "title_zh": "泳者之心", + "title_en": "Young Woman and the Sea", + "translation_source": "tmdb", + "reputation_score": 7.8, + "reputation_votes": 401, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"774531\"}" + }, + "display_title": "泳者之心 Young Woman and the Sea" + }, + { + "path": "/mnt/Downloads/movies/Feel 100% 1996 NF WEB-DL 1080p H.264 AAC & DD 2.0 3Audios-Dave.mkv", + "filename": "Feel 100% 1996 NF WEB-DL 1080p H.264 AAC & DD 2.0 3Audios-Dave.mkv", + "category": "movie", + "title": "Feel 100%", + "year": 1996, + "confidence": 0.7, + "needs_review": true, + "canonical_id": "tmdb:movie:264583", + "title_zh": "百分百啱Feel", + "title_en": "百分百啱Feel", + "translation_source": "tmdb", + "reputation_score": 5.0, + "reputation_votes": 4, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"264583\"}" + }, + "display_title": "百分百啱Feel" + }, + { + "path": "/mnt/Downloads/movies/Shock.Wave.2.2020.720p.BluRay.x264-WiKi/Shock.Wave.2.2020.720p.BluRay.x264-WiKi.mkv", + "filename": "Shock.Wave.2.2020.720p.BluRay.x264-WiKi.mkv", + "category": "movie", + "title": "Shock Wave 2", + "year": 2020, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:559974", + "title_zh": "拆弹专家2", + "title_en": "拆彈專家2", + "translation_source": "tmdb", + "reputation_score": 7.088, + "reputation_votes": 170, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"559974\"}" + }, + "display_title": "拆弹专家2 拆彈專家2" + }, + { + "path": "/mnt/Downloads/movies/Shock.Wave.2.2020.720p.BluRay.x264-WiKi/Sample/Shock.Wave.2.2020.720p.BluRay.x264-WiKi.Sample.mkv", + "filename": "Shock.Wave.2.2020.720p.BluRay.x264-WiKi.Sample.mkv", + "category": "movie", + "title": "Shock Wave 2", + "year": 2020, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:559974", + "title_zh": "拆弹专家2", + "title_en": "拆彈專家2", + "translation_source": "tmdb", + "reputation_score": 7.088, + "reputation_votes": 170, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"559974\"}" + }, + "display_title": "拆弹专家2 拆彈專家2" + }, + { + "path": "/mnt/Downloads/movies/The.First.Gentleman.2021.720p.BluRay.x264-WiKi/Sample/The.First.Gentleman.2021.720p.BluRay.x264-WiKi.sample.mkv", + "filename": "The.First.Gentleman.2021.720p.BluRay.x264-WiKi.sample.mkv", + "category": "movie", + "title": "The First Gentleman", + "year": 2021, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:756198", + "title_zh": "总理的丈夫", + "title_en": "総理の夫", + "translation_source": "tmdb", + "reputation_score": 4.5, + "reputation_votes": 5, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"756198\"}" + }, + "display_title": "总理的丈夫 総理の夫" + }, + { + "path": "/mnt/Downloads/movies/The.First.Gentleman.2021.720p.BluRay.x264-WiKi/The.First.Gentleman.2021.720p.BluRay.x264-WiKi.mkv", + "filename": "The.First.Gentleman.2021.720p.BluRay.x264-WiKi.mkv", + "category": "movie", + "title": "The First Gentleman", + "year": 2021, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:756198", + "title_zh": "总理的丈夫", + "title_en": "総理の夫", + "translation_source": "tmdb", + "reputation_score": 4.5, + "reputation_votes": 5, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"756198\"}" + }, + "display_title": "总理的丈夫 総理の夫" + }, + { + "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", + "filename": "Air.2023.1080p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi.mkv", + "category": "movie", + "title": "Air", + "year": 2023, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:964980", + "title_zh": "气垫传奇", + "title_en": "Air", + "translation_source": "tmdb", + "reputation_score": 7.294, + "reputation_votes": 2247, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"964980\"}" + }, + "display_title": "气垫传奇 Air" + }, + { + "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", + "filename": "One.Summer.Story.2020.720p.BluRay.x264.DTS-WiKi.sample.mkv", + "category": "movie", + "title": "One Summer Story", + "year": 2020, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:646995", + "title_zh": "孩子不想理解", + "title_en": "子供はわかってあげない", + "translation_source": "tmdb", + "reputation_score": 7.3, + "reputation_votes": 13, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"646995\"}" + }, + "display_title": "孩子不想理解 子供はわかってあげない" + }, + { + "path": "/mnt/Downloads/movies/One.Summer.Story.2020.720p.BluRay.x264.DTS-WiKi/One.Summer.Story.2020.720p.BluRay.x264.DTS-WiKi.mkv", + "filename": "One.Summer.Story.2020.720p.BluRay.x264.DTS-WiKi.mkv", + "category": "movie", + "title": "One Summer Story", + "year": 2020, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:646995", + "title_zh": "孩子不想理解", + "title_en": "子供はわかってあげない", + "translation_source": "tmdb", + "reputation_score": 7.3, + "reputation_votes": 13, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"646995\"}" + }, + "display_title": "孩子不想理解 子供はわかってあげない" + }, + { + "path": "/mnt/Downloads/movies/The.Card.Counter.2021.720p.BluRay.x264-WiKi/Sample/The.Card.Counter.2021.720p.BluRay.x264-WiKi.Sample.mkv", + "filename": "The.Card.Counter.2021.720p.BluRay.x264-WiKi.Sample.mkv", + "category": "movie", + "title": "The Card Counter", + "year": 2021, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:643532", + "title_zh": "算牌人", + "title_en": "The Card Counter", + "translation_source": "tmdb", + "reputation_score": 6.119, + "reputation_votes": 1057, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"643532\"}" + }, + "display_title": "算牌人 The Card Counter" + }, + { + "path": "/mnt/Downloads/movies/The.Card.Counter.2021.720p.BluRay.x264-WiKi/The.Card.Counter.2021.720p.BluRay.x264-WiKi.mkv", + "filename": "The.Card.Counter.2021.720p.BluRay.x264-WiKi.mkv", + "category": "movie", + "title": "The Card Counter", + "year": 2021, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:643532", + "title_zh": "算牌人", + "title_en": "The Card Counter", + "translation_source": "tmdb", + "reputation_score": 6.119, + "reputation_votes": 1057, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"643532\"}" + }, + "display_title": "算牌人 The Card Counter" + }, + { + "path": "/mnt/Downloads/movies/Top.Gun.Maverick.2022.1080p.WEB-DL.AAC5.1.H.264-tG1R0.mkv", + "filename": "Top.Gun.Maverick.2022.1080p.WEB-DL.AAC5.1.H.264-tG1R0.mkv", + "category": "movie", + "title": "Top Gun Maverick", + "year": 2022, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:361743", + "title_zh": "Top Gun: Maverick", + "title_en": "Top Gun: Maverick", + "translation_source": "tmdb", + "reputation_score": 8.158, + "reputation_votes": 10565, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"361743\"}" + }, + "display_title": "Top Gun: Maverick" + }, + { + "path": "/mnt/Downloads/movies/Strays.2023.Unrated.1080p.BluRay.x265.10bit.DTS-WiKi/Strays.2023.Unrated.1080p.BluRay.x265.10bit.DTS-WiKi.mkv", + "filename": "Strays.2023.Unrated.1080p.BluRay.x265.10bit.DTS-WiKi.mkv", + "category": "movie", + "title": "Strays", + "year": 2023, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:912908", + "title_zh": "复仇狗联盟", + "title_en": "Strays", + "translation_source": "tmdb", + "reputation_score": 7.189, + "reputation_votes": 971, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"912908\"}" + }, + "display_title": "复仇狗联盟 Strays" + }, + { + "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": "[蝙蝠侠:黑暗骑士][][]", + "year": null, + "confidence": 0.3, + "needs_review": true, + "canonical_id": "tmdb:movie:155", + "title_zh": "蝙蝠侠:黑暗骑士", + "title_en": "The Dark Knight", + "translation_source": "tmdb", + "reputation_score": 8.525, + "reputation_votes": 35139, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"155\"}" + }, + "display_title": "蝙蝠侠:黑暗骑士 The Dark Knight" + }, + { + "path": "/mnt/Downloads/movies/The.Mauritanian.2021.1080p.BluRay.x264.DTS-WiKi/Sample/The.Mauritanian.2021.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", + "filename": "The.Mauritanian.2021.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", + "category": "movie", + "title": "The Mauritanian", + "year": 2021, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:644583", + "title_zh": "760号犯人", + "title_en": "The Mauritanian", + "translation_source": "tmdb", + "reputation_score": 7.4, + "reputation_votes": 1238, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"644583\"}" + }, + "display_title": "760号犯人 The Mauritanian" + }, + { + "path": "/mnt/Downloads/movies/The.Mauritanian.2021.1080p.BluRay.x264.DTS-WiKi/The.Mauritanian.2021.1080p.BluRay.x264.DTS-WiKi.mkv", + "filename": "The.Mauritanian.2021.1080p.BluRay.x264.DTS-WiKi.mkv", + "category": "movie", + "title": "The Mauritanian", + "year": 2021, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:644583", + "title_zh": "760号犯人", + "title_en": "The Mauritanian", + "translation_source": "tmdb", + "reputation_score": 7.4, + "reputation_votes": 1238, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"644583\"}" + }, + "display_title": "760号犯人 The Mauritanian" + }, + { + "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", + "filename": "Emilia.Perez.2024.1080p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi.mkv", + "category": "movie", + "title": "Emilia Perez", + "year": 2024, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:974950", + "title_zh": "艾米莉亚·佩雷斯", + "title_en": "Emilia Pérez", + "translation_source": "tmdb", + "reputation_score": 6.482, + "reputation_votes": 1888, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"974950\"}" + }, + "display_title": "艾米莉亚·佩雷斯 Emilia Pérez" + }, + { + "path": "/mnt/Downloads/movies/Uncut.Gems.2019.REPACK.720p.BluRay.x264-WiKi/Uncut.Gems.2019.REPACK.720p.BluRay.x264-WiKi.mkv", + "filename": "Uncut.Gems.2019.REPACK.720p.BluRay.x264-WiKi.mkv", + "category": "movie", + "title": "Uncut Gems", + "year": 2019, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:473033", + "title_zh": "原钻", + "title_en": "Uncut Gems", + "translation_source": "tmdb", + "reputation_score": 7.156, + "reputation_votes": 5225, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"473033\"}" + }, + "display_title": "原钻 Uncut Gems" + }, + { + "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", + "filename": "F1.The.Movie.2025.2160p.BluRay.DoVi.x265.10bit.Atmos.TrueHD7.1-WiKi.mkv", + "category": "movie", + "title": "F1 The Movie", + "year": 2025, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:911430", + "title_zh": "F1:狂飙飞车", + "title_en": "F1", + "translation_source": "tmdb", + "reputation_score": 7.774, + "reputation_votes": 3299, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"911430\"}" + }, + "display_title": "F1:狂飙飞车 F1" + }, + { + "path": "/mnt/Downloads/movies/Spy.2015.720p.BluRay.x264.DTS-WiKi/Sample/Spy.2015.720p.BluRay.x264.DTS-WiKi.Sample.mkv", + "filename": "Spy.2015.720p.BluRay.x264.DTS-WiKi.Sample.mkv", + "category": "movie", + "title": "Spy", + "year": 2015, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:238713", + "title_zh": "女间谍", + "title_en": "Spy", + "translation_source": "tmdb", + "reputation_score": 6.834, + "reputation_votes": 6299, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"238713\"}" + }, + "display_title": "女间谍 Spy" + }, + { + "path": "/mnt/Downloads/movies/Spy.2015.720p.BluRay.x264.DTS-WiKi/Spy.2015.720p.BluRay.x264.DTS-WiKi.mkv", + "filename": "Spy.2015.720p.BluRay.x264.DTS-WiKi.mkv", + "category": "movie", + "title": "Spy", + "year": 2015, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:238713", + "title_zh": "女间谍", + "title_en": "Spy", + "translation_source": "tmdb", + "reputation_score": 6.834, + "reputation_votes": 6299, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"238713\"}" + }, + "display_title": "女间谍 Spy" + }, + { + "path": "/mnt/Downloads/movies/Verdens.Verste.Menneske.2021.720p.BluRay.x264-WiKi/Verdens.Verste.Menneske.2021.720p.BluRay.x264-WiKi.mkv", + "filename": "Verdens.Verste.Menneske.2021.720p.BluRay.x264-WiKi.mkv", + "category": "movie", + "title": "Verdens Verste Menneske", + "year": 2021, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:660120", + "title_zh": "世界上最糟糕的人", + "title_en": "Verdens verste menneske", + "translation_source": "tmdb", + "reputation_score": 7.446, + "reputation_votes": 1732, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"660120\"}" + }, + "display_title": "世界上最糟糕的人 Verdens verste menneske" + }, + { + "path": "/mnt/Downloads/movies/Verdens.Verste.Menneske.2021.720p.BluRay.x264-WiKi/Sample/Verdens.Verste.Menneske.2021.720p.BluRay.x264-WiKi.Sample.mkv", + "filename": "Verdens.Verste.Menneske.2021.720p.BluRay.x264-WiKi.Sample.mkv", + "category": "movie", + "title": "Verdens Verste Menneske", + "year": 2021, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:660120", + "title_zh": "世界上最糟糕的人", + "title_en": "Verdens verste menneske", + "translation_source": "tmdb", + "reputation_score": 7.446, + "reputation_votes": 1732, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"660120\"}" + }, + "display_title": "世界上最糟糕的人 Verdens verste menneske" + }, + { + "path": "/mnt/Downloads/movies/Yowamushi.Pedal.2020.1080p.BluRay.x264.DTS-WiKi/Sample/Yowamushi.Pedal.2020.1080p.BluRay.x264.DTS-WiKi.sample.mkv", + "filename": "Yowamushi.Pedal.2020.1080p.BluRay.x264.DTS-WiKi.sample.mkv", + "category": "movie", + "title": "Yowamushi Pedal", + "year": 2020, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:725435", + "title_zh": "飙速宅男", + "title_en": "弱虫ペダル", + "translation_source": "tmdb", + "reputation_score": 6.8, + "reputation_votes": 8, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"725435\"}" + }, + "display_title": "飙速宅男 弱虫ペダル" + }, + { + "path": "/mnt/Downloads/movies/Yowamushi.Pedal.2020.1080p.BluRay.x264.DTS-WiKi/Yowamushi.Pedal.2020.1080p.BluRay.x264.DTS-WiKi.mkv", + "filename": "Yowamushi.Pedal.2020.1080p.BluRay.x264.DTS-WiKi.mkv", + "category": "movie", + "title": "Yowamushi Pedal", + "year": 2020, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:725435", + "title_zh": "飙速宅男", + "title_en": "弱虫ペダル", + "translation_source": "tmdb", + "reputation_score": 6.8, + "reputation_votes": 8, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"725435\"}" + }, + "display_title": "飙速宅男 弱虫ペダル" + }, + { + "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", + "filename": "Sex.Is.Zero.2002.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", + "category": "movie", + "title": "Sex Is Zero", + "year": 2002, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:16318", + "title_zh": "色即是空", + "title_en": "색즉시공", + "translation_source": "tmdb", + "reputation_score": 6.1, + "reputation_votes": 131, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"16318\"}" + }, + "display_title": "色即是空 색즉시공" + }, + { + "path": "/mnt/Downloads/movies/Sex.Is.Zero.2002.1080p.BluRay.x264.DTS-WiKi/Sex.Is.Zero.2002.1080p.BluRay.x264.DTS-WiKi.mkv", + "filename": "Sex.Is.Zero.2002.1080p.BluRay.x264.DTS-WiKi.mkv", + "category": "movie", + "title": "Sex Is Zero", + "year": 2002, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:16318", + "title_zh": "色即是空", + "title_en": "색즉시공", + "translation_source": "tmdb", + "reputation_score": 6.1, + "reputation_votes": 131, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"16318\"}" + }, + "display_title": "色即是空 색즉시공" + }, + { + "path": "/mnt/Downloads/movies/Hayabusa.2011.1080p.BluRay.x264.DTS-WiKi/Sample/Hayabusa.2011.1080p.BluRay.x264.DTS-WiKi.sample.mkv", + "filename": "Hayabusa.2011.1080p.BluRay.x264.DTS-WiKi.sample.mkv", + "category": "movie", + "title": "Hayabusa", + "year": 2011, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:101665", + "title_zh": "隼鸟号", + "title_en": "はやぶさ/HAYABUSA", + "translation_source": "tmdb", + "reputation_score": 7.2, + "reputation_votes": 5, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"101665\"}" + }, + "display_title": "隼鸟号 はやぶさ/HAYABUSA" + }, + { + "path": "/mnt/Downloads/movies/Hayabusa.2011.1080p.BluRay.x264.DTS-WiKi/Hayabusa.2011.1080p.BluRay.x264.DTS-WiKi.mkv", + "filename": "Hayabusa.2011.1080p.BluRay.x264.DTS-WiKi.mkv", + "category": "movie", + "title": "Hayabusa", + "year": 2011, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:101665", + "title_zh": "隼鸟号", + "title_en": "はやぶさ/HAYABUSA", + "translation_source": "tmdb", + "reputation_score": 7.2, + "reputation_votes": 5, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"101665\"}" + }, + "display_title": "隼鸟号 はやぶさ/HAYABUSA" + }, + { + "path": "/mnt/Downloads/movies/Night.in.Paradise.2021.1080p.NF.WEB-DL.DDP5.1.x264-DoA.mkv", + "filename": "Night.in.Paradise.2021.1080p.NF.WEB-DL.DDP5.1.x264-DoA.mkv", + "category": "movie", + "title": "Night In Paradise", + "year": 2021, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:606523", + "title_zh": "乐园之夜", + "title_en": "낙원의 밤", + "translation_source": "tmdb", + "reputation_score": 6.9, + "reputation_votes": 290, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"606523\"}" + }, + "display_title": "乐园之夜 낙원의 밤" + }, + { + "path": "/mnt/Downloads/movies/Top.Gun.Maverick.2022.1080p.BluRay.x265.10bit-WiKi/Sample/Top.Gun.Maverick.2022.1080p.BluRay.x265.10bit-WiKi.mkv", + "filename": "Top.Gun.Maverick.2022.1080p.BluRay.x265.10bit-WiKi.mkv", + "category": "movie", + "title": "Top Gun Maverick", + "year": 2022, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:361743", + "title_zh": "Top Gun: Maverick", + "title_en": "Top Gun: Maverick", + "translation_source": "tmdb", + "reputation_score": 8.158, + "reputation_votes": 10565, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"361743\"}" + }, + "display_title": "Top Gun: Maverick" + }, + { + "path": "/mnt/Downloads/movies/Top.Gun.Maverick.2022.1080p.BluRay.x265.10bit-WiKi/Top.Gun.Maverick.2022.1080p.BluRay.x265.10bit-WiKi.mkv", + "filename": "Top.Gun.Maverick.2022.1080p.BluRay.x265.10bit-WiKi.mkv", + "category": "movie", + "title": "Top Gun Maverick", + "year": 2022, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:361743", + "title_zh": "Top Gun: Maverick", + "title_en": "Top Gun: Maverick", + "translation_source": "tmdb", + "reputation_score": 8.158, + "reputation_votes": 10565, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"361743\"}" + }, + "display_title": "Top Gun: Maverick" + }, + { + "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", + "filename": "The.Hating.Game.2021.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", + "category": "movie", + "title": "The Hating Game", + "year": 2021, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:603661", + "title_zh": "欢喜冤家", + "title_en": "The Hating Game", + "translation_source": "tmdb", + "reputation_score": 7.273, + "reputation_votes": 1164, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"603661\"}" + }, + "display_title": "欢喜冤家 The Hating Game" + }, + { + "path": "/mnt/Downloads/movies/The.Hating.Game.2021.1080p.BluRay.x264.DTS-WiKi/The.Hating.Game.2021.1080p.BluRay.x264.DTS-WiKi.mkv", + "filename": "The.Hating.Game.2021.1080p.BluRay.x264.DTS-WiKi.mkv", + "category": "movie", + "title": "The Hating Game", + "year": 2021, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:603661", + "title_zh": "欢喜冤家", + "title_en": "The Hating Game", + "translation_source": "tmdb", + "reputation_score": 7.273, + "reputation_votes": 1164, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"603661\"}" + }, + "display_title": "欢喜冤家 The Hating Game" + }, + { + "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", + "filename": "Ghostbusters.Frozen.Empire.2024.1080p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi.mkv", + "category": "movie", + "title": "Ghostbusters Frozen Empire", + "year": 2024, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:967847", + "title_zh": "超能敢死队:冰封之城", + "title_en": "Ghostbusters: Frozen Empire", + "translation_source": "tmdb", + "reputation_score": 6.5, + "reputation_votes": 2057, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"967847\"}" + }, + "display_title": "超能敢死队:冰封之城 Ghostbusters: Frozen Empire" + }, + { + "path": "/mnt/Downloads/movies/超时空亚当计划.The.Adam.Project.2022.1080p.WEB-DL.H264.AC3-HDHWEB/超時空亞當計畫.mkv", + "filename": "超時空亞當計畫.mkv", + "category": "movie", + "title": "超時空亞當計畫", + "year": null, + "confidence": 0.3, + "needs_review": true, + "canonical_id": "tmdb:movie:696806", + "title_zh": "The Adam Project", + "title_en": "The Adam Project", + "translation_source": "tmdb", + "reputation_score": 6.999, + "reputation_votes": 4785, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"696806\"}" + }, + "display_title": "The Adam Project" + }, + { + "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", + "filename": "The.Hound.of.the.Baskervilles.Sherlock.the.Movie.2022.1080p.BluRay.x265.10bit.DTS-WiKi.sample.mkv", + "category": "movie", + "title": "The Hound Of The Baskervilles Sherlock The Movie", + "year": 2022, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:886024", + "title_zh": "巴斯克维尔的猎犬 夏洛克剧场版", + "title_en": "バスカヴィル家の犬 シャーロック劇場版", + "translation_source": "tmdb", + "reputation_score": 7.0, + "reputation_votes": 6, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"886024\"}" + }, + "display_title": "巴斯克维尔的猎犬 夏洛克剧场版 バスカヴィル家の犬 シャーロック劇場版" + }, + { + "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", + "filename": "The.Hound.of.the.Baskervilles.Sherlock.the.Movie.2022.1080p.BluRay.x265.10bit.DTS-WiKi.mkv", + "category": "movie", + "title": "The Hound Of The Baskervilles Sherlock The Movie", + "year": 2022, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:886024", + "title_zh": "巴斯克维尔的猎犬 夏洛克剧场版", + "title_en": "バスカヴィル家の犬 シャーロック劇場版", + "translation_source": "tmdb", + "reputation_score": 7.0, + "reputation_votes": 6, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"886024\"}" + }, + "display_title": "巴斯克维尔的猎犬 夏洛克剧场版 バスカヴィル家の犬 シャーロック劇場版" + }, + { + "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", + "filename": "Lock.Stock.and.Two.Smoking.Barrels.1998.BluRay.1080p.x264.DTS-WiKi.Sample.mkv", + "category": "movie", + "title": "Lock Stock And Two Smoking Barrels", + "year": 1998, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:100", + "title_zh": "两杆大烟枪", + "title_en": "Lock, Stock and Two Smoking Barrels", + "translation_source": "tmdb", + "reputation_score": 8.098, + "reputation_votes": 7027, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"100\"}" + }, + "display_title": "两杆大烟枪 Lock, Stock and Two Smoking Barrels" + }, + { + "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", + "filename": "Lock.Stock.and.Two.Smoking.Barrels.1998.BluRay.1080p.x264.DTS-WiKi.mkv", + "category": "movie", + "title": "Lock Stock And Two Smoking Barrels", + "year": 1998, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:100", + "title_zh": "两杆大烟枪", + "title_en": "Lock, Stock and Two Smoking Barrels", + "translation_source": "tmdb", + "reputation_score": 8.098, + "reputation_votes": 7027, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"100\"}" + }, + "display_title": "两杆大烟枪 Lock, Stock and Two Smoking Barrels" + }, + { + "path": "/mnt/Downloads/movies/Raging Fire 2021 WEB-DL 4K H265 DDP 5.1-Dave.mkv", + "filename": "Raging Fire 2021 WEB-DL 4K H265 DDP 5.1-Dave.mkv", + "category": "movie", + "title": "Raging Fire", + "year": 2021, + "confidence": 0.7, + "needs_review": true, + "canonical_id": "tmdb:movie:513692", + "title_zh": "怒火·重案", + "title_en": "怒火", + "translation_source": "tmdb", + "reputation_score": 7.007, + "reputation_votes": 284, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"513692\"}" + }, + "display_title": "怒火·重案 怒火" + }, + { + "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", + "filename": "The.Ministry.of.Ungentlemanly.Warfare.2024.1080p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi.mkv", + "category": "movie", + "title": "The Ministry Of Ungentlemanly Warfare", + "year": 2024, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:799583", + "title_zh": "盟军敢死队", + "title_en": "The Ministry of Ungentlemanly Warfare", + "translation_source": "tmdb", + "reputation_score": 7.022, + "reputation_votes": 1752, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"799583\"}" + }, + "display_title": "盟军敢死队 The Ministry of Ungentlemanly Warfare" + }, + { + "path": "/mnt/Downloads/movies/Next.Sohee.2022.1080p.BluRay.x265.10bit.DTS-WiKi/Next.Sohee.2022.1080p.BluRay.x265.10bit.DTS-WiKi.mkv", + "filename": "Next.Sohee.2022.1080p.BluRay.x265.10bit.DTS-WiKi.mkv", + "category": "movie", + "title": "Next Sohee", + "year": 2022, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:923344", + "title_zh": "下一个素熙", + "title_en": "다음 소희", + "translation_source": "tmdb", + "reputation_score": 7.254, + "reputation_votes": 132, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"923344\"}" + }, + "display_title": "下一个素熙 다음 소희" + }, + { + "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", + "filename": "American.Beauty.1999.BluRay.1080p.DTS-HDMA.5.1.x265.10bit-CHD.mkv", + "category": "movie", + "title": "American Beauty", + "year": 1999, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:14", + "title_zh": "美国丽人", + "title_en": "American Beauty", + "translation_source": "tmdb", + "reputation_score": 8.002, + "reputation_votes": 12782, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"14\"}" + }, + "display_title": "美国丽人 American Beauty" + }, + { + "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", + "filename": "Thunderbolts.2025.1080p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi.mkv", + "category": "movie", + "title": "Thunderbolts", + "year": 2025, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:986056", + "title_zh": "雷霆特攻队*", + "title_en": "Thunderbolts*", + "translation_source": "tmdb", + "reputation_score": 7.302, + "reputation_votes": 3179, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"986056\"}" + }, + "display_title": "雷霆特攻队* Thunderbolts*" + }, + { + "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", + "filename": "The.Best.of.Youth.2003.Blu-ray.1080p.DISC2.x265.10bit.DD5.1.MNHD-FRDS.mkv", + "category": "movie", + "title": "The Best Of Youth", + "year": 2003, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:11659", + "title_zh": "灿烂人生", + "title_en": "La meglio gioventù", + "translation_source": "tmdb", + "reputation_score": 8.1, + "reputation_votes": 594, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"11659\"}" + }, + "display_title": "灿烂人生 La meglio gioventù" + }, + { + "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", + "filename": "The.Best.of.Youth.2003.Blu-ray.1080p.DISC1.x265.10bit.DD5.1.MNHD-FRDS.mkv", + "category": "movie", + "title": "The Best Of Youth", + "year": 2003, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:11659", + "title_zh": "灿烂人生", + "title_en": "La meglio gioventù", + "translation_source": "tmdb", + "reputation_score": 8.1, + "reputation_votes": 594, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"11659\"}" + }, + "display_title": "灿烂人生 La meglio gioventù" + }, + { + "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", + "filename": "Man.of.Steel.2013.BluRay.2160p.x265.10bit.HDR.4Audio.mUHD-FRDS.mkv", + "category": "movie", + "title": "Man Of Steel", + "year": 2013, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:49521", + "title_zh": "超人:钢铁之躯", + "title_en": "Man of Steel", + "translation_source": "tmdb", + "reputation_score": 6.639, + "reputation_votes": 15914, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"49521\"}" + }, + "display_title": "超人:钢铁之躯 Man of Steel" + }, + { + "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", + "filename": "Under.The.Tuscan.Sun.2003.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", + "category": "movie", + "title": "Under The Tuscan Sun", + "year": 2003, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:10934", + "title_zh": "托斯卡纳艳阳下", + "title_en": "Under the Tuscan Sun", + "translation_source": "tmdb", + "reputation_score": 6.877, + "reputation_votes": 945, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"10934\"}" + }, + "display_title": "托斯卡纳艳阳下 Under the Tuscan Sun" + }, + { + "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", + "filename": "Under.The.Tuscan.Sun.2003.1080p.BluRay.x264.DTS-WiKi.mkv", + "category": "movie", + "title": "Under The Tuscan Sun", + "year": 2003, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:10934", + "title_zh": "托斯卡纳艳阳下", + "title_en": "Under the Tuscan Sun", + "translation_source": "tmdb", + "reputation_score": 6.877, + "reputation_votes": 945, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"10934\"}" + }, + "display_title": "托斯卡纳艳阳下 Under the Tuscan Sun" + }, + { + "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", + "filename": "Weathering.with.You.2019.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", + "category": "movie", + "title": "Weathering With You", + "year": 2019, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:568160", + "title_zh": "天气之子", + "title_en": "天気の子", + "translation_source": "tmdb", + "reputation_score": 7.986, + "reputation_votes": 2552, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"568160\"}" + }, + "display_title": "天气之子 天気の子" + }, + { + "path": "/mnt/Downloads/movies/Weathering.with.You.2019.1080p.BluRay.x264.DTS-WiKi/Weathering.with.You.2019.1080p.BluRay.x264.DTS-WiKi.mkv", + "filename": "Weathering.with.You.2019.1080p.BluRay.x264.DTS-WiKi.mkv", + "category": "movie", + "title": "Weathering With You", + "year": 2019, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:568160", + "title_zh": "天气之子", + "title_en": "天気の子", + "translation_source": "tmdb", + "reputation_score": 7.986, + "reputation_votes": 2552, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"568160\"}" + }, + "display_title": "天气之子 天気の子" + }, + { + "path": "/mnt/Downloads/movies/Daddio.2023.2160p.AMZN.WEB-DL.DDP5.1.H.265-FLUX.mkv", + "filename": "Daddio.2023.2160p.AMZN.WEB-DL.DDP5.1.H.265-FLUX.mkv", + "category": "movie", + "title": "Daddio", + "year": 2023, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:843416", + "title_zh": "搭车奇缘", + "title_en": "Daddio", + "translation_source": "tmdb", + "reputation_score": 6.3, + "reputation_votes": 286, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"843416\"}" + }, + "display_title": "搭车奇缘 Daddio" + }, + { + "path": "/mnt/Downloads/movies/As.It.Burns.2023.1080p.BluRay.x265.10bit-WiKi/As.It.Burns.2023.1080p.BluRay.x265.10bit-WiKi.mkv", + "filename": "As.It.Burns.2023.1080p.BluRay.x265.10bit-WiKi.mkv", + "category": "movie", + "title": "As It Burns", + "year": 2023, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:993156", + "title_zh": "白昼如焚", + "title_en": "白晝如焚", + "translation_source": "tmdb", + "reputation_score": 4.0, + "reputation_votes": 1, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"993156\"}" + }, + "display_title": "白昼如焚 白晝如焚" + }, + { + "path": "/mnt/Downloads/movies/Wolfs.2024.2160p.ATVP.WEB-DL.DDP5.1.Atmos.DV.H.265-FLUX.mkv", + "filename": "Wolfs.2024.2160p.ATVP.WEB-DL.DDP5.1.Atmos.DV.H.265-FLUX.mkv", + "category": "movie", + "title": "Wolfs", + "year": 2024, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:877817", + "title_zh": "双狼", + "title_en": "Wolfs", + "translation_source": "tmdb", + "reputation_score": 6.548, + "reputation_votes": 1338, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"877817\"}" + }, + "display_title": "双狼 Wolfs" + }, + { + "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", + "filename": "Inside.Out.2015.BluRay.2160p.x265.10bit.HDR.5Audio.mUHD-FRDS.mkv", + "category": "movie", + "title": "Inside Out", + "year": 2015, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:150540", + "title_zh": "头脑特工队", + "title_en": "Inside Out", + "translation_source": "tmdb", + "reputation_score": 7.909, + "reputation_votes": 23149, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"150540\"}" + }, + "display_title": "头脑特工队 Inside Out" + }, + { + "path": "/mnt/Downloads/movies/Airport.2013.1080p.BluRay.x264-WiKi/Sample/Airport.2013.1080p.BluRay.x264-WiKi.sample.mkv", + "filename": "Airport.2013.1080p.BluRay.x264-WiKi.sample.mkv", + "category": "movie", + "title": "Airport", + "year": 2013, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:1627545", + "title_zh": "Airport For Birds (And Other Great Ideas)", + "title_en": "Airport For Birds (And Other Great Ideas)", + "translation_source": "tmdb", + "reputation_score": 0.0, + "reputation_votes": 1, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"1627545\"}" + }, + "display_title": "Airport For Birds (And Other Great Ideas)" + }, + { + "path": "/mnt/Downloads/movies/Airport.2013.1080p.BluRay.x264-WiKi/Airport.2013.1080p.BluRay.x264-WiKi.mkv", + "filename": "Airport.2013.1080p.BluRay.x264-WiKi.mkv", + "category": "movie", + "title": "Airport", + "year": 2013, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:1627545", + "title_zh": "Airport For Birds (And Other Great Ideas)", + "title_en": "Airport For Birds (And Other Great Ideas)", + "translation_source": "tmdb", + "reputation_score": 0.0, + "reputation_votes": 1, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"1627545\"}" + }, + "display_title": "Airport For Birds (And Other Great Ideas)" + }, + { + "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", + "filename": "Forrest.Gump.1994.Bluray.2160p.x265.10bit.HDR.5Audios.mUHD-FRDS.mkv", + "category": "movie", + "title": "Forrest Gump", + "year": 1994, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:13", + "title_zh": "阿甘正传", + "title_en": "Forrest Gump", + "translation_source": "tmdb", + "reputation_score": 8.462, + "reputation_votes": 29214, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"13\"}" + }, + "display_title": "阿甘正传 Forrest Gump" + }, + { + "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", + "filename": "Lady.Chatterley's.Lover.1981.720p.BluRay.x264-WiKi.Sample.mkv", + "category": "movie", + "title": "Lady Chatterley'S Lover", + "year": 1981, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:35685", + "title_zh": "查泰莱夫人的情人", + "title_en": "Lady Chatterley's Lover", + "translation_source": "tmdb", + "reputation_score": 5.4, + "reputation_votes": 82, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"35685\"}" + }, + "display_title": "查泰莱夫人的情人 Lady Chatterley's Lover" + }, + { + "path": "/mnt/Downloads/movies/Lady.Chatterley's.Lover.1981.720p.BluRay.x264-WiKi/Lady.Chatterley's.Lover.1981.720p.BluRay.x264-WiKi.mkv", + "filename": "Lady.Chatterley's.Lover.1981.720p.BluRay.x264-WiKi.mkv", + "category": "movie", + "title": "Lady Chatterley'S Lover", + "year": 1981, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:35685", + "title_zh": "查泰莱夫人的情人", + "title_en": "Lady Chatterley's Lover", + "translation_source": "tmdb", + "reputation_score": 5.4, + "reputation_votes": 82, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"35685\"}" + }, + "display_title": "查泰莱夫人的情人 Lady Chatterley's Lover" + }, + { + "path": "/mnt/Downloads/movies/Past.Lives.2023.REPACK.1080p.AMZN.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv", + "filename": "Past.Lives.2023.REPACK.1080p.AMZN.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv", + "category": "movie", + "title": "Past Lives", + "year": 2023, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:666277", + "title_zh": "过往人生", + "title_en": "Past Lives", + "translation_source": "tmdb", + "reputation_score": 7.721, + "reputation_votes": 2179, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"666277\"}" + }, + "display_title": "过往人生 Past Lives" + }, + { + "path": "/mnt/Downloads/movies/The.Killer.2023.1080p.NF.WEB-DL.DDP5.1.H.264-playWEB.mkv", + "filename": "The.Killer.2023.1080p.NF.WEB-DL.DDP5.1.H.264-playWEB.mkv", + "category": "movie", + "title": "The Killer", + "year": 2023, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:800158", + "title_zh": "杀手", + "title_en": "The Killer", + "translation_source": "tmdb", + "reputation_score": 6.582, + "reputation_votes": 2679, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"800158\"}" + }, + "display_title": "杀手 The Killer" + }, + { + "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", + "filename": "Big.Shot's.Funeral.2001.720p.BluRay.x264-WiKi.Sample.mkv", + "category": "movie", + "title": "Big Shot'S Funeral", + "year": 2001, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:77633", + "title_zh": "大腕", + "title_en": "大腕", + "translation_source": "tmdb", + "reputation_score": 6.509, + "reputation_votes": 54, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"77633\"}" + }, + "display_title": "大腕" + }, + { + "path": "/mnt/Downloads/movies/Big.Shot's.Funeral.2001.720p.BluRay.x264-WiKi/Big.Shot's.Funeral.2001.720p.BluRay.x264-WiKi.mkv", + "filename": "Big.Shot's.Funeral.2001.720p.BluRay.x264-WiKi.mkv", + "category": "movie", + "title": "Big Shot'S Funeral", + "year": 2001, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:77633", + "title_zh": "大腕", + "title_en": "大腕", + "translation_source": "tmdb", + "reputation_score": 6.509, + "reputation_votes": 54, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"77633\"}" + }, + "display_title": "大腕" + }, + { + "path": "/mnt/Downloads/movies/Rurouni.Kenshin.the.Beginning.2021.1080p.NF.WEB-DL.DDP5.1.x264-DoA.mkv", + "filename": "Rurouni.Kenshin.the.Beginning.2021.1080p.NF.WEB-DL.DDP5.1.x264-DoA.mkv", + "category": "movie", + "title": "Rurouni Kenshin The Beginning", + "year": 2021, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:672322", + "title_zh": "浪客剑心最终章:追忆篇", + "title_en": "るろうに剣心 最終章 The Beginning", + "translation_source": "tmdb", + "reputation_score": 7.648, + "reputation_votes": 523, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"672322\"}" + }, + "display_title": "浪客剑心最终章:追忆篇 るろうに剣心 最終章 The Beginning" + }, + { + "path": "/mnt/Downloads/movies/Personal.Taulor.2013.1080p.WEB-DL.x264.AAC-SmY.mkv", + "filename": "Personal.Taulor.2013.1080p.WEB-DL.x264.AAC-SmY.mkv", + "category": "movie", + "title": "Personal Taulor", + "year": 2013, + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Personal Taulor" + }, + { + "path": "/mnt/Downloads/movies/見えない目撃者 2019 [R15+指定] 1080p HDTV x264 AAC5.1-DoA.mkv", + "filename": "見えない目撃者 2019 [R15+指定] 1080p HDTV x264 AAC5.1-DoA.mkv", + "category": "movie", + "title": "見えない目撃者", + "year": 2019, + "confidence": 0.7, + "needs_review": true, + "canonical_id": "tmdb:movie:619173", + "title_zh": "看不见的目击者", + "title_en": "見えない目撃者", + "translation_source": "tmdb", + "reputation_score": 7.0, + "reputation_votes": 20, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"619173\"}" + }, + "display_title": "看不见的目击者 見えない目撃者" + }, + { + "path": "/mnt/Downloads/movies/Freaky.2020.720p.BluRay.x264-WiKi/Sample/Freaky.2020.720p.BluRay.x264-WiKi.Sample.mkv", + "filename": "Freaky.2020.720p.BluRay.x264-WiKi.Sample.mkv", + "category": "movie", + "title": "Freaky", + "year": 2020, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:551804", + "title_zh": "砍人快乐", + "title_en": "Freaky", + "translation_source": "tmdb", + "reputation_score": 6.558, + "reputation_votes": 1782, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"551804\"}" + }, + "display_title": "砍人快乐 Freaky" + }, + { + "path": "/mnt/Downloads/movies/Freaky.2020.720p.BluRay.x264-WiKi/Freaky.2020.720p.BluRay.x264-WiKi.mkv", + "filename": "Freaky.2020.720p.BluRay.x264-WiKi.mkv", + "category": "movie", + "title": "Freaky", + "year": 2020, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:551804", + "title_zh": "砍人快乐", + "title_en": "Freaky", + "translation_source": "tmdb", + "reputation_score": 6.558, + "reputation_votes": 1782, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"551804\"}" + }, + "display_title": "砍人快乐 Freaky" + }, + { + "path": "/mnt/Downloads/movies/Black.Widow.2021.1080p.DSNP.WEB-DL.DDP.5.1.Atmos.H.265-FLUX.mkv", + "filename": "Black.Widow.2021.1080p.DSNP.WEB-DL.DDP.5.1.Atmos.H.265-FLUX.mkv", + "category": "movie", + "title": "Black Widow", + "year": 2021, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:497698", + "title_zh": "Black Widow", + "title_en": "Black Widow", + "translation_source": "tmdb", + "reputation_score": 7.178, + "reputation_votes": 11004, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"497698\"}" + }, + "display_title": "Black Widow" + }, + { + "path": "/mnt/Downloads/movies/The.Father.2020.1080p.BluRay.x264.DTS-WiKi/Sample/The.Father.2020.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", + "filename": "The.Father.2020.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", + "category": "movie", + "title": "The Father", + "year": 2020, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:600354", + "title_zh": "困在时间里的父亲", + "title_en": "The Father", + "translation_source": "tmdb", + "reputation_score": 8.097, + "reputation_votes": 3525, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"600354\"}" + }, + "display_title": "困在时间里的父亲 The Father" + }, + { + "path": "/mnt/Downloads/movies/The.Father.2020.1080p.BluRay.x264.DTS-WiKi/The.Father.2020.1080p.BluRay.x264.DTS-WiKi.mkv", + "filename": "The.Father.2020.1080p.BluRay.x264.DTS-WiKi.mkv", + "category": "movie", + "title": "The Father", + "year": 2020, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:600354", + "title_zh": "困在时间里的父亲", + "title_en": "The Father", + "translation_source": "tmdb", + "reputation_score": 8.097, + "reputation_votes": 3525, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"600354\"}" + }, + "display_title": "困在时间里的父亲 The Father" + }, + { + "path": "/mnt/Downloads/movies/No.Longer.Human.2019.720p.BluRay.x264-WiKi/No.Longer.Human.2019.720p.BluRay.x264-WiKi.mkv", + "filename": "No.Longer.Human.2019.720p.BluRay.x264-WiKi.mkv", + "category": "movie", + "title": "No Longer Human", + "year": 2019, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:593240", + "title_zh": "人间失格", + "title_en": "HUMAN LOST 人間失格", + "translation_source": "tmdb", + "reputation_score": 4.922, + "reputation_votes": 32, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"593240\"}" + }, + "display_title": "人间失格 HUMAN LOST 人間失格" + }, + { + "path": "/mnt/Downloads/movies/No.Longer.Human.2019.720p.BluRay.x264-WiKi/Sample/No.Longer.Human.2019.720p.BluRay.x264-WiKi.sample.mkv", + "filename": "No.Longer.Human.2019.720p.BluRay.x264-WiKi.sample.mkv", + "category": "movie", + "title": "No Longer Human", + "year": 2019, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:593240", + "title_zh": "人间失格", + "title_en": "HUMAN LOST 人間失格", + "translation_source": "tmdb", + "reputation_score": 4.922, + "reputation_votes": 32, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"593240\"}" + }, + "display_title": "人间失格 HUMAN LOST 人間失格" + }, + { + "path": "/mnt/Downloads/movies/Napoleon.The.Directors.Cut.2024.1080p.Apple.TV+.WEB-DL.DDP.5.1.Atmos.H.264-CHDWEB.mkv", + "filename": "Napoleon.The.Directors.Cut.2024.1080p.Apple.TV+.WEB-DL.DDP.5.1.Atmos.H.264-CHDWEB.mkv", + "category": "movie", + "title": "Napoleon The Directors Cut", + "year": 2024, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:753342", + "title_zh": "拿破仑", + "title_en": "Napoleon", + "translation_source": "tmdb", + "reputation_score": 6.31, + "reputation_votes": 2983, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"753342\"}" + }, + "display_title": "拿破仑 Napoleon" + }, + { + "path": "/mnt/Downloads/movies/Assassination.2015.1080p.BluRay.x264.DTS-WiKi/Sample/Assassination.2015.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", + "filename": "Assassination.2015.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", + "category": "movie", + "title": "Assassination", + "year": 2015, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:364619", + "title_zh": "The Assassination of Bane by the Coward Bill Wilson", + "title_en": "The Assassination of Bane by the Coward Bill Wilson", + "translation_source": "tmdb", + "reputation_score": 1.0, + "reputation_votes": 1, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"364619\"}" + }, + "display_title": "The Assassination of Bane by the Coward Bill Wilson" + }, + { + "path": "/mnt/Downloads/movies/Assassination.2015.1080p.BluRay.x264.DTS-WiKi/Assassination.2015.1080p.BluRay.x264.DTS-WiKi.mkv", + "filename": "Assassination.2015.1080p.BluRay.x264.DTS-WiKi.mkv", + "category": "movie", + "title": "Assassination", + "year": 2015, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:364619", + "title_zh": "The Assassination of Bane by the Coward Bill Wilson", + "title_en": "The Assassination of Bane by the Coward Bill Wilson", + "translation_source": "tmdb", + "reputation_score": 1.0, + "reputation_votes": 1, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"364619\"}" + }, + "display_title": "The Assassination of Bane by the Coward Bill Wilson" + }, + { + "path": "/mnt/Downloads/movies/Greenland.2020.1080p.BluRay.x265.10bit.DTS-PTH/Greenland.2020.1080p.BluRay.x265.10bit.DTS-PTH.mkv", + "filename": "Greenland.2020.1080p.BluRay.x265.10bit.DTS-PTH.mkv", + "category": "movie", + "title": "Greenland", + "year": 2020, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:524047", + "title_zh": "末日逃生", + "title_en": "Greenland", + "translation_source": "tmdb", + "reputation_score": 7.128, + "reputation_votes": 5045, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"524047\"}" + }, + "display_title": "末日逃生 Greenland" + }, + { + "path": "/mnt/Downloads/movies/The.Family.Plan.2.2025.1080p.ATVP.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv", + "filename": "The.Family.Plan.2.2025.1080p.ATVP.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv", + "category": "movie", + "title": "The Family Plan 2", + "year": 2025, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:1363123", + "title_zh": "家庭计划2", + "title_en": "The Family Plan 2", + "translation_source": "tmdb", + "reputation_score": 6.533, + "reputation_votes": 490, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"1363123\"}" + }, + "display_title": "家庭计划2 The Family Plan 2" + }, + { + "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", + "filename": "Top.Gun.Maverick.2022.2160p.WEB-DL.DDP5.1.Atmos.HDR.HEVC-CMRG.mkv", + "category": "movie", + "title": "Top Gun Maverick", + "year": 2022, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:361743", + "title_zh": "Top Gun: Maverick", + "title_en": "Top Gun: Maverick", + "translation_source": "tmdb", + "reputation_score": 8.158, + "reputation_votes": 10565, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"361743\"}" + }, + "display_title": "Top Gun: Maverick" + }, + { + "path": "/mnt/Downloads/movies/Juror.#2.2024.1080p.BluRay.x265.10bit-WiKi/Juror.#2.2024.1080p.BluRay.x265.10bit-WiKi.mkv", + "filename": "Juror.#2.2024.1080p.BluRay.x265.10bit-WiKi.mkv", + "category": "movie", + "title": "Juror #2", + "year": 2024, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:1106739", + "title_zh": "二号陪审员", + "title_en": "Juror #2", + "translation_source": "tmdb", + "reputation_score": 6.879, + "reputation_votes": 2336, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"1106739\"}" + }, + "display_title": "二号陪审员 Juror #2" + }, + { + "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", + "filename": "Basic.Instinct.Director's.Cut.1992.BluRay.720p.x264.DTS-WiKi.mkv", + "category": "movie", + "title": "Basic Instinct Director'S Cut", + "year": 1992, + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Basic Instinct Director'S Cut" + }, + { + "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", + "filename": "Basic.Instinct.Director's.Cut.1992.BluRay.720p.x264.DTS-WiKi.Sample.mkv", + "category": "movie", + "title": "Basic Instinct Director'S Cut", + "year": 1992, + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Basic Instinct Director'S Cut" + }, + { + "path": "/mnt/Downloads/movies/脚本バカリズムの新春スペシャルドラマ「侵入者たちの晩餐」 SP 1080p HDTV x264 AAC.mkv", + "filename": "脚本バカリズムの新春スペシャルドラマ「侵入者たちの晩餐」 SP 1080p HDTV x264 AAC.mkv", + "category": "movie", + "title": "脚本バカリズムの新春スペシャルドラマ「侵入者たちの晩餐」 Sp", + "year": null, + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "脚本バカリズムの新春スペシャルドラマ「侵入者たちの晩餐」 Sp" + }, + { + "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", + "filename": "Raya.and.the.Last.Dragon.2021.720p.BluRay.x264-WiKi.mkv", + "category": "movie", + "title": "Raya And The Last Dragon", + "year": 2021, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:527774", + "title_zh": "寻龙传说", + "title_en": "Raya and the Last Dragon", + "translation_source": "tmdb", + "reputation_score": 7.805, + "reputation_votes": 7163, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"527774\"}" + }, + "display_title": "寻龙传说 Raya and the Last Dragon" + }, + { + "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", + "filename": "Raya.and.the.Last.Dragon.2021.720p.BluRay.x264-WiKi.Sample.mkv", + "category": "movie", + "title": "Raya And The Last Dragon", + "year": 2021, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:527774", + "title_zh": "寻龙传说", + "title_en": "Raya and the Last Dragon", + "translation_source": "tmdb", + "reputation_score": 7.805, + "reputation_votes": 7163, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"527774\"}" + }, + "display_title": "寻龙传说 Raya and the Last Dragon" + }, + { + "path": "/mnt/Downloads/movies/Violent.Night.2022.1080p.BluRay.x265.10bit.DTS-WiKi/Violent.Night.2022.1080p.BluRay.x265.10bit.DTS-WiKi.mkv", + "filename": "Violent.Night.2022.1080p.BluRay.x265.10bit.DTS-WiKi.mkv", + "category": "movie", + "title": "Violent Night", + "year": 2022, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:899112", + "title_zh": "暴力之夜", + "title_en": "Violent Night", + "translation_source": "tmdb", + "reputation_score": 7.237, + "reputation_votes": 2468, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"899112\"}" + }, + "display_title": "暴力之夜 Violent Night" + }, + { + "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", + "filename": "Dune.Part.Two.2024.1080p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi.mkv", + "category": "movie", + "title": "Dune Part Two", + "year": 2024, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:693134", + "title_zh": "沙丘2", + "title_en": "Dune: Part Two", + "translation_source": "tmdb", + "reputation_score": 8.131, + "reputation_votes": 7486, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"693134\"}" + }, + "display_title": "沙丘2 Dune: Part Two" + }, + { + "path": "/mnt/Downloads/movies/I.Wish.2011.1080p.BluRay.x265.10bit-WiKi/Sample/I.Wish.2011.1080p.BluRay.x265.10bit-WiKi.Sample.mkv", + "filename": "I.Wish.2011.1080p.BluRay.x265.10bit-WiKi.Sample.mkv", + "category": "movie", + "title": "I Wish", + "year": 2011, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:312790", + "title_zh": "I Wish We Were Dancers", + "title_en": "I Wish We Were Dancers", + "translation_source": "tmdb", + "reputation_score": 5.5, + "reputation_votes": 2, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"312790\"}" + }, + "display_title": "I Wish We Were Dancers" + }, + { + "path": "/mnt/Downloads/movies/I.Wish.2011.1080p.BluRay.x265.10bit-WiKi/I.Wish.2011.1080p.BluRay.x265.10bit-WiKi.mkv", + "filename": "I.Wish.2011.1080p.BluRay.x265.10bit-WiKi.mkv", + "category": "movie", + "title": "I Wish", + "year": 2011, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:312790", + "title_zh": "I Wish We Were Dancers", + "title_en": "I Wish We Were Dancers", + "translation_source": "tmdb", + "reputation_score": 5.5, + "reputation_votes": 2, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"312790\"}" + }, + "display_title": "I Wish We Were Dancers" + }, + { + "path": "/mnt/Downloads/movies/Evangelion.3.0+1.01.Thrice.Upon.a.Time.2021.Amazon.WEB-DL.1080p.H264.DDP-AREY.mkv", + "filename": "Evangelion.3.0+1.01.Thrice.Upon.a.Time.2021.Amazon.WEB-DL.1080p.H264.DDP-AREY.mkv", + "category": "movie", + "title": "Evangelion 3 0+1 01 Thrice Upon A Time", + "year": 2021, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:283566", + "title_zh": "福音战士新剧场版:终", + "title_en": "シン・エヴァンゲリオン劇場版:||", + "translation_source": "tmdb", + "reputation_score": 8.193, + "reputation_votes": 910, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"283566\"}" + }, + "display_title": "福音战士新剧场版:终 シン・エヴァンゲリオン劇場版:||" + }, + { + "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", + "filename": "The.Shadow's.Edge.2025.1080p.BluRay.x265.10bit.DTS-WiKi.mkv", + "category": "movie", + "title": "The Shadow'S Edge", + "year": 2025, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:1419406", + "title_zh": "捕风追影", + "title_en": "捕风追影", + "translation_source": "tmdb", + "reputation_score": 7.2, + "reputation_votes": 411, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"1419406\"}" + }, + "display_title": "捕风追影" + }, + { + "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", + "filename": "Fight.Club.1999.BluRay.1080p.x265.10bit.2Audio.MNHD-FRDS.mkv", + "category": "movie", + "title": "Fight Club", + "year": 1999, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:550", + "title_zh": "搏击俱乐部", + "title_en": "Fight Club", + "translation_source": "tmdb", + "reputation_score": 8.438, + "reputation_votes": 31400, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"550\"}" + }, + "display_title": "搏击俱乐部 Fight Club" + }, + { + "path": "/mnt/Downloads/movies/特送.Special.Delivery.2022.BluRay.MNHD-FRDS/BDMenu.mkv", + "filename": "BDMenu.mkv", + "category": "movie", + "title": "Bdmenu", + "year": null, + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Bdmenu" + }, + { + "path": "/mnt/Downloads/movies/特送.Special.Delivery.2022.BluRay.MNHD-FRDS/Special.Delivery.2022.BluRay.1080p.x265.10bit.DDP5.1.MNHD-FRDS.mkv", + "filename": "Special.Delivery.2022.BluRay.1080p.x265.10bit.DDP5.1.MNHD-FRDS.mkv", + "category": "movie", + "title": "Special Delivery", + "year": 2022, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:1035537", + "title_zh": "Special Delivery", + "title_en": "Special Delivery", + "translation_source": "tmdb", + "reputation_score": 8.3, + "reputation_votes": 3, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"1035537\"}" + }, + "display_title": "Special Delivery" + }, + { + "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", + "filename": "July.Rhapsody.2002.720p.BluRay.DD5.1.x264.Dual.Audio-BMDru.mkv", + "category": "movie", + "title": "July Rhapsody", + "year": 2002, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:51484", + "title_zh": "男人四十", + "title_en": "男人四十", + "translation_source": "tmdb", + "reputation_score": 6.5, + "reputation_votes": 29, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"51484\"}" + }, + "display_title": "男人四十" + }, + { + "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", + "filename": "Howl's.Moving.Castle.2004.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", + "category": "movie", + "title": "Howl'S Moving Castle", + "year": 2004, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:4935", + "title_zh": "哈尔的移动城堡", + "title_en": "ハウルの動く城", + "translation_source": "tmdb", + "reputation_score": 8.386, + "reputation_votes": 10808, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"4935\"}" + }, + "display_title": "哈尔的移动城堡 ハウルの動く城" + }, + { + "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", + "filename": "Howl's.Moving.Castle.2004.1080p.BluRay.x264.DTS-WiKi.mkv", + "category": "movie", + "title": "Howl'S Moving Castle", + "year": 2004, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:4935", + "title_zh": "哈尔的移动城堡", + "title_en": "ハウルの動く城", + "translation_source": "tmdb", + "reputation_score": 8.386, + "reputation_votes": 10808, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"4935\"}" + }, + "display_title": "哈尔的移动城堡 ハウルの動く城" + }, + { + "path": "/mnt/Downloads/movies/A.Real.Pain.2024.1080p.AMZN.WEB-DL.DDP5.1.H.264-FLUX.mkv", + "filename": "A.Real.Pain.2024.1080p.AMZN.WEB-DL.DDP5.1.H.264-FLUX.mkv", + "category": "movie", + "title": "A Real Pain", + "year": 2024, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:1013850", + "title_zh": "心伤旅行团", + "title_en": "A Real Pain", + "translation_source": "tmdb", + "reputation_score": 6.765, + "reputation_votes": 1303, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"1013850\"}" + }, + "display_title": "心伤旅行团 A Real Pain" + }, + { + "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", + "filename": "法式火锅.The.Taste.of.Things.2023.1080p.BluRay.x265.10bit.DDP5.1.MNHD-FRDS.mkv", + "category": "movie", + "title": "法式火锅 The Taste Of Things", + "year": 2023, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:964960", + "title_zh": "法式火锅", + "title_en": "La Passion de Dodin Bouffant", + "translation_source": "tmdb", + "reputation_score": 7.092, + "reputation_votes": 369, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"964960\"}" + }, + "display_title": "法式火锅 La Passion de Dodin Bouffant" + }, + { + "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", + "filename": "Berserk.The.Golden.Age.Arc.The.Egg.of.the.King.2012.1080p.BluRay.x264.DTS-WiKi.mkv", + "category": "movie", + "title": "Berserk The Golden Age Arc The Egg Of The King", + "year": 2012, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:113082", + "title_zh": "剑风传奇 黄金时代篇1:霸王之卵", + "title_en": "ベルセルク 黄金時代篇I 覇王の卵", + "translation_source": "tmdb", + "reputation_score": 7.236, + "reputation_votes": 530, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"113082\"}" + }, + "display_title": "剑风传奇 黄金时代篇1:霸王之卵 ベルセルク 黄金時代篇I 覇王の卵" + }, + { + "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", + "filename": "Berserk.The.Golden.Age.Arc.The.Egg.of.the.King.2012.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", + "category": "movie", + "title": "Berserk The Golden Age Arc The Egg Of The King", + "year": 2012, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:113082", + "title_zh": "剑风传奇 黄金时代篇1:霸王之卵", + "title_en": "ベルセルク 黄金時代篇I 覇王の卵", + "translation_source": "tmdb", + "reputation_score": 7.236, + "reputation_votes": 530, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"113082\"}" + }, + "display_title": "剑风传奇 黄金时代篇1:霸王之卵 ベルセルク 黄金時代篇I 覇王の卵" + }, + { + "path": "/mnt/Downloads/movies/Remember.2022.1080p.SEEZN.WEB-DL.AAC2.0.H.264-tG1R0.mkv", + "filename": "Remember.2022.1080p.SEEZN.WEB-DL.AAC2.0.H.264-tG1R0.mkv", + "category": "movie", + "title": "Remember", + "year": 2022, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:960688", + "title_zh": "Remember Me", + "title_en": "Remember Me", + "translation_source": "tmdb", + "reputation_score": 4.5, + "reputation_votes": 4, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"960688\"}" + }, + "display_title": "Remember Me" + }, + { + "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", + "filename": "Where.the.Crawdads.Sing.2022.1080p.BluRay.x265.10bit.DTS-WiKi.Sample.mkv", + "category": "movie", + "title": "Where The Crawdads Sing", + "year": 2022, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:682507", + "title_zh": "沼泽深处的女孩", + "title_en": "Where the Crawdads Sing", + "translation_source": "tmdb", + "reputation_score": 7.529, + "reputation_votes": 2192, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"682507\"}" + }, + "display_title": "沼泽深处的女孩 Where the Crawdads Sing" + }, + { + "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", + "filename": "Where.the.Crawdads.Sing.2022.1080p.BluRay.x265.10bit.DTS-WiKi.mkv", + "category": "movie", + "title": "Where The Crawdads Sing", + "year": 2022, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:682507", + "title_zh": "沼泽深处的女孩", + "title_en": "Where the Crawdads Sing", + "translation_source": "tmdb", + "reputation_score": 7.529, + "reputation_votes": 2192, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"682507\"}" + }, + "display_title": "沼泽深处的女孩 Where the Crawdads Sing" + }, + { + "path": "/mnt/Downloads/movies/A.Loving.Husband.2016.1080p.BluRay.x264-WiKi/Sample/A.Loving.Husband.2016.1080p.BluRay.x264-WiKi.sample.mkv", + "filename": "A.Loving.Husband.2016.1080p.BluRay.x264-WiKi.sample.mkv", + "category": "movie", + "title": "A Loving Husband", + "year": 2016, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:411609", + "title_zh": "恋妻家宫本", + "title_en": "恋妻家宮本", + "translation_source": "tmdb", + "reputation_score": 7.0, + "reputation_votes": 11, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"411609\"}" + }, + "display_title": "恋妻家宫本 恋妻家宮本" + }, + { + "path": "/mnt/Downloads/movies/A.Loving.Husband.2016.1080p.BluRay.x264-WiKi/A.Loving.Husband.2016.1080p.BluRay.x264-WiKi.mkv", + "filename": "A.Loving.Husband.2016.1080p.BluRay.x264-WiKi.mkv", + "category": "movie", + "title": "A Loving Husband", + "year": 2016, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:411609", + "title_zh": "恋妻家宫本", + "title_en": "恋妻家宮本", + "translation_source": "tmdb", + "reputation_score": 7.0, + "reputation_votes": 11, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"411609\"}" + }, + "display_title": "恋妻家宫本 恋妻家宮本" + }, + { + "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", + "filename": "And.the.Baton.Was.Passed.2021.1080p.BluRay.x264-WiKi.sample.mkv", + "category": "movie", + "title": "And The Baton Was Passed", + "year": 2021, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:853731", + "title_zh": "爱的接力棒", + "title_en": "そして、バトンは渡された", + "translation_source": "tmdb", + "reputation_score": 6.5, + "reputation_votes": 6, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"853731\"}" + }, + "display_title": "爱的接力棒 そして、バトンは渡された" + }, + { + "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", + "filename": "And.the.Baton.Was.Passed.2021.1080p.BluRay.x264-WiKi.mkv", + "category": "movie", + "title": "And The Baton Was Passed", + "year": 2021, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:853731", + "title_zh": "爱的接力棒", + "title_en": "そして、バトンは渡された", + "translation_source": "tmdb", + "reputation_score": 6.5, + "reputation_votes": 6, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"853731\"}" + }, + "display_title": "爱的接力棒 そして、バトンは渡された" + }, + { + "path": "/mnt/Downloads/movies/The.Policeman's.Lineage.2022.1080p.WEB-DL.DDP5.1.H264-HAMR.mkv", + "filename": "The.Policeman's.Lineage.2022.1080p.WEB-DL.DDP5.1.H264-HAMR.mkv", + "category": "movie", + "title": "The Policeman'S Lineage", + "year": 2022, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:610321", + "title_zh": "警官之血", + "title_en": "경관의 피", + "translation_source": "tmdb", + "reputation_score": 6.625, + "reputation_votes": 36, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"610321\"}" + }, + "display_title": "警官之血 경관의 피" + }, + { + "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", + "filename": "The.Voice.of.Sin.2020.720p.BluRay.x264-WiKi.sample.mkv", + "category": "movie", + "title": "The Voice Of Sin", + "year": 2020, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:718497", + "title_zh": "罪之声", + "title_en": "罪の声", + "translation_source": "tmdb", + "reputation_score": 7.0, + "reputation_votes": 11, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"718497\"}" + }, + "display_title": "罪之声 罪の声" + }, + { + "path": "/mnt/Downloads/movies/The.Voice.of.Sin.2020.720p.BluRay.x264-WiKi/The.Voice.of.Sin.2020.720p.BluRay.x264-WiKi.mkv", + "filename": "The.Voice.of.Sin.2020.720p.BluRay.x264-WiKi.mkv", + "category": "movie", + "title": "The Voice Of Sin", + "year": 2020, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:718497", + "title_zh": "罪之声", + "title_en": "罪の声", + "translation_source": "tmdb", + "reputation_score": 7.0, + "reputation_votes": 11, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"718497\"}" + }, + "display_title": "罪之声 罪の声" + }, + { + "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", + "filename": "Totto.Chan.The.Little.Girl.at.the.Window.2023.1080p.BluRay.x265.10bit.DTS-WiKi.mkv", + "category": "movie", + "title": "Totto Chan The Little Girl At The Window", + "year": 2023, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:1106904", + "title_zh": "窗边的小豆豆", + "title_en": "映画 窓ぎわのトットちゃん", + "translation_source": "tmdb", + "reputation_score": 7.3, + "reputation_votes": 34, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"1106904\"}" + }, + "display_title": "窗边的小豆豆 映画 窓ぎわのトットちゃん" + }, + { + "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", + "filename": "Tazza.The.Hidden.Card.2014.720p.BluRay.x264-WiKi.sample.mkv", + "category": "movie", + "title": "Tazza The Hidden Card", + "year": 2014, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:290865", + "title_zh": "老千2:神之手", + "title_en": "타짜: 신의 손", + "translation_source": "tmdb", + "reputation_score": 7.0, + "reputation_votes": 93, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"290865\"}" + }, + "display_title": "老千2:神之手 타짜: 신의 손" + }, + { + "path": "/mnt/Downloads/movies/Tazza.The.Hidden.Card.2014.720p.BluRay.x264-WiKi/Tazza.The.Hidden.Card.2014.720p.BluRay.x264-WiKi.mkv", + "filename": "Tazza.The.Hidden.Card.2014.720p.BluRay.x264-WiKi.mkv", + "category": "movie", + "title": "Tazza The Hidden Card", + "year": 2014, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:290865", + "title_zh": "老千2:神之手", + "title_en": "타짜: 신의 손", + "translation_source": "tmdb", + "reputation_score": 7.0, + "reputation_votes": 93, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"290865\"}" + }, + "display_title": "老千2:神之手 타짜: 신의 손" + }, + { + "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", + "filename": "Companion.2025.2160p.iT.WEB-DL.HDR.H.265.DDP5.1.Atmos-Nest@ADWeb.mkv", + "category": "movie", + "title": "Companion", + "year": 2025, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:1084199", + "title_zh": "完美伴侣", + "title_en": "Companion", + "translation_source": "tmdb", + "reputation_score": 7.019, + "reputation_votes": 2059, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"1084199\"}" + }, + "display_title": "完美伴侣 Companion" + }, + { + "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", + "filename": "Baragaki.Unbroken.Samurai.2021.1080p.BluRay.x265.10bit.DTS-WiKi.sample.mkv", + "category": "movie", + "title": "Baragaki Unbroken Samurai", + "year": 2021, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:726894", + "title_zh": "燃烧吧!剑", + "title_en": "燃えよ剣", + "translation_source": "tmdb", + "reputation_score": 6.6, + "reputation_votes": 16, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"726894\"}" + }, + "display_title": "燃烧吧!剑 燃えよ剣" + }, + { + "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", + "filename": "Baragaki.Unbroken.Samurai.2021.1080p.BluRay.x265.10bit.DTS-WiKi.mkv", + "category": "movie", + "title": "Baragaki Unbroken Samurai", + "year": 2021, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:726894", + "title_zh": "燃烧吧!剑", + "title_en": "燃えよ剣", + "translation_source": "tmdb", + "reputation_score": 6.6, + "reputation_votes": 16, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"726894\"}" + }, + "display_title": "燃烧吧!剑 燃えよ剣" + }, + { + "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", + "filename": "An.Abandoned.Team.2024.1080p.BluRay.x265.10bit.TrueHD5.1-WiKi.mkv", + "category": "movie", + "title": "An Abandoned Team", + "year": 2024, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:1103167", + "title_zh": "得宠先生", + "title_en": "得寵先生", + "translation_source": "tmdb", + "reputation_score": 7.0, + "reputation_votes": 5, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"1103167\"}" + }, + "display_title": "得宠先生 得寵先生" + }, + { + "path": "/mnt/Downloads/movies/The.Last.Dance.2024.1080p.BluRay.x265.10bit-WiKi/The.Last.Dance.2024.1080p.BluRay.x265.10bit-WiKi.mkv", + "filename": "The.Last.Dance.2024.1080p.BluRay.x265.10bit-WiKi.mkv", + "category": "movie", + "title": "The Last Dance", + "year": 2024, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:912649", + "title_zh": "毒液3:最后一舞", + "title_en": "Venom: The Last Dance", + "translation_source": "tmdb", + "reputation_score": 6.666, + "reputation_votes": 3999, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"912649\"}" + }, + "display_title": "毒液3:最后一舞 Venom: The Last Dance" + }, + { + "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", + "filename": "Be.My.Master.2018.1080p.BluRay.x264.DTS-WiK.sample.mkv", + "category": "movie", + "title": "Be My Master", + "year": 2018, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:592742", + "title_zh": "做我的奴隶 第2章:请叫我主人", + "title_en": "私の奴隷になりなさい 第2章 「ご主人様と呼ばせてください」", + "translation_source": "tmdb", + "reputation_score": 6.8, + "reputation_votes": 14, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"592742\"}" + }, + "display_title": "做我的奴隶 第2章:请叫我主人 私の奴隷になりなさい 第2章 「ご主人様と呼ばせてください」" + }, + { + "path": "/mnt/Downloads/movies/Be.My.Master.2018.1080p.BluRay.x264.DTS-WiKi/Be.My.Master.2018.1080p.BluRay.x264.DTS-WiKi.mkv", + "filename": "Be.My.Master.2018.1080p.BluRay.x264.DTS-WiKi.mkv", + "category": "movie", + "title": "Be My Master", + "year": 2018, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:592742", + "title_zh": "做我的奴隶 第2章:请叫我主人", + "title_en": "私の奴隷になりなさい 第2章 「ご主人様と呼ばせてください」", + "translation_source": "tmdb", + "reputation_score": 6.8, + "reputation_votes": 14, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"592742\"}" + }, + "display_title": "做我的奴隶 第2章:请叫我主人 私の奴隷になりなさい 第2章 「ご主人様と呼ばせてください」" + }, + { + "path": "/mnt/Downloads/movies/Serendipity.2001.1080p.BluRay.x264.DTS-WiKi/Serendipity.2001.1080p.BluRay.x264.DTS-WiKi.mkv", + "filename": "Serendipity.2001.1080p.BluRay.x264.DTS-WiKi.mkv", + "category": "movie", + "title": "Serendipity", + "year": 2001, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:9778", + "title_zh": "缘分天注定", + "title_en": "Serendipity", + "translation_source": "tmdb", + "reputation_score": 6.953, + "reputation_votes": 2090, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"9778\"}" + }, + "display_title": "缘分天注定 Serendipity" + }, + { + "path": "/mnt/Downloads/movies/Serendipity.2001.1080p.BluRay.x264.DTS-WiKi/Sample/Serendipity.2001.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", + "filename": "Serendipity.2001.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", + "category": "movie", + "title": "Serendipity", + "year": 2001, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:9778", + "title_zh": "缘分天注定", + "title_en": "Serendipity", + "translation_source": "tmdb", + "reputation_score": 6.953, + "reputation_votes": 2090, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"9778\"}" + }, + "display_title": "缘分天注定 Serendipity" + }, + { + "path": "/mnt/Downloads/movies/The.Witcher.Sirens.of.the.Deep.2025.1080p.NF.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv", + "filename": "The.Witcher.Sirens.of.the.Deep.2025.1080p.NF.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv", + "category": "movie", + "title": "The Witcher Sirens Of The Deep", + "year": 2025, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:1203329", + "title_zh": "猎魔人:深渊海妖", + "title_en": "The Witcher: Sirens of the Deep", + "translation_source": "tmdb", + "reputation_score": 6.806, + "reputation_votes": 253, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"1203329\"}" + }, + "display_title": "猎魔人:深渊海妖 The Witcher: Sirens of the Deep" + }, + { + "path": "/mnt/Downloads/movies/Maharaja.2024.1080p.NF.WEB-DL.DDP5.1.x265.10bit-Yumi@FRDS.mkv", + "filename": "Maharaja.2024.1080p.NF.WEB-DL.DDP5.1.x265.10bit-Yumi@FRDS.mkv", + "category": "movie", + "title": "Maharaja", + "year": 2024, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:1322993", + "title_zh": "Hoy Maharaja", + "title_en": "Hoy Maharaja", + "translation_source": "tmdb", + "reputation_score": 0.0, + "reputation_votes": 1, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"1322993\"}" + }, + "display_title": "Hoy Maharaja" + }, + { + "path": "/mnt/Downloads/movies/Predator.Badlands.2025.1080p.WEB-DL.LINE.AUDIO.H264-AOC.mkv", + "filename": "Predator.Badlands.2025.1080p.WEB-DL.LINE.AUDIO.H264-AOC.mkv", + "category": "movie", + "title": "Predator Badlands", + "year": 2025, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:1242898", + "title_zh": "铁血战士:杀戮之地", + "title_en": "Predator: Badlands", + "translation_source": "tmdb", + "reputation_score": 7.755, + "reputation_votes": 1837, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"1242898\"}" + }, + "display_title": "铁血战士:杀戮之地 Predator: Badlands" + }, + { + "path": "/mnt/Downloads/movies/Renfield.2023.1080p.BluRay.x265.10bit.DTS-WiKi/Renfield.2023.1080p.BluRay.x265.10bit.DTS-WiKi.mkv", + "filename": "Renfield.2023.1080p.BluRay.x265.10bit.DTS-WiKi.mkv", + "category": "movie", + "title": "Renfield", + "year": 2023, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:649609", + "title_zh": "雷恩菲尔德", + "title_en": "Renfield", + "translation_source": "tmdb", + "reputation_score": 6.459, + "reputation_votes": 2043, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"649609\"}" + }, + "display_title": "雷恩菲尔德 Renfield" + }, + { + "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", + "filename": "The.Yin.Yang.Master.Zero.2024.1080p.BluRay.x265.10bit.DTS-WiKi.mkv", + "category": "movie", + "title": "The Yin Yang Master Zero", + "year": 2024, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:1201210", + "title_zh": "阴阳师0", + "title_en": "陰陽師0", + "translation_source": "tmdb", + "reputation_score": 6.091, + "reputation_votes": 11, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"1201210\"}" + }, + "display_title": "阴阳师0 陰陽師0" + }, + { + "path": "/mnt/Downloads/movies/Thermae.Romae.2012.1080p.BluRay.x264.DTS-WiKi/Sample/Thermae.Romae.2012.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", + "filename": "Thermae.Romae.2012.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", + "category": "movie", + "title": "Thermae Romae", + "year": 2012, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:105210", + "title_zh": "罗马浴场", + "title_en": "テルマエ・ロマエ", + "translation_source": "tmdb", + "reputation_score": 6.335, + "reputation_votes": 115, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"105210\"}" + }, + "display_title": "罗马浴场 テルマエ・ロマエ" + }, + { + "path": "/mnt/Downloads/movies/Thermae.Romae.2012.1080p.BluRay.x264.DTS-WiKi/Thermae.Romae.2012.1080p.BluRay.x264.DTS-WiKi.mkv", + "filename": "Thermae.Romae.2012.1080p.BluRay.x264.DTS-WiKi.mkv", + "category": "movie", + "title": "Thermae Romae", + "year": 2012, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:105210", + "title_zh": "罗马浴场", + "title_en": "テルマエ・ロマエ", + "translation_source": "tmdb", + "reputation_score": 6.335, + "reputation_votes": 115, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"105210\"}" + }, + "display_title": "罗马浴场 テルマエ・ロマエ" + }, + { + "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", + "filename": "The.Protege.2021.BluRay.1080p.DTS-HD.MA5.1.x265.10bit-BeiTai.mkv", + "category": "movie", + "title": "The Protege", + "year": 2021, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:645788", + "title_zh": "门徒", + "title_en": "The Protégé", + "translation_source": "tmdb", + "reputation_score": 6.565, + "reputation_votes": 1106, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"645788\"}" + }, + "display_title": "门徒 The Protégé" + }, + { + "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 []", + "year": null, + "confidence": 0.3, + "needs_review": true, + "canonical_id": "tmdb:movie:635302", + "title_zh": "鬼灭之刃剧场版:无限列车篇", + "title_en": "劇場版「鬼滅の刃」無限列車編", + "translation_source": "tmdb", + "reputation_score": 8.206, + "reputation_votes": 4386, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"635302\"}" + }, + "display_title": "鬼灭之刃剧场版:无限列车篇 劇場版「鬼滅の刃」無限列車編" + }, + { + "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", + "filename": "A.Real.Job.2023.1080p.BluRay.x265.10bit.DTS-WiKi.mkv", + "category": "movie", + "title": "A Real Job", + "year": 2023, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:934506", + "title_zh": "代课教师", + "title_en": "Un métier sérieux", + "translation_source": "tmdb", + "reputation_score": 6.309, + "reputation_votes": 267, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"934506\"}" + }, + "display_title": "代课教师 Un métier sérieux" + }, + { + "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", + "filename": "A.World.Without.Thieves.2004.2160p.WEB-DL.H264.AAC-LeagueWEB.mp4", + "category": "movie", + "title": "A World Without Thieves", + "year": 2004, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:29363", + "title_zh": "天下无贼", + "title_en": "天下无贼", + "translation_source": "tmdb", + "reputation_score": 7.3, + "reputation_votes": 146, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"29363\"}" + }, + "display_title": "天下无贼" + }, + { + "path": "/mnt/Downloads/movies/Dream.Scenario.2023.1080p.BluRay.x265.10bit-WiKi/Dream.Scenario.2023.1080p.BluRay.x265.10bit-WiKi.mkv", + "filename": "Dream.Scenario.2023.1080p.BluRay.x265.10bit-WiKi.mkv", + "category": "movie", + "title": "Dream Scenario", + "year": 2023, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:823482", + "title_zh": "梦想情景", + "title_en": "Dream Scenario", + "translation_source": "tmdb", + "reputation_score": 6.6, + "reputation_votes": 1232, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"823482\"}" + }, + "display_title": "梦想情景 Dream Scenario" + }, + { + "path": "/mnt/Downloads/movies/Summer.Sway.2020.1080p.BluRay.x264.DTS-WiKi/Sample/Summer.Sway.2020.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", + "filename": "Summer.Sway.2020.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", + "category": "movie", + "title": "Summer Sway", + "year": 2020, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:717915", + "title_zh": "摇摆艳夏", + "title_en": "제인의 썸머", + "translation_source": "tmdb", + "reputation_score": 5.7, + "reputation_votes": 6, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"717915\"}" + }, + "display_title": "摇摆艳夏 제인의 썸머" + }, + { + "path": "/mnt/Downloads/movies/Summer.Sway.2020.1080p.BluRay.x264.DTS-WiKi/Summer.Sway.2020.1080p.BluRay.x264.DTS-WiKi.mkv", + "filename": "Summer.Sway.2020.1080p.BluRay.x264.DTS-WiKi.mkv", + "category": "movie", + "title": "Summer Sway", + "year": 2020, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:717915", + "title_zh": "摇摆艳夏", + "title_en": "제인의 썸머", + "translation_source": "tmdb", + "reputation_score": 5.7, + "reputation_votes": 6, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"717915\"}" + }, + "display_title": "摇摆艳夏 제인의 썸머" + }, + { + "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", + "filename": "War.and.Peace.1966.Part.III.The.Year.1812.BluRay.1080p.x265.10bit.2Audio.MNHD-FRDS.mkv", + "category": "movie", + "title": "War And Peace", + "year": 1966, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:149465", + "title_zh": "战争与和平2:娜塔莎·罗斯托娃", + "title_en": "Война и Мир 2: Наташа Ростова", + "translation_source": "tmdb", + "reputation_score": 6.984, + "reputation_votes": 64, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"149465\"}" + }, + "display_title": "战争与和平2:娜塔莎·罗斯托娃 Война и Мир 2: Наташа Ростова" + }, + { + "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", + "filename": "War.and.Peace.1966.Part.II.Natasha.Rostova.BluRay.1080p.x265.10bit.2Audio.MNHD-FRDS.mkv", + "category": "movie", + "title": "War And Peace", + "year": 1966, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:149465", + "title_zh": "战争与和平2:娜塔莎·罗斯托娃", + "title_en": "Война и Мир 2: Наташа Ростова", + "translation_source": "tmdb", + "reputation_score": 6.984, + "reputation_votes": 64, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"149465\"}" + }, + "display_title": "战争与和平2:娜塔莎·罗斯托娃 Война и Мир 2: Наташа Ростова" + }, + { + "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", + "filename": "War.and.Peace.1966.Part.IV.Pierre.Bezukhov.BluRay.1080p.x265.10bit.2Audio.MNHD-FRDS.mkv", + "category": "movie", + "title": "War And Peace", + "year": 1966, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:149465", + "title_zh": "战争与和平2:娜塔莎·罗斯托娃", + "title_en": "Война и Мир 2: Наташа Ростова", + "translation_source": "tmdb", + "reputation_score": 6.984, + "reputation_votes": 64, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"149465\"}" + }, + "display_title": "战争与和平2:娜塔莎·罗斯托娃 Война и Мир 2: Наташа Ростова" + }, + { + "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", + "filename": "War.and.Peace.1966.Part.I.Andrei.Bolkonsky.BluRay.1080p.x265.10bit.2Audio.MNHD-FRDS.mkv", + "category": "movie", + "title": "War And Peace", + "year": 1966, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:149465", + "title_zh": "战争与和平2:娜塔莎·罗斯托娃", + "title_en": "Война и Мир 2: Наташа Ростова", + "translation_source": "tmdb", + "reputation_score": 6.984, + "reputation_votes": 64, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"149465\"}" + }, + "display_title": "战争与和平2:娜塔莎·罗斯托娃 Война и Мир 2: Наташа Ростова" + }, + { + "path": "/mnt/Downloads/movies/飞机陷落.2023.1080p.中英字幕£CMCT春天/[飞机陷落].Plane.2023.BluRay.1080p.x264.AC3-CMCT.mkv", + "filename": "[飞机陷落].Plane.2023.BluRay.1080p.x264.AC3-CMCT.mkv", + "category": "movie", + "title": "Plane", + "year": 2023, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:646389", + "title_zh": "飞机陷落", + "title_en": "Plane", + "translation_source": "tmdb", + "reputation_score": 6.904, + "reputation_votes": 2572, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"646389\"}" + }, + "display_title": "飞机陷落 Plane" + }, + { + "path": "/mnt/Downloads/movies/Finch.2021.1080p.ATVP.WEB-DL.DDP5.1.Atmos.H.264-TEPES.mkv", + "filename": "Finch.2021.1080p.ATVP.WEB-DL.DDP5.1.Atmos.H.264-TEPES.mkv", + "category": "movie", + "title": "Finch", + "year": 2021, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:522402", + "title_zh": "芬奇", + "title_en": "Finch", + "translation_source": "tmdb", + "reputation_score": 7.812, + "reputation_votes": 3836, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"522402\"}" + }, + "display_title": "芬奇 Finch" + }, + { + "path": "/mnt/Downloads/movies/Encanto.2021.720p.BluRay.x264-WiKi/Encanto.2021.720p.BluRay.x264-WiKi.mkv", + "filename": "Encanto.2021.720p.BluRay.x264-WiKi.mkv", + "category": "movie", + "title": "Encanto", + "year": 2021, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:568124", + "title_zh": "魔法满屋", + "title_en": "Encanto", + "translation_source": "tmdb", + "reputation_score": 7.574, + "reputation_votes": 10035, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"568124\"}" + }, + "display_title": "魔法满屋 Encanto" + }, + { + "path": "/mnt/Downloads/movies/Encanto.2021.720p.BluRay.x264-WiKi/Sample/Encanto.2021.720p.BluRay.x264-WiKi.Sample.mkv", + "filename": "Encanto.2021.720p.BluRay.x264-WiKi.Sample.mkv", + "category": "movie", + "title": "Encanto", + "year": 2021, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:568124", + "title_zh": "魔法满屋", + "title_en": "Encanto", + "translation_source": "tmdb", + "reputation_score": 7.574, + "reputation_votes": 10035, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"568124\"}" + }, + "display_title": "魔法满屋 Encanto" + }, + { + "path": "/mnt/Downloads/movies/Demon Slayer Kimetsu No Yaiba Infinity Castle 2025 1080p WEB-DL JAPANESE AAC2.0 H.264-Cassu.mkv", + "filename": "Demon Slayer Kimetsu No Yaiba Infinity Castle 2025 1080p WEB-DL JAPANESE AAC2.0 H.264-Cassu.mkv", + "category": "movie", + "title": "Demon Slayer Kimetsu No Yaiba Infinity Castle", + "year": 2025, + "confidence": 0.7, + "needs_review": true, + "canonical_id": "tmdb:movie:1311031", + "title_zh": "鬼灭之刃:无限城篇 第一章 猗窝座再袭", + "title_en": "劇場版「鬼滅の刃」無限城編 第一章 猗窩座再来", + "translation_source": "tmdb", + "reputation_score": 7.7, + "reputation_votes": 696, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"1311031\"}" + }, + "display_title": "鬼灭之刃:无限城篇 第一章 猗窝座再袭 劇場版「鬼滅の刃」無限城編 第一章 猗窩座再来" + }, + { + "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", + "filename": "Black.Panther.Wakanda.Forever.2022.1080p.BluRay.x265.10bit.DTS-WiKi.mkv", + "category": "movie", + "title": "Black Panther Wakanda Forever", + "year": 2022, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:505642", + "title_zh": "黑豹2", + "title_en": "Black Panther: Wakanda Forever", + "translation_source": "tmdb", + "reputation_score": 7.014, + "reputation_votes": 7257, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"505642\"}" + }, + "display_title": "黑豹2 Black Panther: Wakanda Forever" + }, + { + "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", + "filename": "Poupelle.of.Chimney.Town.2020.720p.BluRay.x264-WiKi.Sample.mkv", + "category": "movie", + "title": "Poupelle Of Chimney Town", + "year": 2020, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:655437", + "title_zh": "烟囱小镇的普佩尔", + "title_en": "映画 えんとつ町のプペル", + "translation_source": "tmdb", + "reputation_score": 6.5, + "reputation_votes": 69, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"655437\"}" + }, + "display_title": "烟囱小镇的普佩尔 映画 えんとつ町のプペル" + }, + { + "path": "/mnt/Downloads/movies/Poupelle.of.Chimney.Town.2020.720p.BluRay.x264-WiKi/Poupelle.of.Chimney.Town.2020.720p.BluRay.x264-WiKi.mkv", + "filename": "Poupelle.of.Chimney.Town.2020.720p.BluRay.x264-WiKi.mkv", + "category": "movie", + "title": "Poupelle Of Chimney Town", + "year": 2020, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:655437", + "title_zh": "烟囱小镇的普佩尔", + "title_en": "映画 えんとつ町のプペル", + "translation_source": "tmdb", + "reputation_score": 6.5, + "reputation_votes": 69, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"655437\"}" + }, + "display_title": "烟囱小镇的普佩尔 映画 えんとつ町のプペル" + }, + { + "path": "/mnt/Downloads/movies/Tenet.2020.IMAX.1080p.BluRay.x264.DTS-WiKi/Tenet.2020.IMAX.1080p.BluRay.x264.DTS-WiKi.mkv", + "filename": "Tenet.2020.IMAX.1080p.BluRay.x264.DTS-WiKi.mkv", + "category": "movie", + "title": "Tenet", + "year": 2020, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:577922", + "title_zh": "信条", + "title_en": "Tenet", + "translation_source": "tmdb", + "reputation_score": 7.176, + "reputation_votes": 10814, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"577922\"}" + }, + "display_title": "信条 Tenet" + }, + { + "path": "/mnt/Downloads/movies/Tenet.2020.IMAX.1080p.BluRay.x264.DTS-WiKi/Sample/Tenet.2020.IMAX.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", + "filename": "Tenet.2020.IMAX.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", + "category": "movie", + "title": "Tenet", + "year": 2020, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:577922", + "title_zh": "信条", + "title_en": "Tenet", + "translation_source": "tmdb", + "reputation_score": 7.176, + "reputation_votes": 10814, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"577922\"}" + }, + "display_title": "信条 Tenet" + }, + { + "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", + "filename": "Under.the.Open.Sky.2020.720p.BluRay.x264-WiKi.sample.mkv", + "category": "movie", + "title": "Under The Open Sky", + "year": 2020, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:728882", + "title_zh": "美好的世界", + "title_en": "すばらしき世界", + "translation_source": "tmdb", + "reputation_score": 7.4, + "reputation_votes": 37, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"728882\"}" + }, + "display_title": "美好的世界 すばらしき世界" + }, + { + "path": "/mnt/Downloads/movies/Under.the.Open.Sky.2020.720p.BluRay.x264-WiKi/Under.the.Open.Sky.2020.720p.BluRay.x264-WiKi.mkv", + "filename": "Under.the.Open.Sky.2020.720p.BluRay.x264-WiKi.mkv", + "category": "movie", + "title": "Under The Open Sky", + "year": 2020, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:728882", + "title_zh": "美好的世界", + "title_en": "すばらしき世界", + "translation_source": "tmdb", + "reputation_score": 7.4, + "reputation_votes": 37, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"728882\"}" + }, + "display_title": "美好的世界 すばらしき世界" + }, + { + "path": "/mnt/Downloads/movies/The.Running.Man.2025.1080p.AMZN.WEB-DL.English.DDP5.1.H.264-KyoGo.mkv", + "filename": "The.Running.Man.2025.1080p.AMZN.WEB-DL.English.DDP5.1.H.264-KyoGo.mkv", + "category": "movie", + "title": "The Running Man", + "year": 2025, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:798645", + "title_zh": "猎杀游戏", + "title_en": "The Running Man", + "translation_source": "tmdb", + "reputation_score": 6.81, + "reputation_votes": 1133, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"798645\"}" + }, + "display_title": "猎杀游戏 The Running Man" + }, + { + "path": "/mnt/Downloads/movies/The.Gray.Man.2022.1080p.NF.WEB-DL.DDP.5.1.Atmos.H.264-Lee@CHDWEB.mkv", + "filename": "The.Gray.Man.2022.1080p.NF.WEB-DL.DDP.5.1.Atmos.H.264-Lee@CHDWEB.mkv", + "category": "movie", + "title": "The Gray Man", + "year": 2022, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:725201", + "title_zh": "灰影人", + "title_en": "The Gray Man", + "translation_source": "tmdb", + "reputation_score": 6.911, + "reputation_votes": 4090, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"725201\"}" + }, + "display_title": "灰影人 The Gray Man" + }, + { + "path": "/mnt/Downloads/movies/Wrath.of.Man.2021.720p.BluRay.x264-WiKi/Sample/Wrath.of.Man.2021.720p.BluRay.x264-WiKi.Sample.mkv", + "filename": "Wrath.of.Man.2021.720p.BluRay.x264-WiKi.Sample.mkv", + "category": "movie", + "title": "Wrath Of Man", + "year": 2021, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:637649", + "title_zh": "人之怒", + "title_en": "Wrath of Man", + "translation_source": "tmdb", + "reputation_score": 7.588, + "reputation_votes": 5924, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"637649\"}" + }, + "display_title": "人之怒 Wrath of Man" + }, + { + "path": "/mnt/Downloads/movies/Wrath.of.Man.2021.720p.BluRay.x264-WiKi/Wrath.of.Man.2021.720p.BluRay.x264-WiKi.mkv", + "filename": "Wrath.of.Man.2021.720p.BluRay.x264-WiKi.mkv", + "category": "movie", + "title": "Wrath Of Man", + "year": 2021, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:637649", + "title_zh": "人之怒", + "title_en": "Wrath of Man", + "translation_source": "tmdb", + "reputation_score": 7.588, + "reputation_votes": 5924, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"637649\"}" + }, + "display_title": "人之怒 Wrath of Man" + }, + { + "path": "/mnt/Downloads/movies/The.Sparring.Partner.2022.1080p.BluRay.x265.10bit-WiKi/The.Sparring.Partner.2022.1080p.BluRay.x265.10bit-WiKi.mkv", + "filename": "The.Sparring.Partner.2022.1080p.BluRay.x265.10bit-WiKi.mkv", + "category": "movie", + "title": "The Sparring Partner", + "year": 2022, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:1005251", + "title_zh": "正义回廊", + "title_en": "正義迴廊", + "translation_source": "tmdb", + "reputation_score": 7.1, + "reputation_votes": 45, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"1005251\"}" + }, + "display_title": "正义回廊 正義迴廊" + }, + { + "path": "/mnt/Downloads/movies/Intouchables.2011.720p.BluRay.x264.DTS-WiKi/Sample/Intouchables.2011.720p.BluRay.x264.DTS-WiKi.Sample.mkv", + "filename": "Intouchables.2011.720p.BluRay.x264.DTS-WiKi.Sample.mkv", + "category": "movie", + "title": "Intouchables", + "year": 2011, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:77338", + "title_zh": "触不可及", + "title_en": "Intouchables", + "translation_source": "tmdb", + "reputation_score": 8.27, + "reputation_votes": 18128, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"77338\"}" + }, + "display_title": "触不可及 Intouchables" + }, + { + "path": "/mnt/Downloads/movies/Intouchables.2011.720p.BluRay.x264.DTS-WiKi/Intouchables.2011.720p.BluRay.x264.DTS-WiKi.mkv", + "filename": "Intouchables.2011.720p.BluRay.x264.DTS-WiKi.mkv", + "category": "movie", + "title": "Intouchables", + "year": 2011, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:77338", + "title_zh": "触不可及", + "title_en": "Intouchables", + "translation_source": "tmdb", + "reputation_score": 8.27, + "reputation_votes": 18128, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"77338\"}" + }, + "display_title": "触不可及 Intouchables" + }, + { + "path": "/mnt/Downloads/movies/Dune.2021.1080p.HDRip.X264.AC3-EVO/Dune.2021.1080p.HDRip.X264.AC3-EVO.mkv", + "filename": "Dune.2021.1080p.HDRip.X264.AC3-EVO.mkv", + "category": "movie", + "title": "Dune", + "year": 2021, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:438631", + "title_zh": "沙丘", + "title_en": "Dune", + "translation_source": "tmdb", + "reputation_score": 7.777, + "reputation_votes": 14416, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"438631\"}" + }, + "display_title": "沙丘 Dune" + }, + { + "path": "/mnt/Downloads/movies/Extreme.Job.2019.1080p.BluRay.x264.DTS-WiKi/Sample/Extreme.Job.2019.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", + "filename": "Extreme.Job.2019.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", + "category": "movie", + "title": "Extreme Job", + "year": 2019, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:567646", + "title_zh": "极限职业", + "title_en": "극한직업", + "translation_source": "tmdb", + "reputation_score": 7.173, + "reputation_votes": 335, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"567646\"}" + }, + "display_title": "极限职业 극한직업" + }, + { + "path": "/mnt/Downloads/movies/Extreme.Job.2019.1080p.BluRay.x264.DTS-WiKi/Extreme.Job.2019.1080p.BluRay.x264.DTS-WiKi.mkv", + "filename": "Extreme.Job.2019.1080p.BluRay.x264.DTS-WiKi.mkv", + "category": "movie", + "title": "Extreme Job", + "year": 2019, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:567646", + "title_zh": "极限职业", + "title_en": "극한직업", + "translation_source": "tmdb", + "reputation_score": 7.173, + "reputation_votes": 335, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"567646\"}" + }, + "display_title": "极限职业 극한직업" + }, + { + "path": "/mnt/Downloads/movies/Gojira-1.0.2023.1080p.BluRay.DD+.7.1.x264-SPHD.mkv", + "filename": "Gojira-1.0.2023.1080p.BluRay.DD+.7.1.x264-SPHD.mkv", + "category": "movie", + "title": "Gojira-1 0", + "year": 2023, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:940721", + "title_zh": "哥斯拉-1.0", + "title_en": "ゴジラ-1.0", + "translation_source": "tmdb", + "reputation_score": 7.582, + "reputation_votes": 2983, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"940721\"}" + }, + "display_title": "哥斯拉-1.0 ゴジラ-1.0" + }, + { + "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", + "filename": "The.Pass.Last.Days.of.the.Samurai.2020.1080p.BluRay.x265.10bit.DTS-WiKi.mkv", + "category": "movie", + "title": "The Pass Last Days Of The Samurai", + "year": 2020, + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "The Pass Last Days Of The Samurai" + }, + { + "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", + "filename": "The.Pass.Last.Days.of.the.Samurai.2020.1080p.BluRay.x265.10bit.DTS-WiKi.sample.mkv", + "category": "movie", + "title": "The Pass Last Days Of The Samurai", + "year": 2020, + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "The Pass Last Days Of The Samurai" + }, + { + "path": "/mnt/Downloads/movies/Boss.Level.2020.1080p.BluRay.x264.DTS-WiKi/Boss.Level.2020.1080p.BluRay.x264.DTS-WiKi.mkv", + "filename": "Boss.Level.2020.1080p.BluRay.x264.DTS-WiKi.mkv", + "category": "movie", + "title": "Boss Level", + "year": 2020, + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Boss Level" + }, + { + "path": "/mnt/Downloads/movies/Boss.Level.2020.1080p.BluRay.x264.DTS-WiKi/Sample/Boss.Level.2020.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", + "filename": "Boss.Level.2020.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", + "category": "movie", + "title": "Boss Level", + "year": 2020, + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Boss Level" + }, + { + "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", + "filename": "百元之恋.100.Yen.Love.2014.CHN.BDRip.1080p.x265.10bit.AC3.2Audio‐DGB.mkv", + "category": "movie", + "title": "百元之恋 100 Yen Love", + "year": 2014, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:314606", + "title_zh": "百元之恋", + "title_en": "百円の恋", + "translation_source": "tmdb", + "reputation_score": 7.183, + "reputation_votes": 90, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"314606\"}" + }, + "display_title": "百元之恋 百円の恋" + }, + { + "path": "/mnt/Downloads/movies/The.Outpost.2020.720p.BluRay.x264-WiKi/The.Outpost.2020.720p.BluRay.x264-WiKi.mkv", + "filename": "The.Outpost.2020.720p.BluRay.x264-WiKi.mkv", + "category": "movie", + "title": "The Outpost", + "year": 2020, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:531876", + "title_zh": "前哨", + "title_en": "The Outpost", + "translation_source": "tmdb", + "reputation_score": 6.904, + "reputation_votes": 1140, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"531876\"}" + }, + "display_title": "前哨 The Outpost" + }, + { + "path": "/mnt/Downloads/movies/The.Outpost.2020.720p.BluRay.x264-WiKi/Sample/The.Outpost.2020.720p.BluRay.x264-WiKi.Sample.mkv", + "filename": "The.Outpost.2020.720p.BluRay.x264-WiKi.Sample.mkv", + "category": "movie", + "title": "The Outpost", + "year": 2020, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:531876", + "title_zh": "前哨", + "title_en": "The Outpost", + "translation_source": "tmdb", + "reputation_score": 6.904, + "reputation_votes": 1140, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"531876\"}" + }, + "display_title": "前哨 The Outpost" + }, + { + "path": "/mnt/Downloads/movies/Wanted.2008.2160p.BluRay.x265.10bit.DTS-WiKi/Wanted.2008.2160p.BluRay.x265.10bit.DTS-WiKi.mkv", + "filename": "Wanted.2008.2160p.BluRay.x265.10bit.DTS-WiKi.mkv", + "category": "movie", + "title": "Wanted", + "year": 2008, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:8909", + "title_zh": "通缉令", + "title_en": "Wanted", + "translation_source": "tmdb", + "reputation_score": 6.525, + "reputation_votes": 7444, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"8909\"}" + }, + "display_title": "通缉令 Wanted" + }, + { + "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", + "filename": "Captain.America.Brave.New.World.2025.2160p.BluRay.DoVi.x265.10bit.Atmos.TrueHD7.1-WiKi.mkv", + "category": "movie", + "title": "Captain America Brave New World", + "year": 2025, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:822119", + "title_zh": "美国队长4", + "title_en": "Captain America: Brave New World", + "translation_source": "tmdb", + "reputation_score": 5.99, + "reputation_votes": 2911, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"822119\"}" + }, + "display_title": "美国队长4 Captain America: Brave New World" + }, + { + "path": "/mnt/Downloads/movies/Summer.Wars.2009.1080p.BluRay.x264.DTS-WiKi/Sample/Summer.Wars.2009.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", + "filename": "Summer.Wars.2009.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", + "category": "movie", + "title": "Summer Wars", + "year": 2009, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:28874", + "title_zh": "夏日大作战", + "title_en": "サマーウォーズ", + "translation_source": "tmdb", + "reputation_score": 7.454, + "reputation_votes": 1001, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"28874\"}" + }, + "display_title": "夏日大作战 サマーウォーズ" + }, + { + "path": "/mnt/Downloads/movies/Summer.Wars.2009.1080p.BluRay.x264.DTS-WiKi/Summer.Wars.2009.1080p.BluRay.x264.DTS-WiKi.mkv", + "filename": "Summer.Wars.2009.1080p.BluRay.x264.DTS-WiKi.mkv", + "category": "movie", + "title": "Summer Wars", + "year": 2009, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:28874", + "title_zh": "夏日大作战", + "title_en": "サマーウォーズ", + "translation_source": "tmdb", + "reputation_score": 7.454, + "reputation_votes": 1001, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"28874\"}" + }, + "display_title": "夏日大作战 サマーウォーズ" + }, + { + "path": "/mnt/Downloads/movies/Freelance.2023.1080p.BluRay.x265.10bit.DTS-WiKi/Freelance.2023.1080p.BluRay.x265.10bit.DTS-WiKi.mkv", + "filename": "Freelance.2023.1080p.BluRay.x265.10bit.DTS-WiKi.mkv", + "category": "movie", + "title": "Freelance", + "year": 2023, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:897087", + "title_zh": "自由职业者", + "title_en": "Freelance", + "translation_source": "tmdb", + "reputation_score": 6.383, + "reputation_votes": 1117, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"897087\"}" + }, + "display_title": "自由职业者 Freelance" + }, + { + "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", + "filename": "The.Crimes.That.Bind.2018.1080p.BluRay.x264.DTS-WiKi.sample.mkv", + "category": "movie", + "title": "The Crimes That Bind", + "year": 2018, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:479034", + "title_zh": "祈祷落幕时", + "title_en": "祈りの幕が下りる時", + "translation_source": "tmdb", + "reputation_score": 7.213, + "reputation_votes": 47, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"479034\"}" + }, + "display_title": "祈祷落幕时 祈りの幕が下りる時" + }, + { + "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", + "filename": "The.Crimes.That.Bind.2018.1080p.BluRay.x264.DTS-WiKi.mkv", + "category": "movie", + "title": "The Crimes That Bind", + "year": 2018, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:479034", + "title_zh": "祈祷落幕时", + "title_en": "祈りの幕が下りる時", + "translation_source": "tmdb", + "reputation_score": 7.213, + "reputation_votes": 47, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"479034\"}" + }, + "display_title": "祈祷落幕时 祈りの幕が下りる時" + }, + { + "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", + "filename": "Rob.N.Roll.2024.2160p.HQ.WEB-DL.H265.60fps.DDP5.1.2Audio-CHDWEB.mkv", + "category": "movie", + "title": "Rob N Roll", + "year": 2024, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:991197", + "title_zh": "临时劫案", + "title_en": "臨時劫案", + "translation_source": "tmdb", + "reputation_score": 5.923, + "reputation_votes": 39, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"991197\"}" + }, + "display_title": "临时劫案 臨時劫案" + }, + { + "path": "/mnt/Downloads/movies/Bound.1996.1080p.1080p.BluRay.x264.DTS-WiKi/Bound.1996.1080p.1080p.BluRay.x264.DTS-WiKi.mkv", + "filename": "Bound.1996.1080p.1080p.BluRay.x264.DTS-WiKi.mkv", + "category": "movie", + "title": "Bound", + "year": 1996, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:9303", + "title_zh": "惊世狂花", + "title_en": "Bound", + "translation_source": "tmdb", + "reputation_score": 7.2, + "reputation_votes": 1048, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"9303\"}" + }, + "display_title": "惊世狂花 Bound" + }, + { + "path": "/mnt/Downloads/movies/Bound.1996.1080p.1080p.BluRay.x264.DTS-WiKi/Sample/Bound.1996.1080p.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", + "filename": "Bound.1996.1080p.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", + "category": "movie", + "title": "Bound", + "year": 1996, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:9303", + "title_zh": "惊世狂花", + "title_en": "Bound", + "translation_source": "tmdb", + "reputation_score": 7.2, + "reputation_votes": 1048, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"9303\"}" + }, + "display_title": "惊世狂花 Bound" + }, + { + "path": "/mnt/Downloads/movies/The.Golden.Lotus.1974.1080p.BluRay.FLAC2.0.x264-PTer.mkv", + "filename": "The.Golden.Lotus.1974.1080p.BluRay.FLAC2.0.x264-PTer.mkv", + "category": "movie", + "title": "The Golden Lotus", + "year": 1974, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:50146", + "title_zh": "金瓶双艳", + "title_en": "金瓶雙艷", + "translation_source": "tmdb", + "reputation_score": 7.0, + "reputation_votes": 67, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"50146\"}" + }, + "display_title": "金瓶双艳 金瓶雙艷" + }, + { + "path": "/mnt/Downloads/movies/星に願いを。 2003 1080p HDTV x264 AAC.mkv", + "filename": "星に願いを。 2003 1080p HDTV x264 AAC.mkv", + "category": "movie", + "title": "星に願いを。", + "year": 2003, + "confidence": 0.7, + "needs_review": true, + "canonical_id": "tmdb:movie:405644", + "title_zh": "疾走繁星夜", + "title_en": "星に願いを", + "translation_source": "tmdb", + "reputation_score": 0.0, + "reputation_votes": 1, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"405644\"}" + }, + "display_title": "疾走繁星夜 星に願いを" + }, + { + "path": "/mnt/Downloads/movies/Mes.seances.de.lutte.2013.BDRip.X264.iNT-TLF/Mes.seances.de.lutte.2013.BDRip.X264.iNT-TLF.mkv", + "filename": "Mes.seances.de.lutte.2013.BDRip.X264.iNT-TLF.mkv", + "category": "movie", + "title": "Mes Seances De Lutte", + "year": 2013, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:167668", + "title_zh": "爱情战争", + "title_en": "Mes séances de lutte", + "translation_source": "tmdb", + "reputation_score": 5.6, + "reputation_votes": 32, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"167668\"}" + }, + "display_title": "爱情战争 Mes séances de lutte" + }, + { + "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", + "filename": "Spider-Man.No.Way.Home.2021.720p.BluRay.x264-WiKi.mkv", + "category": "movie", + "title": "Spider-Man No Way Home", + "year": 2021, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:634649", + "title_zh": "Spider-Man: No Way Home", + "title_en": "Spider-Man: No Way Home", + "translation_source": "tmdb", + "reputation_score": 7.933, + "reputation_votes": 21539, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"634649\"}" + }, + "display_title": "Spider-Man: No Way Home" + }, + { + "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", + "filename": "Spider-Man.No.Way.Home.2021.720p.BluRay.x264-WiKi.Sample.mkv", + "category": "movie", + "title": "Spider-Man No Way Home", + "year": 2021, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:634649", + "title_zh": "Spider-Man: No Way Home", + "title_en": "Spider-Man: No Way Home", + "translation_source": "tmdb", + "reputation_score": 7.933, + "reputation_votes": 21539, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"634649\"}" + }, + "display_title": "Spider-Man: No Way Home" + }, + { + "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", + "filename": "Destiny.The.Tale.of.Kamakura.2017.1080p.BluRay.x264.DTS-WiKi.mkv", + "category": "movie", + "title": "Destiny The Tale Of Kamakura", + "year": 2017, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:492136", + "title_zh": "镰仓物语", + "title_en": "DESTINY 鎌倉ものがたり", + "translation_source": "tmdb", + "reputation_score": 7.4, + "reputation_votes": 35, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"492136\"}" + }, + "display_title": "镰仓物语 DESTINY 鎌倉ものがたり" + }, + { + "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", + "filename": "Destiny.The.Tale.of.Kamakura.2017.1080p.BluRay.x264.DTS-WiKi.sample.mkv", + "category": "movie", + "title": "Destiny The Tale Of Kamakura", + "year": 2017, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:492136", + "title_zh": "镰仓物语", + "title_en": "DESTINY 鎌倉ものがたり", + "translation_source": "tmdb", + "reputation_score": 7.4, + "reputation_votes": 35, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"492136\"}" + }, + "display_title": "镰仓物语 DESTINY 鎌倉ものがたり" + }, + { + "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", + "filename": "A.Christmas.Gift.from.Bob.2020.720p.BluRay.x264-WiKi.Sample.mkv", + "category": "movie", + "title": "A Christmas Gift From Bob", + "year": 2020, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:673737", + "title_zh": "流浪猫鲍勃2:鲍勃的礼物", + "title_en": "A Christmas Gift from Bob", + "translation_source": "tmdb", + "reputation_score": 6.716, + "reputation_votes": 104, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"673737\"}" + }, + "display_title": "流浪猫鲍勃2:鲍勃的礼物 A Christmas Gift from Bob" + }, + { + "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", + "filename": "A.Christmas.Gift.from.Bob.2020.720p.BluRay.x264-WiKi.mkv", + "category": "movie", + "title": "A Christmas Gift From Bob", + "year": 2020, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:673737", + "title_zh": "流浪猫鲍勃2:鲍勃的礼物", + "title_en": "A Christmas Gift from Bob", + "translation_source": "tmdb", + "reputation_score": 6.716, + "reputation_votes": 104, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"673737\"}" + }, + "display_title": "流浪猫鲍勃2:鲍勃的礼物 A Christmas Gift from Bob" + }, + { + "path": "/mnt/Downloads/movies/Godzilla.vs.Kong.2021.1080p.HMAX.WEB-DL.DDP5.1.CHS-ENG.x264.mkv", + "filename": "Godzilla.vs.Kong.2021.1080p.HMAX.WEB-DL.DDP5.1.CHS-ENG.x264.mkv", + "category": "movie", + "title": "Godzilla Vs Kong", + "year": 2021, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:399566", + "title_zh": "哥斯拉大战金刚", + "title_en": "Godzilla vs. Kong", + "translation_source": "tmdb", + "reputation_score": 7.546, + "reputation_votes": 10469, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"399566\"}" + }, + "display_title": "哥斯拉大战金刚 Godzilla vs. Kong" + }, + { + "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", + "filename": "Puss.in.Boots.The.Last.Wish.2022.1080p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi.mkv", + "category": "movie", + "title": "Puss In Boots The Last Wish", + "year": 2022, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:315162", + "title_zh": "穿靴子的猫2", + "title_en": "Puss in Boots: The Last Wish", + "translation_source": "tmdb", + "reputation_score": 8.205, + "reputation_votes": 8615, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"315162\"}" + }, + "display_title": "穿靴子的猫2 Puss in Boots: The Last Wish" + }, + { + "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", + "filename": "Mad.Fate.2023.1080p.NowPlay.WEB-DL.H264.AAC-HHWEB.mkv", + "category": "movie", + "title": "Mad Fate", + "year": 2023, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:969050", + "title_zh": "命案", + "title_en": "命案", + "translation_source": "tmdb", + "reputation_score": 6.4, + "reputation_votes": 33, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"969050\"}" + }, + "display_title": "命案" + }, + { + "path": "/mnt/Downloads/movies/Exhuma.2024.1080p.BluRay.x265.10bit-WiKi/Exhuma.2024.1080p.BluRay.x265.10bit-WiKi.mkv", + "filename": "Exhuma.2024.1080p.BluRay.x265.10bit-WiKi.mkv", + "category": "movie", + "title": "Exhuma", + "year": 2024, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:1300292", + "title_zh": "Exhumator", + "title_en": "Exhumator", + "translation_source": "tmdb", + "reputation_score": 0.0, + "reputation_votes": 1, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"1300292\"}" + }, + "display_title": "Exhumator" + }, + { + "path": "/mnt/Downloads/movies/正牌韦小宝之奉旨沟女.Hero.from.Beyond.the.Boundary.of.Time.1993.D5.2Audio.MiniSD-TLF.mkv", + "filename": "正牌韦小宝之奉旨沟女.Hero.from.Beyond.the.Boundary.of.Time.1993.D5.2Audio.MiniSD-TLF.mkv", + "category": "movie", + "title": "正牌韦小宝之奉旨沟女 Hero From Beyond The Boundary Of Time", + "year": 1993, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:221461", + "title_zh": "正牌韦小宝之奉旨沟女", + "title_en": "正牌韋小寶之奉旨溝女", + "translation_source": "tmdb", + "reputation_score": 4.923, + "reputation_votes": 13, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"221461\"}" + }, + "display_title": "正牌韦小宝之奉旨沟女 正牌韋小寶之奉旨溝女" + }, + { + "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", + "filename": "Inside.Out.2.2024.1080p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi.mkv", + "category": "movie", + "title": "Inside Out 2", + "year": 2024, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:1022789", + "title_zh": "头脑特工队2", + "title_en": "Inside Out 2", + "translation_source": "tmdb", + "reputation_score": 7.547, + "reputation_votes": 6446, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"1022789\"}" + }, + "display_title": "头脑特工队2 Inside Out 2" + }, + { + "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", + "filename": "Girls.to.Buy.2021.Uncut.1080p.BluRay.x265.10bit.DTS-WiKi.mkv", + "category": "movie", + "title": "Girls To Buy", + "year": 2021, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:881764", + "title_zh": "迪拜的女孩", + "title_en": "Dziewczyny z Dubaju", + "translation_source": "tmdb", + "reputation_score": 5.968, + "reputation_votes": 139, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"881764\"}" + }, + "display_title": "迪拜的女孩 Dziewczyny z Dubaju" + }, + { + "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", + "filename": "Girls.to.Buy.2021.Uncut.1080p.BluRay.x265.10bit.DTS-WiKi.Sample.mkv", + "category": "movie", + "title": "Girls To Buy", + "year": 2021, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:881764", + "title_zh": "迪拜的女孩", + "title_en": "Dziewczyny z Dubaju", + "translation_source": "tmdb", + "reputation_score": 5.968, + "reputation_votes": 139, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"881764\"}" + }, + "display_title": "迪拜的女孩 Dziewczyny z Dubaju" + }, + { + "path": "/mnt/Downloads/movies/Her.Story.2024.1080p.BluRay.x265.10bit.DTS-WiKi/Her.Story.2024.1080p.BluRay.x265.10bit.DTS-WiKi.mkv", + "filename": "Her.Story.2024.1080p.BluRay.x265.10bit.DTS-WiKi.mkv", + "category": "movie", + "title": "Her Story", + "year": 2024, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:1109402", + "title_zh": "身段", + "title_en": "Její tělo", + "translation_source": "tmdb", + "reputation_score": 6.0, + "reputation_votes": 38, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"1109402\"}" + }, + "display_title": "身段 Její tělo" + }, + { + "path": "/mnt/Downloads/movies/Galileo.Forbidden.Sorcery.2022.1080p.BluRay.x265.10bit-WiKi/Galileo.Forbidden.Sorcery.2022.1080p.BluRay.x265.10bit-WiKi.mkv", + "filename": "Galileo.Forbidden.Sorcery.2022.1080p.BluRay.x265.10bit-WiKi.mkv", + "category": "movie", + "title": "Galileo Forbidden Sorcery", + "year": 2022, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:1166741", + "title_zh": "神探伽利略 禁断的魔术", + "title_en": "ガリレオ 禁断の魔術", + "translation_source": "tmdb", + "reputation_score": 8.0, + "reputation_votes": 7, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"1166741\"}" + }, + "display_title": "神探伽利略 禁断的魔术 ガリレオ 禁断の魔術" + }, + { + "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", + "filename": "Road.House.2024.2160p.AMZN.WEB-DL.H265.HDR.DDP5.1-ADWeb.mkv", + "category": "movie", + "title": "Road House", + "year": 2024, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:359410", + "title_zh": "新威龙杀阵", + "title_en": "Road House", + "translation_source": "tmdb", + "reputation_score": 6.9, + "reputation_votes": 2848, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"359410\"}" + }, + "display_title": "新威龙杀阵 Road House" + }, + { + "path": "/mnt/Downloads/movies/Pig.2021.720p.BluRay.x264-WiKi/Sample/Pig.2021.720p.BluRay.x264-WiKi.Sample.mkv", + "filename": "Pig.2021.720p.BluRay.x264-WiKi.Sample.mkv", + "category": "movie", + "title": "Pig", + "year": 2021, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:635731", + "title_zh": "疾速猪杀", + "title_en": "Pig", + "translation_source": "tmdb", + "reputation_score": 6.635, + "reputation_votes": 1652, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"635731\"}" + }, + "display_title": "疾速猪杀 Pig" + }, + { + "path": "/mnt/Downloads/movies/Pig.2021.720p.BluRay.x264-WiKi/Pig.2021.720p.BluRay.x264-WiKi.mkv", + "filename": "Pig.2021.720p.BluRay.x264-WiKi.mkv", + "category": "movie", + "title": "Pig", + "year": 2021, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:635731", + "title_zh": "疾速猪杀", + "title_en": "Pig", + "translation_source": "tmdb", + "reputation_score": 6.635, + "reputation_votes": 1652, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"635731\"}" + }, + "display_title": "疾速猪杀 Pig" + }, + { + "path": "/mnt/Downloads/movies/Listen.to.My.Heart.2009.1080p.AMZN.WEB-DL.DDP5.1.x264-ARiN.mkv", + "filename": "Listen.to.My.Heart.2009.1080p.AMZN.WEB-DL.DDP5.1.x264-ARiN.mkv", + "category": "movie", + "title": "Listen To My Heart", + "year": 2009, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:319136", + "title_zh": "抽屉里的情书", + "title_en": "引き出しの中のラブレター", + "translation_source": "tmdb", + "reputation_score": 0.0, + "reputation_votes": 1, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"319136\"}" + }, + "display_title": "抽屉里的情书 引き出しの中のラブレター" + }, + { + "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", + "filename": "Your.Name.2016.RERiP.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", + "category": "movie", + "title": "Your Name", + "year": 2016, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:777507", + "title_zh": "What's Your Name?", + "title_en": "What's Your Name?", + "translation_source": "tmdb", + "reputation_score": 0.0, + "reputation_votes": 1, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"777507\"}" + }, + "display_title": "What's Your Name?" + }, + { + "path": "/mnt/Downloads/movies/Your.Name.2016.RERiP.1080p.BluRay.x264.DTS-WiKi/Your.Name.2016.RERiP.1080p.BluRay.x264.DTS-WiKi.mkv", + "filename": "Your.Name.2016.RERiP.1080p.BluRay.x264.DTS-WiKi.mkv", + "category": "movie", + "title": "Your Name", + "year": 2016, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:777507", + "title_zh": "What's Your Name?", + "title_en": "What's Your Name?", + "translation_source": "tmdb", + "reputation_score": 0.0, + "reputation_votes": 1, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"777507\"}" + }, + "display_title": "What's Your Name?" + }, + { + "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", + "filename": "Inside.Out.2.2024.PROPER.UHD.BluRay.2160p.10bit.DV.3Audio.TrueHD(Atmos).7.1.x265-beAst.mkv", + "category": "movie", + "title": "Inside Out 2", + "year": 2024, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:1022789", + "title_zh": "头脑特工队2", + "title_en": "Inside Out 2", + "translation_source": "tmdb", + "reputation_score": 7.547, + "reputation_votes": 6446, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"1022789\"}" + }, + "display_title": "头脑特工队2 Inside Out 2" + }, + { + "path": "/mnt/Downloads/movies/A.Guilty.Conscience.2023.1080p.BluRay.x265.10bit-WiKi/A.Guilty.Conscience.2023.1080p.BluRay.x265.10bit-WiKi.mkv", + "filename": "A.Guilty.Conscience.2023.1080p.BluRay.x265.10bit-WiKi.mkv", + "category": "movie", + "title": "A Guilty Conscience", + "year": 2023, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:990326", + "title_zh": "毒舌律师", + "title_en": "毒舌大狀", + "translation_source": "tmdb", + "reputation_score": 6.675, + "reputation_votes": 57, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"990326\"}" + }, + "display_title": "毒舌律师 毒舌大狀" + }, + { + "path": "/mnt/Downloads/movies/隣人X 疑惑の彼女 2023 1080p HDTV x264 AAC5.1.mkv", + "filename": "隣人X 疑惑の彼女 2023 1080p HDTV x264 AAC5.1.mkv", + "category": "movie", + "title": "隣人X 疑惑の彼女", + "year": 2023, + "confidence": 0.7, + "needs_review": true, + "canonical_id": "tmdb:movie:1084742", + "title_zh": "邻人X 奇怪的她", + "title_en": "隣人X -疑惑の彼女-", + "translation_source": "tmdb", + "reputation_score": 8.0, + "reputation_votes": 1, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"1084742\"}" + }, + "display_title": "邻人X 奇怪的她 隣人X -疑惑の彼女-" + }, + { + "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", + "filename": "Kakegurui.2.Ultimate.Russian.Roulette.2021.720p.BluRay.x264-WiKi.sample.mkv", + "category": "movie", + "title": "Kakegurui 2 Ultimate Russian Roulette", + "year": 2021, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:742396", + "title_zh": "狂赌之渊2:绝体绝命俄罗斯轮盘", + "title_en": "映画 賭󠄀ケグルイ 絶体絶命ロシアンルーレット", + "translation_source": "tmdb", + "reputation_score": 6.6, + "reputation_votes": 18, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"742396\"}" + }, + "display_title": "狂赌之渊2:绝体绝命俄罗斯轮盘 映画 賭󠄀ケグルイ 絶体絶命ロシアンルーレット" + }, + { + "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", + "filename": "Kakegurui.2.Ultimate.Russian.Roulette.2021.720p.BluRay.x264-WiKi.mkv", + "category": "movie", + "title": "Kakegurui 2 Ultimate Russian Roulette", + "year": 2021, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:742396", + "title_zh": "狂赌之渊2:绝体绝命俄罗斯轮盘", + "title_en": "映画 賭󠄀ケグルイ 絶体絶命ロシアンルーレット", + "translation_source": "tmdb", + "reputation_score": 6.6, + "reputation_votes": 18, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"742396\"}" + }, + "display_title": "狂赌之渊2:绝体绝命俄罗斯轮盘 映画 賭󠄀ケグルイ 絶体絶命ロシアンルーレット" + }, + { + "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", + "filename": "Gladiator.II.2024.1080p.BluRay.x264.Atmos.TrueHD7.1-WiKi.mkv", + "category": "movie", + "title": "Gladiator Ii", + "year": 2024, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:558449", + "title_zh": "角斗士2", + "title_en": "Gladiator II", + "translation_source": "tmdb", + "reputation_score": 6.634, + "reputation_votes": 4168, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"558449\"}" + }, + "display_title": "角斗士2 Gladiator II" + }, + { + "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", + "filename": "A.Moment.of.Romance.1990.1080p.BluRay.x264.DTS-WiKi.mkv", + "category": "movie", + "title": "A Moment Of Romance", + "year": 1990, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:81128", + "title_zh": "天若有情", + "title_en": "天若有情", + "translation_source": "tmdb", + "reputation_score": 7.095, + "reputation_votes": 58, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"81128\"}" + }, + "display_title": "天若有情" + }, + { + "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", + "filename": "A.Moment.of.Romance.1990.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", + "category": "movie", + "title": "A Moment Of Romance", + "year": 1990, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:81128", + "title_zh": "天若有情", + "title_en": "天若有情", + "translation_source": "tmdb", + "reputation_score": 7.095, + "reputation_votes": 58, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"81128\"}" + }, + "display_title": "天若有情" + }, + { + "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", + "filename": "Golden.Slumber.2010.1080p.BluRay.x265.10bit.DTS-WiKi.Sample.mkv", + "category": "movie", + "title": "Golden Slumber", + "year": 2010, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:46911", + "title_zh": "金色梦乡", + "title_en": "ゴールデンスランバー", + "translation_source": "tmdb", + "reputation_score": 7.096, + "reputation_votes": 52, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"46911\"}" + }, + "display_title": "金色梦乡 ゴールデンスランバー" + }, + { + "path": "/mnt/Downloads/movies/Golden.Slumber.2010.1080p.BluRay.x265.10bit.DTS-WiKi/Golden.Slumber.2010.1080p.BluRay.x265.10bit.DTS-WiKi.mkv", + "filename": "Golden.Slumber.2010.1080p.BluRay.x265.10bit.DTS-WiKi.mkv", + "category": "movie", + "title": "Golden Slumber", + "year": 2010, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:46911", + "title_zh": "金色梦乡", + "title_en": "ゴールデンスランバー", + "translation_source": "tmdb", + "reputation_score": 7.096, + "reputation_votes": 52, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"46911\"}" + }, + "display_title": "金色梦乡 ゴールデンスランバー" + }, + { + "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", + "filename": "All.Quiet.on.the.Western.Front.2022.1080p.BluRay.x265.10bit.TrueHD7.1-WiKi.mkv", + "category": "movie", + "title": "All Quiet On The Western Front", + "year": 2022, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:1086967", + "title_zh": "Making All Quiet on the Western Front", + "title_en": "Making All Quiet on the Western Front", + "translation_source": "tmdb", + "reputation_score": 6.094, + "reputation_votes": 16, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"1086967\"}" + }, + "display_title": "Making All Quiet on the Western Front" + }, + { + "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", + "filename": "Superman.2025.1080p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi.mkv", + "category": "movie", + "title": "Superman", + "year": 2025, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:1061474", + "title_zh": "超人", + "title_en": "Superman", + "translation_source": "tmdb", + "reputation_score": 7.374, + "reputation_votes": 4279, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"1061474\"}" + }, + "display_title": "超人 Superman" + }, + { + "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", + "filename": "Nobody.2.2025.1080p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi.mkv", + "category": "movie", + "title": "Nobody 2", + "year": 2025, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:1007734", + "title_zh": "小人物2", + "title_en": "Nobody 2", + "translation_source": "tmdb", + "reputation_score": 6.994, + "reputation_votes": 1240, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"1007734\"}" + }, + "display_title": "小人物2 Nobody 2" + }, + { + "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", + "filename": "Godzilla.x.Kong.The.New.Empire.2024.1080p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi.mkv", + "category": "movie", + "title": "Godzilla X Kong The New Empire", + "year": 2024, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:823464", + "title_zh": "哥斯拉大战金刚2:帝国崛起", + "title_en": "Godzilla x Kong: The New Empire", + "translation_source": "tmdb", + "reputation_score": 7.054, + "reputation_votes": 4498, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"823464\"}" + }, + "display_title": "哥斯拉大战金刚2:帝国崛起 Godzilla x Kong: The New Empire" + }, + { + "path": "/mnt/Downloads/movies/Prey.2022.1080p.BluRay.x265.10bit.DTS-WiKi/Prey.2022.1080p.BluRay.x265.10bit.DTS-WiKi.mkv", + "filename": "Prey.2022.1080p.BluRay.x265.10bit.DTS-WiKi.mkv", + "category": "movie", + "title": "Prey", + "year": 2022, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:766507", + "title_zh": "铁血战士:狩猎", + "title_en": "Prey", + "translation_source": "tmdb", + "reputation_score": 7.668, + "reputation_votes": 7492, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"766507\"}" + }, + "display_title": "铁血战士:狩猎 Prey" + }, + { + "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", + "filename": "A.Writer's.Odyssey.2021.720p.BluRay.x264-WiKi.Sample.mkv", + "category": "movie", + "title": "A Writer'S Odyssey", + "year": 2021, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:611698", + "title_zh": "刺杀小说家", + "title_en": "刺杀小说家", + "translation_source": "tmdb", + "reputation_score": 7.061, + "reputation_votes": 351, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"611698\"}" + }, + "display_title": "刺杀小说家" + }, + { + "path": "/mnt/Downloads/movies/A.Writer's.Odyssey.2021.720p.BluRay.x264-WiKi/A.Writer's.Odyssey.2021.720p.BluRay.x264-WiKi.mkv", + "filename": "A.Writer's.Odyssey.2021.720p.BluRay.x264-WiKi.mkv", + "category": "movie", + "title": "A Writer'S Odyssey", + "year": 2021, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:611698", + "title_zh": "刺杀小说家", + "title_en": "刺杀小说家", + "translation_source": "tmdb", + "reputation_score": 7.061, + "reputation_votes": 351, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"611698\"}" + }, + "display_title": "刺杀小说家" + }, + { + "path": "/mnt/Downloads/movies/Baby.Driver.2017.1080p.BluRay.x264.DTS-WiKi/Sample/Baby.Driver.2017.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", + "filename": "Baby.Driver.2017.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", + "category": "movie", + "title": "Baby Driver", + "year": 2017, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:339403", + "title_zh": "极盗车神", + "title_en": "Baby Driver", + "translation_source": "tmdb", + "reputation_score": 7.441, + "reputation_votes": 16567, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"339403\"}" + }, + "display_title": "极盗车神 Baby Driver" + }, + { + "path": "/mnt/Downloads/movies/Baby.Driver.2017.1080p.BluRay.x264.DTS-WiKi/Baby.Driver.2017.1080p.BluRay.x264.DTS-WiKi.mkv", + "filename": "Baby.Driver.2017.1080p.BluRay.x264.DTS-WiKi.mkv", + "category": "movie", + "title": "Baby Driver", + "year": 2017, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:339403", + "title_zh": "极盗车神", + "title_en": "Baby Driver", + "translation_source": "tmdb", + "reputation_score": 7.441, + "reputation_votes": 16567, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"339403\"}" + }, + "display_title": "极盗车神 Baby Driver" + }, + { + "path": "/mnt/Downloads/movies/Hard.Hit.2021.720p.BluRay.x264-WiKi/Hard.Hit.2021.720p.BluRay.x264-WiKi.mkv", + "filename": "Hard.Hit.2021.720p.BluRay.x264-WiKi.mkv", + "category": "movie", + "title": "Hard Hit", + "year": 2021, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:1404567", + "title_zh": "Hard Hit", + "title_en": "Hard Hit", + "translation_source": "tmdb", + "reputation_score": 0.0, + "reputation_votes": 1, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"1404567\"}" + }, + "display_title": "Hard Hit" + }, + { + "path": "/mnt/Downloads/movies/Hard.Hit.2021.720p.BluRay.x264-WiKi/Sample/Hard.Hit.2021.720p.BluRay.x264-WiKi.Sample.mkv", + "filename": "Hard.Hit.2021.720p.BluRay.x264-WiKi.Sample.mkv", + "category": "movie", + "title": "Hard Hit", + "year": 2021, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:1404567", + "title_zh": "Hard Hit", + "title_en": "Hard Hit", + "translation_source": "tmdb", + "reputation_score": 0.0, + "reputation_votes": 1, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"1404567\"}" + }, + "display_title": "Hard Hit" + }, + { + "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", + "filename": "Tron Ares 2025 USA BluRay 1080p DTS-HDMA7.1 x265 10bit-CHD.mkv", + "category": "movie", + "title": "Tron Ares", + "year": 2025, + "confidence": 0.7, + "needs_review": true, + "canonical_id": "tmdb:movie:533533", + "title_zh": "创:战神", + "title_en": "TRON: Ares", + "translation_source": "tmdb", + "reputation_score": 6.505, + "reputation_votes": 1157, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"533533\"}" + }, + "display_title": "创:战神 TRON: Ares" + }, + { + "path": "/mnt/Downloads/movies/Sinners 2025 REPACK 1080p BluRay x265 10bit TrueHD-WiKi/Sinners 2025 REPACK 1080p BluRay x265 10bit TrueHD-WiKi.mkv", + "filename": "Sinners 2025 REPACK 1080p BluRay x265 10bit TrueHD-WiKi.mkv", + "category": "movie", + "title": "Sinners", + "year": 2025, + "confidence": 0.7, + "needs_review": true, + "canonical_id": "tmdb:movie:1233413", + "title_zh": "罪人", + "title_en": "Sinners", + "translation_source": "tmdb", + "reputation_score": 7.489, + "reputation_votes": 3632, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"1233413\"}" + }, + "display_title": "罪人 Sinners" + }, + { + "path": "/mnt/Downloads/movies/Raging Fire Exclusive Documentary 2021 WEB-DL 1080p H264 DDP 2.0-Dave.mkv", + "filename": "Raging Fire Exclusive Documentary 2021 WEB-DL 1080p H264 DDP 2.0-Dave.mkv", + "category": "movie", + "title": "Raging Fire Exclusive Documentary", + "year": 2021, + "confidence": 0.7, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Raging Fire Exclusive Documentary" + }, + { + "path": "/mnt/Downloads/movies/A.Man.2022.1080p.BluRay.x265.10bit.DTS-WiKi/A.Man.2022.1080p.BluRay.x265.10bit.DTS-WiKi.mkv", + "filename": "A.Man.2022.1080p.BluRay.x265.10bit.DTS-WiKi.mkv", + "category": "movie", + "title": "A Man", + "year": 2022, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:988872", + "title_zh": "AMEN A MAN", + "title_en": "AMEN A MAN", + "translation_source": "tmdb", + "reputation_score": 0.0, + "reputation_votes": 1, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"988872\"}" + }, + "display_title": "AMEN A MAN" + }, + { + "path": "/mnt/Downloads/movies/The.Family.Plan.2023.1080p.Apple.TV+.WEB-DL.DDP.5.1.Atmos.H.264-CHDWEB.mkv", + "filename": "The.Family.Plan.2023.1080p.Apple.TV+.WEB-DL.DDP.5.1.Atmos.H.264-CHDWEB.mkv", + "category": "movie", + "title": "The Family Plan", + "year": 2023, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:1029575", + "title_zh": "家庭计划", + "title_en": "The Family Plan", + "translation_source": "tmdb", + "reputation_score": 7.2, + "reputation_votes": 1790, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"1029575\"}" + }, + "display_title": "家庭计划 The Family Plan" + }, + { + "path": "/mnt/Downloads/movies/Waiting.For.Rain.2021.1080p.WEB-DL.AAC2.0.H264-TTG.mkv", + "filename": "Waiting.For.Rain.2021.1080p.WEB-DL.AAC2.0.H264-TTG.mkv", + "category": "movie", + "title": "Waiting For Rain", + "year": 2021, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:656159", + "title_zh": "雨和你的故事", + "title_en": "비와 당신의 이야기", + "translation_source": "tmdb", + "reputation_score": 6.167, + "reputation_votes": 18, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"656159\"}" + }, + "display_title": "雨和你的故事 비와 당신의 이야기" + }, + { + "path": "/mnt/Downloads/movies/Let.Him.Go.2020.720p.BluRay.x264-WiKi/Sample/Let.Him.Go.2020.720p.BluRay.x264-WiKi.Sample.mkv", + "filename": "Let.Him.Go.2020.720p.BluRay.x264-WiKi.Sample.mkv", + "category": "movie", + "title": "Let Him Go", + "year": 2020, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:596161", + "title_zh": "让他走", + "title_en": "Let Him Go", + "translation_source": "tmdb", + "reputation_score": 6.815, + "reputation_votes": 746, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"596161\"}" + }, + "display_title": "让他走 Let Him Go" + }, + { + "path": "/mnt/Downloads/movies/Let.Him.Go.2020.720p.BluRay.x264-WiKi/Let.Him.Go.2020.720p.BluRay.x264-WiKi.mkv", + "filename": "Let.Him.Go.2020.720p.BluRay.x264-WiKi.mkv", + "category": "movie", + "title": "Let Him Go", + "year": 2020, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:596161", + "title_zh": "让他走", + "title_en": "Let Him Go", + "translation_source": "tmdb", + "reputation_score": 6.815, + "reputation_votes": 746, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"596161\"}" + }, + "display_title": "让他走 Let Him Go" + }, + { + "path": "/mnt/Downloads/movies/步履不停.2008.CC.1080p.日语.简繁中字£CMCT槿年/[步履不停].Still.Walking.2008.CC.BluRay.1080p.x264.DTS-CMCT.mkv", + "filename": "[步履不停].Still.Walking.2008.CC.BluRay.1080p.x264.DTS-CMCT.mkv", + "category": "movie", + "title": "Still Walking", + "year": 2008, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:25050", + "title_zh": "步履不停", + "title_en": "歩いても 歩いても", + "translation_source": "tmdb", + "reputation_score": 7.771, + "reputation_votes": 422, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"25050\"}" + }, + "display_title": "步履不停 歩いても 歩いても" + }, + { + "path": "/mnt/Downloads/movies/松本清張「ガラスの城」テレビ朝日開局65周年記念 松本清張二夜連続ドラマプレミアム 1080p AbemaTV WEB-DL H264 AAC-Solitude@DoA.mkv", + "filename": "松本清張「ガラスの城」テレビ朝日開局65周年記念 松本清張二夜連続ドラマプレミアム 1080p AbemaTV WEB-DL H264 AAC-Solitude@DoA.mkv", + "category": "movie", + "title": "松本清張「ガラスの城」テレビ朝日開局65周年記念 松本清張二夜連続ドラマプレミアム Abematv -Solitude@Doa", + "year": null, + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "松本清張「ガラスの城」テレビ朝日開局65周年記念 松本清張二夜連続ドラマプレミアム Abematv -Solitude@Doa" + }, + { + "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", + "filename": "Shang.Chi.and.the.Legend.of.the.Ten.Rings.2021.1080p.BDRip.X264.DTS-EVO.mkv", + "category": "movie", + "title": "Shang Chi And The Legend Of The Ten Rings", + "year": 2021, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:566525", + "title_zh": "尚气与十环传奇", + "title_en": "Shang-Chi and the Legend of the Ten Rings", + "translation_source": "tmdb", + "reputation_score": 7.498, + "reputation_votes": 10176, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"566525\"}" + }, + "display_title": "尚气与十环传奇 Shang-Chi and the Legend of the Ten Rings" + }, + { + "path": "/mnt/Downloads/movies/Crying.Out.Love, in.the.Center.of.the.World.2004.1080p.AMZN.WEB-DL.DDP5.1.H.264-ARiN.mkv", + "filename": "Crying.Out.Love, in.the.Center.of.the.World.2004.1080p.AMZN.WEB-DL.DDP5.1.H.264-ARiN.mkv", + "category": "movie", + "title": "Crying Out Love, In The Center Of The World", + "year": 2004, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:36091", + "title_zh": "在世界的中心呼唤爱", + "title_en": "世界の中心で、愛をさけぶ", + "translation_source": "tmdb", + "reputation_score": 7.3, + "reputation_votes": 52, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"36091\"}" + }, + "display_title": "在世界的中心呼唤爱 世界の中心で、愛をさけぶ" + }, + { + "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", + "filename": "Inside.Men.2015.Director's.Cut.720p.BluRay.x264-WiKi.mkv", + "category": "movie", + "title": "Inside Men", + "year": 2015, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:150540", + "title_zh": "头脑特工队", + "title_en": "Inside Out", + "translation_source": "tmdb", + "reputation_score": 7.909, + "reputation_votes": 23149, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"150540\"}" + }, + "display_title": "头脑特工队 Inside Out" + }, + { + "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", + "filename": "Inside.Men.2015.Director's.Cut.720p.BluRay.x264-WiKi.Sample.mkv", + "category": "movie", + "title": "Inside Men", + "year": 2015, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:150540", + "title_zh": "头脑特工队", + "title_en": "Inside Out", + "translation_source": "tmdb", + "reputation_score": 7.909, + "reputation_votes": 23149, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"150540\"}" + }, + "display_title": "头脑特工队 Inside Out" + }, + { + "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", + "filename": "Triangle.of.Sadness.2022.1080p.BluRay.x265.10bit.DTS-WiKi.mkv", + "category": "movie", + "title": "Triangle Of Sadness", + "year": 2022, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:497828", + "title_zh": "悲情三角", + "title_en": "Triangle of Sadness", + "translation_source": "tmdb", + "reputation_score": 7.018, + "reputation_votes": 2734, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"497828\"}" + }, + "display_title": "悲情三角 Triangle of Sadness" + }, + { + "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", + "filename": "The.Fable.The Killer.Who.Doesn't.Kill.2021.1080p.BluRay.x264.DTS-WiKi.sample.mkv", + "category": "movie", + "title": "The Fable The Killer Who Doesn'T Kill", + "year": 2021, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:734519", + "title_zh": "杀手寓言 第二章", + "title_en": "ザ・ファブル 殺さない殺し屋", + "translation_source": "tmdb", + "reputation_score": 6.995, + "reputation_votes": 91, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"734519\"}" + }, + "display_title": "杀手寓言 第二章 ザ・ファブル 殺さない殺し屋" + }, + { + "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", + "filename": "The.Fable.The Killer.Who.Doesn't.Kill.2021.1080p.BluRay.x264.DTS-WiKi.mkv", + "category": "movie", + "title": "The Fable The Killer Who Doesn'T Kill", + "year": 2021, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:734519", + "title_zh": "杀手寓言 第二章", + "title_en": "ザ・ファブル 殺さない殺し屋", + "translation_source": "tmdb", + "reputation_score": 6.995, + "reputation_votes": 91, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"734519\"}" + }, + "display_title": "杀手寓言 第二章 ザ・ファブル 殺さない殺し屋" + }, + { + "path": "/mnt/Downloads/movies/Bad.Boys.for.Life.2020.1080p.BluRay.x264-WUTANG/bad.boys.for.life.2020.1080p.bluray.x264-wutang.mkv", + "filename": "bad.boys.for.life.2020.1080p.bluray.x264-wutang.mkv", + "category": "movie", + "title": "Bad Boys For Life", + "year": 2020, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:38700", + "title_zh": "绝地战警:疾速追击", + "title_en": "Bad Boys for Life", + "translation_source": "tmdb", + "reputation_score": 7.122, + "reputation_votes": 8620, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"38700\"}" + }, + "display_title": "绝地战警:疾速追击 Bad Boys for Life" + }, + { + "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", + "filename": "bad.boys.for.life.2020.1080p.bluray.x264-wutang-sample.mkv", + "category": "movie", + "title": "Bad Boys For Life", + "year": 2020, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:38700", + "title_zh": "绝地战警:疾速追击", + "title_en": "Bad Boys for Life", + "translation_source": "tmdb", + "reputation_score": 7.122, + "reputation_votes": 8620, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"38700\"}" + }, + "display_title": "绝地战警:疾速追击 Bad Boys for Life" + }, + { + "path": "/mnt/Downloads/movies/Confidential.Assignment.2017.1080p.BluRay.x264-WiKi/Confidential.Assignment.2017.1080p.BluRay.x264-WiKi.mkv", + "filename": "Confidential.Assignment.2017.1080p.BluRay.x264-WiKi.mkv", + "category": "movie", + "title": "Confidential Assignment", + "year": 2017, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:434119", + "title_zh": "共助", + "title_en": "공조", + "translation_source": "tmdb", + "reputation_score": 6.865, + "reputation_votes": 141, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"434119\"}" + }, + "display_title": "共助 공조" + }, + { + "path": "/mnt/Downloads/movies/Confidential.Assignment.2017.1080p.BluRay.x264-WiKi/Sample/Confidential.Assignment.2017.1080p.BluRay.x264-WiKi.Sample.mkv", + "filename": "Confidential.Assignment.2017.1080p.BluRay.x264-WiKi.Sample.mkv", + "category": "movie", + "title": "Confidential Assignment", + "year": 2017, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:434119", + "title_zh": "共助", + "title_en": "공조", + "translation_source": "tmdb", + "reputation_score": 6.865, + "reputation_votes": 141, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"434119\"}" + }, + "display_title": "共助 공조" + }, + { + "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", + "filename": "Weathering.with.You.2019.RERiP.1080p.BluRay.x264.DTS-WiKi.mkv", + "category": "movie", + "title": "Weathering With You", + "year": 2019, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:568160", + "title_zh": "天气之子", + "title_en": "天気の子", + "translation_source": "tmdb", + "reputation_score": 7.986, + "reputation_votes": 2552, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"568160\"}" + }, + "display_title": "天气之子 天気の子" + }, + { + "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", + "filename": "Weathering.with.You.2019.RERiP.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", + "category": "movie", + "title": "Weathering With You", + "year": 2019, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:568160", + "title_zh": "天气之子", + "title_en": "天気の子", + "translation_source": "tmdb", + "reputation_score": 7.986, + "reputation_votes": 2552, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"568160\"}" + }, + "display_title": "天气之子 天気の子" + }, + { + "path": "/mnt/Downloads/movies/爱,不由自主.2017.1080p.日语.简繁中字£CMCT陆判/[爱,不由自主].Narratage.2017.BluRay.1080p.x264.DTS-CMCT.mkv", + "filename": "[爱,不由自主].Narratage.2017.BluRay.1080p.x264.DTS-CMCT.mkv", + "category": "movie", + "title": "[爱,不由自主] Narratage", + "year": 2017, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:472307", + "title_zh": "爱,不由自主", + "title_en": "ナラタージュ", + "translation_source": "tmdb", + "reputation_score": 6.8, + "reputation_votes": 13, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"472307\"}" + }, + "display_title": "爱,不由自主 ナラタージュ" + }, + { + "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", + "filename": "Muzi.v.nadeji.2011.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", + "category": "movie", + "title": "Muzi V Nadeji", + "year": 2011, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:85621", + "title_zh": "有希望的男人", + "title_en": "Muži v naději", + "translation_source": "tmdb", + "reputation_score": 7.343, + "reputation_votes": 181, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"85621\"}" + }, + "display_title": "有希望的男人 Muži v naději" + }, + { + "path": "/mnt/Downloads/movies/Muzi.v.nadeji.2011.1080p.BluRay.x264.DTS-WiKi/Muzi.v.nadeji.2011.1080p.BluRay.x264.DTS-WiKi.mkv", + "filename": "Muzi.v.nadeji.2011.1080p.BluRay.x264.DTS-WiKi.mkv", + "category": "movie", + "title": "Muzi V Nadeji", + "year": 2011, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:85621", + "title_zh": "有希望的男人", + "title_en": "Muži v naději", + "translation_source": "tmdb", + "reputation_score": 7.343, + "reputation_votes": 181, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"85621\"}" + }, + "display_title": "有希望的男人 Muži v naději" + }, + { + "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", + "filename": "The.Wild.Robot.2024.1080p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi.mkv", + "category": "movie", + "title": "The Wild Robot", + "year": 2024, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:1184918", + "title_zh": "荒野机器人", + "title_en": "The Wild Robot", + "translation_source": "tmdb", + "reputation_score": 8.313, + "reputation_votes": 5710, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"1184918\"}" + }, + "display_title": "荒野机器人 The Wild Robot" + }, + { + "path": "/mnt/Downloads/movies/明日を綴る写真館 2024 1080p HDTV x264 AAC5.1.mkv", + "filename": "明日を綴る写真館 2024 1080p HDTV x264 AAC5.1.mkv", + "category": "movie", + "title": "明日を綴る写真館", + "year": 2024, + "confidence": 0.7, + "needs_review": true, + "canonical_id": "tmdb:movie:1306443", + "title_zh": "谱写明日的照相馆", + "title_en": "明日を綴る写真館", + "translation_source": "tmdb", + "reputation_score": 0.0, + "reputation_votes": 1, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"1306443\"}" + }, + "display_title": "谱写明日的照相馆 明日を綴る写真館" + }, + { + "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", + "filename": "Hidden.Face.2024.1080p.CPNG.WEB-DL.AAC2.0.H264-HHWEB.mkv", + "category": "movie", + "title": "Hidden Face", + "year": 2024, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:1368153", + "title_zh": "Hidden Face", + "title_en": "Hidden Face", + "translation_source": "tmdb", + "reputation_score": 0.0, + "reputation_votes": 1, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"1368153\"}" + }, + "display_title": "Hidden Face" + }, + { + "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", + "filename": "The.Seed.of.the.Sacred.Fig.2024.1080p.BluRay.x265.10bit.DTS-WiKi.mkv", + "category": "movie", + "title": "The Seed Of The Sacred Fig", + "year": 2024, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:1278263", + "title_zh": "神圣无花果之种", + "title_en": "Les Graines du figuier sauvage", + "translation_source": "tmdb", + "reputation_score": 7.552, + "reputation_votes": 421, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"1278263\"}" + }, + "display_title": "神圣无花果之种 Les Graines du figuier sauvage" + }, + { + "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", + "filename": "Maigret.Sets.a.Trap.2016.720p.BluRay.x264.DTS-WiKi.mkv", + "category": "movie", + "title": "Maigret Sets A Trap", + "year": 2016, + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Maigret Sets A Trap" + }, + { + "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", + "filename": "Maigret.Sets.a.Trap.2016.720p.BluRay.x264.DTS-WiKi.Sample.mkv", + "category": "movie", + "title": "Maigret Sets A Trap", + "year": 2016, + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Maigret Sets A Trap" + }, + { + "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", + "filename": "Maigrets.Dead.Man.2016.720p.BluRay.x264.DTS-WiKi.Sample.mkv", + "category": "movie", + "title": "Maigrets Dead Man", + "year": 2016, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:1549027", + "title_zh": "梅格雷的亡者", + "title_en": "Maigret's Dead Man", + "translation_source": "tmdb", + "reputation_score": 0.0, + "reputation_votes": 1, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"1549027\"}" + }, + "display_title": "梅格雷的亡者 Maigret's Dead Man" + }, + { + "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", + "filename": "Maigrets.Dead.Man.2016.720p.BluRay.x264.DTS-WiKi.mkv", + "category": "movie", + "title": "Maigrets Dead Man", + "year": 2016, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:1549027", + "title_zh": "梅格雷的亡者", + "title_en": "Maigret's Dead Man", + "translation_source": "tmdb", + "reputation_score": 0.0, + "reputation_votes": 1, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"1549027\"}" + }, + "display_title": "梅格雷的亡者 Maigret's Dead Man" + }, + { + "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", + "filename": "Shall.we.dance.1996.1080p.BluRay.x265.10bit.DTS-WiKi.Sample.mkv", + "category": "movie", + "title": "Shall We Dance", + "year": 1996, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:11239", + "title_zh": "谈谈情跳跳舞", + "title_en": "Shall we ダンス?", + "translation_source": "tmdb", + "reputation_score": 7.4, + "reputation_votes": 175, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"11239\"}" + }, + "display_title": "谈谈情跳跳舞 Shall we ダンス?" + }, + { + "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", + "filename": "Shall.we.dance.1996.Remastered.1080p.BluRay.x265.10bit.DTS-WiKi.mkv", + "category": "movie", + "title": "Shall We Dance", + "year": 1996, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:11239", + "title_zh": "谈谈情跳跳舞", + "title_en": "Shall we ダンス?", + "translation_source": "tmdb", + "reputation_score": 7.4, + "reputation_votes": 175, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"11239\"}" + }, + "display_title": "谈谈情跳跳舞 Shall we ダンス?" + }, + { + "path": "/mnt/Downloads/movies/Warriors of Future 2022 NF WEB-DL 1080p H.264 DDP 5.1 10Audios-Dave.mkv", + "filename": "Warriors of Future 2022 NF WEB-DL 1080p H.264 DDP 5.1 10Audios-Dave.mkv", + "category": "movie", + "title": "Warriors Of Future", + "year": 2022, + "confidence": 0.7, + "needs_review": true, + "canonical_id": "tmdb:movie:518896", + "title_zh": "明日战记", + "title_en": "明日戰記", + "translation_source": "tmdb", + "reputation_score": 7.023, + "reputation_votes": 474, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"518896\"}" + }, + "display_title": "明日战记 明日戰記" + }, + { + "path": "/mnt/Downloads/movies/DogMan.2023.1080p.BluRay.x265.10bit-WiKi/DogMan.2023.1080p.BluRay.x265.10bit-WiKi.mkv", + "filename": "DogMan.2023.1080p.BluRay.x265.10bit-WiKi.mkv", + "category": "movie", + "title": "Dogman", + "year": 2023, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:944401", + "title_zh": "狗神", + "title_en": "Dogman", + "translation_source": "tmdb", + "reputation_score": 7.861, + "reputation_votes": 1323, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"944401\"}" + }, + "display_title": "狗神 Dogman" + }, + { + "path": "/mnt/Downloads/movies/Bushido.2024.1080p.BluRay.x265.10bit.DTS-WiKi/Bushido.2024.1080p.BluRay.x265.10bit.DTS-WiKi.mkv", + "filename": "Bushido.2024.1080p.BluRay.x265.10bit.DTS-WiKi.mkv", + "category": "movie", + "title": "Bushido", + "year": 2024, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:1263374", + "title_zh": "Bushido - König für immer", + "title_en": "Bushido - König für immer", + "translation_source": "tmdb", + "reputation_score": 0.0, + "reputation_votes": 1, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"1263374\"}" + }, + "display_title": "Bushido - König für immer" + }, + { + "path": "/mnt/Downloads/movies/Way.Down.2021.720p.BluRay.x264-WiKi/Sample/Way.Down.2021.720p.BluRay.x264-WiKi.Sample.mkv", + "filename": "Way.Down.2021.720p.BluRay.x264-WiKi.Sample.mkv", + "category": "movie", + "title": "Way Down", + "year": 2021, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:630004", + "title_zh": "沿路而下", + "title_en": "Way Down", + "translation_source": "tmdb", + "reputation_score": 6.812, + "reputation_votes": 1043, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"630004\"}" + }, + "display_title": "沿路而下 Way Down" + }, + { + "path": "/mnt/Downloads/movies/Way.Down.2021.720p.BluRay.x264-WiKi/Way.Down.2021.720p.BluRay.x264-WiKi.mkv", + "filename": "Way.Down.2021.720p.BluRay.x264-WiKi.mkv", + "category": "movie", + "title": "Way Down", + "year": 2021, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:630004", + "title_zh": "沿路而下", + "title_en": "Way Down", + "translation_source": "tmdb", + "reputation_score": 6.812, + "reputation_votes": 1043, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"630004\"}" + }, + "display_title": "沿路而下 Way Down" + }, + { + "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", + "filename": "Parallel.World.Love.Story.2019.1080p.BluRay.x264.DTS-WiKi.sample.mkv", + "category": "movie", + "title": "Parallel World Love Story", + "year": 2019, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:579663", + "title_zh": "平行世界·爱情故事", + "title_en": "パラレルワールド・ラブストーリー", + "translation_source": "tmdb", + "reputation_score": 5.9, + "reputation_votes": 8, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"579663\"}" + }, + "display_title": "平行世界·爱情故事 パラレルワールド・ラブストーリー" + }, + { + "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", + "filename": "Parallel.World.Love.Story.2019.1080p.BluRay.x264.DTS-WiKi.mkv", + "category": "movie", + "title": "Parallel World Love Story", + "year": 2019, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:579663", + "title_zh": "平行世界·爱情故事", + "title_en": "パラレルワールド・ラブストーリー", + "translation_source": "tmdb", + "reputation_score": 5.9, + "reputation_votes": 8, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"579663\"}" + }, + "display_title": "平行世界·爱情故事 パラレルワールド・ラブストーリー" + }, + { + "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", + "filename": "The.Long.Goodbye.1973.BluRay.1080p.x265.10bit.FLAC.MNHD-FRDS.mkv", + "category": "movie", + "title": "The Long Goodbye", + "year": 1973, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:1847", + "title_zh": "漫长的告别", + "title_en": "The Long Goodbye", + "translation_source": "tmdb", + "reputation_score": 7.403, + "reputation_votes": 735, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"1847\"}" + }, + "display_title": "漫长的告别 The Long Goodbye" + }, + { + "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", + "filename": "The.Door.Into.Summer.2021.720p.BluRay.x264-WiKi.sample.mkv", + "category": "movie", + "title": "The Door Into Summer", + "year": 2021, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:722798", + "title_zh": "进入盛夏之门", + "title_en": "夏への扉 ―キミのいる未来へ―", + "translation_source": "tmdb", + "reputation_score": 6.388, + "reputation_votes": 49, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"722798\"}" + }, + "display_title": "进入盛夏之门 夏への扉 ―キミのいる未来へ―" + }, + { + "path": "/mnt/Downloads/movies/The.Door.Into.Summer.2021.720p.BluRay.x264-WiKi/The.Door.Into.Summer.2021.720p.BluRay.x264-WiKi.mkv", + "filename": "The.Door.Into.Summer.2021.720p.BluRay.x264-WiKi.mkv", + "category": "movie", + "title": "The Door Into Summer", + "year": 2021, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:722798", + "title_zh": "进入盛夏之门", + "title_en": "夏への扉 ―キミのいる未来へ―", + "translation_source": "tmdb", + "reputation_score": 6.388, + "reputation_votes": 49, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"722798\"}" + }, + "display_title": "进入盛夏之门 夏への扉 ―キミのいる未来へ―" + }, + { + "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", + "filename": "The.Confidence.Man.JP.SP.2019.720p.BluRay.x264-WiKi.sample.mkv", + "category": "movie", + "title": "The Confidence Man Jp Sp", + "year": 2019, + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "The Confidence Man Jp Sp" + }, + { + "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", + "filename": "The.Confidence.Man.JP.SP.2019.720p.BluRay.x264-WiKi.mkv", + "category": "movie", + "title": "The Confidence Man Jp Sp", + "year": 2019, + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "The Confidence Man Jp Sp" + }, + { + "path": "/mnt/Downloads/movies/Monster.Hunter.2020.REPACK.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTG.mkv", + "filename": "Monster.Hunter.2020.REPACK.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTG.mkv", + "category": "movie", + "title": "Monster Hunter", + "year": 2020, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:458576", + "title_zh": "怪物猎人", + "title_en": "Monster Hunter", + "translation_source": "tmdb", + "reputation_score": 6.532, + "reputation_votes": 3483, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"458576\"}" + }, + "display_title": "怪物猎人 Monster Hunter" + }, + { + "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", + "filename": "The.Beekeeper.2024.1080p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi.mkv", + "category": "movie", + "title": "The Beekeeper", + "year": 2024, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:866398", + "title_zh": "养蜂人", + "title_en": "The Beekeeper", + "translation_source": "tmdb", + "reputation_score": 7.255, + "reputation_votes": 4008, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"866398\"}" + }, + "display_title": "养蜂人 The Beekeeper" + }, + { + "path": "/mnt/Downloads/movies/Luca.2021.1080p.BluRay.x264.DTS-WiKi/Sample/Luca.2021.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", + "filename": "Luca.2021.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", + "category": "movie", + "title": "Luca", + "year": 2021, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:508943", + "title_zh": "夏日友晴天", + "title_en": "Luca", + "translation_source": "tmdb", + "reputation_score": 7.788, + "reputation_votes": 8806, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"508943\"}" + }, + "display_title": "夏日友晴天 Luca" + }, + { + "path": "/mnt/Downloads/movies/Luca.2021.1080p.BluRay.x264.DTS-WiKi/Luca.2021.1080p.BluRay.x264.DTS-WiKi.mkv", + "filename": "Luca.2021.1080p.BluRay.x264.DTS-WiKi.mkv", + "category": "movie", + "title": "Luca", + "year": 2021, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:508943", + "title_zh": "夏日友晴天", + "title_en": "Luca", + "translation_source": "tmdb", + "reputation_score": 7.788, + "reputation_votes": 8806, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"508943\"}" + }, + "display_title": "夏日友晴天 Luca" + }, + { + "path": "/mnt/Downloads/movies/The.Soul.2021.1080p.NF.WEB-DL.DDP5.1.x264-DoA.mkv", + "filename": "The.Soul.2021.1080p.NF.WEB-DL.DDP5.1.x264-DoA.mkv", + "category": "movie", + "title": "The Soul", + "year": 2021, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:863835", + "title_zh": "Into the Soul", + "title_en": "Into the Soul", + "translation_source": "tmdb", + "reputation_score": 6.0, + "reputation_votes": 1, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"863835\"}" + }, + "display_title": "Into the Soul" + }, + { + "path": "/mnt/Downloads/movies/Dog.2022.1080p.BluRay.x264.DTS-WiKi/Dog.2022.1080p.BluRay.x264.DTS-WiKi.mkv", + "filename": "Dog.2022.1080p.BluRay.x264.DTS-WiKi.mkv", + "category": "movie", + "title": "Dog", + "year": 2022, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:626735", + "title_zh": "忠犬", + "title_en": "Dog", + "translation_source": "tmdb", + "reputation_score": 7.3, + "reputation_votes": 1718, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"626735\"}" + }, + "display_title": "忠犬 Dog" + }, + { + "path": "/mnt/Downloads/movies/Dog.2022.1080p.BluRay.x264.DTS-WiKi/Sample/Dog.2022.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", + "filename": "Dog.2022.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", + "category": "movie", + "title": "Dog", + "year": 2022, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:626735", + "title_zh": "忠犬", + "title_en": "Dog", + "translation_source": "tmdb", + "reputation_score": 7.3, + "reputation_votes": 1718, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"626735\"}" + }, + "display_title": "忠犬 Dog" + }, + { + "path": "/mnt/Downloads/movies/Vernost AKA Fidelity 2019 1080p BluRay DD5.1 x264-BdC.mkv", + "filename": "Vernost AKA Fidelity 2019 1080p BluRay DD5.1 x264-BdC.mkv", + "category": "movie", + "title": "Vernost Aka Fidelity", + "year": 2019, + "confidence": 0.7, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Vernost Aka Fidelity" + }, + { + "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", + "filename": "Swordsman.2.1992.BluRay.1080p.2Audio.TrueHD.5.1.x265.10bit-BeiTai.mkv", + "category": "movie", + "title": "Swordsman 2", + "year": 1992, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:822126", + "title_zh": "검객 산지니 2 - 항구에 나타난 검객 산지니", + "title_en": "검객 산지니 2 - 항구에 나타난 검객 산지니", + "translation_source": "tmdb", + "reputation_score": 0.0, + "reputation_votes": 1, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"822126\"}" + }, + "display_title": "검객 산지니 2 - 항구에 나타난 검객 산지니" + }, + { + "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": true, + "canonical_id": "tmdb:movie:543504", + "title_zh": "神探大战", + "title_en": "神探大戰", + "translation_source": "tmdb", + "reputation_score": 6.726, + "reputation_votes": 93, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"543504\"}" + }, + "display_title": "神探大战 神探大戰" + }, + { + "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", + "filename": "Extraction.2020.1080p.NF.WEB-DL.DDP5.1.Atmos.HDR.HEVC-CMRG.mkv", + "category": "movie", + "title": "Extraction", + "year": 2020, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:545609", + "title_zh": "惊天营救", + "title_en": "Extraction", + "translation_source": "tmdb", + "reputation_score": 7.297, + "reputation_votes": 6475, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"545609\"}" + }, + "display_title": "惊天营救 Extraction" + }, + { + "path": "/mnt/Downloads/movies/Julie.&.Julia.2009.1080p.BluRay.x265.10bit.DTS-WiKi/Julie.&.Julia.2009.1080p.BluRay.x265.10bit.DTS-WiKi.mkv", + "filename": "Julie.&.Julia.2009.1080p.BluRay.x265.10bit.DTS-WiKi.mkv", + "category": "movie", + "title": "Julie & Julia", + "year": 2009, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:24803", + "title_zh": "朱莉与朱莉娅", + "title_en": "Julie & Julia", + "translation_source": "tmdb", + "reputation_score": 6.714, + "reputation_votes": 2186, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"24803\"}" + }, + "display_title": "朱莉与朱莉娅 Julie & Julia" + }, + { + "path": "/mnt/Downloads/movies/Moonlight.Express.1999.720p.BluRay.x264-WiKi/Moonlight.Express.1999.720p.BluRay.x264-WiKi.mkv", + "filename": "Moonlight.Express.1999.720p.BluRay.x264-WiKi.mkv", + "category": "movie", + "title": "Moonlight Express", + "year": 1999, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:45505", + "title_zh": "星月童话", + "title_en": "星月童話", + "translation_source": "tmdb", + "reputation_score": 6.81, + "reputation_votes": 21, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"45505\"}" + }, + "display_title": "星月童话 星月童話" + }, + { + "path": "/mnt/Downloads/movies/Moonlight.Express.1999.720p.BluRay.x264-WiKi/Sample/Moonlight.Express.1999.720p.BluRay.x264-WiKi.Sample.mkv", + "filename": "Moonlight.Express.1999.720p.BluRay.x264-WiKi.Sample.mkv", + "category": "movie", + "title": "Moonlight Express", + "year": 1999, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:45505", + "title_zh": "星月童话", + "title_en": "星月童話", + "translation_source": "tmdb", + "reputation_score": 6.81, + "reputation_votes": 21, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"45505\"}" + }, + "display_title": "星月童话 星月童話" + }, + { + "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", + "filename": "Hitman.Agent.Jun.2020.1080p.WEBRip.x264.AAC5.1-[YTS.MX].mp4", + "category": "movie", + "title": "Hitman Agent Jun", + "year": 2020, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:604362", + "title_zh": "漫画威龙之大话特务", + "title_en": "히트맨", + "translation_source": "tmdb", + "reputation_score": 7.109, + "reputation_votes": 78, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"604362\"}" + }, + "display_title": "漫画威龙之大话特务 히트맨" + }, + { + "path": "/mnt/Downloads/movies/カツベン! 2019 1080p HDTV x264 AAC5.1-DoA.mkv", + "filename": "カツベン! 2019 1080p HDTV x264 AAC5.1-DoA.mkv", + "category": "movie", + "title": "カツベン!", + "year": 2019, + "confidence": 0.7, + "needs_review": true, + "canonical_id": "tmdb:movie:554796", + "title_zh": "默片解说员", + "title_en": "カツベン!", + "translation_source": "tmdb", + "reputation_score": 7.3, + "reputation_votes": 9, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"554796\"}" + }, + "display_title": "默片解说员 カツベン!" + }, + { + "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", + "filename": "The.Colors.Within.2024.1080p.BluRay.x265.10bit.DTS-WiKi.mkv", + "category": "movie", + "title": "The Colors Within", + "year": 2024, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:1056444", + "title_zh": "你的颜色", + "title_en": "きみの色", + "translation_source": "tmdb", + "reputation_score": 6.87, + "reputation_votes": 54, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"1056444\"}" + }, + "display_title": "你的颜色 きみの色" + }, + { + "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", + "filename": "The.Lost.City.2022.1080p.BluRay.x265.10bit-WiKi.Sample.mkv", + "category": "movie", + "title": "The Lost City", + "year": 2022, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:752623", + "title_zh": "迷失之城", + "title_en": "The Lost City", + "translation_source": "tmdb", + "reputation_score": 6.469, + "reputation_votes": 3897, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"752623\"}" + }, + "display_title": "迷失之城 The Lost City" + }, + { + "path": "/mnt/Downloads/movies/The.Lost.City.2022.1080p.BluRay.x265.10bit-WiKi/The.Lost.City.2022.1080p.BluRay.x265.10bit-WiKi.mkv", + "filename": "The.Lost.City.2022.1080p.BluRay.x265.10bit-WiKi.mkv", + "category": "movie", + "title": "The Lost City", + "year": 2022, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:752623", + "title_zh": "迷失之城", + "title_en": "The Lost City", + "translation_source": "tmdb", + "reputation_score": 6.469, + "reputation_votes": 3897, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"752623\"}" + }, + "display_title": "迷失之城 The Lost City" + }, + { + "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", + "filename": "Muroi.Shinji.Not.Defeated.2024.1080p.BluRay.x264.DTS-WiKi.mkv", + "category": "movie", + "title": "Muroi Shinji Not Defeated", + "year": 2024, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:1285372", + "title_zh": "室井慎次 不败之人", + "title_en": "室井慎次 敗れざる者", + "translation_source": "tmdb", + "reputation_score": 5.3, + "reputation_votes": 3, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"1285372\"}" + }, + "display_title": "室井慎次 不败之人 室井慎次 敗れざる者" + }, + { + "path": "/mnt/Downloads/movies/Shoplifters.2018.1080p.BluRay.x264.DTS-WiKi/Shoplifters.2018.1080p.BluRay.x264.DTS-WiKi.mkv", + "filename": "Shoplifters.2018.1080p.BluRay.x264.DTS-WiKi.mkv", + "category": "movie", + "title": "Shoplifters", + "year": 2018, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:505192", + "title_zh": "小偷家族", + "title_en": "万引き家族", + "translation_source": "tmdb", + "reputation_score": 7.848, + "reputation_votes": 2231, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"505192\"}" + }, + "display_title": "小偷家族 万引き家族" + }, + { + "path": "/mnt/Downloads/movies/Shoplifters.2018.1080p.BluRay.x264.DTS-WiKi/Sample/Shoplifters.2018.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", + "filename": "Shoplifters.2018.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", + "category": "movie", + "title": "Shoplifters", + "year": 2018, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:505192", + "title_zh": "小偷家族", + "title_en": "万引き家族", + "translation_source": "tmdb", + "reputation_score": 7.848, + "reputation_votes": 2231, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"505192\"}" + }, + "display_title": "小偷家族 万引き家族" + }, + { + "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", + "filename": "Shin.Ultraman.2022.BluRay.1080p.x264.Atmos.TrueHD7.1-HDChina.mkv", + "category": "movie", + "title": "Shin Ultraman", + "year": 2022, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:634429", + "title_zh": "新·奥特曼", + "title_en": "シン・ウルトラマン", + "translation_source": "tmdb", + "reputation_score": 7.438, + "reputation_votes": 227, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"634429\"}" + }, + "display_title": "新·奥特曼 シン・ウルトラマン" + }, + { + "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", + "filename": "My Bossy Girl 2019 WEB-DL 1080P H264 AAC-TTG.mkv", + "category": "movie", + "title": "My Bossy Girl", + "year": 2019, + "confidence": 0.7, + "needs_review": true, + "canonical_id": "tmdb:movie:640793", + "title_zh": "我的傲娇女友", + "title_en": "너의 여자친구", + "translation_source": "tmdb", + "reputation_score": 6.029, + "reputation_votes": 17, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"640793\"}" + }, + "display_title": "我的傲娇女友 너의 여자친구" + }, + { + "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", + "filename": "[恶世之子].To.Catch.a.Killer.2023.BluRay.1080p.x265.10bit.DTS-CMCT.mkv", + "category": "movie", + "title": "To Catch A Killer", + "year": 2023, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:605886", + "title_zh": "恶世之子", + "title_en": "To Catch a Killer", + "translation_source": "tmdb", + "reputation_score": 6.866, + "reputation_votes": 1270, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"605886\"}" + }, + "display_title": "恶世之子 To Catch a Killer" + }, + { + "path": "/mnt/Downloads/movies/PBS.美国经历.长津湖战役.American.Experience.The.Battle.of.Chosin.2016.WEB-DL.MiniSD-TLF.mkv", + "filename": "PBS.美国经历.长津湖战役.American.Experience.The.Battle.of.Chosin.2016.WEB-DL.MiniSD-TLF.mkv", + "category": "movie", + "title": "Pbs 美国经历 长津湖战役 American Experience The Battle Of Chosin", + "year": 2016, + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Pbs 美国经历 长津湖战役 American Experience The Battle Of Chosin" + }, + { + "path": "/mnt/Downloads/movies/翻译疑云.Les.Traducteurs.2019.Bluray.1080p.x265.10bit.MNHD-FRDS/Les.Traducteurs.2019.Bluray.1080p.x265.10bit.MNHD-FRDS.mkv", + "filename": "Les.Traducteurs.2019.Bluray.1080p.x265.10bit.MNHD-FRDS.mkv", + "category": "movie", + "title": "Les Traducteurs", + "year": 2019, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:477018", + "title_zh": "翻译疑云", + "title_en": "Les Traducteurs", + "translation_source": "tmdb", + "reputation_score": 6.398, + "reputation_votes": 530, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"477018\"}" + }, + "display_title": "翻译疑云 Les Traducteurs" + }, + { + "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", + "filename": "The.Devils.Advocate.1997.UNRATED.DC.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", + "category": "movie", + "title": "The Devils Advocate", + "year": 1997, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:1813", + "title_zh": "魔鬼代言人", + "title_en": "The Devil's Advocate", + "translation_source": "tmdb", + "reputation_score": 7.466, + "reputation_votes": 6593, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"1813\"}" + }, + "display_title": "魔鬼代言人 The Devil's Advocate" + }, + { + "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", + "filename": "The.Devils.Advocate.1997.UNRATED.DC.1080p.BluRay.x264.DTS-WiKi.mkv", + "category": "movie", + "title": "The Devils Advocate", + "year": 1997, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:1813", + "title_zh": "魔鬼代言人", + "title_en": "The Devil's Advocate", + "translation_source": "tmdb", + "reputation_score": 7.466, + "reputation_votes": 6593, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"1813\"}" + }, + "display_title": "魔鬼代言人 The Devil's Advocate" + }, + { + "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", + "filename": "The.Roundup.Punishment.2024.1080p.BluRay.x265.10bit.TrueHD5.1-WiKi.mkv", + "category": "movie", + "title": "The Roundup Punishment", + "year": 2024, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:1017163", + "title_zh": "犯罪都市4", + "title_en": "범죄도시 4", + "translation_source": "tmdb", + "reputation_score": 7.123, + "reputation_votes": 223, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"1017163\"}" + }, + "display_title": "犯罪都市4 범죄도시 4" + }, + { + "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", + "filename": "Foundation.2021.S01E10.The.Leap.1080p.ATVP.WEB-DL.DDP5.1.H.264-CasStudio.mkv", + "category": "movie", + "title": "Foundation", + "year": 2021, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:1358385", + "title_zh": "Foundations", + "title_en": "Foundations", + "translation_source": "tmdb", + "reputation_score": 10.0, + "reputation_votes": 1, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"1358385\"}" + }, + "display_title": "Foundations" + }, + { + "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", + "filename": "Fortune.Favors.Lady.Nikuko.2021.1080p.BluRay.x264.DTS-WiKi.mkv", + "category": "movie", + "title": "Fortune Favors Lady Nikuko", + "year": 2021, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:781816", + "title_zh": "渔港的肉子酱", + "title_en": "漁港の肉子ちゃん", + "translation_source": "tmdb", + "reputation_score": 7.1, + "reputation_votes": 62, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"781816\"}" + }, + "display_title": "渔港的肉子酱 漁港の肉子ちゃん" + }, + { + "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", + "filename": "Fortune.Favors.Lady.Nikuko.2021.1080p.BluRay.x264.DTS-WiKi.sample.mkv", + "category": "movie", + "title": "Fortune Favors Lady Nikuko", + "year": 2021, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:781816", + "title_zh": "渔港的肉子酱", + "title_en": "漁港の肉子ちゃん", + "translation_source": "tmdb", + "reputation_score": 7.1, + "reputation_votes": 62, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"781816\"}" + }, + "display_title": "渔港的肉子酱 漁港の肉子ちゃん" + }, + { + "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", + "filename": "Lonely.Castle.in.the.Mirror.2022.1080p.BluRay.x265.10bit.DTS-WiKi.mkv", + "category": "movie", + "title": "Lonely Castle In The Mirror", + "year": 2022, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:942881", + "title_zh": "镜之孤城", + "title_en": "かがみの孤城", + "translation_source": "tmdb", + "reputation_score": 7.156, + "reputation_votes": 96, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"942881\"}" + }, + "display_title": "镜之孤城 かがみの孤城" + }, + { + "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", + "filename": "Wotakoi.Love.Is.Hard.for.Otaku.2020.720p.BluRay.x264.DTS-WiKi.mkv", + "category": "movie", + "title": "Wotakoi Love Is Hard For Otaku", + "year": 2020, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:552687", + "title_zh": "宅男腐女恋爱真难", + "title_en": "ヲタクに恋は難しい", + "translation_source": "tmdb", + "reputation_score": 6.5, + "reputation_votes": 60, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"552687\"}" + }, + "display_title": "宅男腐女恋爱真难 ヲタクに恋は難しい" + }, + { + "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", + "filename": "Wotakoi.Love.Is.Hard.for.Otaku.2020.720p.BluRay.x264.DTS-WiKi.sample.mkv", + "category": "movie", + "title": "Wotakoi Love Is Hard For Otaku", + "year": 2020, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:552687", + "title_zh": "宅男腐女恋爱真难", + "title_en": "ヲタクに恋は難しい", + "translation_source": "tmdb", + "reputation_score": 6.5, + "reputation_votes": 60, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"552687\"}" + }, + "display_title": "宅男腐女恋爱真难 ヲタクに恋は難しい" + }, + { + "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", + "filename": "A.Man.Called.Otto.2022.1080p.BluRay.x265.10bit.DTS-WiKi.mkv", + "category": "movie", + "title": "A Man Called Otto", + "year": 2022, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:937278", + "title_zh": "生无可恋的奥托", + "title_en": "A Man Called Otto", + "translation_source": "tmdb", + "reputation_score": 7.753, + "reputation_votes": 3450, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"937278\"}" + }, + "display_title": "生无可恋的奥托 A Man Called Otto" + }, + { + "path": "/mnt/Downloads/movies/The.Substance.2024.1080p.BluRay.x265.10bit.DTS-WiKi/The.Substance.2024.1080p.BluRay.x265.10bit.DTS-WiKi.mkv", + "filename": "The.Substance.2024.1080p.BluRay.x265.10bit.DTS-WiKi.mkv", + "category": "movie", + "title": "The Substance", + "year": 2024, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:933260", + "title_zh": "某种物质", + "title_en": "The Substance", + "translation_source": "tmdb", + "reputation_score": 7.14, + "reputation_votes": 5642, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"933260\"}" + }, + "display_title": "某种物质 The Substance" + }, + { + "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", + "filename": "Den.of.Thieves.2.Pantera.2025.2160p.UHD.BluRay.x265.10bit.DV.TrueHD.7.1.Atmos-ADE.mkv", + "category": "movie", + "title": "Den Of Thieves 2 Pantera", + "year": 2025, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:604685", + "title_zh": "贼巢2:绝密战境", + "title_en": "Den of Thieves 2: Pantera", + "translation_source": "tmdb", + "reputation_score": 6.6, + "reputation_votes": 733, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"604685\"}" + }, + "display_title": "贼巢2:绝密战境 Den of Thieves 2: Pantera" + }, + { + "path": "/mnt/Downloads/movies/Bullet.Train.2022.1080p.BluRay.x264.DTS-WiKi/Sample/Bullet.Train.2022.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", + "filename": "Bullet.Train.2022.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", + "category": "movie", + "title": "Bullet Train", + "year": 2022, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:718930", + "title_zh": "杀手疾风号", + "title_en": "Bullet Train", + "translation_source": "tmdb", + "reputation_score": 7.417, + "reputation_votes": 7239, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"718930\"}" + }, + "display_title": "杀手疾风号 Bullet Train" + }, + { + "path": "/mnt/Downloads/movies/Bullet.Train.2022.1080p.BluRay.x264.DTS-WiKi/Bullet.Train.2022.1080p.BluRay.x264.DTS-WiKi.mkv", + "filename": "Bullet.Train.2022.1080p.BluRay.x264.DTS-WiKi.mkv", + "category": "movie", + "title": "Bullet Train", + "year": 2022, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:718930", + "title_zh": "杀手疾风号", + "title_en": "Bullet Train", + "translation_source": "tmdb", + "reputation_score": 7.417, + "reputation_votes": 7239, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"718930\"}" + }, + "display_title": "杀手疾风号 Bullet Train" + }, + { + "path": "/mnt/Downloads/movies/Burnt.2015.1080p.BluRay.x265.10bit.DTS-WiKi/Burnt.2015.1080p.BluRay.x265.10bit.DTS-WiKi.mkv", + "filename": "Burnt.2015.1080p.BluRay.x265.10bit.DTS-WiKi.mkv", + "category": "movie", + "title": "Burnt", + "year": 2015, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:295964", + "title_zh": "燃情主厨", + "title_en": "Burnt", + "translation_source": "tmdb", + "reputation_score": 6.524, + "reputation_votes": 3520, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"295964\"}" + }, + "display_title": "燃情主厨 Burnt" + }, + { + "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", + "filename": "The.Mole.Song.Final.2021.1080p.BluRay.x265.10bit.DTS-WiKi.sample.mkv", + "category": "movie", + "title": "The Mole Song Final", + "year": 2021, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:845611", + "title_zh": "鼹鼠之歌完结篇", + "title_en": "土竜の唄 FINAL", + "translation_source": "tmdb", + "reputation_score": 6.8, + "reputation_votes": 9, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"845611\"}" + }, + "display_title": "鼹鼠之歌完结篇 土竜の唄 FINAL" + }, + { + "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", + "filename": "The.Mole.Song.Final.2021.1080p.BluRay.x265.10bit.DTS-WiKi.mkv", + "category": "movie", + "title": "The Mole Song Final", + "year": 2021, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:845611", + "title_zh": "鼹鼠之歌完结篇", + "title_en": "土竜の唄 FINAL", + "translation_source": "tmdb", + "reputation_score": 6.8, + "reputation_votes": 9, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"845611\"}" + }, + "display_title": "鼹鼠之歌完结篇 土竜の唄 FINAL" + }, + { + "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", + "filename": "Drive.My.Car.2021.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", + "category": "movie", + "title": "Drive My Car", + "year": 2021, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:758866", + "title_zh": "驾驶我的车", + "title_en": "ドライブ・マイ・カー", + "translation_source": "tmdb", + "reputation_score": 7.4, + "reputation_votes": 1443, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"758866\"}" + }, + "display_title": "驾驶我的车 ドライブ・マイ・カー" + }, + { + "path": "/mnt/Downloads/movies/Drive.My.Car.2021.1080p.BluRay.x264.DTS-WiKi/Drive.My.Car.2021.1080p.BluRay.x264.DTS-WiKi.mkv", + "filename": "Drive.My.Car.2021.1080p.BluRay.x264.DTS-WiKi.mkv", + "category": "movie", + "title": "Drive My Car", + "year": 2021, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:758866", + "title_zh": "驾驶我的车", + "title_en": "ドライブ・マイ・カー", + "translation_source": "tmdb", + "reputation_score": 7.4, + "reputation_votes": 1443, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"758866\"}" + }, + "display_title": "驾驶我的车 ドライブ・マイ・カー" + }, + { + "path": "/mnt/Downloads/movies/SexWorld.1978.1080p.BluRay.x264.AAC-PornPlus.mp4", + "filename": "SexWorld.1978.1080p.BluRay.x264.AAC-PornPlus.mp4", + "category": "movie", + "title": "Sexworld", + "year": 1978, + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Sexworld" + }, + { + "path": "/mnt/Downloads/movies/Loro.2018.720p.BluRay.DD5.1.x264-BMDru/Loro.2018.720p.BluRay.DD5.1.x264-BMDru.mkv", + "filename": "Loro.2018.720p.BluRay.DD5.1.x264-BMDru.mkv", + "category": "movie", + "title": "Loro", + "year": 2018, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:541660", + "title_zh": "他们", + "title_en": "Loro", + "translation_source": "tmdb", + "reputation_score": 6.7, + "reputation_votes": 340, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"541660\"}" + }, + "display_title": "他们 Loro" + }, + { + "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", + "filename": "日班猎人.Day.Shift.2022.1080p.NF.WEB-DL.H264.DDP5.1-OurTV.mkv", + "category": "movie", + "title": "日班猎人 Day Shift", + "year": 2022, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:755566", + "title_zh": "Day Shift", + "title_en": "Day Shift", + "translation_source": "tmdb", + "reputation_score": 6.748, + "reputation_votes": 2137, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"755566\"}" + }, + "display_title": "Day Shift" + }, + { + "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", + "filename": "Ghost.Book.2022.1080p.BluRay.x265.10bit.DTS-WiKi.sample.mkv", + "category": "movie", + "title": "Ghost Book", + "year": 2022, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:961418", + "title_zh": "妖怪图鉴", + "title_en": "ゴーストブック おばけずかん", + "translation_source": "tmdb", + "reputation_score": 6.1, + "reputation_votes": 14, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"961418\"}" + }, + "display_title": "妖怪图鉴 ゴーストブック おばけずかん" + }, + { + "path": "/mnt/Downloads/movies/Ghost.Book.2022.1080p.BluRay.x265.10bit.DTS-WiKi/Ghost.Book.2022.1080p.BluRay.x265.10bit.DTS-WiKi.mkv", + "filename": "Ghost.Book.2022.1080p.BluRay.x265.10bit.DTS-WiKi.mkv", + "category": "movie", + "title": "Ghost Book", + "year": 2022, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:961418", + "title_zh": "妖怪图鉴", + "title_en": "ゴーストブック おばけずかん", + "translation_source": "tmdb", + "reputation_score": 6.1, + "reputation_votes": 14, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"961418\"}" + }, + "display_title": "妖怪图鉴 ゴーストブック おばけずかん" + }, + { + "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", + "year": null, + "confidence": 0.3, + "needs_review": true, + "canonical_id": "tmdb:movie:624812", + "title_zh": "恋途未卜", + "title_en": "思い、思われ、ふり、ふられ", + "translation_source": "tmdb", + "reputation_score": 6.971, + "reputation_votes": 17, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"624812\"}" + }, + "display_title": "恋途未卜 思い、思われ、ふり、ふられ" + }, + { + "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", + "filename": "Teenage.Mutant.Ninja.Turtles.Mutant.Mayhem.2023.1080p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi.mkv", + "category": "movie", + "title": "Teenage Mutant Ninja Turtles Mutant Mayhem", + "year": 2023, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:614930", + "title_zh": "忍者神龟:变种大乱斗", + "title_en": "Teenage Mutant Ninja Turtles: Mutant Mayhem", + "translation_source": "tmdb", + "reputation_score": 7.21, + "reputation_votes": 1528, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"614930\"}" + }, + "display_title": "忍者神龟:变种大乱斗 Teenage Mutant Ninja Turtles: Mutant Mayhem" + }, + { + "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", + "filename": "Killers.Of.the.Flower.Moon.2023.1080p.BluRay.x265.10bit.DTS-WiKi.mkv", + "category": "movie", + "title": "Killers Of The Flower Moon", + "year": 2023, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:466420", + "title_zh": "花月杀手", + "title_en": "Killers of the Flower Moon", + "translation_source": "tmdb", + "reputation_score": 7.405, + "reputation_votes": 3960, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"466420\"}" + }, + "display_title": "花月杀手 Killers of the Flower Moon" + }, + { + "path": "/mnt/Downloads/movies/The.Valet.2022.2160p.DSNP.WEB-DL.DDP5.1.HDR.HEVC-CMRG.mkv", + "filename": "The.Valet.2022.2160p.DSNP.WEB-DL.DDP5.1.HDR.HEVC-CMRG.mkv", + "category": "movie", + "title": "The Valet", + "year": 2022, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:810171", + "title_zh": "幕前情人", + "title_en": "The Valet", + "translation_source": "tmdb", + "reputation_score": 7.49, + "reputation_votes": 633, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"810171\"}" + }, + "display_title": "幕前情人 The Valet" + }, + { + "path": "/mnt/Downloads/movies/The.Creator.2023.1080p.BluRay.x265.10bit.DTS-WiKi/The.Creator.2023.1080p.BluRay.x265.10bit.DTS-WiKi.mkv", + "filename": "The.Creator.2023.1080p.BluRay.x265.10bit.DTS-WiKi.mkv", + "category": "movie", + "title": "The Creator", + "year": 2023, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:670292", + "title_zh": "AI创世者", + "title_en": "The Creator", + "translation_source": "tmdb", + "reputation_score": 7.016, + "reputation_votes": 3663, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"670292\"}" + }, + "display_title": "AI创世者 The Creator" + }, + { + "path": "/mnt/Downloads/movies/Deliver.Us.from.Evil.2020.720p.BluRay.x264-WiKi/Deliver.Us.from.Evil.2020.720p.BluRay.x264-WiKi.mkv", + "filename": "Deliver.Us.from.Evil.2020.720p.BluRay.x264-WiKi.mkv", + "category": "movie", + "title": "Deliver Us From Evil", + "year": 2020, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:581526", + "title_zh": "从邪恶中拯救我", + "title_en": "다만 악에서 구하소서", + "translation_source": "tmdb", + "reputation_score": 6.898, + "reputation_votes": 221, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"581526\"}" + }, + "display_title": "从邪恶中拯救我 다만 악에서 구하소서" + }, + { + "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", + "filename": "Deliver.Us.from.Evil.2020.720p.BluRay.x264-WiKi.Sample.mkv", + "category": "movie", + "title": "Deliver Us From Evil", + "year": 2020, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:581526", + "title_zh": "从邪恶中拯救我", + "title_en": "다만 악에서 구하소서", + "translation_source": "tmdb", + "reputation_score": 6.898, + "reputation_votes": 221, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"581526\"}" + }, + "display_title": "从邪恶中拯救我 다만 악에서 구하소서" + }, + { + "path": "/mnt/Downloads/movies/Nothing Serious 2021.mp4", + "filename": "Nothing Serious 2021.mp4", + "category": "movie", + "title": "Nothing Serious", + "year": 2021, + "confidence": 0.7, + "needs_review": true, + "canonical_id": "tmdb:movie:736545", + "title_zh": "恋爱缺席的罗曼史", + "title_en": "연애 빠진 로맨스", + "translation_source": "tmdb", + "reputation_score": 6.7, + "reputation_votes": 41, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"736545\"}" + }, + "display_title": "恋爱缺席的罗曼史 연애 빠진 로맨스" + }, + { + "path": "/mnt/Downloads/movies/Demolition.2015.720p.BluRay.x264-WiKi/Demolition.2015.720p.BluRay.x264-WiKi.mkv", + "filename": "Demolition.2015.720p.BluRay.x264-WiKi.mkv", + "category": "movie", + "title": "Demolition", + "year": 2015, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:303991", + "title_zh": "破碎人生", + "title_en": "Demolition", + "translation_source": "tmdb", + "reputation_score": 6.84, + "reputation_votes": 2426, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"303991\"}" + }, + "display_title": "破碎人生 Demolition" + }, + { + "path": "/mnt/Downloads/movies/Demolition.2015.720p.BluRay.x264-WiKi/Sample/Demolition.2015.720p.BluRay.x264-WiKi.sample.mkv", + "filename": "Demolition.2015.720p.BluRay.x264-WiKi.sample.mkv", + "category": "movie", + "title": "Demolition", + "year": 2015, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:303991", + "title_zh": "破碎人生", + "title_en": "Demolition", + "translation_source": "tmdb", + "reputation_score": 6.84, + "reputation_votes": 2426, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"303991\"}" + }, + "display_title": "破碎人生 Demolition" + }, + { + "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", + "filename": "Grand.Maison.Paris.2024.1080p.BluRay.x265.10bit.DTS-WiKi.mkv", + "category": "movie", + "title": "Grand Maison Paris", + "year": 2024, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:1306061", + "title_zh": "巴黎大饭店", + "title_en": "グランメゾン・パリ", + "translation_source": "tmdb", + "reputation_score": 7.5, + "reputation_votes": 11, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"1306061\"}" + }, + "display_title": "巴黎大饭店 グランメゾン・パリ" + }, + { + "path": "/mnt/Downloads/movies/Empire.Of.Lust.2014.720p.Uncut.HDRip.H264-Ental.mp4", + "filename": "Empire.Of.Lust.2014.720p.Uncut.HDRip.H264-Ental.mp4", + "category": "movie", + "title": "Empire Of Lust", + "year": 2014, + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Empire Of Lust" + }, + { + "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", + "filename": "Crayon.Shinchan.The.Tornado.Legend.of.Ninja.Mononoke.2022.1080p.BluRay.x265.10bit-WiKi.mkv", + "category": "movie", + "title": "Crayon Shinchan The Tornado Legend Of Ninja Mononoke", + "year": 2022, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:955666", + "title_zh": "蜡笔小新:好别致的影分身", + "title_en": "クレヨンしんちゃん もののけニンジャ珍風伝", + "translation_source": "tmdb", + "reputation_score": 7.267, + "reputation_votes": 15, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"955666\"}" + }, + "display_title": "蜡笔小新:好别致的影分身 クレヨンしんちゃん もののけニンジャ珍風伝" + }, + { + "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", + "filename": "Crayon.Shinchan.The.Tornado.Legend.of.Ninja.Mononoke.2022.1080p.BluRay.x265.10bit-WiKi.sample.mkv", + "category": "movie", + "title": "Crayon Shinchan The Tornado Legend Of Ninja Mononoke", + "year": 2022, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:955666", + "title_zh": "蜡笔小新:好别致的影分身", + "title_en": "クレヨンしんちゃん もののけニンジャ珍風伝", + "translation_source": "tmdb", + "reputation_score": 7.267, + "reputation_votes": 15, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"955666\"}" + }, + "display_title": "蜡笔小新:好别致的影分身 クレヨンしんちゃん もののけニンジャ珍風伝" + }, + { + "path": "/mnt/Downloads/movies/Shin.Ultraman.2022.1080p.BluRay.x265.10bit.DTS-WiKi/Shin.Ultraman.2022.1080p.BluRay.x265.10bit.DTS-WiKi.mkv", + "filename": "Shin.Ultraman.2022.1080p.BluRay.x265.10bit.DTS-WiKi.mkv", + "category": "movie", + "title": "Shin Ultraman", + "year": 2022, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:634429", + "title_zh": "新·奥特曼", + "title_en": "シン・ウルトラマン", + "translation_source": "tmdb", + "reputation_score": 7.438, + "reputation_votes": 227, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"634429\"}" + }, + "display_title": "新·奥特曼 シン・ウルトラマン" + }, + { + "path": "/mnt/Downloads/movies/Crimes.of.the.Future.2022.2160p.WEB-DL.DDP5.1.HDR.H.265-FLUX.mkv", + "filename": "Crimes.of.the.Future.2022.2160p.WEB-DL.DDP5.1.HDR.H.265-FLUX.mkv", + "category": "movie", + "title": "Crimes Of The Future", + "year": 2022, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:819876", + "title_zh": "未来罪行", + "title_en": "Crimes of the Future", + "translation_source": "tmdb", + "reputation_score": 6.031, + "reputation_votes": 1238, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"819876\"}" + }, + "display_title": "未来罪行 Crimes of the Future" + }, + { + "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", + "filename": "The.Proposal.2009.BluRay.1080p.DTS-HD.MA5.1.x265.10bit-BeiTai.mkv", + "category": "movie", + "title": "The Proposal", + "year": 2009, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:18240", + "title_zh": "假结婚", + "title_en": "The Proposal", + "translation_source": "tmdb", + "reputation_score": 7.149, + "reputation_votes": 7320, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"18240\"}" + }, + "display_title": "假结婚 The Proposal" + }, + { + "path": "/mnt/Downloads/movies/The.Super.Mario.Bros.Movie.2023.1080p.MA.WEB-DL.DDP5.1.Atmos.H.264-CMaRioG.mkv", + "filename": "The.Super.Mario.Bros.Movie.2023.1080p.MA.WEB-DL.DDP5.1.Atmos.H.264-CMaRioG.mkv", + "category": "movie", + "title": "The Super Mario Bros Movie", + "year": 2023, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:502356", + "title_zh": "超级马力欧兄弟大电影", + "title_en": "The Super Mario Bros. Movie", + "translation_source": "tmdb", + "reputation_score": 7.596, + "reputation_votes": 10251, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"502356\"}" + }, + "display_title": "超级马力欧兄弟大电影 The Super Mario Bros. Movie" + }, + { + "path": "/mnt/Downloads/movies/Portrait.of.a.Beauty.2008.720p.BluRay.x264-WiKi/Portrait.of.a.Beauty.2008.720p.BluRay.x264-WiKi.mkv", + "filename": "Portrait.of.a.Beauty.2008.720p.BluRay.x264-WiKi.mkv", + "category": "movie", + "title": "Portrait Of A Beauty", + "year": 2008, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:60192", + "title_zh": "美人图", + "title_en": "미인도", + "translation_source": "tmdb", + "reputation_score": 6.179, + "reputation_votes": 39, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"60192\"}" + }, + "display_title": "美人图 미인도" + }, + { + "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", + "filename": "Portrait.of.a.Beauty.2008.720p.BluRay.x264-WiKi.Sample.mkv", + "category": "movie", + "title": "Portrait Of A Beauty", + "year": 2008, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:60192", + "title_zh": "美人图", + "title_en": "미인도", + "translation_source": "tmdb", + "reputation_score": 6.179, + "reputation_votes": 39, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"60192\"}" + }, + "display_title": "美人图 미인도" + }, + { + "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", + "filename": "Made.in.Abyss.Journey's.Dawn.2019.720p.BluRay.x264-WiKi.mkv", + "category": "movie", + "title": "Made In Abyss Journey'S Dawn", + "year": 2019, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:526426", + "title_zh": "来自深渊:启程的拂晓", + "title_en": "劇場版総集編【前編】メイドインアビス 旅立ちの夜明け", + "translation_source": "tmdb", + "reputation_score": 7.588, + "reputation_votes": 74, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"526426\"}" + }, + "display_title": "来自深渊:启程的拂晓 劇場版総集編【前編】メイドインアビス 旅立ちの夜明け" + }, + { + "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", + "filename": "Made.in.Abyss.Journey's.Dawn.2019.720p.BluRay.x264-WiKi.sample.mkv", + "category": "movie", + "title": "Made In Abyss Journey'S Dawn", + "year": 2019, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:526426", + "title_zh": "来自深渊:启程的拂晓", + "title_en": "劇場版総集編【前編】メイドインアビス 旅立ちの夜明け", + "translation_source": "tmdb", + "reputation_score": 7.588, + "reputation_votes": 74, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"526426\"}" + }, + "display_title": "来自深渊:启程的拂晓 劇場版総集編【前編】メイドインアビス 旅立ちの夜明け" + }, + { + "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", + "filename": "One.Battle.After.Another.2025.1080p.BluRay.x265.10bit-WiKi.mkv", + "category": "movie", + "title": "One Battle After Another", + "year": 2025, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:1054867", + "title_zh": "一战再战", + "title_en": "One Battle After Another", + "translation_source": "tmdb", + "reputation_score": 7.425, + "reputation_votes": 2750, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"1054867\"}" + }, + "display_title": "一战再战 One Battle After Another" + }, + { + "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", + "filename": "Indiana.Jones.and.the.Dial.of.Destiny.2023.1080p.BluRay.x265.10bit.DTS-WiKi.mkv", + "category": "movie", + "title": "Indiana Jones And The Dial Of Destiny", + "year": 2023, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:335977", + "title_zh": "夺宝奇兵5:命运转盘", + "title_en": "Indiana Jones and the Dial of Destiny", + "translation_source": "tmdb", + "reputation_score": 6.516, + "reputation_votes": 3980, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"335977\"}" + }, + "display_title": "夺宝奇兵5:命运转盘 Indiana Jones and the Dial of Destiny" + }, + { + "path": "/mnt/Downloads/movies/Operation.Mincemeat.2021.1080p.NF.WEB-DL.DDP5.1.HDR.H265-HAMR.mkv", + "filename": "Operation.Mincemeat.2021.1080p.NF.WEB-DL.DDP5.1.HDR.H265-HAMR.mkv", + "category": "movie", + "title": "Operation Mincemeat", + "year": 2021, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:661231", + "title_zh": "绞肉行动", + "title_en": "Operation Mincemeat", + "translation_source": "tmdb", + "reputation_score": 6.5, + "reputation_votes": 772, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"661231\"}" + }, + "display_title": "绞肉行动 Operation Mincemeat" + }, + { + "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", + "filename": "Anora.2024.1080p.BluRay.x265.10bit.DTS-HD.MA.5.1-WiKi.mkv", + "category": "movie", + "title": "Anora", + "year": 2024, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:1064213", + "title_zh": "阿诺拉", + "title_en": "Anora", + "translation_source": "tmdb", + "reputation_score": 7.06, + "reputation_votes": 2936, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"1064213\"}" + }, + "display_title": "阿诺拉 Anora" + }, + { + "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", + "filename": "The.Unbearable.Weight.of.Massive.Talent.2022.1080p.BluRay.x265.10bit-WiKi.Sample.mkv", + "category": "movie", + "title": "The Unbearable Weight Of Massive Talent", + "year": 2022, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:648579", + "title_zh": "天才不能承受之重", + "title_en": "The Unbearable Weight of Massive Talent", + "translation_source": "tmdb", + "reputation_score": 6.79, + "reputation_votes": 2375, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"648579\"}" + }, + "display_title": "天才不能承受之重 The Unbearable Weight of Massive Talent" + }, + { + "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", + "filename": "The.Unbearable.Weight.of.Massive.Talent.2022.1080p.BluRay.x265.10bit-WiKi.mkv", + "category": "movie", + "title": "The Unbearable Weight Of Massive Talent", + "year": 2022, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:648579", + "title_zh": "天才不能承受之重", + "title_en": "The Unbearable Weight of Massive Talent", + "translation_source": "tmdb", + "reputation_score": 6.79, + "reputation_votes": 2375, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"648579\"}" + }, + "display_title": "天才不能承受之重 The Unbearable Weight of Massive Talent" + }, + { + "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", + "filename": "Tonkatsu.DJ.Agetaro.2020.720p.BluRay.x264.DTS-WiKi.sample.mkv", + "category": "movie", + "title": "Tonkatsu Dj Agetaro", + "year": 2020, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:698862", + "title_zh": "炸猪排DJ扬太郎", + "title_en": "とんかつDJアゲ太郎", + "translation_source": "tmdb", + "reputation_score": 7.7, + "reputation_votes": 7, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"698862\"}" + }, + "display_title": "炸猪排DJ扬太郎 とんかつDJアゲ太郎" + }, + { + "path": "/mnt/Downloads/movies/Tonkatsu.DJ.Agetaro.2020.720p.BluRay.x264.DTS-WiKi/Tonkatsu.DJ.Agetaro.2020.720p.BluRay.x264.DTS-WiKi.mkv", + "filename": "Tonkatsu.DJ.Agetaro.2020.720p.BluRay.x264.DTS-WiKi.mkv", + "category": "movie", + "title": "Tonkatsu Dj Agetaro", + "year": 2020, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:698862", + "title_zh": "炸猪排DJ扬太郎", + "title_en": "とんかつDJアゲ太郎", + "translation_source": "tmdb", + "reputation_score": 7.7, + "reputation_votes": 7, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"698862\"}" + }, + "display_title": "炸猪排DJ扬太郎 とんかつDJアゲ太郎" + }, + { + "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": "[蝙蝠侠:黑暗骑士崛起][][]", + "year": null, + "confidence": 0.3, + "needs_review": true, + "canonical_id": "tmdb:movie:49026", + "title_zh": "蝙蝠侠:黑暗骑士崛起", + "title_en": "The Dark Knight Rises", + "translation_source": "tmdb", + "reputation_score": 7.791, + "reputation_votes": 23971, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"49026\"}" + }, + "display_title": "蝙蝠侠:黑暗骑士崛起 The Dark Knight Rises" + }, + { + "path": "/mnt/Downloads/movies/Ghostbusters.Afterlife.2021.1080p.BluRay.x264.DTS-WiKi/Ghostbusters.Afterlife.2021.1080p.BluRay.x264.DTS-WiKi.mkv", + "filename": "Ghostbusters.Afterlife.2021.1080p.BluRay.x264.DTS-WiKi.mkv", + "category": "movie", + "title": "Ghostbusters Afterlife", + "year": 2021, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:425909", + "title_zh": "超能敢死队:来世", + "title_en": "Ghostbusters: Afterlife", + "translation_source": "tmdb", + "reputation_score": 7.328, + "reputation_votes": 5023, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"425909\"}" + }, + "display_title": "超能敢死队:来世 Ghostbusters: Afterlife" + }, + { + "path": "/mnt/Downloads/movies/Ghostbusters.Afterlife.2021.1080p.BluRay.x264.DTS-WiKi/Sample/Ghostbusters.Afterlife.2021.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", + "filename": "Ghostbusters.Afterlife.2021.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", + "category": "movie", + "title": "Ghostbusters Afterlife", + "year": 2021, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:425909", + "title_zh": "超能敢死队:来世", + "title_en": "Ghostbusters: Afterlife", + "translation_source": "tmdb", + "reputation_score": 7.328, + "reputation_votes": 5023, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"425909\"}" + }, + "display_title": "超能敢死队:来世 Ghostbusters: Afterlife" + }, + { + "path": "/mnt/Downloads/movies/当男人恋爱时.2021.1080p.闽南语.简繁中字£CMCT利姆鲁/[当男人恋爱时].Man.in.Love.2021.BluRay.1080p.x264.DTS-CMCT.mkv", + "filename": "[当男人恋爱时].Man.in.Love.2021.BluRay.1080p.x264.DTS-CMCT.mkv", + "category": "movie", + "title": "Man In Love", + "year": 2021, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:797787", + "title_zh": "当男人恋爱时", + "title_en": "當男人戀愛時", + "translation_source": "tmdb", + "reputation_score": 7.079, + "reputation_votes": 76, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"797787\"}" + }, + "display_title": "当男人恋爱时 當男人戀愛時" + }, + { + "path": "/mnt/Downloads/movies/Wake.Up.Dead.Man.A.Knives.Out.Mystery.2025.1080p.NF.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv", + "filename": "Wake.Up.Dead.Man.A.Knives.Out.Mystery.2025.1080p.NF.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv", + "category": "movie", + "title": "Wake Up Dead Man A Knives Out Mystery", + "year": 2025, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:812583", + "title_zh": "利刃出鞘3:亡者归来", + "title_en": "Wake Up Dead Man: A Knives Out Mystery", + "translation_source": "tmdb", + "reputation_score": 7.209, + "reputation_votes": 2012, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"812583\"}" + }, + "display_title": "利刃出鞘3:亡者归来 Wake Up Dead Man: A Knives Out Mystery" + }, + { + "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", + "filename": "The.Wandering.Earth.2.2023.IMAX.1080p.BluRay.x265.10bit.DTS-WiKi.mkv", + "category": "movie", + "title": "The Wandering Earth 2", + "year": 2023, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:842675", + "title_zh": "流浪地球2", + "title_en": "流浪地球2", + "translation_source": "tmdb", + "reputation_score": 7.286, + "reputation_votes": 688, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"842675\"}" + }, + "display_title": "流浪地球2" + }, + { + "path": "/mnt/Downloads/movies/穆赫兰道.2001.CC.1080p.中英字幕£CMCT风潇潇/[穆赫兰道].Mulholland.Dr.2001.CC.BluRay.1080p.x264.DTS-CMCT.mkv", + "filename": "[穆赫兰道].Mulholland.Dr.2001.CC.BluRay.1080p.x264.DTS-CMCT.mkv", + "category": "movie", + "title": "Mulholland Dr", + "year": 2001, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:1018", + "title_zh": "穆赫兰道", + "title_en": "Mulholland Drive", + "translation_source": "tmdb", + "reputation_score": 7.8, + "reputation_votes": 6852, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"1018\"}" + }, + "display_title": "穆赫兰道 Mulholland Drive" + }, + { + "path": "/mnt/Downloads/movies/Honest.Thief.2020.720p.BluRay.x264-WiKi/Honest.Thief.2020.720p.BluRay.x264-WiKi.mkv", + "filename": "Honest.Thief.2020.720p.BluRay.x264-WiKi.mkv", + "category": "movie", + "title": "Honest Thief", + "year": 2020, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:553604", + "title_zh": "夺金营救", + "title_en": "Honest Thief", + "translation_source": "tmdb", + "reputation_score": 6.478, + "reputation_votes": 1855, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"553604\"}" + }, + "display_title": "夺金营救 Honest Thief" + }, + { + "path": "/mnt/Downloads/movies/Honest.Thief.2020.720p.BluRay.x264-WiKi/Sample/Honest.Thief.2020.720p.BluRay.x264-WiKi.Sample.mkv", + "filename": "Honest.Thief.2020.720p.BluRay.x264-WiKi.Sample.mkv", + "category": "movie", + "title": "Honest Thief", + "year": 2020, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:553604", + "title_zh": "夺金营救", + "title_en": "Honest Thief", + "translation_source": "tmdb", + "reputation_score": 6.478, + "reputation_votes": 1855, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"553604\"}" + }, + "display_title": "夺金营救 Honest Thief" + }, + { + "path": "/mnt/Downloads/movies/Dont.Look.Up.2021.1080p.NF.WEB-DL.DDP5.1.Atmos.HDR.HEVC-MZABI.mkv", + "filename": "Dont.Look.Up.2021.1080p.NF.WEB-DL.DDP5.1.Atmos.HDR.HEVC-MZABI.mkv", + "category": "movie", + "title": "Dont Look Up", + "year": 2021, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:646380", + "title_zh": "Don't Look Up", + "title_en": "Don't Look Up", + "translation_source": "tmdb", + "reputation_score": 7.063, + "reputation_votes": 9078, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"646380\"}" + }, + "display_title": "Don't Look Up" + }, + { + "path": "/mnt/Downloads/movies/The.Master.Plan.2021.720p.BluRay.x264-WiKi/The.Master.Plan.2021.720p.BluRay.x264-WiKi.mkv", + "filename": "The.Master.Plan.2021.720p.BluRay.x264-WiKi.mkv", + "category": "movie", + "title": "The Master Plan", + "year": 2021, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:722805", + "title_zh": "无名世界的终结", + "title_en": "名も無き世界のエンドロール", + "translation_source": "tmdb", + "reputation_score": 7.8, + "reputation_votes": 6, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"722805\"}" + }, + "display_title": "无名世界的终结 名も無き世界のエンドロール" + }, + { + "path": "/mnt/Downloads/movies/The.Master.Plan.2021.720p.BluRay.x264-WiKi/Sample/The.Master.Plan.2021.720p.BluRay.x264-WiKi.sample.mkv", + "filename": "The.Master.Plan.2021.720p.BluRay.x264-WiKi.sample.mkv", + "category": "movie", + "title": "The Master Plan", + "year": 2021, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:722805", + "title_zh": "无名世界的终结", + "title_en": "名も無き世界のエンドロール", + "translation_source": "tmdb", + "reputation_score": 7.8, + "reputation_votes": 6, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"722805\"}" + }, + "display_title": "无名世界的终结 名も無き世界のエンドロール" + }, + { + "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", + "filename": "Transformers.One.2024.1080p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi.mkv", + "category": "movie", + "title": "Transformers One", + "year": 2024, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:698687", + "title_zh": "变形金刚:起源", + "title_en": "Transformers One", + "translation_source": "tmdb", + "reputation_score": 7.997, + "reputation_votes": 1496, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"698687\"}" + }, + "display_title": "变形金刚:起源 Transformers One" + }, + { + "path": "/mnt/Downloads/movies/The.Northman.2022.RERiP.1080p.BluRay.x264-WiKi/The.Northman.2022.RERiP.1080p.BluRay.x264-WiKi.mkv", + "filename": "The.Northman.2022.RERiP.1080p.BluRay.x264-WiKi.mkv", + "category": "movie", + "title": "The Northman", + "year": 2022, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:639933", + "title_zh": "北欧人", + "title_en": "The Northman", + "translation_source": "tmdb", + "reputation_score": 7.032, + "reputation_votes": 4888, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"639933\"}" + }, + "display_title": "北欧人 The Northman" + }, + { + "path": "/mnt/Downloads/movies/The.Northman.2022.RERiP.1080p.BluRay.x264-WiKi/Sample/The.Northman.2022.RERiP.1080p.BluRay.x264-WiKi.Sample.mkv", + "filename": "The.Northman.2022.RERiP.1080p.BluRay.x264-WiKi.Sample.mkv", + "category": "movie", + "title": "The Northman", + "year": 2022, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:639933", + "title_zh": "北欧人", + "title_en": "The Northman", + "translation_source": "tmdb", + "reputation_score": 7.032, + "reputation_votes": 4888, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"639933\"}" + }, + "display_title": "北欧人 The Northman" + }, + { + "path": "/mnt/Downloads/movies/Dragon Fight 1989 NF WEB-DL 1080p H.264 AAC & DD 2.0 2Audios-Dave.mkv", + "filename": "Dragon Fight 1989 NF WEB-DL 1080p H.264 AAC & DD 2.0 2Audios-Dave.mkv", + "category": "movie", + "title": "Dragon Fight", + "year": 1989, + "confidence": 0.7, + "needs_review": true, + "canonical_id": "tmdb:movie:392685", + "title_zh": "好小子6:小龙过江", + "title_en": "好小子6:小龙过江", + "translation_source": "tmdb", + "reputation_score": 7.667, + "reputation_votes": 3, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"392685\"}" + }, + "display_title": "好小子6:小龙过江" + }, + { + "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", + "filename": "The.Tomorrow.War.2021.1080p.AMZN.WEB-DL.DDP5.1.H.264-CMRG.mkv", + "category": "movie", + "title": "The Tomorrow War", + "year": 2021, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:588228", + "title_zh": "明日之战", + "title_en": "The Tomorrow War", + "translation_source": "tmdb", + "reputation_score": 7.479, + "reputation_votes": 3963, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"588228\"}" + }, + "display_title": "明日之战 The Tomorrow War" + }, + { + "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", + "filename": "Jacky.Cheung.A.Classic.Tour.Live.in.Taipei.2016.BluRay.1080p.DTS-HD.MA.5.1.Flac.x265.10bit-BeiTai.mkv", + "category": "movie", + "title": "Jacky Cheung A Classic Tour Live In Taipei", + "year": 2016, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:1056988", + "title_zh": "张学友:经典世界巡回演唱会-台北站", + "title_en": "张学友:经典世界巡回演唱会-台北站", + "translation_source": "tmdb", + "reputation_score": 7.0, + "reputation_votes": 1, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"1056988\"}" + }, + "display_title": "张学友:经典世界巡回演唱会-台北站" + }, + { + "path": "/mnt/Downloads/movies/Innocent.Witness.2019.720p.BluRay.x264-WiKi/Innocent.Witness.2019.720p.BluRay.x264-WiKi.mkv", + "filename": "Innocent.Witness.2019.720p.BluRay.x264-WiKi.mkv", + "category": "movie", + "title": "Innocent Witness", + "year": 2019, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:570508", + "title_zh": "证人", + "title_en": "증인", + "translation_source": "tmdb", + "reputation_score": 7.759, + "reputation_votes": 83, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"570508\"}" + }, + "display_title": "证人 증인" + }, + { + "path": "/mnt/Downloads/movies/Innocent.Witness.2019.720p.BluRay.x264-WiKi/Sample/Innocent.Witness.2019.720p.BluRay.x264-WiKi.Sample.mkv", + "filename": "Innocent.Witness.2019.720p.BluRay.x264-WiKi.Sample.mkv", + "category": "movie", + "title": "Innocent Witness", + "year": 2019, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:570508", + "title_zh": "证人", + "title_en": "증인", + "translation_source": "tmdb", + "reputation_score": 7.759, + "reputation_votes": 83, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"570508\"}" + }, + "display_title": "证人 증인" + }, + { + "path": "/mnt/Downloads/movies/Fallen.Angels.1995.1080p.BluRay.x264.DTS-WiKi/Fallen.Angels.1995.1080p.BluRay.x264.DTS-WiKi.mkv", + "filename": "Fallen.Angels.1995.1080p.BluRay.x264.DTS-WiKi.mkv", + "category": "movie", + "title": "Fallen Angels", + "year": 1995, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:1325180", + "title_zh": "Red Wind", + "title_en": "Red Wind", + "translation_source": "tmdb", + "reputation_score": 0.0, + "reputation_votes": 1, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"1325180\"}" + }, + "display_title": "Red Wind" + }, + { + "path": "/mnt/Downloads/movies/Fallen.Angels.1995.1080p.BluRay.x264.DTS-WiKi/Sample/Fallen.Angels.1995.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", + "filename": "Fallen.Angels.1995.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", + "category": "movie", + "title": "Fallen Angels", + "year": 1995, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:1325180", + "title_zh": "Red Wind", + "title_en": "Red Wind", + "translation_source": "tmdb", + "reputation_score": 0.0, + "reputation_votes": 1, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"1325180\"}" + }, + "display_title": "Red Wind" + }, + { + "path": "/mnt/Downloads/movies/Gran.Turismo.2023.REPACK.2160p.MA.WEB-DL.DDP5.1.Atmos.DV.HDR.H.265-FLUX.mkv", + "filename": "Gran.Turismo.2023.REPACK.2160p.MA.WEB-DL.DDP5.1.Atmos.DV.HDR.H.265-FLUX.mkv", + "category": "movie", + "title": "Gran Turismo", + "year": 2023, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:980489", + "title_zh": "GT赛车:极速狂飙", + "title_en": "Gran Turismo", + "translation_source": "tmdb", + "reputation_score": 7.728, + "reputation_votes": 3242, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"980489\"}" + }, + "display_title": "GT赛车:极速狂飙 Gran Turismo" + }, + { + "path": "/mnt/Downloads/movies/The.Cell.2000.720p.BluRay.x264.DTS-WiKi/The.Cell.2000.720p.BluRay.x264.DTS-WiKi.mkv", + "filename": "The.Cell.2000.720p.BluRay.x264.DTS-WiKi.mkv", + "category": "movie", + "title": "The Cell", + "year": 2000, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:8843", + "title_zh": "入侵脑细胞", + "title_en": "The Cell", + "translation_source": "tmdb", + "reputation_score": 6.267, + "reputation_votes": 1657, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"8843\"}" + }, + "display_title": "入侵脑细胞 The Cell" + }, + { + "path": "/mnt/Downloads/movies/The.Cell.2000.720p.BluRay.x264.DTS-WiKi/Sample/The.Cell.2000.720p.BluRay.x264.DTS-WiKi.Sample.mkv", + "filename": "The.Cell.2000.720p.BluRay.x264.DTS-WiKi.Sample.mkv", + "category": "movie", + "title": "The Cell", + "year": 2000, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:8843", + "title_zh": "入侵脑细胞", + "title_en": "The Cell", + "translation_source": "tmdb", + "reputation_score": 6.267, + "reputation_votes": 1657, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"8843\"}" + }, + "display_title": "入侵脑细胞 The Cell" + }, + { + "path": "/mnt/Downloads/movies/Flight.Risk.2025.1080p.AMZN.WEB-DL.DDP5.1.H.264-APEX.mkv", + "filename": "Flight.Risk.2025.1080p.AMZN.WEB-DL.DDP5.1.H.264-APEX.mkv", + "category": "movie", + "title": "Flight Risk", + "year": 2025, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:1126166", + "title_zh": "插翅难飞", + "title_en": "Flight Risk", + "translation_source": "tmdb", + "reputation_score": 5.955, + "reputation_votes": 1093, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"1126166\"}" + }, + "display_title": "插翅难飞 Flight Risk" + }, + { + "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", + "filename": "Twilight.of.the.Warriors.Walled.In.2024.1080p.BluRay.x265.10bit-WiKi.mkv", + "category": "movie", + "title": "Twilight Of The Warriors Walled In", + "year": 2024, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:923667", + "title_zh": "九龙城寨之围城", + "title_en": "九龍城寨之圍城", + "translation_source": "tmdb", + "reputation_score": 7.004, + "reputation_votes": 418, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"923667\"}" + }, + "display_title": "九龙城寨之围城 九龍城寨之圍城" + }, + { + "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", + "filename": "Extraction.2.2023.2160p.NF.WEB-DL.DDP5.1.Atmos.DV.HDR.H.265-FLUX.mkv", + "category": "movie", + "title": "Extraction 2", + "year": 2023, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:697843", + "title_zh": "惊天营救2", + "title_en": "Extraction 2", + "translation_source": "tmdb", + "reputation_score": 7.393, + "reputation_votes": 2785, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"697843\"}" + }, + "display_title": "惊天营救2 Extraction 2" + }, + { + "path": "/mnt/Downloads/movies/The.Killer.2022.1080p.BluRay.x264.DTS-WiKi/The.Killer.2022.1080p.BluRay.x264.DTS-WiKi.mkv", + "filename": "The.Killer.2022.1080p.BluRay.x264.DTS-WiKi.mkv", + "category": "movie", + "title": "The Killer", + "year": 2022, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:1588697", + "title_zh": "Jeff the Killer", + "title_en": "Jeff the Killer", + "translation_source": "tmdb", + "reputation_score": 3.0, + "reputation_votes": 1, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"1588697\"}" + }, + "display_title": "Jeff the Killer" + }, + { + "path": "/mnt/Downloads/movies/The.Killer.2022.1080p.BluRay.x264.DTS-WiKi/Sample/The.Killer.2022.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", + "filename": "The.Killer.2022.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", + "category": "movie", + "title": "The Killer", + "year": 2022, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:1588697", + "title_zh": "Jeff the Killer", + "title_en": "Jeff the Killer", + "translation_source": "tmdb", + "reputation_score": 3.0, + "reputation_votes": 1, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"1588697\"}" + }, + "display_title": "Jeff the Killer" + }, + { + "path": "/mnt/Downloads/movies/My.Wife.Got.Married.2008.1080p.NF.WEB-DL.DD+5.1.H.264-ARiN.mkv", + "filename": "My.Wife.Got.Married.2008.1080p.NF.WEB-DL.DD+5.1.H.264-ARiN.mkv", + "category": "movie", + "title": "My Wife Got Married", + "year": 2008, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:52435", + "title_zh": "妻子结婚了", + "title_en": "아내가 결혼했다", + "translation_source": "tmdb", + "reputation_score": 5.344, + "reputation_votes": 16, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"52435\"}" + }, + "display_title": "妻子结婚了 아내가 결혼했다" + }, + { + "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", + "filename": "Coda.2021.1080p.APTV.WEB-DL.DDP5.1.Atmos.x264-CMRG.mkv", + "category": "movie", + "title": "Coda", + "year": 2021, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:776503", + "title_zh": "健听女孩", + "title_en": "CODA", + "translation_source": "tmdb", + "reputation_score": 7.897, + "reputation_votes": 2487, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"776503\"}" + }, + "display_title": "健听女孩 CODA" + }, + { + "path": "/mnt/Downloads/movies/Tron.Ares.2025.Hybrid.1080p.BluRay.DDP7.1.x264-ZoroSenpai.mkv", + "filename": "Tron.Ares.2025.Hybrid.1080p.BluRay.DDP7.1.x264-ZoroSenpai.mkv", + "category": "movie", + "title": "Tron Ares", + "year": 2025, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:533533", + "title_zh": "创:战神", + "title_en": "TRON: Ares", + "translation_source": "tmdb", + "reputation_score": 6.505, + "reputation_votes": 1157, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"533533\"}" + }, + "display_title": "创:战神 TRON: Ares" + }, + { + "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", + "filename": "Swordfish.2001.2160p.BluRay.DoVi.x265.10bit.Atmos.DTS-HD.MA5.1-WiKi.mkv", + "category": "movie", + "title": "Swordfish", + "year": 2001, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:9705", + "title_zh": "剑鱼行动", + "title_en": "Swordfish", + "translation_source": "tmdb", + "reputation_score": 6.253, + "reputation_votes": 2872, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"9705\"}" + }, + "display_title": "剑鱼行动 Swordfish" + }, + { + "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", + "filename": "The.Untold.Tale.of.the.Three.Kingdoms.2020.1080p.BluRay.x264.DTS-WiKi.mkv", + "category": "movie", + "title": "The Untold Tale Of The Three Kingdoms", + "year": 2020, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:726654", + "title_zh": "三国志新解", + "title_en": "新解釈・三國志", + "translation_source": "tmdb", + "reputation_score": 5.4, + "reputation_votes": 20, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"726654\"}" + }, + "display_title": "三国志新解 新解釈・三國志" + }, + { + "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", + "filename": "The.Untold.Tale.of.the.Three.Kingdoms.2020.1080p.BluRay.x264.DTS-WiKi.sample.mkv", + "category": "movie", + "title": "The Untold Tale Of The Three Kingdoms", + "year": 2020, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:726654", + "title_zh": "三国志新解", + "title_en": "新解釈・三國志", + "translation_source": "tmdb", + "reputation_score": 5.4, + "reputation_votes": 20, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"726654\"}" + }, + "display_title": "三国志新解 新解釈・三國志" + }, + { + "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", + "filename": "Ichikei's.Crow.The.Movie.2023.1080p.BluRay.x265.10bit.DTS-WiKi.mkv", + "category": "movie", + "title": "Ichikei'S Crow The Movie", + "year": 2023, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:1025301", + "title_zh": "1刑的乌鸦 电影版", + "title_en": "映画 イチケイのカラス", + "translation_source": "tmdb", + "reputation_score": 6.8, + "reputation_votes": 6, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"1025301\"}" + }, + "display_title": "1刑的乌鸦 电影版 映画 イチケイのカラス" + }, + { + "path": "/mnt/Downloads/movies/The.Little.Things.2021.720p.BluRay.x264-WiKi/Sample/The.Little.Things.2021.720p.BluRay.x264-WiKi.Sample.mkv", + "filename": "The.Little.Things.2021.720p.BluRay.x264-WiKi.Sample.mkv", + "category": "movie", + "title": "The Little Things", + "year": 2021, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:602269", + "title_zh": "蛛丝马迹", + "title_en": "The Little Things", + "translation_source": "tmdb", + "reputation_score": 6.337, + "reputation_votes": 2731, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"602269\"}" + }, + "display_title": "蛛丝马迹 The Little Things" + }, + { + "path": "/mnt/Downloads/movies/The.Little.Things.2021.720p.BluRay.x264-WiKi/The.Little.Things.2021.720p.BluRay.x264-WiKi.mkv", + "filename": "The.Little.Things.2021.720p.BluRay.x264-WiKi.mkv", + "category": "movie", + "title": "The Little Things", + "year": 2021, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:602269", + "title_zh": "蛛丝马迹", + "title_en": "The Little Things", + "translation_source": "tmdb", + "reputation_score": 6.337, + "reputation_votes": 2731, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"602269\"}" + }, + "display_title": "蛛丝马迹 The Little Things" + }, + { + "path": "/mnt/Downloads/movies/Shylock's.Children.2023.1080p.BluRay.x264.DTS-WiKi/Shylock's.Children.2023.1080p.BluRay.x264.DTS-WiKi.mkv", + "filename": "Shylock's.Children.2023.1080p.BluRay.x264.DTS-WiKi.mkv", + "category": "movie", + "title": "Shylock'S Children", + "year": 2023, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:1019661", + "title_zh": "夏洛克的孩子们 电影版", + "title_en": "シャイロックの子供たち", + "translation_source": "tmdb", + "reputation_score": 7.6, + "reputation_votes": 7, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"1019661\"}" + }, + "display_title": "夏洛克的孩子们 电影版 シャイロックの子供たち" + }, + { + "path": "/mnt/Downloads/movies/Oppenheimer.2023.IMAX.1080p.BluRay.x265.10bit.DTS-WiKi/Oppenheimer.2023.IMAX.1080p.BluRay.x265.10bit.DTS-WiKi.mkv", + "filename": "Oppenheimer.2023.IMAX.1080p.BluRay.x265.10bit.DTS-WiKi.mkv", + "category": "movie", + "title": "Oppenheimer", + "year": 2023, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:872585", + "title_zh": "奥本海默", + "title_en": "Oppenheimer", + "translation_source": "tmdb", + "reputation_score": 8.036, + "reputation_votes": 11312, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"872585\"}" + }, + "display_title": "奥本海默 Oppenheimer" + }, + { + "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", + "filename": "99.9.Criminal.Lawyer.The.Movie.2021.1080p.BluRay.x265.10bit.DTS-WiKi.sample.mkv", + "category": "movie", + "title": "99 9 Criminal Lawyer The Movie", + "year": 2021, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:923526", + "title_zh": "99.9:刑事专业律师 电影版", + "title_en": "99.9-刑事専門弁護士-THE MOVIE", + "translation_source": "tmdb", + "reputation_score": 6.556, + "reputation_votes": 9, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"923526\"}" + }, + "display_title": "99.9:刑事专业律师 电影版 99.9-刑事専門弁護士-THE MOVIE" + }, + { + "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", + "filename": "99.9.Criminal.Lawyer.The.Movie.2021.1080p.BluRay.x265.10bit.DTS-WiKi.mkv", + "category": "movie", + "title": "99 9 Criminal Lawyer The Movie", + "year": 2021, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:923526", + "title_zh": "99.9:刑事专业律师 电影版", + "title_en": "99.9-刑事専門弁護士-THE MOVIE", + "translation_source": "tmdb", + "reputation_score": 6.556, + "reputation_votes": 9, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"923526\"}" + }, + "display_title": "99.9:刑事专业律师 电影版 99.9-刑事専門弁護士-THE MOVIE" + }, + { + "path": "/mnt/Downloads/movies/行运超人.国粤双语.My.Lucky.Star.2003.WEB-DL.4k.H265.2Audio.AAC-PTHweb.mkv", + "filename": "行运超人.国粤双语.My.Lucky.Star.2003.WEB-DL.4k.H265.2Audio.AAC-PTHweb.mkv", + "category": "movie", + "title": "行运超人 国粤双语 My Lucky Star", + "year": 2003, + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "行运超人 国粤双语 My Lucky Star" + }, + { + "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", + "filename": "Lesson.in.Murder.2022.1080p.BluRay.x265.10bit.DTS-WiKi.mkv", + "category": "movie", + "title": "Lesson In Murder", + "year": 2022, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:890526", + "title_zh": "死刑之病", + "title_en": "死刑にいたる病", + "translation_source": "tmdb", + "reputation_score": 7.5, + "reputation_votes": 17, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"890526\"}" + }, + "display_title": "死刑之病 死刑にいたる病" + }, + { + "path": "/mnt/Downloads/movies/Sausalito.2000.720p.BluRay.x264-WiKi/Sample/Sausalito.2000.720p.BluRay.x264-WiKi.sample.mkv", + "filename": "Sausalito.2000.720p.BluRay.x264-WiKi.sample.mkv", + "category": "movie", + "title": "Sausalito", + "year": 2000, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:256078", + "title_zh": "一见钟情", + "title_en": "一見鍾情", + "translation_source": "tmdb", + "reputation_score": 5.0, + "reputation_votes": 9, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"256078\"}" + }, + "display_title": "一见钟情 一見鍾情" + }, + { + "path": "/mnt/Downloads/movies/Sausalito.2000.720p.BluRay.x264-WiKi/Sausalito.2000.720p.BluRay.x264-WiKi.mkv", + "filename": "Sausalito.2000.720p.BluRay.x264-WiKi.mkv", + "category": "movie", + "title": "Sausalito", + "year": 2000, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:256078", + "title_zh": "一见钟情", + "title_en": "一見鍾情", + "translation_source": "tmdb", + "reputation_score": 5.0, + "reputation_votes": 9, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"256078\"}" + }, + "display_title": "一见钟情 一見鍾情" + }, + { + "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", + "filename": "Eternal.Sunshine.of.the.Spotless.Mind.2004.Repack.BluRay.1080p.DTS-HD.MA5.1.x264-beAst.mkv", + "category": "movie", + "title": "Eternal Sunshine Of The Spotless Mind", + "year": 2004, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:38", + "title_zh": "暖暖内含光", + "title_en": "Eternal Sunshine of the Spotless Mind", + "translation_source": "tmdb", + "reputation_score": 8.091, + "reputation_votes": 16007, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"38\"}" + }, + "display_title": "暖暖内含光 Eternal Sunshine of the Spotless Mind" + }, + { + "path": "/mnt/Downloads/movies/土曜プレミアム・イチケイのカラス 映画公開記念スペシャルドラマ SP 1080p HDTV x264 AAC.mkv", + "filename": "土曜プレミアム・イチケイのカラス 映画公開記念スペシャルドラマ SP 1080p HDTV x264 AAC.mkv", + "category": "movie", + "title": "土曜プレミアム・イチケイのカラス 映画公開記念スペシャルドラマ Sp", + "year": null, + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "土曜プレミアム・イチケイのカラス 映画公開記念スペシャルドラマ Sp" + }, + { + "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", + "filename": "108.Revenge.and.Adventure.of.Goro.Kaiba.2019.720p.BluRay.x264-WiKi.mkv", + "category": "movie", + "title": "108 Revenge And Adventure Of Goro Kaiba", + "year": 2019, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:729313", + "title_zh": "108 ~海马五郎的复仇与冒险~", + "title_en": "108 海馬五郎の復讐と冒険", + "translation_source": "tmdb", + "reputation_score": 6.0, + "reputation_votes": 2, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"729313\"}" + }, + "display_title": "108 ~海马五郎的复仇与冒险~ 108 海馬五郎の復讐と冒険" + }, + { + "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", + "filename": "108.Revenge.and.Adventure.of.Goro.Kaiba.2019.720p.BluRay.x264-WiKi.sample.mkv", + "category": "movie", + "title": "108 Revenge And Adventure Of Goro Kaiba", + "year": 2019, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:729313", + "title_zh": "108 ~海马五郎的复仇与冒险~", + "title_en": "108 海馬五郎の復讐と冒険", + "translation_source": "tmdb", + "reputation_score": 6.0, + "reputation_votes": 2, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"729313\"}" + }, + "display_title": "108 ~海马五郎的复仇与冒险~ 108 海馬五郎の復讐と冒険" + }, + { + "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", + "filename": "Ura.Aka.L'Aventure.2021.1080p.BluRay.x264.DTS-WiKi.sample.mkv", + "category": "movie", + "title": "Ura Aka L'Aventure", + "year": 2021, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:851073", + "title_zh": "秘密账号", + "title_en": "裏アカ", + "translation_source": "tmdb", + "reputation_score": 6.143, + "reputation_votes": 7, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"851073\"}" + }, + "display_title": "秘密账号 裏アカ" + }, + { + "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", + "filename": "Ura.Aka.L'Aventure.2021.1080p.BluRay.x264.DTS-WiKi.mkv", + "category": "movie", + "title": "Ura Aka L'Aventure", + "year": 2021, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:851073", + "title_zh": "秘密账号", + "title_en": "裏アカ", + "translation_source": "tmdb", + "reputation_score": 6.143, + "reputation_votes": 7, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"851073\"}" + }, + "display_title": "秘密账号 裏アカ" + }, + { + "path": "/mnt/Downloads/movies/Soul.2020.1080p.BluRay.x264.DTS-WiKi/Soul.2020.1080p.BluRay.x264.DTS-WiKi.mkv", + "filename": "Soul.2020.1080p.BluRay.x264.DTS-WiKi.mkv", + "category": "movie", + "title": "Soul", + "year": 2020, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:508442", + "title_zh": "心灵奇旅", + "title_en": "Soul", + "translation_source": "tmdb", + "reputation_score": 8.097, + "reputation_votes": 11168, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"508442\"}" + }, + "display_title": "心灵奇旅 Soul" + }, + { + "path": "/mnt/Downloads/movies/Soul.2020.1080p.BluRay.x264.DTS-WiKi/Sample/Soul.2020.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", + "filename": "Soul.2020.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", + "category": "movie", + "title": "Soul", + "year": 2020, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:508442", + "title_zh": "心灵奇旅", + "title_en": "Soul", + "translation_source": "tmdb", + "reputation_score": 8.097, + "reputation_votes": 11168, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"508442\"}" + }, + "display_title": "心灵奇旅 Soul" + }, + { + "path": "/mnt/Downloads/movies/罪恶六芒星-美色狩猎者.Star.of.David-Hunting.for.Beautiful.Girls.1979.BluRay.1080p.x265.10bit.FLAC-fnscar.mkv", + "filename": "罪恶六芒星-美色狩猎者.Star.of.David-Hunting.for.Beautiful.Girls.1979.BluRay.1080p.x265.10bit.FLAC-fnscar.mkv", + "category": "movie", + "title": "罪恶六芒星-美色狩猎者 Star Of David-Hunting For Beautiful Girls", + "year": 1979, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:39863", + "title_zh": "罪恶六芒星:美色狩猎者", + "title_en": "堕靡泥の星 美少女狩り", + "translation_source": "tmdb", + "reputation_score": 6.2, + "reputation_votes": 48, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"39863\"}" + }, + "display_title": "罪恶六芒星:美色狩猎者 堕靡泥の星 美少女狩り" + }, + { + "path": "/mnt/Downloads/movies/The.Goldfinger.2023.1080p.BluRay.x265.10bit-WiKi/The.Goldfinger.2023.1080p.BluRay.x265.10bit-WiKi.mkv", + "filename": "The.Goldfinger.2023.1080p.BluRay.x265.10bit-WiKi.mkv", + "category": "movie", + "title": "The Goldfinger", + "year": 2023, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:823598", + "title_zh": "金手指", + "title_en": "金手指", + "translation_source": "tmdb", + "reputation_score": 6.0, + "reputation_votes": 50, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"823598\"}" + }, + "display_title": "金手指" + }, + { + "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", + "filename": "Black.Bag.2025.1080p.BluRay.x265.10bit.TrueHD5.1-WiKi.mkv", + "category": "movie", + "title": "Black Bag", + "year": 2025, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:1233575", + "title_zh": "黑袋行动", + "title_en": "Black Bag", + "translation_source": "tmdb", + "reputation_score": 6.34, + "reputation_votes": 1097, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"1233575\"}" + }, + "display_title": "黑袋行动 Black Bag" + }, + { + "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", + "filename": "Ballerina.2023.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-PTerWEB.mkv", + "category": "movie", + "title": "Ballerina", + "year": 2023, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:1451663", + "title_zh": "Ballerina", + "title_en": "Ballerina", + "translation_source": "tmdb", + "reputation_score": 7.0, + "reputation_votes": 1, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"1451663\"}" + }, + "display_title": "Ballerina" + }, + { + "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", + "filename": "The.New.King.of.Comedy.2019.1080p.BluRay.x264-WiKi.mkv", + "category": "movie", + "title": "The New King Of Comedy", + "year": 2019, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:575138", + "title_zh": "新喜剧之王", + "title_en": "新喜劇之王", + "translation_source": "tmdb", + "reputation_score": 5.616, + "reputation_votes": 43, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"575138\"}" + }, + "display_title": "新喜剧之王 新喜劇之王" + }, + { + "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", + "filename": "Godzilla.x.Kong.The.New.Empire.2024.HDR.2160P.WEB.H265-POKE.mkv", + "category": "movie", + "title": "Godzilla X Kong The New Empire", + "year": 2024, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:823464", + "title_zh": "哥斯拉大战金刚2:帝国崛起", + "title_en": "Godzilla x Kong: The New Empire", + "translation_source": "tmdb", + "reputation_score": 7.054, + "reputation_votes": 4498, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"823464\"}" + }, + "display_title": "哥斯拉大战金刚2:帝国崛起 Godzilla x Kong: The New Empire" + }, + { + "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", + "filename": "Thor.Love.and.Thunder.2022.2160p.WEB-DL.DDP5.1.Atmos.HDR.HEVC-CMRG.mkv", + "category": "movie", + "title": "Thor Love And Thunder", + "year": 2022, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:616037", + "title_zh": "雷神4:爱与雷霆", + "title_en": "Thor: Love and Thunder", + "translation_source": "tmdb", + "reputation_score": 6.38, + "reputation_votes": 8357, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"616037\"}" + }, + "display_title": "雷神4:爱与雷霆 Thor: Love and Thunder" + }, + { + "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", + "filename": "Headhunters 2011 BluRay 1080p DTS-HD MA5.1 x264-HDS.mkv", + "category": "movie", + "title": "Headhunters", + "year": 2011, + "confidence": 0.7, + "needs_review": true, + "canonical_id": "tmdb:movie:70670", + "title_zh": "猎头游戏", + "title_en": "Hodejegerne", + "translation_source": "tmdb", + "reputation_score": 7.2, + "reputation_votes": 1324, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"70670\"}" + }, + "display_title": "猎头游戏 Hodejegerne" + }, + { + "path": "/mnt/Downloads/movies/The.Menu.2022.1080p.BluRay.x265.10bit.DTS-WiKi/The.Menu.2022.1080p.BluRay.x265.10bit.DTS-WiKi.mkv", + "filename": "The.Menu.2022.1080p.BluRay.x265.10bit.DTS-WiKi.mkv", + "category": "movie", + "title": "The Menu", + "year": 2022, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:593643", + "title_zh": "菜单", + "title_en": "The Menu", + "translation_source": "tmdb", + "reputation_score": 7.17, + "reputation_votes": 5894, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"593643\"}" + }, + "display_title": "菜单 The Menu" + }, + { + "path": "/mnt/Downloads/movies/1秒先の彼 2023 1080p HDTV x264 AAC5.1.mkv", + "filename": "1秒先の彼 2023 1080p HDTV x264 AAC5.1.mkv", + "category": "movie", + "title": "1秒先の彼", + "year": 2023, + "confidence": 0.7, + "needs_review": true, + "canonical_id": "tmdb:movie:1029475", + "title_zh": "消失的情人节", + "title_en": "1秒先の彼", + "translation_source": "tmdb", + "reputation_score": 6.4, + "reputation_votes": 10, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"1029475\"}" + }, + "display_title": "消失的情人节 1秒先の彼" + }, + { + "path": "/mnt/Downloads/movies/Bandit.2022.1080p.BluRay.x265.10bit.DTS-WiKi/Bandit.2022.1080p.BluRay.x265.10bit.DTS-WiKi.mkv", + "filename": "Bandit.2022.1080p.BluRay.x265.10bit.DTS-WiKi.mkv", + "category": "movie", + "title": "Bandit", + "year": 2022, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:842942", + "title_zh": "盗贼", + "title_en": "Bandit", + "translation_source": "tmdb", + "reputation_score": 6.279, + "reputation_votes": 396, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"842942\"}" + }, + "display_title": "盗贼 Bandit" + }, + { + "path": "/mnt/Downloads/movies/Wu.Kong.2017.1080p.BluRay.x264-WiKi/Wu.Kong.2017.1080p.BluRay.x264-WiKi.mkv", + "filename": "Wu.Kong.2017.1080p.BluRay.x264-WiKi.mkv", + "category": "movie", + "title": "Wu Kong", + "year": 2017, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:452910", + "title_zh": "悟空传", + "title_en": "悟空傳", + "translation_source": "tmdb", + "reputation_score": 7.53, + "reputation_votes": 199, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"452910\"}" + }, + "display_title": "悟空传 悟空傳" + }, + { + "path": "/mnt/Downloads/movies/Wu.Kong.2017.1080p.BluRay.x264-WiKi/Sample/Wu.Kong.2017.1080p.BluRay.x264-WiKi.sample.mkv", + "filename": "Wu.Kong.2017.1080p.BluRay.x264-WiKi.sample.mkv", + "category": "movie", + "title": "Wu Kong", + "year": 2017, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:452910", + "title_zh": "悟空传", + "title_en": "悟空傳", + "translation_source": "tmdb", + "reputation_score": 7.53, + "reputation_votes": 199, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"452910\"}" + }, + "display_title": "悟空传 悟空傳" + }, + { + "path": "/mnt/Downloads/movies/Perfect.Days.2023.1080p.BluRay.x265.10bit.DTS-WiKi/Perfect.Days.2023.1080p.BluRay.x265.10bit.DTS-WiKi.mkv", + "filename": "Perfect.Days.2023.1080p.BluRay.x265.10bit.DTS-WiKi.mkv", + "category": "movie", + "title": "Perfect Days", + "year": 2023, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:976893", + "title_zh": "完美的日子", + "title_en": "PERFECT DAYS", + "translation_source": "tmdb", + "reputation_score": 7.8, + "reputation_votes": 1774, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"976893\"}" + }, + "display_title": "完美的日子 PERFECT DAYS" + }, + { + "path": "/mnt/Downloads/movies/The.Program.2015.1080p.BluRay.x264.DTS-WiKi/The.Program.2015.1080p.BluRay.x264.DTS-WiKi.mkv", + "filename": "The.Program.2015.1080p.BluRay.x264.DTS-WiKi.mkv", + "category": "movie", + "title": "The Program", + "year": 2015, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:271736", + "title_zh": "瞒天计划", + "title_en": "The Program", + "translation_source": "tmdb", + "reputation_score": 6.367, + "reputation_votes": 535, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"271736\"}" + }, + "display_title": "瞒天计划 The Program" + }, + { + "path": "/mnt/Downloads/movies/The.Program.2015.1080p.BluRay.x264.DTS-WiKi/Sample/The.Program.2015.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", + "filename": "The.Program.2015.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", + "category": "movie", + "title": "The Program", + "year": 2015, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:271736", + "title_zh": "瞒天计划", + "title_en": "The Program", + "translation_source": "tmdb", + "reputation_score": 6.367, + "reputation_votes": 535, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"271736\"}" + }, + "display_title": "瞒天计划 The Program" + }, + { + "path": "/mnt/Downloads/movies/McFarland.USA.2015.1080p.BluRay.x264.DTS-WiKi/Sample/McFarland.USA.2015.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", + "filename": "McFarland.USA.2015.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", + "category": "movie", + "title": "Mcfarland Usa", + "year": 2015, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:228203", + "title_zh": "麦克法兰", + "title_en": "McFarland, USA", + "translation_source": "tmdb", + "reputation_score": 7.486, + "reputation_votes": 916, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"228203\"}" + }, + "display_title": "麦克法兰 McFarland, USA" + }, + { + "path": "/mnt/Downloads/movies/McFarland.USA.2015.1080p.BluRay.x264.DTS-WiKi/McFarland.USA.2015.1080p.BluRay.x264.DTS-WiKi.mkv", + "filename": "McFarland.USA.2015.1080p.BluRay.x264.DTS-WiKi.mkv", + "category": "movie", + "title": "Mcfarland Usa", + "year": 2015, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:228203", + "title_zh": "麦克法兰", + "title_en": "McFarland, USA", + "translation_source": "tmdb", + "reputation_score": 7.486, + "reputation_votes": 916, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"228203\"}" + }, + "display_title": "麦克法兰 McFarland, USA" + }, + { + "path": "/mnt/Downloads/movies/[手遮天].The.Butcher's.Blade.2026.2160p.WEB-DL.120Fps.H265.10bit.AAC-UBWEB.mp4", + "filename": "[手遮天].The.Butcher's.Blade.2026.2160p.WEB-DL.120Fps.H265.10bit.AAC-UBWEB.mp4", + "category": "movie", + "title": "The Butcher'S Blade", + "year": 2026, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:1609125", + "title_zh": "手遮天", + "title_en": "手遮天", + "translation_source": "tmdb", + "reputation_score": 5.0, + "reputation_votes": 3, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"1609125\"}" + }, + "display_title": "手遮天" + }, + { + "path": "/mnt/Downloads/movies/Free.Guy.2021.1080p.BluRay.x264.DTS-WiKi/Sample/Free.Guy.2021.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", + "filename": "Free.Guy.2021.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", + "category": "movie", + "title": "Free Guy", + "year": 2021, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:550988", + "title_zh": "失控玩家", + "title_en": "Free Guy", + "translation_source": "tmdb", + "reputation_score": 7.457, + "reputation_votes": 9549, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"550988\"}" + }, + "display_title": "失控玩家 Free Guy" + }, + { + "path": "/mnt/Downloads/movies/Free.Guy.2021.1080p.BluRay.x264.DTS-WiKi/Free.Guy.2021.1080p.BluRay.x264.DTS-WiKi.mkv", + "filename": "Free.Guy.2021.1080p.BluRay.x264.DTS-WiKi.mkv", + "category": "movie", + "title": "Free Guy", + "year": 2021, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:550988", + "title_zh": "失控玩家", + "title_en": "Free Guy", + "translation_source": "tmdb", + "reputation_score": 7.457, + "reputation_votes": 9549, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"550988\"}" + }, + "display_title": "失控玩家 Free Guy" + }, + { + "path": "/mnt/Downloads/movies/Obsessed.2014.1080p.BluRay.x265.10bit.DTS-WiKi/Sample/Obsessed.2014.1080p.BluRay.x265.10bit.DTS-WiKi.Sample.mkv", + "filename": "Obsessed.2014.1080p.BluRay.x265.10bit.DTS-WiKi.Sample.mkv", + "category": "movie", + "title": "Obsessed", + "year": 2014, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:614040", + "title_zh": "Obsessed", + "title_en": "Obsessed", + "translation_source": "tmdb", + "reputation_score": 0.0, + "reputation_votes": 1, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"614040\"}" + }, + "display_title": "Obsessed" + }, + { + "path": "/mnt/Downloads/movies/Obsessed.2014.1080p.BluRay.x265.10bit.DTS-WiKi/Obsessed.2014.1080p.BluRay.x265.10bit.DTS-WiKi.mkv", + "filename": "Obsessed.2014.1080p.BluRay.x265.10bit.DTS-WiKi.mkv", + "category": "movie", + "title": "Obsessed", + "year": 2014, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:614040", + "title_zh": "Obsessed", + "title_en": "Obsessed", + "translation_source": "tmdb", + "reputation_score": 0.0, + "reputation_votes": 1, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"614040\"}" + }, + "display_title": "Obsessed" + }, + { + "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", + "filename": "Creation.of.the.Gods.I.Kingdom.of.Storms.2023.1080p.BluRay.x265.10bit.TrueHD5.1-WiKi.mkv", + "category": "movie", + "title": "Creation Of The Gods I Kingdom Of Storms", + "year": 2023, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:856289", + "title_zh": "封神第一部:朝歌风云", + "title_en": "封神第一部:朝歌风云", + "translation_source": "tmdb", + "reputation_score": 7.1, + "reputation_votes": 466, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"856289\"}" + }, + "display_title": "封神第一部:朝歌风云" + }, + { + "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", + "filename": "Barbie.2023.1080p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi.mkv", + "category": "movie", + "title": "Barbie", + "year": 2023, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:346698", + "title_zh": "芭比", + "title_en": "Barbie", + "translation_source": "tmdb", + "reputation_score": 6.93, + "reputation_votes": 10740, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"346698\"}" + }, + "display_title": "芭比 Barbie" + }, + { + "path": "/mnt/Downloads/movies/The Wave 2019 1080p BluRay DD5.1 x264-BdC.mkv", + "filename": "The Wave 2019 1080p BluRay DD5.1 x264-BdC.mkv", + "category": "movie", + "title": "The Wave", + "year": 2019, + "confidence": 0.7, + "needs_review": true, + "canonical_id": "tmdb:movie:619263", + "title_zh": "浪潮", + "title_en": "The Wave", + "translation_source": "tmdb", + "reputation_score": 6.1, + "reputation_votes": 167, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"619263\"}" + }, + "display_title": "浪潮 The Wave" + }, + { + "path": "/mnt/Downloads/movies/In.the.Wake.2021.1080p.BluRay.x264.DTS-WiKi/In.the.Wake.2021.1080p.BluRay.x264.DTS-WiKi.mkv", + "filename": "In.the.Wake.2021.1080p.BluRay.x264.DTS-WiKi.mkv", + "category": "movie", + "title": "In The Wake", + "year": 2021, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:947784", + "title_zh": "Caught in the Wake", + "title_en": "Caught in the Wake", + "translation_source": "tmdb", + "reputation_score": 0.0, + "reputation_votes": 1, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"947784\"}" + }, + "display_title": "Caught in the Wake" + }, + { + "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", + "filename": "In.the.Wake.2021.1080p.BluRay.x264.DTS-WiKi.sample.mkv", + "category": "movie", + "title": "In The Wake", + "year": 2021, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:947784", + "title_zh": "Caught in the Wake", + "title_en": "Caught in the Wake", + "translation_source": "tmdb", + "reputation_score": 0.0, + "reputation_votes": 1, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"947784\"}" + }, + "display_title": "Caught in the Wake" + }, + { + "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", + "filename": "Muroi.Shinji.Stay.Alive.2024.1080p.BluRay.x265.10bit.DTS-WiKi.mkv", + "category": "movie", + "title": "Muroi Shinji Stay Alive", + "year": 2024, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:1285375", + "title_zh": "室井慎次 存活之人", + "title_en": "室井慎次 生き続ける者", + "translation_source": "tmdb", + "reputation_score": 5.0, + "reputation_votes": 2, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"1285375\"}" + }, + "display_title": "室井慎次 存活之人 室井慎次 生き続ける者" + }, + { + "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", + "filename": "The.Hitman's.Wife's.Bodyguard.2021.720p.BluRay.x264-WiKi.Sample.mkv", + "category": "movie", + "title": "The Hitman'S Wife'S Bodyguard", + "year": 2021, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:522931", + "title_zh": "王牌保镖2", + "title_en": "Hitman's Wife's Bodyguard", + "translation_source": "tmdb", + "reputation_score": 6.659, + "reputation_votes": 2500, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"522931\"}" + }, + "display_title": "王牌保镖2 Hitman's Wife's Bodyguard" + }, + { + "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", + "filename": "The.Hitman's.Wife's.Bodyguard.2021.720p.BluRay.x264-WiKi.mkv", + "category": "movie", + "title": "The Hitman'S Wife'S Bodyguard", + "year": 2021, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:522931", + "title_zh": "王牌保镖2", + "title_en": "Hitman's Wife's Bodyguard", + "translation_source": "tmdb", + "reputation_score": 6.659, + "reputation_votes": 2500, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"522931\"}" + }, + "display_title": "王牌保镖2 Hitman's Wife's Bodyguard" + }, + { + "path": "/mnt/Downloads/movies/Midnight.in.Paris.2011.1080p.BluRay.x264.DTS-WiKi/Midnight.in.Paris.2011.1080p.BluRay.x264.DTS-WiKi.mkv", + "filename": "Midnight.in.Paris.2011.1080p.BluRay.x264.DTS-WiKi.mkv", + "category": "movie", + "title": "Midnight In Paris", + "year": 2011, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:59436", + "title_zh": "午夜巴黎", + "title_en": "Midnight in Paris", + "translation_source": "tmdb", + "reputation_score": 7.515, + "reputation_votes": 7629, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"59436\"}" + }, + "display_title": "午夜巴黎 Midnight in Paris" + }, + { + "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", + "filename": "Midnight.in.Paris.2011.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", + "category": "movie", + "title": "Midnight In Paris", + "year": 2011, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:59436", + "title_zh": "午夜巴黎", + "title_en": "Midnight in Paris", + "translation_source": "tmdb", + "reputation_score": 7.515, + "reputation_votes": 7629, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"59436\"}" + }, + "display_title": "午夜巴黎 Midnight in Paris" + }, + { + "path": "/mnt/Downloads/movies/Operation.Fortune.2023.1080p.BluRay.x265.10bit.DTS-WiKi/Operation.Fortune.2023.1080p.BluRay.x265.10bit.DTS-WiKi.mkv", + "filename": "Operation.Fortune.2023.1080p.BluRay.x265.10bit.DTS-WiKi.mkv", + "category": "movie", + "title": "Operation Fortune", + "year": 2023, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:739405", + "title_zh": "金爆行动", + "title_en": "Operation Fortune: Ruse de Guerre", + "translation_source": "tmdb", + "reputation_score": 6.463, + "reputation_votes": 1839, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"739405\"}" + }, + "display_title": "金爆行动 Operation Fortune: Ruse de Guerre" + }, + { + "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", + "filename": "Boite.noire.2021.1080p.BluRay.x265.10bit.DTS-WiKi.Sample.mkv", + "category": "movie", + "title": "Boite Noire", + "year": 2021, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:663260", + "title_zh": "黑匣子", + "title_en": "Boîte noire", + "translation_source": "tmdb", + "reputation_score": 7.3, + "reputation_votes": 1386, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"663260\"}" + }, + "display_title": "黑匣子 Boîte noire" + }, + { + "path": "/mnt/Downloads/movies/Boite.noire.2021.1080p.BluRay.x265.10bit.DTS-WiKi/Boite.noire.2021.1080p.BluRay.x265.10bit.DTS-WiKi.mkv", + "filename": "Boite.noire.2021.1080p.BluRay.x265.10bit.DTS-WiKi.mkv", + "category": "movie", + "title": "Boite Noire", + "year": 2021, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:663260", + "title_zh": "黑匣子", + "title_en": "Boîte noire", + "translation_source": "tmdb", + "reputation_score": 7.3, + "reputation_votes": 1386, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"663260\"}" + }, + "display_title": "黑匣子 Boîte noire" + }, + { + "path": "/mnt/Downloads/movies/Be.with.You.2004.1080p.BluRay.x264.DTS-WiKi/Be.with.You.2004.1080p.BluRay.x264.DTS-WiKi.mkv", + "filename": "Be.with.You.2004.1080p.BluRay.x264.DTS-WiKi.mkv", + "category": "movie", + "title": "Be With You", + "year": 2004, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:36092", + "title_zh": "借着雨点说爱你", + "title_en": "いま、会いにゆきます", + "translation_source": "tmdb", + "reputation_score": 7.46, + "reputation_votes": 88, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"36092\"}" + }, + "display_title": "借着雨点说爱你 いま、会いにゆきます" + }, + { + "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", + "filename": "Be.with.You.2004.1080p.BluRay.x264.DTS-WiKi.sample.mkv", + "category": "movie", + "title": "Be With You", + "year": 2004, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:36092", + "title_zh": "借着雨点说爱你", + "title_en": "いま、会いにゆきます", + "translation_source": "tmdb", + "reputation_score": 7.46, + "reputation_votes": 88, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"36092\"}" + }, + "display_title": "借着雨点说爱你 いま、会いにゆきます" + }, + { + "path": "/mnt/Downloads/movies/Confidential.Assignment.2.International.2022.1080p.WEB-DL.AAC2.0.H.264-tG1R0.mkv", + "filename": "Confidential.Assignment.2.International.2022.1080p.WEB-DL.AAC2.0.H.264-tG1R0.mkv", + "category": "movie", + "title": "Confidential Assignment 2 International", + "year": 2022, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:736820", + "title_zh": "共助2:国际", + "title_en": "공조 2: 인터내셔날", + "translation_source": "tmdb", + "reputation_score": 7.154, + "reputation_votes": 65, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"736820\"}" + }, + "display_title": "共助2:国际 공조 2: 인터내셔날" + }, + { + "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", + "filename": "Copshop.2021.UHD.BluRay.2160p.x265.10bit.HDR.mUHD-FRDS.mkv", + "category": "movie", + "title": "Copshop", + "year": 2021, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:738652", + "title_zh": "警察局", + "title_en": "Copshop", + "translation_source": "tmdb", + "reputation_score": 6.31, + "reputation_votes": 871, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"738652\"}" + }, + "display_title": "警察局 Copshop" + }, + { + "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", + "filename": "Love.Death&Robots.S02E01.1080p.WEB-DL.DD+5.1.x264-cfandora.mkv", + "category": "movie", + "title": "Love Death&Robots S02E01", + "year": 1080, + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Love Death&Robots S02E01" + }, + { + "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", + "filename": "Love.Death&Robots.S02E03.1080p.WEB-DL.DD+5.1.x264-cfandora.mkv", + "category": "movie", + "title": "Love Death&Robots S02E03", + "year": 1080, + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Love Death&Robots S02E03" + }, + { + "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", + "filename": "Love.Death&Robots.S02E02.1080p.WEB-DL.DD+5.1.x264-cfandora.mkv", + "category": "movie", + "title": "Love Death&Robots S02E02", + "year": 1080, + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Love Death&Robots S02E02" + }, + { + "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", + "filename": "Love.Death&Robots.S02E05.1080p.WEB-DL.DD+5.1.x264-cfandora.mkv", + "category": "movie", + "title": "Love Death&Robots S02E05", + "year": 1080, + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Love Death&Robots S02E05" + }, + { + "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", + "filename": "Love.Death&Robots.S02E04.1080p.WEB-DL.DD+5.1.x264-cfandora.mkv", + "category": "movie", + "title": "Love Death&Robots S02E04", + "year": 1080, + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Love Death&Robots S02E04" + }, + { + "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", + "filename": "Love.Death&Robots.S02E07.1080p.WEB-DL.DD+5.1.x264-cfandora.mkv", + "category": "movie", + "title": "Love Death&Robots S02E07", + "year": 1080, + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Love Death&Robots S02E07" + }, + { + "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", + "filename": "Love.Death&Robots.S02E06.1080p.WEB-DL.DD+5.1.x264-cfandora.mkv", + "category": "movie", + "title": "Love Death&Robots S02E06", + "year": 1080, + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Love Death&Robots S02E06" + }, + { + "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", + "filename": "Love.Death&Robots.S02E08.1080p.WEB-DL.DD+5.1.x264-cfandora.mkv", + "category": "movie", + "title": "Love Death&Robots S02E08", + "year": 1080, + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Love Death&Robots S02E08" + }, + { + "path": "/mnt/Downloads/movies/Step.2020.720p.BluRay.x264-WiKi/Step.2020.720p.BluRay.x264-WiKi.mkv", + "filename": "Step.2020.720p.BluRay.x264-WiKi.mkv", + "category": "movie", + "title": "Step", + "year": 2020, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:1267175", + "title_zh": "NO STEP", + "title_en": "NO STEP", + "translation_source": "tmdb", + "reputation_score": 6.5, + "reputation_votes": 2, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"1267175\"}" + }, + "display_title": "NO STEP" + }, + { + "path": "/mnt/Downloads/movies/Step.2020.720p.BluRay.x264-WiKi/Sample/Step.2020.720p.BluRay.x264-WiKi.sample.mkv", + "filename": "Step.2020.720p.BluRay.x264-WiKi.sample.mkv", + "category": "movie", + "title": "Step", + "year": 2020, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:1267175", + "title_zh": "NO STEP", + "title_en": "NO STEP", + "translation_source": "tmdb", + "reputation_score": 6.5, + "reputation_votes": 2, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"1267175\"}" + }, + "display_title": "NO STEP" + }, + { + "path": "/mnt/Downloads/movies/Eternals.2021.1080p.WEBRip.DDP5.1.Atmos.x264-PRGON/Eternals.2021.1080p.WEBRip.DDP5.1.Atmos.x264-PRGON.mkv", + "filename": "Eternals.2021.1080p.WEBRip.DDP5.1.Atmos.x264-PRGON.mkv", + "category": "movie", + "title": "Eternals", + "year": 2021, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:524434", + "title_zh": "永恒族", + "title_en": "Eternals", + "translation_source": "tmdb", + "reputation_score": 6.78, + "reputation_votes": 8943, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"524434\"}" + }, + "display_title": "永恒族 Eternals" + }, + { + "path": "/mnt/Downloads/movies/Gura.Gura.2019.1080p.BluRay.x264.DTS-WiKi/Gura.Gura.2019.1080p.BluRay.x264.DTS-WiKi.mkv", + "filename": "Gura.Gura.2019.1080p.BluRay.x264.DTS-WiKi.mkv", + "category": "movie", + "title": "Gura Gura", + "year": 2019, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:779929", + "title_zh": "春情荡漾", + "title_en": "グラグラ", + "translation_source": "tmdb", + "reputation_score": 6.0, + "reputation_votes": 2, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"779929\"}" + }, + "display_title": "春情荡漾 グラグラ" + }, + { + "path": "/mnt/Downloads/movies/Gura.Gura.2019.1080p.BluRay.x264.DTS-WiKi/Sample/Gura.Gura.2019.1080p.BluRay.x264.DTS-WiKi.sample.mkv", + "filename": "Gura.Gura.2019.1080p.BluRay.x264.DTS-WiKi.sample.mkv", + "category": "movie", + "title": "Gura Gura", + "year": 2019, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:779929", + "title_zh": "春情荡漾", + "title_en": "グラグラ", + "translation_source": "tmdb", + "reputation_score": 6.0, + "reputation_votes": 2, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"779929\"}" + }, + "display_title": "春情荡漾 グラグラ" + }, + { + "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", + "filename": "Jurassic.World.Rebirth.2025.1080p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi.mkv", + "category": "movie", + "title": "Jurassic World Rebirth", + "year": 2025, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:1234821", + "title_zh": "侏罗纪世界:重生", + "title_en": "Jurassic World Rebirth", + "translation_source": "tmdb", + "reputation_score": 6.315, + "reputation_votes": 2953, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"1234821\"}" + }, + "display_title": "侏罗纪世界:重生 Jurassic World Rebirth" + }, + { + "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", + "filename": "The.Count.of.Monte-Cristo.2024.1080p.BluRay.x265.10bit.DTS-ADE.mkv", + "category": "movie", + "title": "The Count Of Monte-Cristo", + "year": 2024, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:1084736", + "title_zh": "基督山伯爵", + "title_en": "Le Comte de Monte-Cristo", + "translation_source": "tmdb", + "reputation_score": 7.926, + "reputation_votes": 1921, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"1084736\"}" + }, + "display_title": "基督山伯爵 Le Comte de Monte-Cristo" + }, + { + "path": "/mnt/Downloads/movies/The.Hunt.2020.1080p.BluRay.x264.DTS-WiKi/The.Hunt.2020.1080p.BluRay.x264.DTS-WiKi.mkv", + "filename": "The.Hunt.2020.1080p.BluRay.x264.DTS-WiKi.mkv", + "category": "movie", + "title": "The Hunt", + "year": 2020, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:514847", + "title_zh": "狩猎", + "title_en": "The Hunt", + "translation_source": "tmdb", + "reputation_score": 6.635, + "reputation_votes": 3522, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"514847\"}" + }, + "display_title": "狩猎 The Hunt" + }, + { + "path": "/mnt/Downloads/movies/The.Hunt.2020.1080p.BluRay.x264.DTS-WiKi/Sample/The.Hunt.2020.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", + "filename": "The.Hunt.2020.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", + "category": "movie", + "title": "The Hunt", + "year": 2020, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:514847", + "title_zh": "狩猎", + "title_en": "The Hunt", + "translation_source": "tmdb", + "reputation_score": 6.635, + "reputation_votes": 3522, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"514847\"}" + }, + "display_title": "狩猎 The Hunt" + }, + { + "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", + "filename": "Ballerina.2025.1080p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi.mkv", + "category": "movie", + "title": "Ballerina", + "year": 2025, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:541671", + "title_zh": "疾速追杀:芭蕾杀姬", + "title_en": "Ballerina", + "translation_source": "tmdb", + "reputation_score": 7.27, + "reputation_votes": 2300, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"541671\"}" + }, + "display_title": "疾速追杀:芭蕾杀姬 Ballerina" + }, + { + "path": "/mnt/Downloads/movies/News.of.the.World.2020.1080p.AMZN.WEB-DL.DDP5.1.H.264-EVO.mkv", + "filename": "News.of.the.World.2020.1080p.AMZN.WEB-DL.DDP5.1.H.264-EVO.mkv", + "category": "movie", + "title": "News Of The World", + "year": 2020, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:581032", + "title_zh": "世界新闻", + "title_en": "News of the World", + "translation_source": "tmdb", + "reputation_score": 6.937, + "reputation_votes": 1896, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"581032\"}" + }, + "display_title": "世界新闻 News of the World" + }, + { + "path": "/mnt/Downloads/movies/My.Missing.Valentine.2020.720p.BluRay.x264-WiKi/My.Missing.Valentine.2020.720p.BluRay.x264-WiKi.mkv", + "filename": "My.Missing.Valentine.2020.720p.BluRay.x264-WiKi.mkv", + "category": "movie", + "title": "My Missing Valentine", + "year": 2020, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:733573", + "title_zh": "消失的情人节", + "title_en": "消失的情人節", + "translation_source": "tmdb", + "reputation_score": 6.821, + "reputation_votes": 42, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"733573\"}" + }, + "display_title": "消失的情人节 消失的情人節" + }, + { + "path": "/mnt/Downloads/movies/My.Missing.Valentine.2020.720p.BluRay.x264-WiKi/Sample/My.Missing.Valentine.2020.720p.BluRay.x264-WiKi.Sample.mkv", + "filename": "My.Missing.Valentine.2020.720p.BluRay.x264-WiKi.Sample.mkv", + "category": "movie", + "title": "My Missing Valentine", + "year": 2020, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:733573", + "title_zh": "消失的情人节", + "title_en": "消失的情人節", + "translation_source": "tmdb", + "reputation_score": 6.821, + "reputation_votes": 42, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"733573\"}" + }, + "display_title": "消失的情人节 消失的情人節" + }, + { + "path": "/mnt/Downloads/movies/The.Northman.2022.1080p.BluRay.x265.10bit-WiKi/Sample/The.Northman.2022.1080p.BluRay.x265.10bit-WiKi.Sample.mkv", + "filename": "The.Northman.2022.1080p.BluRay.x265.10bit-WiKi.Sample.mkv", + "category": "movie", + "title": "The Northman", + "year": 2022, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:639933", + "title_zh": "北欧人", + "title_en": "The Northman", + "translation_source": "tmdb", + "reputation_score": 7.032, + "reputation_votes": 4888, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"639933\"}" + }, + "display_title": "北欧人 The Northman" + }, + { + "path": "/mnt/Downloads/movies/The.Northman.2022.1080p.BluRay.x265.10bit-WiKi/The.Northman.2022.1080p.BluRay.x265.10bit-WiKi.mkv", + "filename": "The.Northman.2022.1080p.BluRay.x265.10bit-WiKi.mkv", + "category": "movie", + "title": "The Northman", + "year": 2022, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:639933", + "title_zh": "北欧人", + "title_en": "The Northman", + "translation_source": "tmdb", + "reputation_score": 7.032, + "reputation_votes": 4888, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"639933\"}" + }, + "display_title": "北欧人 The Northman" + }, + { + "path": "/mnt/Downloads/movies/Dirty.Grandpa.2016.1080p.BluRay.x264.DTS-WiKi/Sample/Dirty.Grandpa.2016.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", + "filename": "Dirty.Grandpa.2016.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", + "category": "movie", + "title": "Dirty Grandpa", + "year": 2016, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:291870", + "title_zh": "下流祖父", + "title_en": "Dirty Grandpa", + "translation_source": "tmdb", + "reputation_score": 5.936, + "reputation_votes": 4529, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"291870\"}" + }, + "display_title": "下流祖父 Dirty Grandpa" + }, + { + "path": "/mnt/Downloads/movies/Dirty.Grandpa.2016.1080p.BluRay.x264.DTS-WiKi/Dirty.Grandpa.2016.1080p.BluRay.x264.DTS-WiKi.mkv", + "filename": "Dirty.Grandpa.2016.1080p.BluRay.x264.DTS-WiKi.mkv", + "category": "movie", + "title": "Dirty Grandpa", + "year": 2016, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:291870", + "title_zh": "下流祖父", + "title_en": "Dirty Grandpa", + "translation_source": "tmdb", + "reputation_score": 5.936, + "reputation_votes": 4529, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"291870\"}" + }, + "display_title": "下流祖父 Dirty Grandpa" + }, + { + "path": "/mnt/Downloads/movies/Silent.Parade.2022.1080p.BluRay.x265.10bit.DTS-WiKi/Silent.Parade.2022.1080p.BluRay.x265.10bit.DTS-WiKi.mkv", + "filename": "Silent.Parade.2022.1080p.BluRay.x265.10bit.DTS-WiKi.mkv", + "category": "movie", + "title": "Silent Parade", + "year": 2022, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:956564", + "title_zh": "沉默的巡游", + "title_en": "沈黙のパレード", + "translation_source": "tmdb", + "reputation_score": 7.0, + "reputation_votes": 25, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"956564\"}" + }, + "display_title": "沉默的巡游 沈黙のパレード" + }, + { + "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", + "filename": "My.Blueberry.Nights.2007.BluRay.720p.x264.DTS-WiKi.Sample.mkv", + "category": "movie", + "title": "My Blueberry Nights", + "year": 2007, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:1989", + "title_zh": "蓝莓之夜", + "title_en": "藍莓之夜", + "translation_source": "tmdb", + "reputation_score": 6.404, + "reputation_votes": 828, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"1989\"}" + }, + "display_title": "蓝莓之夜 藍莓之夜" + }, + { + "path": "/mnt/Downloads/movies/My.Blueberry.Nights.2007.BluRay.720p.x264.DTS-WiKi/My.Blueberry.Nights.2007.BluRay.720p.x264.DTS-WiKi.mkv", + "filename": "My.Blueberry.Nights.2007.BluRay.720p.x264.DTS-WiKi.mkv", + "category": "movie", + "title": "My Blueberry Nights", + "year": 2007, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:1989", + "title_zh": "蓝莓之夜", + "title_en": "藍莓之夜", + "translation_source": "tmdb", + "reputation_score": 6.404, + "reputation_votes": 828, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"1989\"}" + }, + "display_title": "蓝莓之夜 藍莓之夜" + }, + { + "path": "/mnt/Downloads/movies/Холоп.2019.WEB-DL.1080p.m4v", + "filename": "Холоп.2019.WEB-DL.1080p.m4v", + "category": "movie", + "title": "Холоп", + "year": 2019, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:575828", + "title_zh": "穷养攻略", + "title_en": "Холоп", + "translation_source": "tmdb", + "reputation_score": 6.908, + "reputation_votes": 184, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"575828\"}" + }, + "display_title": "穷养攻略 Холоп" + }, + { + "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", + "filename": "Whisper.of.the.Heart.2022.1080p.BluRay.x265.10bit.DTS-WiKi.mkv", + "category": "movie", + "title": "Whisper Of The Heart", + "year": 2022, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:1033977", + "title_zh": "A Whisper In the Island Of the Heart", + "title_en": "A Whisper In the Island Of the Heart", + "translation_source": "tmdb", + "reputation_score": 0.0, + "reputation_votes": 1, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"1033977\"}" + }, + "display_title": "A Whisper In the Island Of the Heart" + }, + { + "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", + "filename": "Berserk.The.Golden.Age.Arc.2.The.Battle.for.Doldrey.2012.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", + "category": "movie", + "title": "Berserk The Golden Age Arc 2 The Battle For Doldrey", + "year": 2012, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:118412", + "title_zh": "剑风传奇 黄金时代篇2:多尔多雷攻略", + "title_en": "ベルセルク 黄金時代篇Ⅱ ドルドレイ攻略", + "translation_source": "tmdb", + "reputation_score": 7.296, + "reputation_votes": 450, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"118412\"}" + }, + "display_title": "剑风传奇 黄金时代篇2:多尔多雷攻略 ベルセルク 黄金時代篇Ⅱ ドルドレイ攻略" + }, + { + "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", + "filename": "Berserk.The.Golden.Age.Arc.2.The.Battle.for.Doldrey.2012.1080p.BluRay.x264.DTS-WiKi.mkv", + "category": "movie", + "title": "Berserk The Golden Age Arc 2 The Battle For Doldrey", + "year": 2012, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:118412", + "title_zh": "剑风传奇 黄金时代篇2:多尔多雷攻略", + "title_en": "ベルセルク 黄金時代篇Ⅱ ドルドレイ攻略", + "translation_source": "tmdb", + "reputation_score": 7.296, + "reputation_votes": 450, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"118412\"}" + }, + "display_title": "剑风传奇 黄金时代篇2:多尔多雷攻略 ベルセルク 黄金時代篇Ⅱ ドルドレイ攻略" + }, + { + "path": "/mnt/Downloads/movies/Hit.Man.2024.1080p.NF.WEB-DL.DDP.5.1.Atmos.H.264-CHDWEB.mkv", + "filename": "Hit.Man.2024.1080p.NF.WEB-DL.DDP.5.1.Atmos.H.264-CHDWEB.mkv", + "category": "movie", + "title": "Hit Man", + "year": 2024, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:974635", + "title_zh": "职业杀手", + "title_en": "Hit Man", + "translation_source": "tmdb", + "reputation_score": 6.794, + "reputation_votes": 1525, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"974635\"}" + }, + "display_title": "职业杀手 Hit Man" + }, + { + "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", + "filename": "The.Accountant.2.2025.1080p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi.mkv", + "category": "movie", + "title": "The Accountant 2", + "year": 2025, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:870028", + "title_zh": "会计刺客2", + "title_en": "The Accountant²", + "translation_source": "tmdb", + "reputation_score": 7.092, + "reputation_votes": 1606, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"870028\"}" + }, + "display_title": "会计刺客2 The Accountant²" + }, + { + "path": "/mnt/Downloads/movies/El.Camino.A.Breaking.Bad.Movie.2019.720p.BluRay.DD5.1.x264-iFT.mkv", + "filename": "El.Camino.A.Breaking.Bad.Movie.2019.720p.BluRay.DD5.1.x264-iFT.mkv", + "category": "movie", + "title": "El Camino A Breaking Bad Movie", + "year": 2019, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:559969", + "title_zh": "续命之徒:绝命毒师电影", + "title_en": "El Camino: A Breaking Bad Movie", + "translation_source": "tmdb", + "reputation_score": 7.042, + "reputation_votes": 5484, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"559969\"}" + }, + "display_title": "续命之徒:绝命毒师电影 El Camino: A Breaking Bad Movie" + }, + { + "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", + "filename": "12.12.The.Day.2023.1080p.BluRay.x265.10bit.TrueHD5.1-WiKi.mkv", + "category": "movie", + "title": "12 12 The Day", + "year": 2023, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:1034168", + "title_zh": "重来平安12夜", + "title_en": "The 12 Days of Christmas Eve", + "translation_source": "tmdb", + "reputation_score": 5.95, + "reputation_votes": 40, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"1034168\"}" + }, + "display_title": "重来平安12夜 The 12 Days of Christmas Eve" + }, + { + "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", + "filename": "Anatomy.of.a.Fall.2023.1080p.BluRay.x265.10bit.DTS-WiKi.mkv", + "category": "movie", + "title": "Anatomy Of A Fall", + "year": 2023, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:915935", + "title_zh": "坠落的审判", + "title_en": "Anatomie d'une chute", + "translation_source": "tmdb", + "reputation_score": 7.532, + "reputation_votes": 3124, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"915935\"}" + }, + "display_title": "坠落的审判 Anatomie d'une chute" + }, + { + "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", + "filename": "Kim.Ji-young.Born.1982.2019.1080p.BluRay.x264.DTS-WiKi.mkv", + "category": "movie", + "title": "Kim Ji-Young Born", + "year": 1982, + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Kim Ji-Young Born" + }, + { + "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", + "filename": "Kim.Ji-young.Born.1982.2019.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", + "category": "movie", + "title": "Kim Ji-Young Born", + "year": 1982, + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Kim Ji-Young Born" + }, + { + "path": "/mnt/Downloads/movies/GTO.Revival.2024.1080p.BluRay.x264-WiKi/GTO.Revival.2024.1080p.BluRay.x264-WiKi.mkv", + "filename": "GTO.Revival.2024.1080p.BluRay.x264-WiKi.mkv", + "category": "movie", + "title": "Gto Revival", + "year": 2024, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:1271314", + "title_zh": "麻辣教师GTO 复活", + "title_en": "GTOリバイバル", + "translation_source": "tmdb", + "reputation_score": 7.5, + "reputation_votes": 7, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"1271314\"}" + }, + "display_title": "麻辣教师GTO 复活 GTOリバイバル" + }, + { + "path": "/mnt/Downloads/movies/Worlds.Apart.2024.1080p.BluRay.x265.10bit.DTS-WiKi/Worlds.Apart.2024.1080p.BluRay.x265.10bit.DTS-WiKi.mkv", + "filename": "Worlds.Apart.2024.1080p.BluRay.x265.10bit.DTS-WiKi.mkv", + "category": "movie", + "title": "Worlds Apart", + "year": 2024, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:1267569", + "title_zh": "Two Worlds Apart", + "title_en": "Two Worlds Apart", + "translation_source": "tmdb", + "reputation_score": 0.0, + "reputation_votes": 1, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"1267569\"}" + }, + "display_title": "Two Worlds Apart" + }, + { + "path": "/mnt/Downloads/movies/Anime.Supremacy.2022.1080p.BluRay.x265.10bit-WiKi/Anime.Supremacy.2022.1080p.BluRay.x265.10bit-WiKi.mkv", + "filename": "Anime.Supremacy.2022.1080p.BluRay.x265.10bit-WiKi.mkv", + "category": "movie", + "title": "Anime Supremacy", + "year": 2022, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:947166", + "title_zh": "霸权动画", + "title_en": "ハケンアニメ!", + "translation_source": "tmdb", + "reputation_score": 6.389, + "reputation_votes": 27, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"947166\"}" + }, + "display_title": "霸权动画 ハケンアニメ!" + }, + { + "path": "/mnt/Downloads/movies/Anime.Supremacy.2022.1080p.BluRay.x265.10bit-WiKi/Sample/Anime.Supremacy.2022.1080p.BluRay.x265.10bit-WiKi.sample.mkv", + "filename": "Anime.Supremacy.2022.1080p.BluRay.x265.10bit-WiKi.sample.mkv", + "category": "movie", + "title": "Anime Supremacy", + "year": 2022, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:947166", + "title_zh": "霸权动画", + "title_en": "ハケンアニメ!", + "translation_source": "tmdb", + "reputation_score": 6.389, + "reputation_votes": 27, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"947166\"}" + }, + "display_title": "霸权动画 ハケンアニメ!" + }, + { + "path": "/mnt/Downloads/movies/Infinite.2021.1080p.AMZN.WEB-DL.DDP5.1.H.264-MZABI.mkv", + "filename": "Infinite.2021.1080p.AMZN.WEB-DL.DDP5.1.H.264-MZABI.mkv", + "category": "movie", + "title": "Infinite", + "year": 2021, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:581726", + "title_zh": "无限", + "title_en": "Infinite", + "translation_source": "tmdb", + "reputation_score": 6.572, + "reputation_votes": 2064, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"581726\"}" + }, + "display_title": "无限 Infinite" + }, + { + "path": "/mnt/Downloads/movies/Alienoid.2022.1080p.BluRay.x265.10bit.DTS-WiKi/Alienoid.2022.1080p.BluRay.x265.10bit.DTS-WiKi.mkv", + "filename": "Alienoid.2022.1080p.BluRay.x265.10bit.DTS-WiKi.mkv", + "category": "movie", + "title": "Alienoid", + "year": 2022, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:601796", + "title_zh": "外星+人", + "title_en": "외계+인 1부", + "translation_source": "tmdb", + "reputation_score": 6.8, + "reputation_votes": 504, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"601796\"}" + }, + "display_title": "外星+人 외계+인 1부" + }, + { + "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", + "filename": "The.Confidence.Man.JP.Hero.2022.1080p.BluRay.x265.10bit.DTS-WiKi.sample.mkv", + "category": "movie", + "title": "The Confidence Man Jp Hero", + "year": 2022, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:930432", + "title_zh": "行骗天下JP:英雄篇", + "title_en": "コンフィデンスマンJP 英雄編", + "translation_source": "tmdb", + "reputation_score": 6.8, + "reputation_votes": 16, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"930432\"}" + }, + "display_title": "行骗天下JP:英雄篇 コンフィデンスマンJP 英雄編" + }, + { + "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", + "filename": "The.Confidence.Man.JP.Hero.2022.1080p.BluRay.x265.10bit.DTS-WiKi.mkv", + "category": "movie", + "title": "The Confidence Man Jp Hero", + "year": 2022, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:930432", + "title_zh": "行骗天下JP:英雄篇", + "title_en": "コンフィデンスマンJP 英雄編", + "translation_source": "tmdb", + "reputation_score": 6.8, + "reputation_votes": 16, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"930432\"}" + }, + "display_title": "行骗天下JP:英雄篇 コンフィデンスマンJP 英雄編" + }, + { + "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", + "filename": "Jack.Reacher.2012.BluRay.1080p.x265.10bit.2Audio.MNHD-FRDS.mkv", + "category": "movie", + "title": "Jack Reacher", + "year": 2012, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:75780", + "title_zh": "侠探杰克", + "title_en": "Jack Reacher", + "translation_source": "tmdb", + "reputation_score": 6.652, + "reputation_votes": 7483, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"75780\"}" + }, + "display_title": "侠探杰克 Jack Reacher" + }, + { + "path": "/mnt/Downloads/movies/比海更深.2016.1080p.日语.简繁中字£CMCT蒙太奇/[比海更深].After.the.Storm.2016.BluRay.1080p.x264.AC3-CMCT.mkv", + "filename": "[比海更深].After.the.Storm.2016.BluRay.1080p.x264.AC3-CMCT.mkv", + "category": "movie", + "title": "After The Storm", + "year": 2016, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:586500", + "title_zh": "Silence After the Storm", + "title_en": "Silence After the Storm", + "translation_source": "tmdb", + "reputation_score": 0.0, + "reputation_votes": 1, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"586500\"}" + }, + "display_title": "Silence After the Storm" + }, + { + "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", + "filename": "The.Fantastic.Four.First.Steps.2025.1080p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi.mkv", + "category": "movie", + "title": "The Fantastic Four First Steps", + "year": 2025, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:617126", + "title_zh": "神奇4侠:初露锋芒", + "title_en": "The Fantastic 4: First Steps", + "translation_source": "tmdb", + "reputation_score": 6.977, + "reputation_votes": 2955, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"617126\"}" + }, + "display_title": "神奇4侠:初露锋芒 The Fantastic 4: First Steps" + }, + { + "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", + "filename": "The.Unbearable.Lightness.of.Being.1988.1080p.WEB-DL.x265.10bit.AC3£cXcY@FRDS.mkv", + "category": "movie", + "title": "The Unbearable Lightness Of Being", + "year": 1988, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:10644", + "title_zh": "布拉格之恋", + "title_en": "The Unbearable Lightness of Being", + "translation_source": "tmdb", + "reputation_score": 6.894, + "reputation_votes": 500, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"10644\"}" + }, + "display_title": "布拉格之恋 The Unbearable Lightness of Being" + }, + { + "path": "/mnt/Downloads/movies/The.Attorney.2021.720p.BluRay.x264-WiKi/Sample/The.Attorney.2021.720p.BluRay.x264-WiKi.Sample.mkv", + "filename": "The.Attorney.2021.720p.BluRay.x264-WiKi.Sample.mkv", + "category": "movie", + "title": "The Attorney", + "year": 2021, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:597305", + "title_zh": "一级指控", + "title_en": "一級指控", + "translation_source": "tmdb", + "reputation_score": 6.577, + "reputation_votes": 13, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"597305\"}" + }, + "display_title": "一级指控 一級指控" + }, + { + "path": "/mnt/Downloads/movies/The.Attorney.2021.720p.BluRay.x264-WiKi/The.Attorney.2021.720p.BluRay.x264-WiKi.mkv", + "filename": "The.Attorney.2021.720p.BluRay.x264-WiKi.mkv", + "category": "movie", + "title": "The Attorney", + "year": 2021, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:597305", + "title_zh": "一级指控", + "title_en": "一級指控", + "translation_source": "tmdb", + "reputation_score": 6.577, + "reputation_votes": 13, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"597305\"}" + }, + "display_title": "一级指控 一級指控" + }, + { + "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", + "filename": "Black.Adam.2022.BluRay.1080p.TrueHD.7.1.x264-MTeam.mkv", + "category": "movie", + "title": "Black Adam", + "year": 2022, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:436270", + "title_zh": "黑亚当", + "title_en": "Black Adam", + "translation_source": "tmdb", + "reputation_score": 6.824, + "reputation_votes": 6864, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"436270\"}" + }, + "display_title": "黑亚当 Black Adam" + }, + { + "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", + "filename": "Detective.vs.Sleuths.2022.1080p.BluRay.x265.10bit-WiKi.Sample.mkv", + "category": "movie", + "title": "Detective Vs Sleuths", + "year": 2022, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:543504", + "title_zh": "神探大战", + "title_en": "神探大戰", + "translation_source": "tmdb", + "reputation_score": 6.726, + "reputation_votes": 93, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"543504\"}" + }, + "display_title": "神探大战 神探大戰" + }, + { + "path": "/mnt/Downloads/movies/Detective.vs.Sleuths.2022.1080p.BluRay.x265.10bit-WiKi/Detective.vs.Sleuths.2022.1080p.BluRay.x265.10bit-WiKi.mkv", + "filename": "Detective.vs.Sleuths.2022.1080p.BluRay.x265.10bit-WiKi.mkv", + "category": "movie", + "title": "Detective Vs Sleuths", + "year": 2022, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:543504", + "title_zh": "神探大战", + "title_en": "神探大戰", + "translation_source": "tmdb", + "reputation_score": 6.726, + "reputation_votes": 93, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"543504\"}" + }, + "display_title": "神探大战 神探大戰" + }, + { + "path": "/mnt/Downloads/movies/Reminiscence.2021.1080p.HMAX.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv", + "filename": "Reminiscence.2021.1080p.HMAX.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv", + "category": "movie", + "title": "Reminiscence", + "year": 2021, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:579047", + "title_zh": "追忆迷局", + "title_en": "Reminiscence", + "translation_source": "tmdb", + "reputation_score": 6.532, + "reputation_votes": 1903, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"579047\"}" + }, + "display_title": "追忆迷局 Reminiscence" + }, + { + "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", + "filename": "Crash.2004.FRA.DC.BluRay.1080p.x265.10bit.2Audio.MNHD-FRDS.mkv", + "category": "movie", + "title": "Crash", + "year": 2004, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:1353802", + "title_zh": "Crash", + "title_en": "Crash", + "translation_source": "tmdb", + "reputation_score": 7.0, + "reputation_votes": 1, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"1353802\"}" + }, + "display_title": "Crash" + }, + { + "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", + "filename": "Transformers.Rise.of.the.Beasts.2023.1080p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi.mkv", + "category": "movie", + "title": "Transformers Rise Of The Beasts", + "year": 2023, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:667538", + "title_zh": "变形金刚7:超能勇士崛起", + "title_en": "Transformers: Rise of the Beasts", + "translation_source": "tmdb", + "reputation_score": 7.189, + "reputation_votes": 5158, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"667538\"}" + }, + "display_title": "变形金刚7:超能勇士崛起 Transformers: Rise of the Beasts" + }, + { + "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", + "filename": "School.Meals.Time.Final.Battle.2020.720p.BluRay.x264-WiKi.mkv", + "category": "movie", + "title": "School Meals Time Final Battle", + "year": 2020, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:733741", + "title_zh": "美味的校餐 剧场版", + "title_en": "劇場版 おいしい給食 Final Battle", + "translation_source": "tmdb", + "reputation_score": 7.2, + "reputation_votes": 5, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"733741\"}" + }, + "display_title": "美味的校餐 剧场版 劇場版 おいしい給食 Final Battle" + }, + { + "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", + "filename": "School.Meals.Time.Final.Battle.2020.720p.BluRay.x264-WiKi.sample.mkv", + "category": "movie", + "title": "School Meals Time Final Battle", + "year": 2020, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:733741", + "title_zh": "美味的校餐 剧场版", + "title_en": "劇場版 おいしい給食 Final Battle", + "translation_source": "tmdb", + "reputation_score": 7.2, + "reputation_votes": 5, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"733741\"}" + }, + "display_title": "美味的校餐 剧场版 劇場版 おいしい給食 Final Battle" + }, + { + "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", + "filename": "Fantastic.Beasts.The.Crimes.of.Grindelwald.2018.720p.BluRay.x264-WiKi.Sample.mkv", + "category": "movie", + "title": "Fantastic Beasts The Crimes Of Grindelwald", + "year": 2018, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:338952", + "title_zh": "神奇动物:格林德沃之罪", + "title_en": "Fantastic Beasts: The Crimes of Grindelwald", + "translation_source": "tmdb", + "reputation_score": 6.837, + "reputation_votes": 11332, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"338952\"}" + }, + "display_title": "神奇动物:格林德沃之罪 Fantastic Beasts: The Crimes of Grindelwald" + }, + { + "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", + "filename": "Fantastic.Beasts.The.Crimes.of.Grindelwald.2018.720p.BluRay.x264-WiKi.mkv", + "category": "movie", + "title": "Fantastic Beasts The Crimes Of Grindelwald", + "year": 2018, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:338952", + "title_zh": "神奇动物:格林德沃之罪", + "title_en": "Fantastic Beasts: The Crimes of Grindelwald", + "translation_source": "tmdb", + "reputation_score": 6.837, + "reputation_votes": 11332, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"338952\"}" + }, + "display_title": "神奇动物:格林德沃之罪 Fantastic Beasts: The Crimes of Grindelwald" + }, + { + "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", + "filename": "Postmen.in.the.Mountains.1999.BluRay.1080p.DD2.0.x264.BMDru.mkv", + "category": "movie", + "title": "Postmen In The Mountains", + "year": 1999, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:108954", + "title_zh": "那山那人那狗", + "title_en": "那山那人那狗", + "translation_source": "tmdb", + "reputation_score": 7.6, + "reputation_votes": 55, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"108954\"}" + }, + "display_title": "那山那人那狗" + }, + { + "path": "/mnt/Downloads/movies/1917.2019.1080p.BluRay.x264-WiKi/Sample/1917.2019.1080p.BluRay.x264-WiKi.Sample.mkv", + "filename": "1917.2019.1080p.BluRay.x264-WiKi.Sample.mkv", + "category": "movie", + "title": "1917", + "year": 2019, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:530915", + "title_zh": "1917", + "title_en": "1917", + "translation_source": "tmdb", + "reputation_score": 7.985, + "reputation_votes": 13273, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"530915\"}" + }, + "display_title": "1917" + }, + { + "path": "/mnt/Downloads/movies/1917.2019.1080p.BluRay.x264-WiKi/1917.2019.1080p.BluRay.x264-WiKi.mkv", + "filename": "1917.2019.1080p.BluRay.x264-WiKi.mkv", + "category": "movie", + "title": "1917", + "year": 2019, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:530915", + "title_zh": "1917", + "title_en": "1917", + "translation_source": "tmdb", + "reputation_score": 7.985, + "reputation_votes": 13273, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"530915\"}" + }, + "display_title": "1917" + }, + { + "path": "/mnt/Downloads/movies/Crossing.Hennessy.2010.720p.BluRay.x264.DTS-WiKi/Crossing.Hennessy.2010.720p.BluRay.x264.DTS-WiKi.mkv", + "filename": "Crossing.Hennessy.2010.720p.BluRay.x264.DTS-WiKi.mkv", + "category": "movie", + "title": "Crossing Hennessy", + "year": 2010, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:44740", + "title_zh": "月满轩尼诗", + "title_en": "月滿軒尼詩", + "translation_source": "tmdb", + "reputation_score": 6.4, + "reputation_votes": 24, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"44740\"}" + }, + "display_title": "月满轩尼诗 月滿軒尼詩" + }, + { + "path": "/mnt/Downloads/movies/Crossing.Hennessy.2010.720p.BluRay.x264.DTS-WiKi/Sample/Crossing.Hennessy.2010.720p.BluRay.x264.DTS-WiKi.Sample.mkv", + "filename": "Crossing.Hennessy.2010.720p.BluRay.x264.DTS-WiKi.Sample.mkv", + "category": "movie", + "title": "Crossing Hennessy", + "year": 2010, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:44740", + "title_zh": "月满轩尼诗", + "title_en": "月滿軒尼詩", + "translation_source": "tmdb", + "reputation_score": 6.4, + "reputation_votes": 24, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"44740\"}" + }, + "display_title": "月满轩尼诗 月滿軒尼詩" + }, + { + "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", + "filename": "Venom.The.Last.Dance.2024.2160p.BluRay.DoVi.x265.10bit.Atmos.TrueHD7.1-WiKi.mkv", + "category": "movie", + "title": "Venom The Last Dance", + "year": 2024, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:912649", + "title_zh": "毒液3:最后一舞", + "title_en": "Venom: The Last Dance", + "translation_source": "tmdb", + "reputation_score": 6.666, + "reputation_votes": 3999, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"912649\"}" + }, + "display_title": "毒液3:最后一舞 Venom: The Last Dance" + }, + { + "path": "/mnt/Downloads/movies/Sad.Movie.2005.720p.BluRay.x264-WiKi/Sad.Movie.2005.720p.BluRay.x264-WiKi.mkv", + "filename": "Sad.Movie.2005.720p.BluRay.x264-WiKi.mkv", + "category": "movie", + "title": "Sad Movie", + "year": 2005, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:18422", + "title_zh": "悲伤电影", + "title_en": "새드무비", + "translation_source": "tmdb", + "reputation_score": 6.515, + "reputation_votes": 68, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"18422\"}" + }, + "display_title": "悲伤电影 새드무비" + }, + { + "path": "/mnt/Downloads/movies/Sad.Movie.2005.720p.BluRay.x264-WiKi/Sample/Sad.Movie.2005.720p.BluRay.x264-WiKi.Sample.mkv", + "filename": "Sad.Movie.2005.720p.BluRay.x264-WiKi.Sample.mkv", + "category": "movie", + "title": "Sad Movie", + "year": 2005, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:18422", + "title_zh": "悲伤电影", + "title_en": "새드무비", + "translation_source": "tmdb", + "reputation_score": 6.515, + "reputation_votes": 68, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"18422\"}" + }, + "display_title": "悲伤电影 새드무비" + }, + { + "path": "/mnt/Downloads/movies/A.Man.2022.1080p.U-NEXT.WEB-DL.AAC2.0.H.264-xiaopie@CHDWEB.mkv", + "filename": "A.Man.2022.1080p.U-NEXT.WEB-DL.AAC2.0.H.264-xiaopie@CHDWEB.mkv", + "category": "movie", + "title": "A Man", + "year": 2022, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:988872", + "title_zh": "AMEN A MAN", + "title_en": "AMEN A MAN", + "translation_source": "tmdb", + "reputation_score": 0.0, + "reputation_votes": 1, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"988872\"}" + }, + "display_title": "AMEN A MAN" + }, + { + "path": "/mnt/Downloads/movies/Pain.Hustlers.2023.1080p.NF.WEB-DL.DD+5.1.Atmos.H.264-playWEB.mkv", + "filename": "Pain.Hustlers.2023.1080p.NF.WEB-DL.DD+5.1.Atmos.H.264-playWEB.mkv", + "category": "movie", + "title": "Pain Hustlers", + "year": 2023, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:862968", + "title_zh": "止痛骗", + "title_en": "Pain Hustlers", + "translation_source": "tmdb", + "reputation_score": 6.657, + "reputation_votes": 739, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"862968\"}" + }, + "display_title": "止痛骗 Pain Hustlers" + }, + { + "path": "/mnt/Downloads/movies/Masquerade.Night.2021.1080p.BluRay.x264.DTS-WiKi/Sample/Masquerade.Night.2021.1080p.BluRay.x264.DTS-WiKi.sample.mkv", + "filename": "Masquerade.Night.2021.1080p.BluRay.x264.DTS-WiKi.sample.mkv", + "category": "movie", + "title": "Masquerade Night", + "year": 2021, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:824202", + "title_zh": "假面之夜", + "title_en": "マスカレード・ナイト", + "translation_source": "tmdb", + "reputation_score": 6.1, + "reputation_votes": 17, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"824202\"}" + }, + "display_title": "假面之夜 マスカレード・ナイト" + }, + { + "path": "/mnt/Downloads/movies/Masquerade.Night.2021.1080p.BluRay.x264.DTS-WiKi/Masquerade.Night.2021.1080p.BluRay.x264.DTS-WiKi.mkv", + "filename": "Masquerade.Night.2021.1080p.BluRay.x264.DTS-WiKi.mkv", + "category": "movie", + "title": "Masquerade Night", + "year": 2021, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:824202", + "title_zh": "假面之夜", + "title_en": "マスカレード・ナイト", + "translation_source": "tmdb", + "reputation_score": 6.1, + "reputation_votes": 17, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"824202\"}" + }, + "display_title": "假面之夜 マスカレード・ナイト" + }, + { + "path": "/mnt/Downloads/movies/Druk.2020.720p.BluRay.x264-WiKi/Druk.2020.720p.BluRay.x264-WiKi.mkv", + "filename": "Druk.2020.720p.BluRay.x264-WiKi.mkv", + "category": "movie", + "title": "Druk", + "year": 2020, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:580175", + "title_zh": "酒精计划", + "title_en": "Druk", + "translation_source": "tmdb", + "reputation_score": 7.633, + "reputation_votes": 3653, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"580175\"}" + }, + "display_title": "酒精计划 Druk" + }, + { + "path": "/mnt/Downloads/movies/Druk.2020.720p.BluRay.x264-WiKi/Sample/Druk.2020.720p.BluRay.x264-WiKi.Sample.mkv", + "filename": "Druk.2020.720p.BluRay.x264-WiKi.Sample.mkv", + "category": "movie", + "title": "Druk", + "year": 2020, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:580175", + "title_zh": "酒精计划", + "title_en": "Druk", + "translation_source": "tmdb", + "reputation_score": 7.633, + "reputation_votes": 3653, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"580175\"}" + }, + "display_title": "酒精计划 Druk" + }, + { + "path": "/mnt/Downloads/movies/Bad.Guys.The.Movie.2019.720p.BluRay.x264-WiKi/Bad.Guys.The.Movie.2019.720p.BluRay.x264-WiKi.mkv", + "filename": "Bad.Guys.The.Movie.2019.720p.BluRay.x264-WiKi.mkv", + "category": "movie", + "title": "Bad Guys The Movie", + "year": 2019, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:585831", + "title_zh": "坏家伙们", + "title_en": "나쁜 녀석들: 더 무비", + "translation_source": "tmdb", + "reputation_score": 7.0, + "reputation_votes": 161, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"585831\"}" + }, + "display_title": "坏家伙们 나쁜 녀석들: 더 무비" + }, + { + "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", + "filename": "Bad.Guys.The.Movie.2019.720p.BluRay.x264-WiKi.Sample.mkv", + "category": "movie", + "title": "Bad Guys The Movie", + "year": 2019, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:585831", + "title_zh": "坏家伙们", + "title_en": "나쁜 녀석들: 더 무비", + "translation_source": "tmdb", + "reputation_score": 7.0, + "reputation_votes": 161, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"585831\"}" + }, + "display_title": "坏家伙们 나쁜 녀석들: 더 무비" + }, + { + "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", + "filename": "Chickenhare.and.the.Hamster.of.Darkness.2022.1080p.BluRay.x265.10bit.DTS-WiKi.mkv", + "category": "movie", + "title": "Chickenhare And The Hamster Of Darkness", + "year": 2022, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:778855", + "title_zh": "飞兔大联盟", + "title_en": "Chickenhare and the Hamster of Darkness", + "translation_source": "tmdb", + "reputation_score": 7.27, + "reputation_votes": 275, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"778855\"}" + }, + "display_title": "飞兔大联盟 Chickenhare and the Hamster of Darkness" + }, + { + "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", + "filename": "Chickenhare.and.the.Hamster.of.Darkness.2022.1080p.BluRay.x265.10bit.DTS-WiKi.Sample.mkv", + "category": "movie", + "title": "Chickenhare And The Hamster Of Darkness", + "year": 2022, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:778855", + "title_zh": "飞兔大联盟", + "title_en": "Chickenhare and the Hamster of Darkness", + "translation_source": "tmdb", + "reputation_score": 7.27, + "reputation_votes": 275, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"778855\"}" + }, + "display_title": "飞兔大联盟 Chickenhare and the Hamster of Darkness" + }, + { + "path": "/mnt/Downloads/movies/Thermae.Romae.II.2014.1080p.BluRay.x264.DTS-WiKi/Thermae.Romae.II.2014.1080p.BluRay.x264.DTS-WiKi.mkv", + "filename": "Thermae.Romae.II.2014.1080p.BluRay.x264.DTS-WiKi.mkv", + "category": "movie", + "title": "Thermae Romae Ii", + "year": 2014, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:268002", + "title_zh": "罗马浴场2", + "title_en": "テルマエ・ロマエII", + "translation_source": "tmdb", + "reputation_score": 6.3, + "reputation_votes": 35, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"268002\"}" + }, + "display_title": "罗马浴场2 テルマエ・ロマエII" + }, + { + "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", + "filename": "Thermae.Romae.II.2014.1080p.BluRay.x264.DTS-WiKi.sample.mkv", + "category": "movie", + "title": "Thermae Romae Ii", + "year": 2014, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:268002", + "title_zh": "罗马浴场2", + "title_en": "テルマエ・ロマエII", + "translation_source": "tmdb", + "reputation_score": 6.3, + "reputation_votes": 35, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"268002\"}" + }, + "display_title": "罗马浴场2 テルマエ・ロマエII" + }, + { + "path": "/mnt/Downloads/movies/Chilli.Laugh.Story.2022.1080p.BluRay.x265.10bit-WiKi/Chilli.Laugh.Story.2022.1080p.BluRay.x265.10bit-WiKi.mkv", + "filename": "Chilli.Laugh.Story.2022.1080p.BluRay.x265.10bit-WiKi.mkv", + "category": "movie", + "title": "Chilli Laugh Story", + "year": 2022, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:851798", + "title_zh": "阖家辣", + "title_en": "闔家辣", + "translation_source": "tmdb", + "reputation_score": 5.9, + "reputation_votes": 8, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"851798\"}" + }, + "display_title": "阖家辣 闔家辣" + }, + { + "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", + "filename": "Chilli.Laugh.Story.2022.1080p.BluRay.x265.10bit-WiKi.Sample.mkv", + "category": "movie", + "title": "Chilli Laugh Story", + "year": 2022, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:851798", + "title_zh": "阖家辣", + "title_en": "闔家辣", + "translation_source": "tmdb", + "reputation_score": 5.9, + "reputation_votes": 8, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"851798\"}" + }, + "display_title": "阖家辣 闔家辣" + }, + { + "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", + "filename": "Mosul.2019.BluRay.1080p.TrueHD.5.1.x265.10bit-BeiTai.mkv", + "category": "movie", + "title": "Mosul", + "year": 2019, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:594082", + "title_zh": "摩苏尔", + "title_en": "Mosul", + "translation_source": "tmdb", + "reputation_score": 7.034, + "reputation_votes": 133, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"594082\"}" + }, + "display_title": "摩苏尔 Mosul" + }, + { + "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", + "filename": "Top.Gun.Maverick.2022.IMAX.2160p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi.mkv", + "category": "movie", + "title": "Top Gun Maverick", + "year": 2022, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:361743", + "title_zh": "Top Gun: Maverick", + "title_en": "Top Gun: Maverick", + "translation_source": "tmdb", + "reputation_score": 8.158, + "reputation_votes": 10565, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"361743\"}" + }, + "display_title": "Top Gun: Maverick" + }, + { + "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", + "filename": "Aquaman.and.the.Lost.Kingdom.2023.1080p.Blu-ray.Atmos.TrueHD7.1.x265-HDH.mkv", + "category": "movie", + "title": "Aquaman And The Lost Kingdom", + "year": 2023, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:572802", + "title_zh": "海王2:失落的王国", + "title_en": "Aquaman and the Lost Kingdom", + "translation_source": "tmdb", + "reputation_score": 6.549, + "reputation_votes": 3358, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"572802\"}" + }, + "display_title": "海王2:失落的王国 Aquaman and the Lost Kingdom" + }, + { + "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", + "filename": "The.Confidence.Man.JP.Princess.2020.1080p.BluRay.x264.DTS-WiKi.mkv", + "category": "movie", + "title": "The Confidence Man Jp Princess", + "year": 2020, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:657350", + "title_zh": "行骗天下JP:公主篇", + "title_en": "コンフィデンスマンJP プリンセス編", + "translation_source": "tmdb", + "reputation_score": 6.609, + "reputation_votes": 23, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"657350\"}" + }, + "display_title": "行骗天下JP:公主篇 コンフィデンスマンJP プリンセス編" + }, + { + "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", + "filename": "The.Confidence.Man.JP.Princess.2020.1080p.BluRay.x264.DTS-WiKi.sample.mkv", + "category": "movie", + "title": "The Confidence Man Jp Princess", + "year": 2020, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:657350", + "title_zh": "行骗天下JP:公主篇", + "title_en": "コンフィデンスマンJP プリンセス編", + "translation_source": "tmdb", + "reputation_score": 6.609, + "reputation_votes": 23, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"657350\"}" + }, + "display_title": "行骗天下JP:公主篇 コンフィデンスマンJP プリンセス編" + }, + { + "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", + "filename": "The.Contractor.2022.1080p.BluRay.x265.10bit.DTS-WiKi.Sample.mkv", + "category": "movie", + "title": "The Contractor", + "year": 2022, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:628900", + "title_zh": "承包商", + "title_en": "The Contractor", + "translation_source": "tmdb", + "reputation_score": 6.357, + "reputation_votes": 1019, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"628900\"}" + }, + "display_title": "承包商 The Contractor" + }, + { + "path": "/mnt/Downloads/movies/The.Contractor.2022.1080p.BluRay.x265.10bit.DTS-WiKi/The.Contractor.2022.1080p.BluRay.x265.10bit.DTS-WiKi.mkv", + "filename": "The.Contractor.2022.1080p.BluRay.x265.10bit.DTS-WiKi.mkv", + "category": "movie", + "title": "The Contractor", + "year": 2022, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:628900", + "title_zh": "承包商", + "title_en": "The Contractor", + "translation_source": "tmdb", + "reputation_score": 6.357, + "reputation_votes": 1019, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"628900\"}" + }, + "display_title": "承包商 The Contractor" + }, + { + "path": "/mnt/Downloads/movies/千钧一发.Gattaca.1997.BluRay.1080p.x265.10bit.3Audio.MNHD-FRDS/Gattaca.1997.BluRay.1080p.x265.10bit.3Audio.MNHD-FRDS.mkv", + "filename": "Gattaca.1997.BluRay.1080p.x265.10bit.3Audio.MNHD-FRDS.mkv", + "category": "movie", + "title": "Gattaca", + "year": 1997, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:782", + "title_zh": "千钧一发", + "title_en": "Gattaca", + "translation_source": "tmdb", + "reputation_score": 7.564, + "reputation_votes": 6765, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"782\"}" + }, + "display_title": "千钧一发 Gattaca" + }, + { + "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", + "filename": "A.Working.Man.2025.2160p.iT.WEB-DL.H265.DV.DDP5.1.Atmos-Nest@ADWeb.mkv", + "category": "movie", + "title": "A Working Man", + "year": 2025, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:1197306", + "title_zh": "制暴:无限杀机", + "title_en": "A Working Man", + "translation_source": "tmdb", + "reputation_score": 6.685, + "reputation_votes": 1769, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"1197306\"}" + }, + "display_title": "制暴:无限杀机 A Working Man" + }, + { + "path": "/mnt/Downloads/movies/The.Gorge.2025.2160p.ATVP.WEB-DL.DDP5.1.Atmos.H.265-APEX.mkv", + "filename": "The.Gorge.2025.2160p.ATVP.WEB-DL.DDP5.1.Atmos.H.265-APEX.mkv", + "category": "movie", + "title": "The Gorge", + "year": 2025, + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:movie:950396", + "title_zh": "峡谷", + "title_en": "The Gorge", + "translation_source": "tmdb", + "reputation_score": 7.638, + "reputation_votes": 3411, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"movie\", \"id\": \"950396\"}" + }, + "display_title": "峡谷 The Gorge" + } + ], + "series": [ + { + "path": "/mnt/Downloads/series/The.Witcher.S01.1080p.NF.WEB-DL.DDP5.1.Atmos.x264-NG/The.Witcher.S01E07.Before.a.Fall.1080p.NF.WEB-DL.DDP5.1.Atmos.x264-NG.mkv", + "filename": "The.Witcher.S01E07.Before.a.Fall.1080p.NF.WEB-DL.DDP5.1.Atmos.x264-NG.mkv", + "category": "series", + "title": "The Witcher", + "season": 1, + "episodes": [ + 7 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:71912", + "title_zh": "猎魔人", + "title_en": "The Witcher", + "translation_source": "tmdb", + "reputation_score": 7.946, + "reputation_votes": 6527, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"71912\"}" + }, + "display_title": "猎魔人 The Witcher" + }, + { + "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", + "filename": "The.Witcher.S01E02.Four.Marks.1080p.NF.WEB-DL.DDP5.1.Atmos.x264-NG.mkv", + "category": "series", + "title": "The Witcher", + "season": 1, + "episodes": [ + 2 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:71912", + "title_zh": "猎魔人", + "title_en": "The Witcher", + "translation_source": "tmdb", + "reputation_score": 7.946, + "reputation_votes": 6527, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"71912\"}" + }, + "display_title": "猎魔人 The Witcher" + }, + { + "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", + "filename": "The.Witcher.S01E06.Rare.Species.1080p.NF.WEB-DL.DDP5.1.Atmos.x264-NG.mkv", + "category": "series", + "title": "The Witcher", + "season": 1, + "episodes": [ + 6 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:71912", + "title_zh": "猎魔人", + "title_en": "The Witcher", + "translation_source": "tmdb", + "reputation_score": 7.946, + "reputation_votes": 6527, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"71912\"}" + }, + "display_title": "猎魔人 The Witcher" + }, + { + "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", + "filename": "The.Witcher.S01E05.Bottled.Appetites.1080p.NF.WEB-DL.DDP5.1.Atmos.x264-NG.mkv", + "category": "series", + "title": "The Witcher", + "season": 1, + "episodes": [ + 5 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:71912", + "title_zh": "猎魔人", + "title_en": "The Witcher", + "translation_source": "tmdb", + "reputation_score": 7.946, + "reputation_votes": 6527, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"71912\"}" + }, + "display_title": "猎魔人 The Witcher" + }, + { + "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", + "filename": "The.Witcher.S01E03.Betrayer.Moon.1080p.NF.WEB-DL.DDP5.1.Atmos.x264-NG.mkv", + "category": "series", + "title": "The Witcher", + "season": 1, + "episodes": [ + 3 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:71912", + "title_zh": "猎魔人", + "title_en": "The Witcher", + "translation_source": "tmdb", + "reputation_score": 7.946, + "reputation_votes": 6527, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"71912\"}" + }, + "display_title": "猎魔人 The Witcher" + }, + { + "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", + "filename": "The.Witcher.S01E08.Much.More.1080p.NF.WEB-DL.DDP5.1.Atmos.x264-NG.mkv", + "category": "series", + "title": "The Witcher", + "season": 1, + "episodes": [ + 8 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:71912", + "title_zh": "猎魔人", + "title_en": "The Witcher", + "translation_source": "tmdb", + "reputation_score": 7.946, + "reputation_votes": 6527, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"71912\"}" + }, + "display_title": "猎魔人 The Witcher" + }, + { + "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", + "filename": "The.Witcher.S01E04.Of.Banquets.Bastards.and.Burials.1080p.NF.WEB-DL.DDP5.1.Atmos.x264-NG.mkv", + "category": "series", + "title": "The Witcher", + "season": 1, + "episodes": [ + 4 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:71912", + "title_zh": "猎魔人", + "title_en": "The Witcher", + "translation_source": "tmdb", + "reputation_score": 7.946, + "reputation_votes": 6527, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"71912\"}" + }, + "display_title": "猎魔人 The Witcher" + }, + { + "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", + "filename": "The.Witcher.S01E01.The.Ends.Beginning.1080p.NF.WEB-DL.DDP5.1.Atmos.x264-NG.mkv", + "category": "series", + "title": "The Witcher", + "season": 1, + "episodes": [ + 1 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:71912", + "title_zh": "猎魔人", + "title_en": "The Witcher", + "translation_source": "tmdb", + "reputation_score": 7.946, + "reputation_votes": 6527, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"71912\"}" + }, + "display_title": "猎魔人 The Witcher" + }, + { + "path": "/mnt/Downloads/series/Dexter.Resurrection.S01E01.A.Beating.Heart.1080p.REPACK.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv", + "filename": "Dexter.Resurrection.S01E01.A.Beating.Heart.1080p.REPACK.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv", + "category": "series", + "title": "Dexter Resurrection", + "season": 1, + "episodes": [ + 1 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:259909", + "title_zh": "嗜血法医:杀魔复生", + "title_en": "Dexter: Resurrection", + "translation_source": "tmdb", + "reputation_score": 8.5, + "reputation_votes": 406, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"259909\"}" + }, + "display_title": "嗜血法医:杀魔复生 Dexter: Resurrection" + }, + { + "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", + "filename": "Koi.Nante.Honki.de.Yatte.Dousuruno.E06.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV.mkv", + "category": "series", + "title": "Koi Nante Honki De Yatte Dousuruno E06 2022 Kktv -Hdctv", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Koi Nante Honki De Yatte Dousuruno E06 2022 Kktv -Hdctv" + }, + { + "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", + "filename": "Koi.Nante.Honki.de.Yatte.Dousuruno.E01.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV.mkv", + "category": "series", + "title": "Koi Nante Honki De Yatte Dousuruno E01 2022 Kktv -Hdctv", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Koi Nante Honki De Yatte Dousuruno E01 2022 Kktv -Hdctv" + }, + { + "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", + "filename": "Koi.Nante.Honki.de.Yatte.Dousuruno.E09.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV.mkv", + "category": "series", + "title": "Koi Nante Honki De Yatte Dousuruno E09 2022 Kktv -Hdctv", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Koi Nante Honki De Yatte Dousuruno E09 2022 Kktv -Hdctv" + }, + { + "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", + "filename": "Koi.Nante.Honki.de.Yatte.Dousuruno.E07.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV.mkv", + "category": "series", + "title": "Koi Nante Honki De Yatte Dousuruno E07 2022 Kktv -Hdctv", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Koi Nante Honki De Yatte Dousuruno E07 2022 Kktv -Hdctv" + }, + { + "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", + "filename": "Koi.Nante.Honki.de.Yatte.Dousuruno.E10.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV.mkv", + "category": "series", + "title": "Koi Nante Honki De Yatte Dousuruno E10 2022 Kktv -Hdctv", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Koi Nante Honki De Yatte Dousuruno E10 2022 Kktv -Hdctv" + }, + { + "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", + "filename": "Koi.Nante.Honki.de.Yatte.Dousuruno.E08.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV.mkv", + "category": "series", + "title": "Koi Nante Honki De Yatte Dousuruno E08 2022 Kktv -Hdctv", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Koi Nante Honki De Yatte Dousuruno E08 2022 Kktv -Hdctv" + }, + { + "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", + "filename": "Koi.Nante.Honki.de.Yatte.Dousuruno.E03.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV.mkv", + "category": "series", + "title": "Koi Nante Honki De Yatte Dousuruno E03 2022 Kktv -Hdctv", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Koi Nante Honki De Yatte Dousuruno E03 2022 Kktv -Hdctv" + }, + { + "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", + "filename": "Koi.Nante.Honki.de.Yatte.Dousuruno.E04.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV.mkv", + "category": "series", + "title": "Koi Nante Honki De Yatte Dousuruno E04 2022 Kktv -Hdctv", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Koi Nante Honki De Yatte Dousuruno E04 2022 Kktv -Hdctv" + }, + { + "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", + "filename": "Koi.Nante.Honki.de.Yatte.Dousuruno.E02.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV.mkv", + "category": "series", + "title": "Koi Nante Honki De Yatte Dousuruno E02 2022 Kktv -Hdctv", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Koi Nante Honki De Yatte Dousuruno E02 2022 Kktv -Hdctv" + }, + { + "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", + "filename": "Koi.Nante.Honki.de.Yatte.Dousuruno.E05.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV.mkv", + "category": "series", + "title": "Koi Nante Honki De Yatte Dousuruno E05 2022 Kktv -Hdctv", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Koi Nante Honki De Yatte Dousuruno E05 2022 Kktv -Hdctv" + }, + { + "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", + "filename": "The.Peripheral.S01E06.2022.Amazon.WEB-DL.4K.HEVC.HDR.DDP-HDCTV.mkv", + "category": "series", + "title": "The Peripheral", + "season": 1, + "episodes": [ + 6 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:95403", + "title_zh": "边缘世界", + "title_en": "The Peripheral", + "translation_source": "tmdb", + "reputation_score": 7.671, + "reputation_votes": 1273, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"95403\"}" + }, + "display_title": "边缘世界 The Peripheral" + }, + { + "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", + "filename": "The.Peripheral.S01E07.2022.Amazon.WEB-DL.4K.HEVC.HDR.DDP-HDCTV.mkv", + "category": "series", + "title": "The Peripheral", + "season": 1, + "episodes": [ + 7 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:95403", + "title_zh": "边缘世界", + "title_en": "The Peripheral", + "translation_source": "tmdb", + "reputation_score": 7.671, + "reputation_votes": 1273, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"95403\"}" + }, + "display_title": "边缘世界 The Peripheral" + }, + { + "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", + "filename": "The.Peripheral.S01E03.2022.Amazon.WEB-DL.4K.HEVC.HDR.DDP-HDCTV.mkv", + "category": "series", + "title": "The Peripheral", + "season": 1, + "episodes": [ + 3 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:95403", + "title_zh": "边缘世界", + "title_en": "The Peripheral", + "translation_source": "tmdb", + "reputation_score": 7.671, + "reputation_votes": 1273, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"95403\"}" + }, + "display_title": "边缘世界 The Peripheral" + }, + { + "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", + "filename": "Dragon.Zakura.2005.EP08.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv", + "category": "series", + "title": "Dragon Zakura 2005 Ep08 Flac Mnhd-Frds", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Dragon Zakura 2005 Ep08 Flac Mnhd-Frds" + }, + { + "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", + "filename": "Dragon.Zakura.2005.EP09.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv", + "category": "series", + "title": "Dragon Zakura 2005 Ep09 Flac Mnhd-Frds", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Dragon Zakura 2005 Ep09 Flac Mnhd-Frds" + }, + { + "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", + "filename": "Dragon.Zakura.2005.EP01.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv", + "category": "series", + "title": "Dragon Zakura 2005 Ep01 Flac Mnhd-Frds", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Dragon Zakura 2005 Ep01 Flac Mnhd-Frds" + }, + { + "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", + "filename": "Dragon.Zakura.2005.EP02.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv", + "category": "series", + "title": "Dragon Zakura 2005 Ep02 Flac Mnhd-Frds", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Dragon Zakura 2005 Ep02 Flac Mnhd-Frds" + }, + { + "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", + "filename": "Dragon.Zakura.2005.EP03.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv", + "category": "series", + "title": "Dragon Zakura 2005 Ep03 Flac Mnhd-Frds", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Dragon Zakura 2005 Ep03 Flac Mnhd-Frds" + }, + { + "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", + "filename": "Dragon.Zakura.2005.EP04.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv", + "category": "series", + "title": "Dragon Zakura 2005 Ep04 Flac Mnhd-Frds", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Dragon Zakura 2005 Ep04 Flac Mnhd-Frds" + }, + { + "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", + "filename": "Dragon.Zakura.2005.EP10.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv", + "category": "series", + "title": "Dragon Zakura 2005 Ep10 Flac Mnhd-Frds", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Dragon Zakura 2005 Ep10 Flac Mnhd-Frds" + }, + { + "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", + "filename": "Dragon.Zakura.2005.EP05.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv", + "category": "series", + "title": "Dragon Zakura 2005 Ep05 Flac Mnhd-Frds", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Dragon Zakura 2005 Ep05 Flac Mnhd-Frds" + }, + { + "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", + "filename": "Dragon.Zakura.2005.EP11.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv", + "category": "series", + "title": "Dragon Zakura 2005 Ep11 Flac Mnhd-Frds", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Dragon Zakura 2005 Ep11 Flac Mnhd-Frds" + }, + { + "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", + "filename": "Dragon.Zakura.2005.EP06.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv", + "category": "series", + "title": "Dragon Zakura 2005 Ep06 Flac Mnhd-Frds", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Dragon Zakura 2005 Ep06 Flac Mnhd-Frds" + }, + { + "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", + "filename": "Dragon.Zakura.2005.EP07.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv", + "category": "series", + "title": "Dragon Zakura 2005 Ep07 Flac Mnhd-Frds", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Dragon Zakura 2005 Ep07 Flac Mnhd-Frds" + }, + { + "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", + "filename": "FUBAR.S01E04.Armed.and.Dane-gerous.1080p.NF.WEB-DL.DDP5.1.Atmos.H.264-WDYM.mkv", + "category": "series", + "title": "Fubar", + "season": 1, + "episodes": [ + 4 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:221300", + "title_zh": "面目全非", + "title_en": "FUBAR", + "translation_source": "tmdb", + "reputation_score": 6.621, + "reputation_votes": 503, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"221300\"}" + }, + "display_title": "面目全非 FUBAR" + }, + { + "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", + "filename": "FUBAR.S01E05.Here.Today.Gone.To-Marrow.1080p.NF.WEB-DL.DDP5.1.Atmos.H.264-WDYM.mkv", + "category": "series", + "title": "Fubar", + "season": 1, + "episodes": [ + 5 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:221300", + "title_zh": "面目全非", + "title_en": "FUBAR", + "translation_source": "tmdb", + "reputation_score": 6.621, + "reputation_votes": 503, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"221300\"}" + }, + "display_title": "面目全非 FUBAR" + }, + { + "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", + "filename": "FUBAR.S01E03.Honeyplot.1080p.NF.WEB-DL.DDP5.1.Atmos.H.264-WDYM.mkv", + "category": "series", + "title": "Fubar", + "season": 1, + "episodes": [ + 3 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:221300", + "title_zh": "面目全非", + "title_en": "FUBAR", + "translation_source": "tmdb", + "reputation_score": 6.621, + "reputation_votes": 503, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"221300\"}" + }, + "display_title": "面目全非 FUBAR" + }, + { + "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", + "filename": "FUBAR.S01E01.Take.Your.Daughter.To.Work.Day.1080p.NF.WEB-DL.DDP5.1.Atmos.H.264-WDYM.mkv", + "category": "series", + "title": "Fubar", + "season": 1, + "episodes": [ + 1 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:221300", + "title_zh": "面目全非", + "title_en": "FUBAR", + "translation_source": "tmdb", + "reputation_score": 6.621, + "reputation_votes": 503, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"221300\"}" + }, + "display_title": "面目全非 FUBAR" + }, + { + "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", + "filename": "FUBAR.S01E02.Stole.Train.1080p.NF.WEB-DL.DDP5.1.Atmos.H.264-WDYM.mkv", + "category": "series", + "title": "Fubar", + "season": 1, + "episodes": [ + 2 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:221300", + "title_zh": "面目全非", + "title_en": "FUBAR", + "translation_source": "tmdb", + "reputation_score": 6.621, + "reputation_votes": 503, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"221300\"}" + }, + "display_title": "面目全非 FUBAR" + }, + { + "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", + "filename": "FUBAR.S01E08.Thats.It.And.Thats.All.1080p.NF.WEB-DL.DDP5.1.Atmos.H.264-WDYM.mkv", + "category": "series", + "title": "Fubar", + "season": 1, + "episodes": [ + 8 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:221300", + "title_zh": "面目全非", + "title_en": "FUBAR", + "translation_source": "tmdb", + "reputation_score": 6.621, + "reputation_votes": 503, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"221300\"}" + }, + "display_title": "面目全非 FUBAR" + }, + { + "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", + "filename": "FUBAR.S01E06.Royally.Flushed.1080p.NF.WEB-DL.DDP5.1.Atmos.H.264-WDYM.mkv", + "category": "series", + "title": "Fubar", + "season": 1, + "episodes": [ + 6 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:221300", + "title_zh": "面目全非", + "title_en": "FUBAR", + "translation_source": "tmdb", + "reputation_score": 6.621, + "reputation_votes": 503, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"221300\"}" + }, + "display_title": "面目全非 FUBAR" + }, + { + "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", + "filename": "FUBAR.S01E07.Urine.Luck.1080p.NF.WEB-DL.DDP5.1.Atmos.H.264-WDYM.mkv", + "category": "series", + "title": "Fubar", + "season": 1, + "episodes": [ + 7 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:221300", + "title_zh": "面目全非", + "title_en": "FUBAR", + "translation_source": "tmdb", + "reputation_score": 6.621, + "reputation_votes": 503, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"221300\"}" + }, + "display_title": "面目全非 FUBAR" + }, + { + "path": "/mnt/Downloads/series/白夜行.2006.全11集.1080p.简繁中字£CMCT木丁西/[白夜行].Into.the.White.Night.E04.2006.1080p.BluRay.x265.FLAC-CMCT.mkv", + "filename": "[白夜行].Into.the.White.Night.E04.2006.1080p.BluRay.x265.FLAC-CMCT.mkv", + "category": "series", + "title": "Into The White Night E04 2006 Flac-Cmct", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Into The White Night E04 2006 Flac-Cmct" + }, + { + "path": "/mnt/Downloads/series/白夜行.2006.全11集.1080p.简繁中字£CMCT木丁西/[白夜行].Into.the.White.Night.E05.2006.1080p.BluRay.x265.FLAC-CMCT.mkv", + "filename": "[白夜行].Into.the.White.Night.E05.2006.1080p.BluRay.x265.FLAC-CMCT.mkv", + "category": "series", + "title": "Into The White Night E05 2006 Flac-Cmct", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Into The White Night E05 2006 Flac-Cmct" + }, + { + "path": "/mnt/Downloads/series/白夜行.2006.全11集.1080p.简繁中字£CMCT木丁西/[白夜行].Into.the.White.Night.E08.2006.1080p.BluRay.x265.FLAC-CMCT.mkv", + "filename": "[白夜行].Into.the.White.Night.E08.2006.1080p.BluRay.x265.FLAC-CMCT.mkv", + "category": "series", + "title": "Into The White Night E08 2006 Flac-Cmct", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Into The White Night E08 2006 Flac-Cmct" + }, + { + "path": "/mnt/Downloads/series/白夜行.2006.全11集.1080p.简繁中字£CMCT木丁西/[白夜行].Into.the.White.Night.E06.2006.1080p.BluRay.x265.FLAC-CMCT.mkv", + "filename": "[白夜行].Into.the.White.Night.E06.2006.1080p.BluRay.x265.FLAC-CMCT.mkv", + "category": "series", + "title": "Into The White Night E06 2006 Flac-Cmct", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Into The White Night E06 2006 Flac-Cmct" + }, + { + "path": "/mnt/Downloads/series/白夜行.2006.全11集.1080p.简繁中字£CMCT木丁西/[白夜行].Into.the.White.Night.E09.2006.1080p.BluRay.x265.FLAC-CMCT.mkv", + "filename": "[白夜行].Into.the.White.Night.E09.2006.1080p.BluRay.x265.FLAC-CMCT.mkv", + "category": "series", + "title": "Into The White Night E09 2006 Flac-Cmct", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Into The White Night E09 2006 Flac-Cmct" + }, + { + "path": "/mnt/Downloads/series/白夜行.2006.全11集.1080p.简繁中字£CMCT木丁西/[白夜行].Into.the.White.Night.E07.2006.1080p.BluRay.x265.FLAC-CMCT.mkv", + "filename": "[白夜行].Into.the.White.Night.E07.2006.1080p.BluRay.x265.FLAC-CMCT.mkv", + "category": "series", + "title": "Into The White Night E07 2006 Flac-Cmct", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Into The White Night E07 2006 Flac-Cmct" + }, + { + "path": "/mnt/Downloads/series/白夜行.2006.全11集.1080p.简繁中字£CMCT木丁西/[白夜行].Into.the.White.Night.E11.2006.1080p.BluRay.x265.FLAC-CMCT.mkv", + "filename": "[白夜行].Into.the.White.Night.E11.2006.1080p.BluRay.x265.FLAC-CMCT.mkv", + "category": "series", + "title": "Into The White Night E11 2006 Flac-Cmct", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Into The White Night E11 2006 Flac-Cmct" + }, + { + "path": "/mnt/Downloads/series/白夜行.2006.全11集.1080p.简繁中字£CMCT木丁西/[白夜行].Into.the.White.Night.E01.2006.1080p.BluRay.x265.FLAC-CMCT.mkv", + "filename": "[白夜行].Into.the.White.Night.E01.2006.1080p.BluRay.x265.FLAC-CMCT.mkv", + "category": "series", + "title": "Into The White Night E01 2006 Flac-Cmct", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Into The White Night E01 2006 Flac-Cmct" + }, + { + "path": "/mnt/Downloads/series/白夜行.2006.全11集.1080p.简繁中字£CMCT木丁西/[白夜行].Into.the.White.Night.E10.2006.1080p.BluRay.x265.FLAC-CMCT.mkv", + "filename": "[白夜行].Into.the.White.Night.E10.2006.1080p.BluRay.x265.FLAC-CMCT.mkv", + "category": "series", + "title": "Into The White Night E10 2006 Flac-Cmct", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Into The White Night E10 2006 Flac-Cmct" + }, + { + "path": "/mnt/Downloads/series/白夜行.2006.全11集.1080p.简繁中字£CMCT木丁西/[白夜行].Into.the.White.Night.E03.2006.1080p.BluRay.x265.FLAC-CMCT.mkv", + "filename": "[白夜行].Into.the.White.Night.E03.2006.1080p.BluRay.x265.FLAC-CMCT.mkv", + "category": "series", + "title": "Into The White Night E03 2006 Flac-Cmct", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Into The White Night E03 2006 Flac-Cmct" + }, + { + "path": "/mnt/Downloads/series/白夜行.2006.全11集.1080p.简繁中字£CMCT木丁西/[白夜行].Into.the.White.Night.E02.2006.1080p.BluRay.x265.FLAC-CMCT.mkv", + "filename": "[白夜行].Into.the.White.Night.E02.2006.1080p.BluRay.x265.FLAC-CMCT.mkv", + "category": "series", + "title": "Into The White Night E02 2006 Flac-Cmct", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Into The White Night E02 2006 Flac-Cmct" + }, + { + "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", + "filename": "[未知的首尔].Our.Unwritten.Seoul.S01E12.2025.1080p.NF.WEB-DL.x264.AAC-CMCTV.mkv", + "category": "series", + "title": "Our Unwritten Seoul", + "season": 1, + "episodes": [ + 12 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:261980", + "title_zh": "未知的首尔", + "title_en": "미지의 서울", + "translation_source": "tmdb", + "reputation_score": 8.377, + "reputation_votes": 73, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"261980\"}" + }, + "display_title": "未知的首尔 미지의 서울" + }, + { + "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", + "filename": "[未知的首尔].Our.Unwritten.Seoul.S01E09.2025.1080p.NF.WEB-DL.x264.AAC-CMCTV.mkv", + "category": "series", + "title": "Our Unwritten Seoul", + "season": 1, + "episodes": [ + 9 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:261980", + "title_zh": "未知的首尔", + "title_en": "미지의 서울", + "translation_source": "tmdb", + "reputation_score": 8.377, + "reputation_votes": 73, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"261980\"}" + }, + "display_title": "未知的首尔 미지의 서울" + }, + { + "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", + "filename": "[未知的首尔].Our.Unwritten.Seoul.S01E05.2025.1080p.NF.WEB-DL.x264.AAC-CMCTV.mkv", + "category": "series", + "title": "Our Unwritten Seoul", + "season": 1, + "episodes": [ + 5 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:261980", + "title_zh": "未知的首尔", + "title_en": "미지의 서울", + "translation_source": "tmdb", + "reputation_score": 8.377, + "reputation_votes": 73, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"261980\"}" + }, + "display_title": "未知的首尔 미지의 서울" + }, + { + "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", + "filename": "[未知的首尔].Our.Unwritten.Seoul.S01E01.2025.1080p.NF.WEB-DL.x264.AAC-CMCTV.mkv", + "category": "series", + "title": "Our Unwritten Seoul", + "season": 1, + "episodes": [ + 1 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:261980", + "title_zh": "未知的首尔", + "title_en": "미지의 서울", + "translation_source": "tmdb", + "reputation_score": 8.377, + "reputation_votes": 73, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"261980\"}" + }, + "display_title": "未知的首尔 미지의 서울" + }, + { + "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", + "filename": "[未知的首尔].Our.Unwritten.Seoul.S01E04.2025.1080p.NF.WEB-DL.x264.AAC-CMCTV.mkv", + "category": "series", + "title": "Our Unwritten Seoul", + "season": 1, + "episodes": [ + 4 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:261980", + "title_zh": "未知的首尔", + "title_en": "미지의 서울", + "translation_source": "tmdb", + "reputation_score": 8.377, + "reputation_votes": 73, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"261980\"}" + }, + "display_title": "未知的首尔 미지의 서울" + }, + { + "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", + "filename": "[未知的首尔].Our.Unwritten.Seoul.S01E08.2025.1080p.NF.WEB-DL.x264.AAC-CMCTV.mkv", + "category": "series", + "title": "Our Unwritten Seoul", + "season": 1, + "episodes": [ + 8 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:261980", + "title_zh": "未知的首尔", + "title_en": "미지의 서울", + "translation_source": "tmdb", + "reputation_score": 8.377, + "reputation_votes": 73, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"261980\"}" + }, + "display_title": "未知的首尔 미지의 서울" + }, + { + "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", + "filename": "[未知的首尔].Our.Unwritten.Seoul.S01E06.2025.1080p.NF.WEB-DL.x264.AAC-CMCTV.mkv", + "category": "series", + "title": "Our Unwritten Seoul", + "season": 1, + "episodes": [ + 6 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:261980", + "title_zh": "未知的首尔", + "title_en": "미지의 서울", + "translation_source": "tmdb", + "reputation_score": 8.377, + "reputation_votes": 73, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"261980\"}" + }, + "display_title": "未知的首尔 미지의 서울" + }, + { + "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", + "filename": "[未知的首尔].Our.Unwritten.Seoul.S01E02.2025.1080p.NF.WEB-DL.x264.AAC-CMCTV.mkv", + "category": "series", + "title": "Our Unwritten Seoul", + "season": 1, + "episodes": [ + 2 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:261980", + "title_zh": "未知的首尔", + "title_en": "미지의 서울", + "translation_source": "tmdb", + "reputation_score": 8.377, + "reputation_votes": 73, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"261980\"}" + }, + "display_title": "未知的首尔 미지의 서울" + }, + { + "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", + "filename": "[未知的首尔].Our.Unwritten.Seoul.S01E11.2025.1080p.NF.WEB-DL.x264.AAC-CMCTV.mkv", + "category": "series", + "title": "Our Unwritten Seoul", + "season": 1, + "episodes": [ + 11 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:261980", + "title_zh": "未知的首尔", + "title_en": "미지의 서울", + "translation_source": "tmdb", + "reputation_score": 8.377, + "reputation_votes": 73, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"261980\"}" + }, + "display_title": "未知的首尔 미지의 서울" + }, + { + "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", + "filename": "[未知的首尔].Our.Unwritten.Seoul.S01E10.2025.1080p.NF.WEB-DL.x264.AAC-CMCTV.mkv", + "category": "series", + "title": "Our Unwritten Seoul", + "season": 1, + "episodes": [ + 10 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:261980", + "title_zh": "未知的首尔", + "title_en": "미지의 서울", + "translation_source": "tmdb", + "reputation_score": 8.377, + "reputation_votes": 73, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"261980\"}" + }, + "display_title": "未知的首尔 미지의 서울" + }, + { + "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", + "filename": "[未知的首尔].Our.Unwritten.Seoul.S01E07.2025.1080p.NF.WEB-DL.x264.AAC-CMCTV.mkv", + "category": "series", + "title": "Our Unwritten Seoul", + "season": 1, + "episodes": [ + 7 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:261980", + "title_zh": "未知的首尔", + "title_en": "미지의 서울", + "translation_source": "tmdb", + "reputation_score": 8.377, + "reputation_votes": 73, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"261980\"}" + }, + "display_title": "未知的首尔 미지의 서울" + }, + { + "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", + "filename": "[未知的首尔].Our.Unwritten.Seoul.S01E03.2025.1080p.NF.WEB-DL.x264.AAC-CMCTV.mkv", + "category": "series", + "title": "Our Unwritten Seoul", + "season": 1, + "episodes": [ + 3 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:261980", + "title_zh": "未知的首尔", + "title_en": "미지의 서울", + "translation_source": "tmdb", + "reputation_score": 8.377, + "reputation_votes": 73, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"261980\"}" + }, + "display_title": "未知的首尔 미지의 서울" + }, + { + "path": "/mnt/Downloads/series/Believe-君にかける橋- 第06話 1080p KKTV WEB-DL H264 AAC.mkv", + "filename": "Believe-君にかける橋- 第06話 1080p KKTV WEB-DL H264 AAC.mkv", + "category": "series", + "title": "Believe-君にかける橋- 第06話 Kktv", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Believe-君にかける橋- 第06話 Kktv" + }, + { + "path": "/mnt/Downloads/series/Zenryouiki.Ijou.Kaiketsushitsu.EP01.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv", + "filename": "Zenryouiki.Ijou.Kaiketsushitsu.EP01.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv", + "category": "series", + "title": "Zenryouiki Ijou Kaiketsushitsu Ep01 Amzn Ddp2 0 H 264-Magicstar", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Zenryouiki Ijou Kaiketsushitsu Ep01 Amzn Ddp2 0 H 264-Magicstar" + }, + { + "path": "/mnt/Downloads/series/Reacher.S03E05.Smackdown.1080p.AMZN.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv", + "filename": "Reacher.S03E05.Smackdown.1080p.AMZN.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv", + "category": "series", + "title": "Reacher", + "season": 3, + "episodes": [ + 5 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:108978", + "title_zh": "侠探杰克", + "title_en": "Reacher", + "translation_source": "tmdb", + "reputation_score": 8.084, + "reputation_votes": 2645, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"108978\"}" + }, + "display_title": "侠探杰克 Reacher" + }, + { + "path": "/mnt/Downloads/series/Mare.Of.Easttown.S01.1080p.WEB-DL.x264-DJYDXS/Mare.Of.Easttown.S01E06.1080p.WEB-DL.x264-DJYDXS.mp4", + "filename": "Mare.Of.Easttown.S01E06.1080p.WEB-DL.x264-DJYDXS.mp4", + "category": "series", + "title": "Mare Of Easttown", + "season": 1, + "episodes": [ + 6 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:115004", + "title_zh": "东城梦魇", + "title_en": "Mare of Easttown", + "translation_source": "tmdb", + "reputation_score": 8.2, + "reputation_votes": 1599, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"115004\"}" + }, + "display_title": "东城梦魇 Mare of Easttown" + }, + { + "path": "/mnt/Downloads/series/Mare.Of.Easttown.S01.1080p.WEB-DL.x264-DJYDXS/Mare.Of.Easttown.S01E07.1080p.WEB-DL.x264-DJYDXS.mp4", + "filename": "Mare.Of.Easttown.S01E07.1080p.WEB-DL.x264-DJYDXS.mp4", + "category": "series", + "title": "Mare Of Easttown", + "season": 1, + "episodes": [ + 7 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:115004", + "title_zh": "东城梦魇", + "title_en": "Mare of Easttown", + "translation_source": "tmdb", + "reputation_score": 8.2, + "reputation_votes": 1599, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"115004\"}" + }, + "display_title": "东城梦魇 Mare of Easttown" + }, + { + "path": "/mnt/Downloads/series/Mare.Of.Easttown.S01.1080p.WEB-DL.x264-DJYDXS/Mare.Of.Easttown.S01E04.1080p.WEB-DL.x264-DJYDXS.mp4", + "filename": "Mare.Of.Easttown.S01E04.1080p.WEB-DL.x264-DJYDXS.mp4", + "category": "series", + "title": "Mare Of Easttown", + "season": 1, + "episodes": [ + 4 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:115004", + "title_zh": "东城梦魇", + "title_en": "Mare of Easttown", + "translation_source": "tmdb", + "reputation_score": 8.2, + "reputation_votes": 1599, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"115004\"}" + }, + "display_title": "东城梦魇 Mare of Easttown" + }, + { + "path": "/mnt/Downloads/series/Mare.Of.Easttown.S01.1080p.WEB-DL.x264-DJYDXS/Mare.Of.Easttown.S01E05.1080p.WEB-DL.x264-DJYDXS.mp4", + "filename": "Mare.Of.Easttown.S01E05.1080p.WEB-DL.x264-DJYDXS.mp4", + "category": "series", + "title": "Mare Of Easttown", + "season": 1, + "episodes": [ + 5 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:115004", + "title_zh": "东城梦魇", + "title_en": "Mare of Easttown", + "translation_source": "tmdb", + "reputation_score": 8.2, + "reputation_votes": 1599, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"115004\"}" + }, + "display_title": "东城梦魇 Mare of Easttown" + }, + { + "path": "/mnt/Downloads/series/Mare.Of.Easttown.S01.1080p.WEB-DL.x264-DJYDXS/Mare.Of.Easttown.S01E03.1080p.WEB-DL.x264-DJYDXS.mp4", + "filename": "Mare.Of.Easttown.S01E03.1080p.WEB-DL.x264-DJYDXS.mp4", + "category": "series", + "title": "Mare Of Easttown", + "season": 1, + "episodes": [ + 3 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:115004", + "title_zh": "东城梦魇", + "title_en": "Mare of Easttown", + "translation_source": "tmdb", + "reputation_score": 8.2, + "reputation_votes": 1599, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"115004\"}" + }, + "display_title": "东城梦魇 Mare of Easttown" + }, + { + "path": "/mnt/Downloads/series/Mare.Of.Easttown.S01.1080p.WEB-DL.x264-DJYDXS/Mare.Of.Easttown.S01E02.1080p.WEB-DL.x264-DJYDXS.mp4", + "filename": "Mare.Of.Easttown.S01E02.1080p.WEB-DL.x264-DJYDXS.mp4", + "category": "series", + "title": "Mare Of Easttown", + "season": 1, + "episodes": [ + 2 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:115004", + "title_zh": "东城梦魇", + "title_en": "Mare of Easttown", + "translation_source": "tmdb", + "reputation_score": 8.2, + "reputation_votes": 1599, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"115004\"}" + }, + "display_title": "东城梦魇 Mare of Easttown" + }, + { + "path": "/mnt/Downloads/series/Mare.Of.Easttown.S01.1080p.WEB-DL.x264-DJYDXS/Mare.Of.Easttown.S01E01.1080p.WEB-DL.x264-DJYDXS.mp4", + "filename": "Mare.Of.Easttown.S01E01.1080p.WEB-DL.x264-DJYDXS.mp4", + "category": "series", + "title": "Mare Of Easttown", + "season": 1, + "episodes": [ + 1 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:115004", + "title_zh": "东城梦魇", + "title_en": "Mare of Easttown", + "translation_source": "tmdb", + "reputation_score": 8.2, + "reputation_votes": 1599, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"115004\"}" + }, + "display_title": "东城梦魇 Mare of Easttown" + }, + { + "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", + "filename": "Ideology.Verification.Zone.The.Community.S01E09.1080p.WAVVE.WEB-DL.AAC.H264.mkv", + "category": "series", + "title": "Ideology Verification Zone The Community", + "season": 1, + "episodes": [ + 9 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Ideology Verification Zone The Community" + }, + { + "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", + "filename": "Ideology.Verification.Zone.The.Community.S01E08.1080p.WAVVE.WEB-DL.AAC.H264.mkv", + "category": "series", + "title": "Ideology Verification Zone The Community", + "season": 1, + "episodes": [ + 8 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Ideology Verification Zone The Community" + }, + { + "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", + "filename": "Ideology.Verification.Zone.The.Community.S01E03.1080p.WAVVE.WEB-DL.AAC.H264.mkv", + "category": "series", + "title": "Ideology Verification Zone The Community", + "season": 1, + "episodes": [ + 3 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Ideology Verification Zone The Community" + }, + { + "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", + "filename": "Ideology.Verification.Zone.The.Community.S01E02.1080p.WAVVE.WEB-DL.AAC.H264.mkv", + "category": "series", + "title": "Ideology Verification Zone The Community", + "season": 1, + "episodes": [ + 2 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Ideology Verification Zone The Community" + }, + { + "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", + "filename": "Ideology.Verification.Zone.The.Community.S01E01.1080p.WAVVE.WEB-DL.AAC.H264.mkv", + "category": "series", + "title": "Ideology Verification Zone The Community", + "season": 1, + "episodes": [ + 1 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Ideology Verification Zone The Community" + }, + { + "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", + "filename": "Ideology.Verification.Zone.The.Community.S01E05.1080p.WAVVE.WEB-DL.AAC.H264.mkv", + "category": "series", + "title": "Ideology Verification Zone The Community", + "season": 1, + "episodes": [ + 5 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Ideology Verification Zone The Community" + }, + { + "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", + "filename": "Ideology.Verification.Zone.The.Community.S01E10.1080p.WAVVE.WEB-DL.AAC.H264.mkv", + "category": "series", + "title": "Ideology Verification Zone The Community", + "season": 1, + "episodes": [ + 10 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Ideology Verification Zone The Community" + }, + { + "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", + "filename": "Ideology.Verification.Zone.The.Community.S01E11.1080p.WAVVE.WEB-DL.AAC.H264.mkv", + "category": "series", + "title": "Ideology Verification Zone The Community", + "season": 1, + "episodes": [ + 11 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Ideology Verification Zone The Community" + }, + { + "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", + "filename": "Ideology.Verification.Zone.The.Community.S01E04.1080p.WAVVE.WEB-DL.AAC.H264.mkv", + "category": "series", + "title": "Ideology Verification Zone The Community", + "season": 1, + "episodes": [ + 4 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Ideology Verification Zone The Community" + }, + { + "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", + "filename": "Ideology.Verification.Zone.The.Community.S01E06.1080p.WAVVE.WEB-DL.AAC.H264.mkv", + "category": "series", + "title": "Ideology Verification Zone The Community", + "season": 1, + "episodes": [ + 6 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Ideology Verification Zone The Community" + }, + { + "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", + "filename": "Ideology.Verification.Zone.The.Community.S01E07.1080p.WAVVE.WEB-DL.AAC.H264.mkv", + "category": "series", + "title": "Ideology Verification Zone The Community", + "season": 1, + "episodes": [ + 7 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Ideology Verification Zone The Community" + }, + { + "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", + "filename": "Money.Heist.Korea.Joint.Economic.Area.S01E03.2022.Netflix.WEB-DL.1080p.HEVC.HDR.DDP-HDCTV.mkv", + "category": "series", + "title": "Money Heist Korea Joint Economic Area", + "season": 1, + "episodes": [ + 3 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:112836", + "title_zh": "纸房子:韩国篇", + "title_en": "종이의 집: 공동경제구역", + "translation_source": "tmdb", + "reputation_score": 7.714, + "reputation_votes": 707, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"112836\"}" + }, + "display_title": "纸房子:韩国篇 종이의 집: 공동경제구역" + }, + { + "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", + "filename": "Money.Heist.Korea.Joint.Economic.Area.S01E07.2022.Netflix.WEB-DL.1080p.HEVC.HDR.DDP-HDCTV.mkv", + "category": "series", + "title": "Money Heist Korea Joint Economic Area", + "season": 1, + "episodes": [ + 7 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:112836", + "title_zh": "纸房子:韩国篇", + "title_en": "종이의 집: 공동경제구역", + "translation_source": "tmdb", + "reputation_score": 7.714, + "reputation_votes": 707, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"112836\"}" + }, + "display_title": "纸房子:韩国篇 종이의 집: 공동경제구역" + }, + { + "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", + "filename": "Money.Heist.Korea.Joint.Economic.Area.S01E08.2022.Netflix.WEB-DL.1080p.HEVC.HDR.DDP-HDCTV.mkv", + "category": "series", + "title": "Money Heist Korea Joint Economic Area", + "season": 1, + "episodes": [ + 8 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:112836", + "title_zh": "纸房子:韩国篇", + "title_en": "종이의 집: 공동경제구역", + "translation_source": "tmdb", + "reputation_score": 7.714, + "reputation_votes": 707, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"112836\"}" + }, + "display_title": "纸房子:韩国篇 종이의 집: 공동경제구역" + }, + { + "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", + "filename": "Money.Heist.Korea.Joint.Economic.Area.S01E10.2022.Netflix.WEB-DL.1080p.HEVC.HDR.DDP-HDCTV.mkv", + "category": "series", + "title": "Money Heist Korea Joint Economic Area", + "season": 1, + "episodes": [ + 10 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:112836", + "title_zh": "纸房子:韩国篇", + "title_en": "종이의 집: 공동경제구역", + "translation_source": "tmdb", + "reputation_score": 7.714, + "reputation_votes": 707, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"112836\"}" + }, + "display_title": "纸房子:韩国篇 종이의 집: 공동경제구역" + }, + { + "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", + "filename": "Money.Heist.Korea.Joint.Economic.Area.S01E04.2022.Netflix.WEB-DL.1080p.HEVC.HDR.DDP-HDCTV.mkv", + "category": "series", + "title": "Money Heist Korea Joint Economic Area", + "season": 1, + "episodes": [ + 4 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:112836", + "title_zh": "纸房子:韩国篇", + "title_en": "종이의 집: 공동경제구역", + "translation_source": "tmdb", + "reputation_score": 7.714, + "reputation_votes": 707, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"112836\"}" + }, + "display_title": "纸房子:韩国篇 종이의 집: 공동경제구역" + }, + { + "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", + "filename": "Money.Heist.Korea.Joint.Economic.Area.S01E12.2022.Netflix.WEB-DL.1080p.HEVC.HDR.DDP-HDCTV.mkv", + "category": "series", + "title": "Money Heist Korea Joint Economic Area", + "season": 1, + "episodes": [ + 12 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:112836", + "title_zh": "纸房子:韩国篇", + "title_en": "종이의 집: 공동경제구역", + "translation_source": "tmdb", + "reputation_score": 7.714, + "reputation_votes": 707, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"112836\"}" + }, + "display_title": "纸房子:韩国篇 종이의 집: 공동경제구역" + }, + { + "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", + "filename": "Money.Heist.Korea.Joint.Economic.Area.S01E06.2022.Netflix.WEB-DL.1080p.HEVC.HDR.DDP-HDCTV.mkv", + "category": "series", + "title": "Money Heist Korea Joint Economic Area", + "season": 1, + "episodes": [ + 6 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:112836", + "title_zh": "纸房子:韩国篇", + "title_en": "종이의 집: 공동경제구역", + "translation_source": "tmdb", + "reputation_score": 7.714, + "reputation_votes": 707, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"112836\"}" + }, + "display_title": "纸房子:韩国篇 종이의 집: 공동경제구역" + }, + { + "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", + "filename": "Money.Heist.Korea.Joint.Economic.Area.S01E02.2022.Netflix.WEB-DL.1080p.HEVC.HDR.DDP-HDCTV.mkv", + "category": "series", + "title": "Money Heist Korea Joint Economic Area", + "season": 1, + "episodes": [ + 2 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:112836", + "title_zh": "纸房子:韩国篇", + "title_en": "종이의 집: 공동경제구역", + "translation_source": "tmdb", + "reputation_score": 7.714, + "reputation_votes": 707, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"112836\"}" + }, + "display_title": "纸房子:韩国篇 종이의 집: 공동경제구역" + }, + { + "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", + "filename": "Money.Heist.Korea.Joint.Economic.Area.S01E11.2022.Netflix.WEB-DL.1080p.HEVC.HDR.DDP-HDCTV.mkv", + "category": "series", + "title": "Money Heist Korea Joint Economic Area", + "season": 1, + "episodes": [ + 11 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:112836", + "title_zh": "纸房子:韩国篇", + "title_en": "종이의 집: 공동경제구역", + "translation_source": "tmdb", + "reputation_score": 7.714, + "reputation_votes": 707, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"112836\"}" + }, + "display_title": "纸房子:韩国篇 종이의 집: 공동경제구역" + }, + { + "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", + "filename": "Money.Heist.Korea.Joint.Economic.Area.S01E09.2022.Netflix.WEB-DL.1080p.HEVC.HDR.DDP-HDCTV.mkv", + "category": "series", + "title": "Money Heist Korea Joint Economic Area", + "season": 1, + "episodes": [ + 9 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:112836", + "title_zh": "纸房子:韩国篇", + "title_en": "종이의 집: 공동경제구역", + "translation_source": "tmdb", + "reputation_score": 7.714, + "reputation_votes": 707, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"112836\"}" + }, + "display_title": "纸房子:韩国篇 종이의 집: 공동경제구역" + }, + { + "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", + "filename": "Money.Heist.Korea.Joint.Economic.Area.S01E05.2022.Netflix.WEB-DL.1080p.HEVC.HDR.DDP-HDCTV.mkv", + "category": "series", + "title": "Money Heist Korea Joint Economic Area", + "season": 1, + "episodes": [ + 5 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:112836", + "title_zh": "纸房子:韩国篇", + "title_en": "종이의 집: 공동경제구역", + "translation_source": "tmdb", + "reputation_score": 7.714, + "reputation_votes": 707, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"112836\"}" + }, + "display_title": "纸房子:韩国篇 종이의 집: 공동경제구역" + }, + { + "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", + "filename": "Money.Heist.Korea.Joint.Economic.Area.S01E01.2022.Netflix.WEB-DL.1080p.HEVC.HDR.DDP-HDCTV.mkv", + "category": "series", + "title": "Money Heist Korea Joint Economic Area", + "season": 1, + "episodes": [ + 1 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:112836", + "title_zh": "纸房子:韩国篇", + "title_en": "종이의 집: 공동경제구역", + "translation_source": "tmdb", + "reputation_score": 7.714, + "reputation_votes": 707, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"112836\"}" + }, + "display_title": "纸房子:韩国篇 종이의 집: 공동경제구역" + }, + { + "path": "/mnt/Downloads/series/True.Detective.S04E04.Night.Country.Part.4.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv", + "filename": "True.Detective.S04E04.Night.Country.Part.4.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv", + "category": "series", + "title": "True Detective", + "season": 4, + "episodes": [ + 4 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:46648", + "title_zh": "真探", + "title_en": "True Detective", + "translation_source": "tmdb", + "reputation_score": 8.282, + "reputation_votes": 3932, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"46648\"}" + }, + "display_title": "真探 True Detective" + }, + { + "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", + "filename": "나의 해방일지.My.Liberation.Notes.S01E13.1080p.NF.WEB-DL.DDP2.0.x264-REVOLT.mkv", + "category": "series", + "title": "나의 해방일지 My Liberation Notes", + "season": 1, + "episodes": [ + 13 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:154887", + "title_zh": "我的解放日记", + "title_en": "나의 해방일지", + "translation_source": "tmdb", + "reputation_score": 7.9, + "reputation_votes": 86, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"154887\"}" + }, + "display_title": "我的解放日记 나의 해방일지" + }, + { + "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", + "filename": "나의 해방일지.My.Liberation.Notes.S01E02.1080p.NF.WEB-DL.DDP2.0.x264-REVOLT.mkv", + "category": "series", + "title": "나의 해방일지 My Liberation Notes", + "season": 1, + "episodes": [ + 2 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:154887", + "title_zh": "我的解放日记", + "title_en": "나의 해방일지", + "translation_source": "tmdb", + "reputation_score": 7.9, + "reputation_votes": 86, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"154887\"}" + }, + "display_title": "我的解放日记 나의 해방일지" + }, + { + "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", + "filename": "나의 해방일지.My.Liberation.Notes.S01E06.1080p.NF.WEB-DL.DDP2.0.x264-REVOLT.mkv", + "category": "series", + "title": "나의 해방일지 My Liberation Notes", + "season": 1, + "episodes": [ + 6 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:154887", + "title_zh": "我的解放日记", + "title_en": "나의 해방일지", + "translation_source": "tmdb", + "reputation_score": 7.9, + "reputation_votes": 86, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"154887\"}" + }, + "display_title": "我的解放日记 나의 해방일지" + }, + { + "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", + "filename": "나의 해방일지.My.Liberation.Notes.S01E07.1080p.NF.WEB-DL.DDP2.0.x264-REVOLT.mkv", + "category": "series", + "title": "나의 해방일지 My Liberation Notes", + "season": 1, + "episodes": [ + 7 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:154887", + "title_zh": "我的解放日记", + "title_en": "나의 해방일지", + "translation_source": "tmdb", + "reputation_score": 7.9, + "reputation_votes": 86, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"154887\"}" + }, + "display_title": "我的解放日记 나의 해방일지" + }, + { + "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", + "filename": "나의 해방일지.My.Liberation.Notes.S01E16.1080p.NF.WEB-DL.DDP2.0.x264-REVOLT.mkv", + "category": "series", + "title": "나의 해방일지 My Liberation Notes", + "season": 1, + "episodes": [ + 16 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:154887", + "title_zh": "我的解放日记", + "title_en": "나의 해방일지", + "translation_source": "tmdb", + "reputation_score": 7.9, + "reputation_votes": 86, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"154887\"}" + }, + "display_title": "我的解放日记 나의 해방일지" + }, + { + "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", + "filename": "나의 해방일지.My.Liberation.Notes.S01E03.1080p.NF.WEB-DL.DDP2.0.x264-REVOLT.mkv", + "category": "series", + "title": "나의 해방일지 My Liberation Notes", + "season": 1, + "episodes": [ + 3 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:154887", + "title_zh": "我的解放日记", + "title_en": "나의 해방일지", + "translation_source": "tmdb", + "reputation_score": 7.9, + "reputation_votes": 86, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"154887\"}" + }, + "display_title": "我的解放日记 나의 해방일지" + }, + { + "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", + "filename": "나의 해방일지.My.Liberation.Notes.S01E12.1080p.NF.WEB-DL.DDP2.0.x264-REVOLT.mkv", + "category": "series", + "title": "나의 해방일지 My Liberation Notes", + "season": 1, + "episodes": [ + 12 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:154887", + "title_zh": "我的解放日记", + "title_en": "나의 해방일지", + "translation_source": "tmdb", + "reputation_score": 7.9, + "reputation_votes": 86, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"154887\"}" + }, + "display_title": "我的解放日记 나의 해방일지" + }, + { + "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", + "filename": "나의 해방일지.My.Liberation.Notes.S01E05.1080p.NF.WEB-DL.DDP2.0.x264-REVOLT.mkv", + "category": "series", + "title": "나의 해방일지 My Liberation Notes", + "season": 1, + "episodes": [ + 5 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:154887", + "title_zh": "我的解放日记", + "title_en": "나의 해방일지", + "translation_source": "tmdb", + "reputation_score": 7.9, + "reputation_votes": 86, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"154887\"}" + }, + "display_title": "我的解放日记 나의 해방일지" + }, + { + "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", + "filename": "나의 해방일지.My.Liberation.Notes.S01E14.1080p.NF.WEB-DL.DDP2.0.x264-REVOLT.mkv", + "category": "series", + "title": "나의 해방일지 My Liberation Notes", + "season": 1, + "episodes": [ + 14 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:154887", + "title_zh": "我的解放日记", + "title_en": "나의 해방일지", + "translation_source": "tmdb", + "reputation_score": 7.9, + "reputation_votes": 86, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"154887\"}" + }, + "display_title": "我的解放日记 나의 해방일지" + }, + { + "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", + "filename": "나의 해방일지.My.Liberation.Notes.S01E08.1080p.NF.WEB-DL.DDP2.0.x264-REVOLT.mkv", + "category": "series", + "title": "나의 해방일지 My Liberation Notes", + "season": 1, + "episodes": [ + 8 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:154887", + "title_zh": "我的解放日记", + "title_en": "나의 해방일지", + "translation_source": "tmdb", + "reputation_score": 7.9, + "reputation_votes": 86, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"154887\"}" + }, + "display_title": "我的解放日记 나의 해방일지" + }, + { + "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", + "filename": "나의 해방일지.My.Liberation.Notes.S01E01.1080p.NF.WEB-DL.DDP2.0.x264-REVOLT.mkv", + "category": "series", + "title": "나의 해방일지 My Liberation Notes", + "season": 1, + "episodes": [ + 1 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:154887", + "title_zh": "我的解放日记", + "title_en": "나의 해방일지", + "translation_source": "tmdb", + "reputation_score": 7.9, + "reputation_votes": 86, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"154887\"}" + }, + "display_title": "我的解放日记 나의 해방일지" + }, + { + "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", + "filename": "나의 해방일지.My.Liberation.Notes.S01E10.1080p.NF.WEB-DL.DDP2.0.x264-REVOLT.mkv", + "category": "series", + "title": "나의 해방일지 My Liberation Notes", + "season": 1, + "episodes": [ + 10 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:154887", + "title_zh": "我的解放日记", + "title_en": "나의 해방일지", + "translation_source": "tmdb", + "reputation_score": 7.9, + "reputation_votes": 86, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"154887\"}" + }, + "display_title": "我的解放日记 나의 해방일지" + }, + { + "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", + "filename": "나의 해방일지.My.Liberation.Notes.S01E11.1080p.NF.WEB-DL.DDP2.0.x264-REVOLT.mkv", + "category": "series", + "title": "나의 해방일지 My Liberation Notes", + "season": 1, + "episodes": [ + 11 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:154887", + "title_zh": "我的解放日记", + "title_en": "나의 해방일지", + "translation_source": "tmdb", + "reputation_score": 7.9, + "reputation_votes": 86, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"154887\"}" + }, + "display_title": "我的解放日记 나의 해방일지" + }, + { + "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", + "filename": "나의 해방일지.My.Liberation.Notes.S01E09.1080p.NF.WEB-DL.DDP2.0.x264-REVOLT.mkv", + "category": "series", + "title": "나의 해방일지 My Liberation Notes", + "season": 1, + "episodes": [ + 9 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:154887", + "title_zh": "我的解放日记", + "title_en": "나의 해방일지", + "translation_source": "tmdb", + "reputation_score": 7.9, + "reputation_votes": 86, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"154887\"}" + }, + "display_title": "我的解放日记 나의 해방일지" + }, + { + "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", + "filename": "나의 해방일지.My.Liberation.Notes.S01E15.1080p.NF.WEB-DL.DDP2.0.x264-REVOLT.mkv", + "category": "series", + "title": "나의 해방일지 My Liberation Notes", + "season": 1, + "episodes": [ + 15 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:154887", + "title_zh": "我的解放日记", + "title_en": "나의 해방일지", + "translation_source": "tmdb", + "reputation_score": 7.9, + "reputation_votes": 86, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"154887\"}" + }, + "display_title": "我的解放日记 나의 해방일지" + }, + { + "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", + "filename": "나의 해방일지.My.Liberation.Notes.S01E04.1080p.NF.WEB-DL.DDP2.0.x264-REVOLT.mkv", + "category": "series", + "title": "나의 해방일지 My Liberation Notes", + "season": 1, + "episodes": [ + 4 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:154887", + "title_zh": "我的解放日记", + "title_en": "나의 해방일지", + "translation_source": "tmdb", + "reputation_score": 7.9, + "reputation_votes": 86, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"154887\"}" + }, + "display_title": "我的解放日记 나의 해방일지" + }, + { + "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", + "filename": "黑白厨师.料理阶级战争.Culinary.Class.Wars.S01E06.2024.1080p.NF.WEB-DL.DDP5.1.x264-GrassTV.mkv", + "category": "series", + "title": "黑白厨师 料理阶级战争 Culinary Class Wars", + "season": 1, + "episodes": [ + 6 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:245684", + "title_zh": "黑白大厨:料理阶级大战", + "title_en": "흑백요리사: 요리 계급 전쟁", + "translation_source": "tmdb", + "reputation_score": 8.5, + "reputation_votes": 61, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"245684\"}" + }, + "display_title": "黑白大厨:料理阶级大战 흑백요리사: 요리 계급 전쟁" + }, + { + "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", + "filename": "黑白厨师.料理阶级战争.Culinary.Class.Wars.S01E02.2024.1080p.NF.WEB-DL.DDP5.1.x264-GrassTV.mkv", + "category": "series", + "title": "黑白厨师 料理阶级战争 Culinary Class Wars", + "season": 1, + "episodes": [ + 2 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:245684", + "title_zh": "黑白大厨:料理阶级大战", + "title_en": "흑백요리사: 요리 계급 전쟁", + "translation_source": "tmdb", + "reputation_score": 8.5, + "reputation_votes": 61, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"245684\"}" + }, + "display_title": "黑白大厨:料理阶级大战 흑백요리사: 요리 계급 전쟁" + }, + { + "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", + "filename": "黑白厨师.料理阶级战争.Culinary.Class.Wars.S01E11.2024.1080p.NF.WEB-DL.DDP5.1.x264-GrassTV.mkv", + "category": "series", + "title": "黑白厨师 料理阶级战争 Culinary Class Wars", + "season": 1, + "episodes": [ + 11 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:245684", + "title_zh": "黑白大厨:料理阶级大战", + "title_en": "흑백요리사: 요리 계급 전쟁", + "translation_source": "tmdb", + "reputation_score": 8.5, + "reputation_votes": 61, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"245684\"}" + }, + "display_title": "黑白大厨:料理阶级大战 흑백요리사: 요리 계급 전쟁" + }, + { + "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", + "filename": "黑白厨师.料理阶级战争.Culinary.Class.Wars.S01E10.2024.1080p.NF.WEB-DL.DDP5.1.x264-GrassTV.mkv", + "category": "series", + "title": "黑白厨师 料理阶级战争 Culinary Class Wars", + "season": 1, + "episodes": [ + 10 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:245684", + "title_zh": "黑白大厨:料理阶级大战", + "title_en": "흑백요리사: 요리 계급 전쟁", + "translation_source": "tmdb", + "reputation_score": 8.5, + "reputation_votes": 61, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"245684\"}" + }, + "display_title": "黑白大厨:料理阶级大战 흑백요리사: 요리 계급 전쟁" + }, + { + "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", + "filename": "黑白厨师.料理阶级战争.Culinary.Class.Wars.S01E07.2024.1080p.NF.WEB-DL.DDP5.1.x264-GrassTV.mkv", + "category": "series", + "title": "黑白厨师 料理阶级战争 Culinary Class Wars", + "season": 1, + "episodes": [ + 7 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:245684", + "title_zh": "黑白大厨:料理阶级大战", + "title_en": "흑백요리사: 요리 계급 전쟁", + "translation_source": "tmdb", + "reputation_score": 8.5, + "reputation_votes": 61, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"245684\"}" + }, + "display_title": "黑白大厨:料理阶级大战 흑백요리사: 요리 계급 전쟁" + }, + { + "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", + "filename": "黑白厨师.料理阶级战争.Culinary.Class.Wars.S01E03.2024.1080p.NF.WEB-DL.DDP5.1.x264-GrassTV.mkv", + "category": "series", + "title": "黑白厨师 料理阶级战争 Culinary Class Wars", + "season": 1, + "episodes": [ + 3 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:245684", + "title_zh": "黑白大厨:料理阶级大战", + "title_en": "흑백요리사: 요리 계급 전쟁", + "translation_source": "tmdb", + "reputation_score": 8.5, + "reputation_votes": 61, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"245684\"}" + }, + "display_title": "黑白大厨:料理阶级大战 흑백요리사: 요리 계급 전쟁" + }, + { + "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", + "filename": "黑白厨师.料理阶级战争.Culinary.Class.Wars.S01E09.2024.1080p.NF.WEB-DL.DDP5.1.x264-GrassTV.mkv", + "category": "series", + "title": "黑白厨师 料理阶级战争 Culinary Class Wars", + "season": 1, + "episodes": [ + 9 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:245684", + "title_zh": "黑白大厨:料理阶级大战", + "title_en": "흑백요리사: 요리 계급 전쟁", + "translation_source": "tmdb", + "reputation_score": 8.5, + "reputation_votes": 61, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"245684\"}" + }, + "display_title": "黑白大厨:料理阶级大战 흑백요리사: 요리 계급 전쟁" + }, + { + "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", + "filename": "黑白厨师.料理阶级战争.Culinary.Class.Wars.S01E12.2024.1080p.NF.WEB-DL.DDP5.1.x264-GrassTV.mkv", + "category": "series", + "title": "黑白厨师 料理阶级战争 Culinary Class Wars", + "season": 1, + "episodes": [ + 12 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:245684", + "title_zh": "黑白大厨:料理阶级大战", + "title_en": "흑백요리사: 요리 계급 전쟁", + "translation_source": "tmdb", + "reputation_score": 8.5, + "reputation_votes": 61, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"245684\"}" + }, + "display_title": "黑白大厨:料理阶级大战 흑백요리사: 요리 계급 전쟁" + }, + { + "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", + "filename": "黑白厨师.料理阶级战争.Culinary.Class.Wars.S01E05.2024.1080p.NF.WEB-DL.DDP5.1.x264-GrassTV.mkv", + "category": "series", + "title": "黑白厨师 料理阶级战争 Culinary Class Wars", + "season": 1, + "episodes": [ + 5 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:245684", + "title_zh": "黑白大厨:料理阶级大战", + "title_en": "흑백요리사: 요리 계급 전쟁", + "translation_source": "tmdb", + "reputation_score": 8.5, + "reputation_votes": 61, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"245684\"}" + }, + "display_title": "黑白大厨:料理阶级大战 흑백요리사: 요리 계급 전쟁" + }, + { + "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", + "filename": "黑白厨师.料理阶级战争.Culinary.Class.Wars.S01E01.2024.1080p.NF.WEB-DL.DDP5.1.x264-GrassTV.mkv", + "category": "series", + "title": "黑白厨师 料理阶级战争 Culinary Class Wars", + "season": 1, + "episodes": [ + 1 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:245684", + "title_zh": "黑白大厨:料理阶级大战", + "title_en": "흑백요리사: 요리 계급 전쟁", + "translation_source": "tmdb", + "reputation_score": 8.5, + "reputation_votes": 61, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"245684\"}" + }, + "display_title": "黑白大厨:料理阶级大战 흑백요리사: 요리 계급 전쟁" + }, + { + "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", + "filename": "黑白厨师.料理阶级战争.Culinary.Class.Wars.S01E04.2024.1080p.NF.WEB-DL.DDP5.1.x264-GrassTV.mkv", + "category": "series", + "title": "黑白厨师 料理阶级战争 Culinary Class Wars", + "season": 1, + "episodes": [ + 4 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:245684", + "title_zh": "黑白大厨:料理阶级大战", + "title_en": "흑백요리사: 요리 계급 전쟁", + "translation_source": "tmdb", + "reputation_score": 8.5, + "reputation_votes": 61, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"245684\"}" + }, + "display_title": "黑白大厨:料理阶级大战 흑백요리사: 요리 계급 전쟁" + }, + { + "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", + "filename": "黑白厨师.料理阶级战争.Culinary.Class.Wars.S01E08.2024.1080p.NF.WEB-DL.DDP5.1.x264-GrassTV.mkv", + "category": "series", + "title": "黑白厨师 料理阶级战争 Culinary Class Wars", + "season": 1, + "episodes": [ + 8 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:245684", + "title_zh": "黑白大厨:料理阶级大战", + "title_en": "흑백요리사: 요리 계급 전쟁", + "translation_source": "tmdb", + "reputation_score": 8.5, + "reputation_votes": 61, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"245684\"}" + }, + "display_title": "黑白大厨:料理阶级大战 흑백요리사: 요리 계급 전쟁" + }, + { + "path": "/mnt/Downloads/series/战争与和平.全6集.2016.1080p.中英字幕£CMCT风潇潇/[战争与和平].War.And.Peace.EP04.2016.BluRay.1080p.x264.DTS-CMCT.mkv", + "filename": "[战争与和平].War.And.Peace.EP04.2016.BluRay.1080p.x264.DTS-CMCT.mkv", + "category": "series", + "title": "War And Peace Ep04 2016 -Cmct", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "War And Peace Ep04 2016 -Cmct" + }, + { + "path": "/mnt/Downloads/series/战争与和平.全6集.2016.1080p.中英字幕£CMCT风潇潇/[战争与和平].War.And.Peace.EP05.2016.BluRay.1080p.x264.DTS-CMCT.mkv", + "filename": "[战争与和平].War.And.Peace.EP05.2016.BluRay.1080p.x264.DTS-CMCT.mkv", + "category": "series", + "title": "War And Peace Ep05 2016 -Cmct", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "War And Peace Ep05 2016 -Cmct" + }, + { + "path": "/mnt/Downloads/series/战争与和平.全6集.2016.1080p.中英字幕£CMCT风潇潇/[战争与和平].War.And.Peace.EP01.2016.BluRay.1080p.x264.DTS-CMCT.mkv", + "filename": "[战争与和平].War.And.Peace.EP01.2016.BluRay.1080p.x264.DTS-CMCT.mkv", + "category": "series", + "title": "War And Peace Ep01 2016 -Cmct", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "War And Peace Ep01 2016 -Cmct" + }, + { + "path": "/mnt/Downloads/series/战争与和平.全6集.2016.1080p.中英字幕£CMCT风潇潇/[战争与和平].War.And.Peace.EP03.2016.BluRay.1080p.x264.DTS-CMCT.mkv", + "filename": "[战争与和平].War.And.Peace.EP03.2016.BluRay.1080p.x264.DTS-CMCT.mkv", + "category": "series", + "title": "War And Peace Ep03 2016 -Cmct", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "War And Peace Ep03 2016 -Cmct" + }, + { + "path": "/mnt/Downloads/series/战争与和平.全6集.2016.1080p.中英字幕£CMCT风潇潇/[战争与和平].War.And.Peace.EP02.2016.BluRay.1080p.x264.DTS-CMCT.mkv", + "filename": "[战争与和平].War.And.Peace.EP02.2016.BluRay.1080p.x264.DTS-CMCT.mkv", + "category": "series", + "title": "War And Peace Ep02 2016 -Cmct", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "War And Peace Ep02 2016 -Cmct" + }, + { + "path": "/mnt/Downloads/series/战争与和平.全6集.2016.1080p.中英字幕£CMCT风潇潇/[战争与和平].War.And.Peace.EP06.2016.BluRay.1080p.x264.DTS-CMCT.mkv", + "filename": "[战争与和平].War.And.Peace.EP06.2016.BluRay.1080p.x264.DTS-CMCT.mkv", + "category": "series", + "title": "War And Peace Ep06 2016 -Cmct", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "War And Peace Ep06 2016 -Cmct" + }, + { + "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", + "filename": "A.Murder.at.the.End.of.the.World.S01E01.Homme.Fatal.1080p.DSNP.WEB-DL.DDP5.1.H.264-FLUX.mkv", + "category": "series", + "title": "A Murder At The End Of The World", + "season": 1, + "episodes": [ + 1 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:134095", + "title_zh": "世界尽头的一场谋杀", + "title_en": "A Murder at the End of the World", + "translation_source": "tmdb", + "reputation_score": 6.934, + "reputation_votes": 258, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"134095\"}" + }, + "display_title": "世界尽头的一场谋杀 A Murder at the End of the World" + }, + { + "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", + "filename": "1899.S01E03.The.Fog.1080p.NF.WEB-DL.DDP5.1.Atmos.H.264-SMURF.mkv", + "category": "series", + "title": "1899", + "season": 1, + "episodes": [ + 3 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:90669", + "title_zh": "1899", + "title_en": "1899", + "translation_source": "tmdb", + "reputation_score": 7.49, + "reputation_votes": 1446, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"90669\"}" + }, + "display_title": "1899" + }, + { + "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", + "filename": "1899.S01E05.The.Calling.1080p.NF.WEB-DL.DDP5.1.Atmos.H.264-SMURF.mkv", + "category": "series", + "title": "1899", + "season": 1, + "episodes": [ + 5 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:90669", + "title_zh": "1899", + "title_en": "1899", + "translation_source": "tmdb", + "reputation_score": 7.49, + "reputation_votes": 1446, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"90669\"}" + }, + "display_title": "1899" + }, + { + "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", + "filename": "1899.S01E08.The.Key.1080p.NF.WEB-DL.DDP5.1.Atmos.H.264-SMURF.mkv", + "category": "series", + "title": "1899", + "season": 1, + "episodes": [ + 8 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:90669", + "title_zh": "1899", + "title_en": "1899", + "translation_source": "tmdb", + "reputation_score": 7.49, + "reputation_votes": 1446, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"90669\"}" + }, + "display_title": "1899" + }, + { + "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", + "filename": "1899.S01E07.The.Storm.1080p.NF.WEB-DL.DDP5.1.Atmos.H.264-SMURF.mkv", + "category": "series", + "title": "1899", + "season": 1, + "episodes": [ + 7 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:90669", + "title_zh": "1899", + "title_en": "1899", + "translation_source": "tmdb", + "reputation_score": 7.49, + "reputation_votes": 1446, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"90669\"}" + }, + "display_title": "1899" + }, + { + "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", + "filename": "1899.S01E02.The.Boy.1080p.NF.WEB-DL.DDP5.1.Atmos.H.264-SMURF.mkv", + "category": "series", + "title": "1899", + "season": 1, + "episodes": [ + 2 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:90669", + "title_zh": "1899", + "title_en": "1899", + "translation_source": "tmdb", + "reputation_score": 7.49, + "reputation_votes": 1446, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"90669\"}" + }, + "display_title": "1899" + }, + { + "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", + "filename": "1899.S01E06.The.Pyramid.1080p.NF.WEB-DL.DDP5.1.Atmos.H.264-SMURF.mkv", + "category": "series", + "title": "1899", + "season": 1, + "episodes": [ + 6 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:90669", + "title_zh": "1899", + "title_en": "1899", + "translation_source": "tmdb", + "reputation_score": 7.49, + "reputation_votes": 1446, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"90669\"}" + }, + "display_title": "1899" + }, + { + "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", + "filename": "1899.S01E01.The.Ship.1080p.NF.WEB-DL.DDP5.1.Atmos.H.264-SMURF.mkv", + "category": "series", + "title": "1899", + "season": 1, + "episodes": [ + 1 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:90669", + "title_zh": "1899", + "title_en": "1899", + "translation_source": "tmdb", + "reputation_score": 7.49, + "reputation_votes": 1446, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"90669\"}" + }, + "display_title": "1899" + }, + { + "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", + "filename": "1899.S01E04.The.Fight.1080p.NF.WEB-DL.DDP5.1.Atmos.H.264-SMURF.mkv", + "category": "series", + "title": "1899", + "season": 1, + "episodes": [ + 4 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:90669", + "title_zh": "1899", + "title_en": "1899", + "translation_source": "tmdb", + "reputation_score": 7.49, + "reputation_votes": 1446, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"90669\"}" + }, + "display_title": "1899" + }, + { + "path": "/mnt/Downloads/series/Believe-君にかける橋- 第3話 今夜決行!191秒の脱獄計画! 1080p TVer WEB-DL H264 AAC-Solitude@DoA.mkv", + "filename": "Believe-君にかける橋- 第3話 今夜決行!191秒の脱獄計画! 1080p TVer WEB-DL H264 AAC-Solitude@DoA.mkv", + "category": "series", + "title": "Believe-君にかける橋- 第3話 今夜決行!191秒の脱獄計画! Tver -Solitude@Doa", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Believe-君にかける橋- 第3話 今夜決行!191秒の脱獄計画! Tver -Solitude@Doa" + }, + { + "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", + "filename": "Somebody.S01E06.2022.Netflix.WEB-DL.1080p.HEVC.DV.DDP-HDCTV.mp4", + "category": "series", + "title": "Somebody", + "season": 1, + "episodes": [ + 6 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:292179", + "title_zh": "#Somebody's Son", + "title_en": "#Somebody's Son", + "translation_source": "tmdb", + "reputation_score": 0.0, + "reputation_votes": 1, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"292179\"}" + }, + "display_title": "#Somebody's Son" + }, + { + "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", + "filename": "Somebody.S01E01.2022.Netflix.WEB-DL.1080p.HEVC.DV.DDP-HDCTV.mp4", + "category": "series", + "title": "Somebody", + "season": 1, + "episodes": [ + 1 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:292179", + "title_zh": "#Somebody's Son", + "title_en": "#Somebody's Son", + "translation_source": "tmdb", + "reputation_score": 0.0, + "reputation_votes": 1, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"292179\"}" + }, + "display_title": "#Somebody's Son" + }, + { + "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", + "filename": "Somebody.S01E07.2022.Netflix.WEB-DL.1080p.HEVC.DV.DDP-HDCTV.mp4", + "category": "series", + "title": "Somebody", + "season": 1, + "episodes": [ + 7 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:292179", + "title_zh": "#Somebody's Son", + "title_en": "#Somebody's Son", + "translation_source": "tmdb", + "reputation_score": 0.0, + "reputation_votes": 1, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"292179\"}" + }, + "display_title": "#Somebody's Son" + }, + { + "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", + "filename": "Somebody.S01E02.2022.Netflix.WEB-DL.1080p.HEVC.DV.DDP-HDCTV.mp4", + "category": "series", + "title": "Somebody", + "season": 1, + "episodes": [ + 2 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:292179", + "title_zh": "#Somebody's Son", + "title_en": "#Somebody's Son", + "translation_source": "tmdb", + "reputation_score": 0.0, + "reputation_votes": 1, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"292179\"}" + }, + "display_title": "#Somebody's Son" + }, + { + "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", + "filename": "Somebody.S01E04.2022.Netflix.WEB-DL.1080p.HEVC.DV.DDP-HDCTV.mp4", + "category": "series", + "title": "Somebody", + "season": 1, + "episodes": [ + 4 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:292179", + "title_zh": "#Somebody's Son", + "title_en": "#Somebody's Son", + "translation_source": "tmdb", + "reputation_score": 0.0, + "reputation_votes": 1, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"292179\"}" + }, + "display_title": "#Somebody's Son" + }, + { + "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", + "filename": "Somebody.S01E03.2022.Netflix.WEB-DL.1080p.HEVC.DV.DDP-HDCTV.mp4", + "category": "series", + "title": "Somebody", + "season": 1, + "episodes": [ + 3 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:292179", + "title_zh": "#Somebody's Son", + "title_en": "#Somebody's Son", + "translation_source": "tmdb", + "reputation_score": 0.0, + "reputation_votes": 1, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"292179\"}" + }, + "display_title": "#Somebody's Son" + }, + { + "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", + "filename": "Somebody.S01E08.2022.Netflix.WEB-DL.1080p.HEVC.DV.DDP-HDCTV.mp4", + "category": "series", + "title": "Somebody", + "season": 1, + "episodes": [ + 8 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:292179", + "title_zh": "#Somebody's Son", + "title_en": "#Somebody's Son", + "translation_source": "tmdb", + "reputation_score": 0.0, + "reputation_votes": 1, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"292179\"}" + }, + "display_title": "#Somebody's Son" + }, + { + "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", + "filename": "Somebody.S01E05.2022.Netflix.WEB-DL.1080p.HEVC.DV.DDP-HDCTV.mp4", + "category": "series", + "title": "Somebody", + "season": 1, + "episodes": [ + 5 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:292179", + "title_zh": "#Somebody's Son", + "title_en": "#Somebody's Son", + "translation_source": "tmdb", + "reputation_score": 0.0, + "reputation_votes": 1, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"292179\"}" + }, + "display_title": "#Somebody's Son" + }, + { + "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", + "filename": "Murder.Mindfully.S01E07.2024.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-ADWeb.mkv", + "category": "series", + "title": "Murder Mindfully", + "season": 1, + "episodes": [ + 7 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:252372", + "title_zh": "正念谋杀", + "title_en": "Achtsam Morden", + "translation_source": "tmdb", + "reputation_score": 7.61, + "reputation_votes": 145, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"252372\"}" + }, + "display_title": "正念谋杀 Achtsam Morden" + }, + { + "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", + "filename": "Murder.Mindfully.S01E03.2024.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-ADWeb.mkv", + "category": "series", + "title": "Murder Mindfully", + "season": 1, + "episodes": [ + 3 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:252372", + "title_zh": "正念谋杀", + "title_en": "Achtsam Morden", + "translation_source": "tmdb", + "reputation_score": 7.61, + "reputation_votes": 145, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"252372\"}" + }, + "display_title": "正念谋杀 Achtsam Morden" + }, + { + "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", + "filename": "Murder.Mindfully.S01E08.2024.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-ADWeb.mkv", + "category": "series", + "title": "Murder Mindfully", + "season": 1, + "episodes": [ + 8 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:252372", + "title_zh": "正念谋杀", + "title_en": "Achtsam Morden", + "translation_source": "tmdb", + "reputation_score": 7.61, + "reputation_votes": 145, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"252372\"}" + }, + "display_title": "正念谋杀 Achtsam Morden" + }, + { + "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", + "filename": "Murder.Mindfully.S01E04.2024.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-ADWeb.mkv", + "category": "series", + "title": "Murder Mindfully", + "season": 1, + "episodes": [ + 4 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:252372", + "title_zh": "正念谋杀", + "title_en": "Achtsam Morden", + "translation_source": "tmdb", + "reputation_score": 7.61, + "reputation_votes": 145, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"252372\"}" + }, + "display_title": "正念谋杀 Achtsam Morden" + }, + { + "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", + "filename": "Murder.Mindfully.S01E02.2024.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-ADWeb.mkv", + "category": "series", + "title": "Murder Mindfully", + "season": 1, + "episodes": [ + 2 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:252372", + "title_zh": "正念谋杀", + "title_en": "Achtsam Morden", + "translation_source": "tmdb", + "reputation_score": 7.61, + "reputation_votes": 145, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"252372\"}" + }, + "display_title": "正念谋杀 Achtsam Morden" + }, + { + "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", + "filename": "Murder.Mindfully.S01E06.2024.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-ADWeb.mkv", + "category": "series", + "title": "Murder Mindfully", + "season": 1, + "episodes": [ + 6 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:252372", + "title_zh": "正念谋杀", + "title_en": "Achtsam Morden", + "translation_source": "tmdb", + "reputation_score": 7.61, + "reputation_votes": 145, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"252372\"}" + }, + "display_title": "正念谋杀 Achtsam Morden" + }, + { + "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", + "filename": "Murder.Mindfully.S01E01.2024.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-ADWeb.mkv", + "category": "series", + "title": "Murder Mindfully", + "season": 1, + "episodes": [ + 1 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:252372", + "title_zh": "正念谋杀", + "title_en": "Achtsam Morden", + "translation_source": "tmdb", + "reputation_score": 7.61, + "reputation_votes": 145, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"252372\"}" + }, + "display_title": "正念谋杀 Achtsam Morden" + }, + { + "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", + "filename": "Murder.Mindfully.S01E05.2024.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-ADWeb.mkv", + "category": "series", + "title": "Murder Mindfully", + "season": 1, + "episodes": [ + 5 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:252372", + "title_zh": "正念谋杀", + "title_en": "Achtsam Morden", + "translation_source": "tmdb", + "reputation_score": 7.61, + "reputation_votes": 145, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"252372\"}" + }, + "display_title": "正念谋杀 Achtsam Morden" + }, + { + "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", + "filename": "Mr.&.Mrs.Smith.S01E08.A.Breakup.1080p.AMZN.WEB-DL.DDP.5.1.H.264-CHDWEB.mkv", + "category": "series", + "title": "Mr & Mrs Smith", + "season": 1, + "episodes": [ + 8 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:118642", + "title_zh": "史密斯夫妇", + "title_en": "Mr. & Mrs. Smith", + "translation_source": "tmdb", + "reputation_score": 6.514, + "reputation_votes": 369, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"118642\"}" + }, + "display_title": "史密斯夫妇 Mr. & Mrs. Smith" + }, + { + "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", + "filename": "Mr.&.Mrs.Smith.S01E06.Couples.Therapy.Naked.&.Afraid.1080p.AMZN.WEB-DL.DDP.5.1.H.264-CHDWEB.mkv", + "category": "series", + "title": "Mr & Mrs Smith", + "season": 1, + "episodes": [ + 6 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:118642", + "title_zh": "史密斯夫妇", + "title_en": "Mr. & Mrs. Smith", + "translation_source": "tmdb", + "reputation_score": 6.514, + "reputation_votes": 369, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"118642\"}" + }, + "display_title": "史密斯夫妇 Mr. & Mrs. Smith" + }, + { + "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", + "filename": "Mr.&.Mrs.Smith.S01E01.First.Date.1080p.AMZN.WEB-DL.DDP.5.1.H.264-CHDWEB.mkv", + "category": "series", + "title": "Mr & Mrs Smith", + "season": 1, + "episodes": [ + 1 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:118642", + "title_zh": "史密斯夫妇", + "title_en": "Mr. & Mrs. Smith", + "translation_source": "tmdb", + "reputation_score": 6.514, + "reputation_votes": 369, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"118642\"}" + }, + "display_title": "史密斯夫妇 Mr. & Mrs. Smith" + }, + { + "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", + "filename": "Mr.&.Mrs.Smith.S01E07.Infidelity.1080p.AMZN.WEB-DL.DDP.5.1.H.264-CHDWEB.mkv", + "category": "series", + "title": "Mr & Mrs Smith", + "season": 1, + "episodes": [ + 7 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:118642", + "title_zh": "史密斯夫妇", + "title_en": "Mr. & Mrs. Smith", + "translation_source": "tmdb", + "reputation_score": 6.514, + "reputation_votes": 369, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"118642\"}" + }, + "display_title": "史密斯夫妇 Mr. & Mrs. Smith" + }, + { + "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", + "filename": "Mr.&.Mrs.Smith.S01E05.Do.You.Want.Kids.1080p.AMZN.WEB-DL.DDP.5.1.H.264-CHDWEB.mkv", + "category": "series", + "title": "Mr & Mrs Smith", + "season": 1, + "episodes": [ + 5 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:118642", + "title_zh": "史密斯夫妇", + "title_en": "Mr. & Mrs. Smith", + "translation_source": "tmdb", + "reputation_score": 6.514, + "reputation_votes": 369, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"118642\"}" + }, + "display_title": "史密斯夫妇 Mr. & Mrs. Smith" + }, + { + "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", + "filename": "Mr.&.Mrs.Smith.S01E03.First.Vacation.1080p.AMZN.WEB-DL.DDP.5.1.H.264-CHDWEB.mkv", + "category": "series", + "title": "Mr & Mrs Smith", + "season": 1, + "episodes": [ + 3 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:118642", + "title_zh": "史密斯夫妇", + "title_en": "Mr. & Mrs. Smith", + "translation_source": "tmdb", + "reputation_score": 6.514, + "reputation_votes": 369, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"118642\"}" + }, + "display_title": "史密斯夫妇 Mr. & Mrs. Smith" + }, + { + "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", + "filename": "Mr.&.Mrs.Smith.S01E04.Double.Date.1080p.AMZN.WEB-DL.DDP.5.1.H.264-CHDWEB.mkv", + "category": "series", + "title": "Mr & Mrs Smith", + "season": 1, + "episodes": [ + 4 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:118642", + "title_zh": "史密斯夫妇", + "title_en": "Mr. & Mrs. Smith", + "translation_source": "tmdb", + "reputation_score": 6.514, + "reputation_votes": 369, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"118642\"}" + }, + "display_title": "史密斯夫妇 Mr. & Mrs. Smith" + }, + { + "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", + "filename": "Mr.&.Mrs.Smith.S01E02.Second.Date.1080p.AMZN.WEB-DL.DDP.5.1.H.264-CHDWEB.mkv", + "category": "series", + "title": "Mr & Mrs Smith", + "season": 1, + "episodes": [ + 2 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:118642", + "title_zh": "史密斯夫妇", + "title_en": "Mr. & Mrs. Smith", + "translation_source": "tmdb", + "reputation_score": 6.514, + "reputation_votes": 369, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"118642\"}" + }, + "display_title": "史密斯夫妇 Mr. & Mrs. Smith" + }, + { + "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", + "filename": "欢迎来到王之国.King.the.Land.S01E14.2023.1080p.NF.WEB-DL.H264.DDP2.0-OurTV.mkv", + "category": "series", + "title": "欢迎来到王之国 King The Land", + "season": 1, + "episodes": [ + 14 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:198004", + "title_zh": "欢迎来到王之国", + "title_en": "킹더랜드", + "translation_source": "tmdb", + "reputation_score": 8.18, + "reputation_votes": 575, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"198004\"}" + }, + "display_title": "欢迎来到王之国 킹더랜드" + }, + { + "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", + "filename": "欢迎来到王之国.King.the.Land.S01E01.2023.1080p.NF.WEB-DL.H264.DDP2.0-OurTV.mkv", + "category": "series", + "title": "欢迎来到王之国 King The Land", + "season": 1, + "episodes": [ + 1 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:198004", + "title_zh": "欢迎来到王之国", + "title_en": "킹더랜드", + "translation_source": "tmdb", + "reputation_score": 8.18, + "reputation_votes": 575, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"198004\"}" + }, + "display_title": "欢迎来到王之国 킹더랜드" + }, + { + "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", + "filename": "欢迎来到王之国.King.the.Land.S01E15.2023.1080p.NF.WEB-DL.H264.DDP2.0-OurTV.mkv", + "category": "series", + "title": "欢迎来到王之国 King The Land", + "season": 1, + "episodes": [ + 15 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:198004", + "title_zh": "欢迎来到王之国", + "title_en": "킹더랜드", + "translation_source": "tmdb", + "reputation_score": 8.18, + "reputation_votes": 575, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"198004\"}" + }, + "display_title": "欢迎来到王之国 킹더랜드" + }, + { + "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", + "filename": "欢迎来到王之国.King.the.Land.S01E02.2023.1080p.NF.WEB-DL.H264.DDP2.0-OurTV.mkv", + "category": "series", + "title": "欢迎来到王之国 King The Land", + "season": 1, + "episodes": [ + 2 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:198004", + "title_zh": "欢迎来到王之国", + "title_en": "킹더랜드", + "translation_source": "tmdb", + "reputation_score": 8.18, + "reputation_votes": 575, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"198004\"}" + }, + "display_title": "欢迎来到王之国 킹더랜드" + }, + { + "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", + "filename": "欢迎来到王之国.King.the.Land.S01E16.2023.1080p.NF.WEB-DL.H264.DDP2.0-OurTV.mkv", + "category": "series", + "title": "欢迎来到王之国 King The Land", + "season": 1, + "episodes": [ + 16 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:198004", + "title_zh": "欢迎来到王之国", + "title_en": "킹더랜드", + "translation_source": "tmdb", + "reputation_score": 8.18, + "reputation_votes": 575, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"198004\"}" + }, + "display_title": "欢迎来到王之国 킹더랜드" + }, + { + "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", + "filename": "欢迎来到王之国.King.the.Land.S01E03.2023.1080p.NF.WEB-DL.H264.DDP2.0-OurTV.mkv", + "category": "series", + "title": "欢迎来到王之国 King The Land", + "season": 1, + "episodes": [ + 3 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:198004", + "title_zh": "欢迎来到王之国", + "title_en": "킹더랜드", + "translation_source": "tmdb", + "reputation_score": 8.18, + "reputation_votes": 575, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"198004\"}" + }, + "display_title": "欢迎来到王之国 킹더랜드" + }, + { + "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", + "filename": "欢迎来到王之国.King.the.Land.S01E04.2023.1080p.NF.WEB-DL.H264.DDP2.0-OurTV.mkv", + "category": "series", + "title": "欢迎来到王之国 King The Land", + "season": 1, + "episodes": [ + 4 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:198004", + "title_zh": "欢迎来到王之国", + "title_en": "킹더랜드", + "translation_source": "tmdb", + "reputation_score": 8.18, + "reputation_votes": 575, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"198004\"}" + }, + "display_title": "欢迎来到王之国 킹더랜드" + }, + { + "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", + "filename": "欢迎来到王之国.King.the.Land.S01E10.2023.1080p.NF.WEB-DL.H264.DDP2.0-OurTV.mkv", + "category": "series", + "title": "欢迎来到王之国 King The Land", + "season": 1, + "episodes": [ + 10 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:198004", + "title_zh": "欢迎来到王之国", + "title_en": "킹더랜드", + "translation_source": "tmdb", + "reputation_score": 8.18, + "reputation_votes": 575, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"198004\"}" + }, + "display_title": "欢迎来到王之国 킹더랜드" + }, + { + "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", + "filename": "欢迎来到王之国.King.the.Land.S01E05.2023.1080p.NF.WEB-DL.H264.DDP2.0-OurTV.mkv", + "category": "series", + "title": "欢迎来到王之国 King The Land", + "season": 1, + "episodes": [ + 5 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:198004", + "title_zh": "欢迎来到王之国", + "title_en": "킹더랜드", + "translation_source": "tmdb", + "reputation_score": 8.18, + "reputation_votes": 575, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"198004\"}" + }, + "display_title": "欢迎来到王之国 킹더랜드" + }, + { + "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", + "filename": "欢迎来到王之国.King.the.Land.S01E11.2023.1080p.NF.WEB-DL.H264.DDP2.0-OurTV.mkv", + "category": "series", + "title": "欢迎来到王之国 King The Land", + "season": 1, + "episodes": [ + 11 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:198004", + "title_zh": "欢迎来到王之国", + "title_en": "킹더랜드", + "translation_source": "tmdb", + "reputation_score": 8.18, + "reputation_votes": 575, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"198004\"}" + }, + "display_title": "欢迎来到王之国 킹더랜드" + }, + { + "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", + "filename": "欢迎来到王之国.King.the.Land.S01E06.2023.1080p.NF.WEB-DL.H264.DDP2.0-OurTV.mkv", + "category": "series", + "title": "欢迎来到王之国 King The Land", + "season": 1, + "episodes": [ + 6 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:198004", + "title_zh": "欢迎来到王之国", + "title_en": "킹더랜드", + "translation_source": "tmdb", + "reputation_score": 8.18, + "reputation_votes": 575, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"198004\"}" + }, + "display_title": "欢迎来到王之国 킹더랜드" + }, + { + "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", + "filename": "欢迎来到王之国.King.the.Land.S01E12.2023.1080p.NF.WEB-DL.H264.DDP2.0-OurTV.mkv", + "category": "series", + "title": "欢迎来到王之国 King The Land", + "season": 1, + "episodes": [ + 12 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:198004", + "title_zh": "欢迎来到王之国", + "title_en": "킹더랜드", + "translation_source": "tmdb", + "reputation_score": 8.18, + "reputation_votes": 575, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"198004\"}" + }, + "display_title": "欢迎来到王之国 킹더랜드" + }, + { + "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", + "filename": "欢迎来到王之国.King.the.Land.S01E07.2023.1080p.NF.WEB-DL.H264.DDP2.0-OurTV.mkv", + "category": "series", + "title": "欢迎来到王之国 King The Land", + "season": 1, + "episodes": [ + 7 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:198004", + "title_zh": "欢迎来到王之国", + "title_en": "킹더랜드", + "translation_source": "tmdb", + "reputation_score": 8.18, + "reputation_votes": 575, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"198004\"}" + }, + "display_title": "欢迎来到王之国 킹더랜드" + }, + { + "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", + "filename": "欢迎来到王之国.King.the.Land.S01E13.2023.1080p.NF.WEB-DL.H264.DDP2.0-OurTV.mkv", + "category": "series", + "title": "欢迎来到王之国 King The Land", + "season": 1, + "episodes": [ + 13 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:198004", + "title_zh": "欢迎来到王之国", + "title_en": "킹더랜드", + "translation_source": "tmdb", + "reputation_score": 8.18, + "reputation_votes": 575, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"198004\"}" + }, + "display_title": "欢迎来到王之国 킹더랜드" + }, + { + "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", + "filename": "欢迎来到王之国.King.the.Land.S01E08.2023.1080p.NF.WEB-DL.H264.DDP2.0-OurTV.mkv", + "category": "series", + "title": "欢迎来到王之国 King The Land", + "season": 1, + "episodes": [ + 8 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:198004", + "title_zh": "欢迎来到王之国", + "title_en": "킹더랜드", + "translation_source": "tmdb", + "reputation_score": 8.18, + "reputation_votes": 575, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"198004\"}" + }, + "display_title": "欢迎来到王之国 킹더랜드" + }, + { + "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", + "filename": "欢迎来到王之国.King.the.Land.S01E09.2023.1080p.NF.WEB-DL.H264.DDP2.0-OurTV.mkv", + "category": "series", + "title": "欢迎来到王之国 King The Land", + "season": 1, + "episodes": [ + 9 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:198004", + "title_zh": "欢迎来到王之国", + "title_en": "킹더랜드", + "translation_source": "tmdb", + "reputation_score": 8.18, + "reputation_votes": 575, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"198004\"}" + }, + "display_title": "欢迎来到王之国 킹더랜드" + }, + { + "path": "/mnt/Downloads/series/Unsere.Muetter.unsere.Vaeter.S01.720p.BluRay.x264-WiKi/Unsere.Muetter.unsere.Vaeter.S01E03.720p.BluRay.x264-WiKi.mkv", + "filename": "Unsere.Muetter.unsere.Vaeter.S01E03.720p.BluRay.x264-WiKi.mkv", + "category": "series", + "title": "Unsere Muetter Unsere Vaeter", + "season": 1, + "episodes": [ + 3 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Unsere Muetter Unsere Vaeter" + }, + { + "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", + "filename": "Unsere.Muetter.unsere.Vaeter.S01E03.720p.BluRay.x264-WiKi.Sample.mkv", + "category": "series", + "title": "Unsere Muetter Unsere Vaeter", + "season": 1, + "episodes": [ + 3 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Unsere Muetter Unsere Vaeter" + }, + { + "path": "/mnt/Downloads/series/Unsere.Muetter.unsere.Vaeter.S01.720p.BluRay.x264-WiKi/Unsere.Muetter.unsere.Vaeter.S01E01.720p.BluRay.x264-WiKi.mkv", + "filename": "Unsere.Muetter.unsere.Vaeter.S01E01.720p.BluRay.x264-WiKi.mkv", + "category": "series", + "title": "Unsere Muetter Unsere Vaeter", + "season": 1, + "episodes": [ + 1 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Unsere Muetter Unsere Vaeter" + }, + { + "path": "/mnt/Downloads/series/Unsere.Muetter.unsere.Vaeter.S01.720p.BluRay.x264-WiKi/Unsere.Muetter.unsere.Vaeter.S01E02.720p.BluRay.x264-WiKi.mkv", + "filename": "Unsere.Muetter.unsere.Vaeter.S01E02.720p.BluRay.x264-WiKi.mkv", + "category": "series", + "title": "Unsere Muetter Unsere Vaeter", + "season": 1, + "episodes": [ + 2 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Unsere Muetter Unsere Vaeter" + }, + { + "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", + "filename": "Loki.S01E03.2021.1080p.WEB-DL.x265.10bit.AC3£cXcY@FRDS.mkv", + "category": "series", + "title": "Loki", + "season": 1, + "episodes": [ + 3 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:84958", + "title_zh": "洛基", + "title_en": "Loki", + "translation_source": "tmdb", + "reputation_score": 8.17, + "reputation_votes": 12212, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"84958\"}" + }, + "display_title": "洛基 Loki" + }, + { + "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", + "filename": "Loki.S01E04.2021.1080p.WEB-DL.x265.10bit.AC3£cXcY@FRDS.mkv", + "category": "series", + "title": "Loki", + "season": 1, + "episodes": [ + 4 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:84958", + "title_zh": "洛基", + "title_en": "Loki", + "translation_source": "tmdb", + "reputation_score": 8.17, + "reputation_votes": 12212, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"84958\"}" + }, + "display_title": "洛基 Loki" + }, + { + "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", + "filename": "Loki.S01E02.2021.1080p.WEB-DL.x265.10bit.AC3£cXcY@FRDS.mkv", + "category": "series", + "title": "Loki", + "season": 1, + "episodes": [ + 2 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:84958", + "title_zh": "洛基", + "title_en": "Loki", + "translation_source": "tmdb", + "reputation_score": 8.17, + "reputation_votes": 12212, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"84958\"}" + }, + "display_title": "洛基 Loki" + }, + { + "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", + "filename": "Loki.S01E06.2021.1080p.WEB-DL.x265.10bit.AC3£cXcY@FRDS.mkv", + "category": "series", + "title": "Loki", + "season": 1, + "episodes": [ + 6 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:84958", + "title_zh": "洛基", + "title_en": "Loki", + "translation_source": "tmdb", + "reputation_score": 8.17, + "reputation_votes": 12212, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"84958\"}" + }, + "display_title": "洛基 Loki" + }, + { + "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", + "filename": "Loki.S01E01.2021.1080p.WEB-DL.x265.10bit.AC3£cXcY@FRDS.mkv", + "category": "series", + "title": "Loki", + "season": 1, + "episodes": [ + 1 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:84958", + "title_zh": "洛基", + "title_en": "Loki", + "translation_source": "tmdb", + "reputation_score": 8.17, + "reputation_votes": 12212, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"84958\"}" + }, + "display_title": "洛基 Loki" + }, + { + "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", + "filename": "Loki.S01E05.2021.1080p.WEB-DL.x265.10bit.AC3£cXcY@FRDS.mkv", + "category": "series", + "title": "Loki", + "season": 1, + "episodes": [ + 5 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:84958", + "title_zh": "洛基", + "title_en": "Loki", + "translation_source": "tmdb", + "reputation_score": 8.17, + "reputation_votes": 12212, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"84958\"}" + }, + "display_title": "洛基 Loki" + }, + { + "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", + "filename": "终极名单.The.Terminal.List.2022.S01E06.1080p.Amazon.WEB-DL.H264.DDP5.1-OurTV.mkv", + "category": "series", + "title": "终极名单 The Terminal List 2022", + "season": 1, + "episodes": [ + 6 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "终极名单 The Terminal List 2022" + }, + { + "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", + "filename": "终极名单.The.Terminal.List.2022.S01E01.1080p.Amazon.WEB-DL.H264.DDP5.1-OurTV.mkv", + "category": "series", + "title": "终极名单 The Terminal List 2022", + "season": 1, + "episodes": [ + 1 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "终极名单 The Terminal List 2022" + }, + { + "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", + "filename": "终极名单.The.Terminal.List.2022.S01E07.1080p.Amazon.WEB-DL.H264.DDP5.1-OurTV.mkv", + "category": "series", + "title": "终极名单 The Terminal List 2022", + "season": 1, + "episodes": [ + 7 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "终极名单 The Terminal List 2022" + }, + { + "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", + "filename": "终极名单.The.Terminal.List.2022.S01E08.1080p.Amazon.WEB-DL.H264.DDP5.1-OurTV.mkv", + "category": "series", + "title": "终极名单 The Terminal List 2022", + "season": 1, + "episodes": [ + 8 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "终极名单 The Terminal List 2022" + }, + { + "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", + "filename": "终极名单.The.Terminal.List.2022.S01E03.1080p.Amazon.WEB-DL.H264.DDP5.1-OurTV.mkv", + "category": "series", + "title": "终极名单 The Terminal List 2022", + "season": 1, + "episodes": [ + 3 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "终极名单 The Terminal List 2022" + }, + { + "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", + "filename": "终极名单.The.Terminal.List.2022.S01E04.1080p.Amazon.WEB-DL.H264.DDP5.1-OurTV.mkv", + "category": "series", + "title": "终极名单 The Terminal List 2022", + "season": 1, + "episodes": [ + 4 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "终极名单 The Terminal List 2022" + }, + { + "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", + "filename": "终极名单.The.Terminal.List.2022.S01E02.1080p.Amazon.WEB-DL.H264.DDP5.1-OurTV.mkv", + "category": "series", + "title": "终极名单 The Terminal List 2022", + "season": 1, + "episodes": [ + 2 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "终极名单 The Terminal List 2022" + }, + { + "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", + "filename": "终极名单.The.Terminal.List.2022.S01E05.1080p.Amazon.WEB-DL.H264.DDP5.1-OurTV.mkv", + "category": "series", + "title": "终极名单 The Terminal List 2022", + "season": 1, + "episodes": [ + 5 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "终极名单 The Terminal List 2022" + }, + { + "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", + "filename": "Brush.Up.Life.S01E10.1080p.KKTV.WEB-DL.x264.AAC-PTerWEB.mkv", + "category": "series", + "title": "Brush Up Life", + "season": 1, + "episodes": [ + 10 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:215197", + "title_zh": "重启人生", + "title_en": "ブラッシュアップライフ", + "translation_source": "tmdb", + "reputation_score": 8.8, + "reputation_votes": 70, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"215197\"}" + }, + "display_title": "重启人生 ブラッシュアップライフ" + }, + { + "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", + "filename": "Brush.Up.Life.S01E01.1080p.KKTV.WEB-DL.x264.AAC-PTerWEB.mkv", + "category": "series", + "title": "Brush Up Life", + "season": 1, + "episodes": [ + 1 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:215197", + "title_zh": "重启人生", + "title_en": "ブラッシュアップライフ", + "translation_source": "tmdb", + "reputation_score": 8.8, + "reputation_votes": 70, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"215197\"}" + }, + "display_title": "重启人生 ブラッシュアップライフ" + }, + { + "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", + "filename": "Brush.Up.Life.S01E08.1080p.KKTV.WEB-DL.x264.AAC-PTerWEB.mkv", + "category": "series", + "title": "Brush Up Life", + "season": 1, + "episodes": [ + 8 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:215197", + "title_zh": "重启人生", + "title_en": "ブラッシュアップライフ", + "translation_source": "tmdb", + "reputation_score": 8.8, + "reputation_votes": 70, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"215197\"}" + }, + "display_title": "重启人生 ブラッシュアップライフ" + }, + { + "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", + "filename": "Brush.Up.Life.S01E05.1080p.KKTV.WEB-DL.x264.AAC-PTerWEB.mkv", + "category": "series", + "title": "Brush Up Life", + "season": 1, + "episodes": [ + 5 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:215197", + "title_zh": "重启人生", + "title_en": "ブラッシュアップライフ", + "translation_source": "tmdb", + "reputation_score": 8.8, + "reputation_votes": 70, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"215197\"}" + }, + "display_title": "重启人生 ブラッシュアップライフ" + }, + { + "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", + "filename": "Brush.Up.Life.S01E04.1080p.KKTV.WEB-DL.x264.AAC-PTerWEB.mkv", + "category": "series", + "title": "Brush Up Life", + "season": 1, + "episodes": [ + 4 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:215197", + "title_zh": "重启人生", + "title_en": "ブラッシュアップライフ", + "translation_source": "tmdb", + "reputation_score": 8.8, + "reputation_votes": 70, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"215197\"}" + }, + "display_title": "重启人生 ブラッシュアップライフ" + }, + { + "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", + "filename": "Brush.Up.Life.S01E02.REPACK.1080p.KKTV.WEB-DL.x264.AAC-PTerWEB.mkv", + "category": "series", + "title": "Brush Up Life", + "season": 1, + "episodes": [ + 2 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:215197", + "title_zh": "重启人生", + "title_en": "ブラッシュアップライフ", + "translation_source": "tmdb", + "reputation_score": 8.8, + "reputation_votes": 70, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"215197\"}" + }, + "display_title": "重启人生 ブラッシュアップライフ" + }, + { + "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", + "filename": "Brush.Up.Life.S01E09.1080p.KKTV.WEB-DL.x264.AAC-PTerWEB.mkv", + "category": "series", + "title": "Brush Up Life", + "season": 1, + "episodes": [ + 9 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:215197", + "title_zh": "重启人生", + "title_en": "ブラッシュアップライフ", + "translation_source": "tmdb", + "reputation_score": 8.8, + "reputation_votes": 70, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"215197\"}" + }, + "display_title": "重启人生 ブラッシュアップライフ" + }, + { + "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", + "filename": "Brush.Up.Life.S01E06.1080p.KKTV.WEB-DL.x264.AAC-PTerWEB.mkv", + "category": "series", + "title": "Brush Up Life", + "season": 1, + "episodes": [ + 6 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:215197", + "title_zh": "重启人生", + "title_en": "ブラッシュアップライフ", + "translation_source": "tmdb", + "reputation_score": 8.8, + "reputation_votes": 70, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"215197\"}" + }, + "display_title": "重启人生 ブラッシュアップライフ" + }, + { + "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", + "filename": "Brush.Up.Life.S01E03.1080p.KKTV.WEB-DL.x264.AAC-PTerWEB.mkv", + "category": "series", + "title": "Brush Up Life", + "season": 1, + "episodes": [ + 3 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:215197", + "title_zh": "重启人生", + "title_en": "ブラッシュアップライフ", + "translation_source": "tmdb", + "reputation_score": 8.8, + "reputation_votes": 70, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"215197\"}" + }, + "display_title": "重启人生 ブラッシュアップライフ" + }, + { + "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", + "filename": "Brush.Up.Life.S01E07.1080p.KKTV.WEB-DL.x264.AAC-PTerWEB.mkv", + "category": "series", + "title": "Brush Up Life", + "season": 1, + "episodes": [ + 7 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:215197", + "title_zh": "重启人生", + "title_en": "ブラッシュアップライフ", + "translation_source": "tmdb", + "reputation_score": 8.8, + "reputation_votes": 70, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"215197\"}" + }, + "display_title": "重启人生 ブラッシュアップライフ" + }, + { + "path": "/mnt/Downloads/series/Midnight.Diner.S04.2016.720p.BluRay.x264-WiKi/Midnight.Diner.S04E03.2016.720p.BluRay.x264-WiKi.mkv", + "filename": "Midnight.Diner.S04E03.2016.720p.BluRay.x264-WiKi.mkv", + "category": "series", + "title": "Midnight Diner", + "season": 4, + "episodes": [ + 3 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:92408", + "title_zh": "深夜食堂:东京故事", + "title_en": "深夜食堂: Tokyo Stories", + "translation_source": "tmdb", + "reputation_score": 7.839, + "reputation_votes": 59, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"92408\"}" + }, + "display_title": "深夜食堂:东京故事 深夜食堂: Tokyo Stories" + }, + { + "path": "/mnt/Downloads/series/Midnight.Diner.S04.2016.720p.BluRay.x264-WiKi/Midnight.Diner.S04E07.2016.720p.BluRay.x264-WiKi.mkv", + "filename": "Midnight.Diner.S04E07.2016.720p.BluRay.x264-WiKi.mkv", + "category": "series", + "title": "Midnight Diner", + "season": 4, + "episodes": [ + 7 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:92408", + "title_zh": "深夜食堂:东京故事", + "title_en": "深夜食堂: Tokyo Stories", + "translation_source": "tmdb", + "reputation_score": 7.839, + "reputation_votes": 59, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"92408\"}" + }, + "display_title": "深夜食堂:东京故事 深夜食堂: Tokyo Stories" + }, + { + "path": "/mnt/Downloads/series/Midnight.Diner.S04.2016.720p.BluRay.x264-WiKi/Midnight.Diner.S04E02.2016.720p.BluRay.x264-WiKi.mkv", + "filename": "Midnight.Diner.S04E02.2016.720p.BluRay.x264-WiKi.mkv", + "category": "series", + "title": "Midnight Diner", + "season": 4, + "episodes": [ + 2 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:92408", + "title_zh": "深夜食堂:东京故事", + "title_en": "深夜食堂: Tokyo Stories", + "translation_source": "tmdb", + "reputation_score": 7.839, + "reputation_votes": 59, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"92408\"}" + }, + "display_title": "深夜食堂:东京故事 深夜食堂: Tokyo Stories" + }, + { + "path": "/mnt/Downloads/series/Midnight.Diner.S04.2016.720p.BluRay.x264-WiKi/Midnight.Diner.S04E06.2016.720p.BluRay.x264-WiKi.mkv", + "filename": "Midnight.Diner.S04E06.2016.720p.BluRay.x264-WiKi.mkv", + "category": "series", + "title": "Midnight Diner", + "season": 4, + "episodes": [ + 6 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:92408", + "title_zh": "深夜食堂:东京故事", + "title_en": "深夜食堂: Tokyo Stories", + "translation_source": "tmdb", + "reputation_score": 7.839, + "reputation_votes": 59, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"92408\"}" + }, + "display_title": "深夜食堂:东京故事 深夜食堂: Tokyo Stories" + }, + { + "path": "/mnt/Downloads/series/Midnight.Diner.S04.2016.720p.BluRay.x264-WiKi/Midnight.Diner.S04E10.2016.720p.BluRay.x264-WiKi.mkv", + "filename": "Midnight.Diner.S04E10.2016.720p.BluRay.x264-WiKi.mkv", + "category": "series", + "title": "Midnight Diner", + "season": 4, + "episodes": [ + 10 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:92408", + "title_zh": "深夜食堂:东京故事", + "title_en": "深夜食堂: Tokyo Stories", + "translation_source": "tmdb", + "reputation_score": 7.839, + "reputation_votes": 59, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"92408\"}" + }, + "display_title": "深夜食堂:东京故事 深夜食堂: Tokyo Stories" + }, + { + "path": "/mnt/Downloads/series/Midnight.Diner.S04.2016.720p.BluRay.x264-WiKi/Midnight.Diner.S04E04.2016.720p.BluRay.x264-WiKi.mkv", + "filename": "Midnight.Diner.S04E04.2016.720p.BluRay.x264-WiKi.mkv", + "category": "series", + "title": "Midnight Diner", + "season": 4, + "episodes": [ + 4 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:92408", + "title_zh": "深夜食堂:东京故事", + "title_en": "深夜食堂: Tokyo Stories", + "translation_source": "tmdb", + "reputation_score": 7.839, + "reputation_votes": 59, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"92408\"}" + }, + "display_title": "深夜食堂:东京故事 深夜食堂: Tokyo Stories" + }, + { + "path": "/mnt/Downloads/series/Midnight.Diner.S04.2016.720p.BluRay.x264-WiKi/Midnight.Diner.S04E08.2016.720p.BluRay.x264-WiKi.mkv", + "filename": "Midnight.Diner.S04E08.2016.720p.BluRay.x264-WiKi.mkv", + "category": "series", + "title": "Midnight Diner", + "season": 4, + "episodes": [ + 8 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:92408", + "title_zh": "深夜食堂:东京故事", + "title_en": "深夜食堂: Tokyo Stories", + "translation_source": "tmdb", + "reputation_score": 7.839, + "reputation_votes": 59, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"92408\"}" + }, + "display_title": "深夜食堂:东京故事 深夜食堂: Tokyo Stories" + }, + { + "path": "/mnt/Downloads/series/Midnight.Diner.S04.2016.720p.BluRay.x264-WiKi/Midnight.Diner.S04E09.2016.720p.BluRay.x264-WiKi.mkv", + "filename": "Midnight.Diner.S04E09.2016.720p.BluRay.x264-WiKi.mkv", + "category": "series", + "title": "Midnight Diner", + "season": 4, + "episodes": [ + 9 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:92408", + "title_zh": "深夜食堂:东京故事", + "title_en": "深夜食堂: Tokyo Stories", + "translation_source": "tmdb", + "reputation_score": 7.839, + "reputation_votes": 59, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"92408\"}" + }, + "display_title": "深夜食堂:东京故事 深夜食堂: Tokyo Stories" + }, + { + "path": "/mnt/Downloads/series/Midnight.Diner.S04.2016.720p.BluRay.x264-WiKi/Midnight.Diner.S04E01.2016.720p.BluRay.x264-WiKi.mkv", + "filename": "Midnight.Diner.S04E01.2016.720p.BluRay.x264-WiKi.mkv", + "category": "series", + "title": "Midnight Diner", + "season": 4, + "episodes": [ + 1 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:92408", + "title_zh": "深夜食堂:东京故事", + "title_en": "深夜食堂: Tokyo Stories", + "translation_source": "tmdb", + "reputation_score": 7.839, + "reputation_votes": 59, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"92408\"}" + }, + "display_title": "深夜食堂:东京故事 深夜食堂: Tokyo Stories" + }, + { + "path": "/mnt/Downloads/series/Midnight.Diner.S04.2016.720p.BluRay.x264-WiKi/Midnight.Diner.S04E05.2016.720p.BluRay.x264-WiKi.mkv", + "filename": "Midnight.Diner.S04E05.2016.720p.BluRay.x264-WiKi.mkv", + "category": "series", + "title": "Midnight Diner", + "season": 4, + "episodes": [ + 5 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:92408", + "title_zh": "深夜食堂:东京故事", + "title_en": "深夜食堂: Tokyo Stories", + "translation_source": "tmdb", + "reputation_score": 7.839, + "reputation_votes": 59, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"92408\"}" + }, + "display_title": "深夜食堂:东京故事 深夜食堂: Tokyo Stories" + }, + { + "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", + "filename": "Tokyo.Swindlers.S01E03.Episode03.1080p.NF.WEB-DL.DDP.5.1.H.264-CHDWEB.mkv", + "category": "series", + "title": "Tokyo Swindlers", + "season": 1, + "episodes": [ + 3, + 3 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:249906", + "title_zh": "地面师", + "title_en": "地面師たち", + "translation_source": "tmdb", + "reputation_score": 6.817, + "reputation_votes": 52, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"249906\"}" + }, + "display_title": "地面师 地面師たち" + }, + { + "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", + "filename": "Tokyo.Swindlers.S01E06.Episode06.1080p.NF.WEB-DL.DDP.5.1.H.264-CHDWEB.mkv", + "category": "series", + "title": "Tokyo Swindlers", + "season": 1, + "episodes": [ + 6, + 6 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:249906", + "title_zh": "地面师", + "title_en": "地面師たち", + "translation_source": "tmdb", + "reputation_score": 6.817, + "reputation_votes": 52, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"249906\"}" + }, + "display_title": "地面师 地面師たち" + }, + { + "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", + "filename": "Tokyo.Swindlers.S01E05.Episode05.1080p.NF.WEB-DL.DDP.5.1.H.264-CHDWEB.mkv", + "category": "series", + "title": "Tokyo Swindlers", + "season": 1, + "episodes": [ + 5, + 5 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:249906", + "title_zh": "地面师", + "title_en": "地面師たち", + "translation_source": "tmdb", + "reputation_score": 6.817, + "reputation_votes": 52, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"249906\"}" + }, + "display_title": "地面师 地面師たち" + }, + { + "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", + "filename": "Tokyo.Swindlers.S01E01.Episode01.1080p.NF.WEB-DL.DDP.5.1.H.264-CHDWEB.mkv", + "category": "series", + "title": "Tokyo Swindlers", + "season": 1, + "episodes": [ + 1, + 1 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:249906", + "title_zh": "地面师", + "title_en": "地面師たち", + "translation_source": "tmdb", + "reputation_score": 6.817, + "reputation_votes": 52, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"249906\"}" + }, + "display_title": "地面师 地面師たち" + }, + { + "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", + "filename": "Tokyo.Swindlers.S01E02.Episode02.1080p.NF.WEB-DL.DDP.5.1.H.264-CHDWEB.mkv", + "category": "series", + "title": "Tokyo Swindlers", + "season": 1, + "episodes": [ + 2, + 2 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:249906", + "title_zh": "地面师", + "title_en": "地面師たち", + "translation_source": "tmdb", + "reputation_score": 6.817, + "reputation_votes": 52, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"249906\"}" + }, + "display_title": "地面师 地面師たち" + }, + { + "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", + "filename": "Tokyo.Swindlers.S01E07.Episode07.1080p.NF.WEB-DL.DDP.5.1.H.264-CHDWEB.mkv", + "category": "series", + "title": "Tokyo Swindlers", + "season": 1, + "episodes": [ + 7, + 7 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:249906", + "title_zh": "地面师", + "title_en": "地面師たち", + "translation_source": "tmdb", + "reputation_score": 6.817, + "reputation_votes": 52, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"249906\"}" + }, + "display_title": "地面师 地面師たち" + }, + { + "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", + "filename": "Tokyo.Swindlers.S01E04.Episode04.1080p.NF.WEB-DL.DDP.5.1.H.264-CHDWEB.mkv", + "category": "series", + "title": "Tokyo Swindlers", + "season": 1, + "episodes": [ + 4, + 4 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:249906", + "title_zh": "地面师", + "title_en": "地面師たち", + "translation_source": "tmdb", + "reputation_score": 6.817, + "reputation_votes": 52, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"249906\"}" + }, + "display_title": "地面师 地面師たち" + }, + { + "path": "/mnt/Downloads/series/(ドラマ) 時をかけるな、恋人たち 第09話 「ミッドナイト・イン・オフィス」 (1440x1080i x264-AAC)-DoA.mkv", + "filename": "(ドラマ) 時をかけるな、恋人たち 第09話 「ミッドナイト・イン・オフィス」 (1440x1080i x264-AAC)-DoA.mkv", + "category": "series", + "title": "(ドラマ) 時をかけるな、恋人たち 第09話 「ミッドナイト・イン・オフィス」 (14", + "season": 40, + "episodes": [ + 10 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "(ドラマ) 時をかけるな、恋人たち 第09話 「ミッドナイト・イン・オフィス」 (14" + }, + { + "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", + "filename": "Dark.Matter.S01E09.2024.1080p.ATVP.WEB-DL.H264.DDP5.1.Atmos-ZeroTV.mkv", + "category": "series", + "title": "Dark Matter", + "season": 1, + "episodes": [ + 9 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:196322", + "title_zh": "Dark Matter", + "title_en": "Dark Matter", + "translation_source": "tmdb", + "reputation_score": 7.778, + "reputation_votes": 587, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"196322\"}" + }, + "display_title": "Dark Matter" + }, + { + "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", + "filename": "【更多高清剧集下载请访问 www.DDHDTV.com】【更多剧集打包下载请访问 www.DDHDTV.com】.mkv", + "category": "series", + "title": "【更多高清剧集下载请访问 Www Ddhdtv Com】【更多剧集打包下载请访问 Www Ddhdtv Com】", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "【更多高清剧集下载请访问 Www Ddhdtv Com】【更多剧集打包下载请访问 Www Ddhdtv Com】" + }, + { + "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", + "filename": "【更多电视剧集下载请访问 www.DDHDTV.com】【更多剧集打包下载请访问 www.DDHDTV.com】.MKV", + "category": "series", + "title": "【更多电视剧集下载请访问 Www Ddhdtv Com】【更多剧集打包下载请访问 Www Ddhdtv Com】", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "【更多电视剧集下载请访问 Www Ddhdtv Com】【更多剧集打包下载请访问 Www Ddhdtv Com】" + }, + { + "path": "/mnt/Downloads/series/マイファミリー EP01 1080p HDTV x264 AAC/マイファミリー 第01話「今こそ、家族を守れ 前代未聞の完全誘!?子供の未来の為に闘う家族の愛と絆の物語」 1080p HDTV x264 AAC.mkv", + "filename": "マイファミリー 第01話「今こそ、家族を守れ 前代未聞の完全誘!?子供の未来の為に闘う家族の愛と絆の物語」 1080p HDTV x264 AAC.mkv", + "category": "series", + "title": "マイファミリー 第01話「今こそ、家族を守れ 前代未聞の完全誘!?子供の未来の為に闘う家族の愛と絆の物語」", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "マイファミリー 第01話「今こそ、家族を守れ 前代未聞の完全誘!?子供の未来の為に闘う家族の愛と絆の物語」" + }, + { + "path": "/mnt/Downloads/series/マイファミリー EP01 1080p HDTV x264 AAC/マイファミリー ナビ 1080p HDTV x264 AAC.mkv", + "filename": "マイファミリー ナビ 1080p HDTV x264 AAC.mkv", + "category": "series", + "title": "マイファミリー ナビ", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "マイファミリー ナビ" + }, + { + "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][]", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Tantei Wa Mou, Shindeiru Yokoku][]" + }, + { + "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 ][]", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": "tmdb:tv:117061", + "title_zh": "侦探已死", + "title_en": "探偵はもう、死んでいる。", + "translation_source": "tmdb", + "reputation_score": 5.6, + "reputation_votes": 54, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"117061\"}" + }, + "display_title": "侦探已死 探偵はもう、死んでいる。" + }, + { + "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", + "filename": "Doona.S01E08.Typical.and.Ordinary.1080p.NF.WEB-DL.DDP.5.1.Atmos.H.264-CHDWEB.mkv", + "category": "series", + "title": "Doona", + "season": 1, + "episodes": [ + 8 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:223515", + "title_zh": "爱上她的理由", + "title_en": "爱上她的理由", + "translation_source": "tmdb", + "reputation_score": 6.609, + "reputation_votes": 23, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"223515\"}" + }, + "display_title": "爱上她的理由" + }, + { + "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", + "filename": "Doona.S01E04.The.Unexpected.1080p.NF.WEB-DL.DDP.5.1.Atmos.H.264-CHDWEB.mkv", + "category": "series", + "title": "Doona", + "season": 1, + "episodes": [ + 4 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:223515", + "title_zh": "爱上她的理由", + "title_en": "爱上她的理由", + "translation_source": "tmdb", + "reputation_score": 6.609, + "reputation_votes": 23, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"223515\"}" + }, + "display_title": "爱上她的理由" + }, + { + "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", + "filename": "Doona.S01E05.Meaningless.Kiss.1080p.NF.WEB-DL.DDP.5.1.Atmos.H.264-CHDWEB.mkv", + "category": "series", + "title": "Doona", + "season": 1, + "episodes": [ + 5 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:223515", + "title_zh": "爱上她的理由", + "title_en": "爱上她的理由", + "translation_source": "tmdb", + "reputation_score": 6.609, + "reputation_votes": 23, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"223515\"}" + }, + "display_title": "爱上她的理由" + }, + { + "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", + "filename": "Doona.S01E09.Doona.1080p.NF.WEB-DL.DDP.5.1.Atmos.H.264-CHDWEB.mkv", + "category": "series", + "title": "Doona", + "season": 1, + "episodes": [ + 9 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:223515", + "title_zh": "爱上她的理由", + "title_en": "爱上她的理由", + "translation_source": "tmdb", + "reputation_score": 6.609, + "reputation_votes": 23, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"223515\"}" + }, + "display_title": "爱上她的理由" + }, + { + "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", + "filename": "Doona.S01E02.Getting.to.Know.Each.Other.1080p.NF.WEB-DL.DDP.5.1.Atmos.H.264-CHDWEB.mkv", + "category": "series", + "title": "Doona", + "season": 1, + "episodes": [ + 2 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:223515", + "title_zh": "爱上她的理由", + "title_en": "爱上她的理由", + "translation_source": "tmdb", + "reputation_score": 6.609, + "reputation_votes": 23, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"223515\"}" + }, + "display_title": "爱上她的理由" + }, + { + "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", + "filename": "Doona.S01E07.Clear.the.Air.1080p.NF.WEB-DL.DDP.5.1.Atmos.H.264-CHDWEB.mkv", + "category": "series", + "title": "Doona", + "season": 1, + "episodes": [ + 7 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:223515", + "title_zh": "爱上她的理由", + "title_en": "爱上她的理由", + "translation_source": "tmdb", + "reputation_score": 6.609, + "reputation_votes": 23, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"223515\"}" + }, + "display_title": "爱上她的理由" + }, + { + "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", + "filename": "Doona.S01E03.Spring.Breeze.1080p.NF.WEB-DL.DDP.5.1.Atmos.H.264-CHDWEB.mkv", + "category": "series", + "title": "Doona", + "season": 1, + "episodes": [ + 3 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:223515", + "title_zh": "爱上她的理由", + "title_en": "爱上她的理由", + "translation_source": "tmdb", + "reputation_score": 6.609, + "reputation_votes": 23, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"223515\"}" + }, + "display_title": "爱上她的理由" + }, + { + "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", + "filename": "Doona.S01E01.An.Unexpected.Twist.1080p.NF.WEB-DL.DDP.5.1.Atmos.H.264-CHDWEB.mkv", + "category": "series", + "title": "Doona", + "season": 1, + "episodes": [ + 1 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:223515", + "title_zh": "爱上她的理由", + "title_en": "爱上她的理由", + "translation_source": "tmdb", + "reputation_score": 6.609, + "reputation_votes": 23, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"223515\"}" + }, + "display_title": "爱上她的理由" + }, + { + "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", + "filename": "Doona.S01E06.Twilight.Zone.1080p.NF.WEB-DL.DDP.5.1.Atmos.H.264-CHDWEB.mkv", + "category": "series", + "title": "Doona", + "season": 1, + "episodes": [ + 6 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:223515", + "title_zh": "爱上她的理由", + "title_en": "爱上她的理由", + "translation_source": "tmdb", + "reputation_score": 6.609, + "reputation_votes": 23, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"223515\"}" + }, + "display_title": "爱上她的理由" + }, + { + "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", + "filename": "A.Shop.for.Killers.S01E02.Jeong.Jinman.Jeong.Jinman.Jeong.Jinman.1080p.Disney+.WEB-DL.DDP.5.1.H.264-CHDWEB.mkv", + "category": "series", + "title": "A Shop For Killers", + "season": 1, + "episodes": [ + 2 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:215072", + "title_zh": "杀人者的购物中心", + "title_en": "킬러들의 쇼핑몰", + "translation_source": "tmdb", + "reputation_score": 8.1, + "reputation_votes": 141, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"215072\"}" + }, + "display_title": "杀人者的购物中心 킬러들의 쇼핑몰" + }, + { + "path": "/mnt/Downloads/series/(ドラマ) 時をかけるな、恋人たち 第11話(終) 「時をかけろ、恋人たち」 (1440x1080i x264-AAC)-DoA.mkv", + "filename": "(ドラマ) 時をかけるな、恋人たち 第11話(終) 「時をかけろ、恋人たち」 (1440x1080i x264-AAC)-DoA.mkv", + "category": "series", + "title": "(ドラマ) 時をかけるな、恋人たち 第11話(終) 「時をかけろ、恋人たち」 (14", + "season": 40, + "episodes": [ + 10 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "(ドラマ) 時をかけるな、恋人たち 第11話(終) 「時をかけろ、恋人たち」 (14" + }, + { + "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", + "filename": "Counterpart.S02E01.2018.1080p.WEB-DL.x265.AC3£cXcY@FRDS.mkv", + "category": "series", + "title": "Counterpart", + "season": 2, + "episodes": [ + 1 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:63646", + "title_zh": "相对宇宙", + "title_en": "Counterpart", + "translation_source": "tmdb", + "reputation_score": 7.437, + "reputation_votes": 399, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"63646\"}" + }, + "display_title": "相对宇宙 Counterpart" + }, + { + "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", + "filename": "Counterpart.S02E03.2018.1080p.WEB-DL.x265.AC3£cXcY@FRDS.mkv", + "category": "series", + "title": "Counterpart", + "season": 2, + "episodes": [ + 3 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:63646", + "title_zh": "相对宇宙", + "title_en": "Counterpart", + "translation_source": "tmdb", + "reputation_score": 7.437, + "reputation_votes": 399, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"63646\"}" + }, + "display_title": "相对宇宙 Counterpart" + }, + { + "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", + "filename": "Counterpart.S02E02.2018.1080p.WEB-DL.x265.AC3£cXcY@FRDS.mkv", + "category": "series", + "title": "Counterpart", + "season": 2, + "episodes": [ + 2 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:63646", + "title_zh": "相对宇宙", + "title_en": "Counterpart", + "translation_source": "tmdb", + "reputation_score": 7.437, + "reputation_votes": 399, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"63646\"}" + }, + "display_title": "相对宇宙 Counterpart" + }, + { + "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", + "filename": "Counterpart.S02E05.2018.1080p.WEB-DL.x265.AC3£cXcY@FRDS.mkv", + "category": "series", + "title": "Counterpart", + "season": 2, + "episodes": [ + 5 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:63646", + "title_zh": "相对宇宙", + "title_en": "Counterpart", + "translation_source": "tmdb", + "reputation_score": 7.437, + "reputation_votes": 399, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"63646\"}" + }, + "display_title": "相对宇宙 Counterpart" + }, + { + "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", + "filename": "Counterpart.S02E10.2018.1080p.WEB-DL.x265.AC3£cXcY@FRDS.mkv", + "category": "series", + "title": "Counterpart", + "season": 2, + "episodes": [ + 10 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:63646", + "title_zh": "相对宇宙", + "title_en": "Counterpart", + "translation_source": "tmdb", + "reputation_score": 7.437, + "reputation_votes": 399, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"63646\"}" + }, + "display_title": "相对宇宙 Counterpart" + }, + { + "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", + "filename": "Counterpart.S02E04.2018.1080p.WEB-DL.x265.AC3£cXcY@FRDS.mkv", + "category": "series", + "title": "Counterpart", + "season": 2, + "episodes": [ + 4 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:63646", + "title_zh": "相对宇宙", + "title_en": "Counterpart", + "translation_source": "tmdb", + "reputation_score": 7.437, + "reputation_votes": 399, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"63646\"}" + }, + "display_title": "相对宇宙 Counterpart" + }, + { + "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", + "filename": "Counterpart.S02E07.2018.1080p.WEB-DL.x265.AC3£cXcY@FRDS.mkv", + "category": "series", + "title": "Counterpart", + "season": 2, + "episodes": [ + 7 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:63646", + "title_zh": "相对宇宙", + "title_en": "Counterpart", + "translation_source": "tmdb", + "reputation_score": 7.437, + "reputation_votes": 399, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"63646\"}" + }, + "display_title": "相对宇宙 Counterpart" + }, + { + "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", + "filename": "Counterpart.S02E06.2018.1080p.WEB-DL.x265.AC3£cXcY@FRDS.mkv", + "category": "series", + "title": "Counterpart", + "season": 2, + "episodes": [ + 6 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:63646", + "title_zh": "相对宇宙", + "title_en": "Counterpart", + "translation_source": "tmdb", + "reputation_score": 7.437, + "reputation_votes": 399, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"63646\"}" + }, + "display_title": "相对宇宙 Counterpart" + }, + { + "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", + "filename": "Counterpart.S02E09.2018.1080p.WEB-DL.x265.AC3£cXcY@FRDS.mkv", + "category": "series", + "title": "Counterpart", + "season": 2, + "episodes": [ + 9 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:63646", + "title_zh": "相对宇宙", + "title_en": "Counterpart", + "translation_source": "tmdb", + "reputation_score": 7.437, + "reputation_votes": 399, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"63646\"}" + }, + "display_title": "相对宇宙 Counterpart" + }, + { + "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", + "filename": "Counterpart.S02E08.2018.1080p.WEB-DL.x265.AC3£cXcY@FRDS.mkv", + "category": "series", + "title": "Counterpart", + "season": 2, + "episodes": [ + 8 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:63646", + "title_zh": "相对宇宙", + "title_en": "Counterpart", + "translation_source": "tmdb", + "reputation_score": 7.437, + "reputation_votes": 399, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"63646\"}" + }, + "display_title": "相对宇宙 Counterpart" + }, + { + "path": "/mnt/Downloads/series/Love.Generation.1997.720p.BluRay.x264-WiKi/Love.Generation.E09.1997.720p.BluRay.x264-WiKi.mkv", + "filename": "Love.Generation.E09.1997.720p.BluRay.x264-WiKi.mkv", + "category": "series", + "title": "Love Generation E09 1997 -Wiki", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Love Generation E09 1997 -Wiki" + }, + { + "path": "/mnt/Downloads/series/Love.Generation.1997.720p.BluRay.x264-WiKi/Love.Generation.E01.1997.720p.BluRay.x264-WiKi.mkv", + "filename": "Love.Generation.E01.1997.720p.BluRay.x264-WiKi.mkv", + "category": "series", + "title": "Love Generation E01 1997 -Wiki", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Love Generation E01 1997 -Wiki" + }, + { + "path": "/mnt/Downloads/series/Love.Generation.1997.720p.BluRay.x264-WiKi/Love.Generation.E11.1997.720p.BluRay.x264-WiKi.mkv", + "filename": "Love.Generation.E11.1997.720p.BluRay.x264-WiKi.mkv", + "category": "series", + "title": "Love Generation E11 1997 -Wiki", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Love Generation E11 1997 -Wiki" + }, + { + "path": "/mnt/Downloads/series/Love.Generation.1997.720p.BluRay.x264-WiKi/Love.Generation.E05.1997.720p.BluRay.x264-WiKi.mkv", + "filename": "Love.Generation.E05.1997.720p.BluRay.x264-WiKi.mkv", + "category": "series", + "title": "Love Generation E05 1997 -Wiki", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Love Generation E05 1997 -Wiki" + }, + { + "path": "/mnt/Downloads/series/Love.Generation.1997.720p.BluRay.x264-WiKi/Love.Generation.E10.1997.720p.BluRay.x264-WiKi.mkv", + "filename": "Love.Generation.E10.1997.720p.BluRay.x264-WiKi.mkv", + "category": "series", + "title": "Love Generation E10 1997 -Wiki", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Love Generation E10 1997 -Wiki" + }, + { + "path": "/mnt/Downloads/series/Love.Generation.1997.720p.BluRay.x264-WiKi/Love.Generation.E04.1997.720p.BluRay.x264-WiKi.mkv", + "filename": "Love.Generation.E04.1997.720p.BluRay.x264-WiKi.mkv", + "category": "series", + "title": "Love Generation E04 1997 -Wiki", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Love Generation E04 1997 -Wiki" + }, + { + "path": "/mnt/Downloads/series/Love.Generation.1997.720p.BluRay.x264-WiKi/Love.Generation.E08.1997.720p.BluRay.x264-WiKi.mkv", + "filename": "Love.Generation.E08.1997.720p.BluRay.x264-WiKi.mkv", + "category": "series", + "title": "Love Generation E08 1997 -Wiki", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Love Generation E08 1997 -Wiki" + }, + { + "path": "/mnt/Downloads/series/Love.Generation.1997.720p.BluRay.x264-WiKi/Love.Generation.E02.1997.720p.BluRay.x264-WiKi.mkv", + "filename": "Love.Generation.E02.1997.720p.BluRay.x264-WiKi.mkv", + "category": "series", + "title": "Love Generation E02 1997 -Wiki", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Love Generation E02 1997 -Wiki" + }, + { + "path": "/mnt/Downloads/series/Love.Generation.1997.720p.BluRay.x264-WiKi/Love.Generation.E06.1997.720p.BluRay.x264-WiKi.mkv", + "filename": "Love.Generation.E06.1997.720p.BluRay.x264-WiKi.mkv", + "category": "series", + "title": "Love Generation E06 1997 -Wiki", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Love Generation E06 1997 -Wiki" + }, + { + "path": "/mnt/Downloads/series/Love.Generation.1997.720p.BluRay.x264-WiKi/Love.Generation.E03.1997.720p.BluRay.x264-WiKi.mkv", + "filename": "Love.Generation.E03.1997.720p.BluRay.x264-WiKi.mkv", + "category": "series", + "title": "Love Generation E03 1997 -Wiki", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Love Generation E03 1997 -Wiki" + }, + { + "path": "/mnt/Downloads/series/Love.Generation.1997.720p.BluRay.x264-WiKi/Love.Generation.E07.1997.720p.BluRay.x264-WiKi.mkv", + "filename": "Love.Generation.E07.1997.720p.BluRay.x264-WiKi.mkv", + "category": "series", + "title": "Love Generation E07 1997 -Wiki", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Love Generation E07 1997 -Wiki" + }, + { + "path": "/mnt/Downloads/series/ロングバケーション Complete 1080p friDay WEB-DL H264 AAC-e@DoA/ロングバケーション 第01話 1080p friDay WEB-DL H264 AAC-e@DoA.mkv", + "filename": "ロングバケーション 第01話 1080p friDay WEB-DL H264 AAC-e@DoA.mkv", + "category": "series", + "title": "ロングバケーション 第01話 Friday -E@Doa", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "ロングバケーション 第01話 Friday -E@Doa" + }, + { + "path": "/mnt/Downloads/series/ロングバケーション Complete 1080p friDay WEB-DL H264 AAC-e@DoA/ロングバケーション 第09話 1080p friDay WEB-DL H264 AAC-e@DoA.mkv", + "filename": "ロングバケーション 第09話 1080p friDay WEB-DL H264 AAC-e@DoA.mkv", + "category": "series", + "title": "ロングバケーション 第09話 Friday -E@Doa", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "ロングバケーション 第09話 Friday -E@Doa" + }, + { + "path": "/mnt/Downloads/series/ロングバケーション Complete 1080p friDay WEB-DL H264 AAC-e@DoA/ロングバケーション 第06話 1080p friDay WEB-DL H264 AAC-e@DoA.mkv", + "filename": "ロングバケーション 第06話 1080p friDay WEB-DL H264 AAC-e@DoA.mkv", + "category": "series", + "title": "ロングバケーション 第06話 Friday -E@Doa", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "ロングバケーション 第06話 Friday -E@Doa" + }, + { + "path": "/mnt/Downloads/series/ロングバケーション Complete 1080p friDay WEB-DL H264 AAC-e@DoA/ロングバケーション 第10話 1080p friDay WEB-DL H264 AAC-e@DoA.mkv", + "filename": "ロングバケーション 第10話 1080p friDay WEB-DL H264 AAC-e@DoA.mkv", + "category": "series", + "title": "ロングバケーション 第10話 Friday -E@Doa", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "ロングバケーション 第10話 Friday -E@Doa" + }, + { + "path": "/mnt/Downloads/series/ロングバケーション Complete 1080p friDay WEB-DL H264 AAC-e@DoA/ロングバケーション 第08話 1080p friDay WEB-DL H264 AAC-e@DoA.mkv", + "filename": "ロングバケーション 第08話 1080p friDay WEB-DL H264 AAC-e@DoA.mkv", + "category": "series", + "title": "ロングバケーション 第08話 Friday -E@Doa", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "ロングバケーション 第08話 Friday -E@Doa" + }, + { + "path": "/mnt/Downloads/series/ロングバケーション Complete 1080p friDay WEB-DL H264 AAC-e@DoA/ロングバケーション 第07話 1080p friDay WEB-DL H264 AAC-e@DoA.mkv", + "filename": "ロングバケーション 第07話 1080p friDay WEB-DL H264 AAC-e@DoA.mkv", + "category": "series", + "title": "ロングバケーション 第07話 Friday -E@Doa", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "ロングバケーション 第07話 Friday -E@Doa" + }, + { + "path": "/mnt/Downloads/series/ロングバケーション Complete 1080p friDay WEB-DL H264 AAC-e@DoA/ロングバケーション 第04話 1080p friDay WEB-DL H264 AAC-e@DoA.mkv", + "filename": "ロングバケーション 第04話 1080p friDay WEB-DL H264 AAC-e@DoA.mkv", + "category": "series", + "title": "ロングバケーション 第04話 Friday -E@Doa", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "ロングバケーション 第04話 Friday -E@Doa" + }, + { + "path": "/mnt/Downloads/series/ロングバケーション Complete 1080p friDay WEB-DL H264 AAC-e@DoA/ロングバケーション 第03話 1080p friDay WEB-DL H264 AAC-e@DoA.mkv", + "filename": "ロングバケーション 第03話 1080p friDay WEB-DL H264 AAC-e@DoA.mkv", + "category": "series", + "title": "ロングバケーション 第03話 Friday -E@Doa", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "ロングバケーション 第03話 Friday -E@Doa" + }, + { + "path": "/mnt/Downloads/series/ロングバケーション Complete 1080p friDay WEB-DL H264 AAC-e@DoA/ロングバケーション 第05話 1080p friDay WEB-DL H264 AAC-e@DoA.mkv", + "filename": "ロングバケーション 第05話 1080p friDay WEB-DL H264 AAC-e@DoA.mkv", + "category": "series", + "title": "ロングバケーション 第05話 Friday -E@Doa", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "ロングバケーション 第05話 Friday -E@Doa" + }, + { + "path": "/mnt/Downloads/series/ロングバケーション Complete 1080p friDay WEB-DL H264 AAC-e@DoA/ロングバケーション 第11話 END 1080p friDay WEB-DL H264 AAC-e@DoA.mkv", + "filename": "ロングバケーション 第11話 END 1080p friDay WEB-DL H264 AAC-e@DoA.mkv", + "category": "series", + "title": "ロングバケーション 第11話 End Friday -E@Doa", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "ロングバケーション 第11話 End Friday -E@Doa" + }, + { + "path": "/mnt/Downloads/series/ロングバケーション Complete 1080p friDay WEB-DL H264 AAC-e@DoA/ロングバケーション 第02話 1080p friDay WEB-DL H264 AAC-e@DoA.mkv", + "filename": "ロングバケーション 第02話 1080p friDay WEB-DL H264 AAC-e@DoA.mkv", + "category": "series", + "title": "ロングバケーション 第02話 Friday -E@Doa", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "ロングバケーション 第02話 Friday -E@Doa" + }, + { + "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", + "filename": "[公益律师].Pro.Bono.2025.S01E08.1080p.NF.WEB-DL.H264.AAC-UBWEB.mkv", + "category": "series", + "title": "Pro Bono 2025", + "season": 1, + "episodes": [ + 8 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Pro Bono 2025" + }, + { + "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", + "filename": "[公益律师].Pro.Bono.2025.S01E12.1080p.NF.WEB-DL.H264.AAC-UBWEB.mkv", + "category": "series", + "title": "Pro Bono 2025", + "season": 1, + "episodes": [ + 12 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Pro Bono 2025" + }, + { + "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", + "filename": "[公益律师].Pro.Bono.2025.S01E06.1080p.NF.WEB-DL.H264.AAC-UBWEB.mkv", + "category": "series", + "title": "Pro Bono 2025", + "season": 1, + "episodes": [ + 6 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Pro Bono 2025" + }, + { + "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", + "filename": "[公益律师].Pro.Bono.2025.S01E01.1080p.NF.WEB-DL.H264.AAC-UBWEB.mkv", + "category": "series", + "title": "Pro Bono 2025", + "season": 1, + "episodes": [ + 1 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Pro Bono 2025" + }, + { + "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", + "filename": "[公益律师].Pro.Bono.2025.S01E11.1080p.NF.WEB-DL.H264.AAC-UBWEB.mkv", + "category": "series", + "title": "Pro Bono 2025", + "season": 1, + "episodes": [ + 11 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Pro Bono 2025" + }, + { + "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", + "filename": "[公益律师].Pro.Bono.2025.S01E02.1080p.NF.WEB-DL.H264.AAC-UBWEB.mkv", + "category": "series", + "title": "Pro Bono 2025", + "season": 1, + "episodes": [ + 2 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Pro Bono 2025" + }, + { + "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", + "filename": "[公益律师].Pro.Bono.2025.S01E05.1080p.NF.WEB-DL.H264.AAC-UBWEB.mkv", + "category": "series", + "title": "Pro Bono 2025", + "season": 1, + "episodes": [ + 5 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Pro Bono 2025" + }, + { + "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", + "filename": "[公益律师].Pro.Bono.2025.S01E07.1080p.NF.WEB-DL.H264.AAC-UBWEB.mkv", + "category": "series", + "title": "Pro Bono 2025", + "season": 1, + "episodes": [ + 7 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Pro Bono 2025" + }, + { + "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", + "filename": "[公益律师].Pro.Bono.2025.S01E09.1080p.NF.WEB-DL.H264.AAC-UBWEB.mkv", + "category": "series", + "title": "Pro Bono 2025", + "season": 1, + "episodes": [ + 9 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Pro Bono 2025" + }, + { + "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", + "filename": "[公益律师].Pro.Bono.2025.S01E04.1080p.NF.WEB-DL.H264.AAC-UBWEB.mkv", + "category": "series", + "title": "Pro Bono 2025", + "season": 1, + "episodes": [ + 4 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Pro Bono 2025" + }, + { + "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", + "filename": "[公益律师].Pro.Bono.2025.S01E03.1080p.NF.WEB-DL.H264.AAC-UBWEB.mkv", + "category": "series", + "title": "Pro Bono 2025", + "season": 1, + "episodes": [ + 3 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Pro Bono 2025" + }, + { + "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", + "filename": "[公益律师].Pro.Bono.2025.S01E10.1080p.NF.WEB-DL.H264.AAC-UBWEB.mkv", + "category": "series", + "title": "Pro Bono 2025", + "season": 1, + "episodes": [ + 10 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Pro Bono 2025" + }, + { + "path": "/mnt/Downloads/series/Dark.Matter.2024.S01E07.In.the.Fires.of.Dead.Stars.1080p.ATVP.WEB-DL.DDP5.1.H.264-NTb.mkv", + "filename": "Dark.Matter.2024.S01E07.In.the.Fires.of.Dead.Stars.1080p.ATVP.WEB-DL.DDP5.1.H.264-NTb.mkv", + "category": "series", + "title": "Dark Matter 2024", + "season": 1, + "episodes": [ + 7 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Dark Matter 2024" + }, + { + "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", + "filename": "Juvenile.Justice.S01E01.2022.Netflix.WEB-DL.1080p.HEVC.DV.DDP-HDCTV.mp4", + "category": "series", + "title": "Juvenile Justice", + "season": 1, + "episodes": [ + 1 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:112833", + "title_zh": "少年法庭", + "title_en": "소년심판", + "translation_source": "tmdb", + "reputation_score": 7.971, + "reputation_votes": 223, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"112833\"}" + }, + "display_title": "少年法庭 소년심판" + }, + { + "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", + "filename": "Juvenile.Justice.S01E07.2022.Netflix.WEB-DL.1080p.HEVC.DV.DDP-HDCTV.mp4", + "category": "series", + "title": "Juvenile Justice", + "season": 1, + "episodes": [ + 7 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:112833", + "title_zh": "少年法庭", + "title_en": "소년심판", + "translation_source": "tmdb", + "reputation_score": 7.971, + "reputation_votes": 223, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"112833\"}" + }, + "display_title": "少年法庭 소년심판" + }, + { + "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", + "filename": "Juvenile.Justice.S01E06.2022.Netflix.WEB-DL.1080p.HEVC.DV.DDP-HDCTV.mp4", + "category": "series", + "title": "Juvenile Justice", + "season": 1, + "episodes": [ + 6 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:112833", + "title_zh": "少年法庭", + "title_en": "소년심판", + "translation_source": "tmdb", + "reputation_score": 7.971, + "reputation_votes": 223, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"112833\"}" + }, + "display_title": "少年法庭 소년심판" + }, + { + "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", + "filename": "Juvenile.Justice.S01E03.2022.Netflix.WEB-DL.1080p.HEVC.DV.DDP-HDCTV.mp4", + "category": "series", + "title": "Juvenile Justice", + "season": 1, + "episodes": [ + 3 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:112833", + "title_zh": "少年法庭", + "title_en": "소년심판", + "translation_source": "tmdb", + "reputation_score": 7.971, + "reputation_votes": 223, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"112833\"}" + }, + "display_title": "少年法庭 소년심판" + }, + { + "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", + "filename": "Juvenile.Justice.S01E05.2022.Netflix.WEB-DL.1080p.HEVC.DV.DDP-HDCTV.mp4", + "category": "series", + "title": "Juvenile Justice", + "season": 1, + "episodes": [ + 5 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:112833", + "title_zh": "少年法庭", + "title_en": "소년심판", + "translation_source": "tmdb", + "reputation_score": 7.971, + "reputation_votes": 223, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"112833\"}" + }, + "display_title": "少年法庭 소년심판" + }, + { + "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", + "filename": "Juvenile.Justice.S01E08.2022.Netflix.WEB-DL.1080p.HEVC.DV.DDP-HDCTV.mp4", + "category": "series", + "title": "Juvenile Justice", + "season": 1, + "episodes": [ + 8 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:112833", + "title_zh": "少年法庭", + "title_en": "소년심판", + "translation_source": "tmdb", + "reputation_score": 7.971, + "reputation_votes": 223, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"112833\"}" + }, + "display_title": "少年法庭 소년심판" + }, + { + "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", + "filename": "Juvenile.Justice.S01E02.2022.Netflix.WEB-DL.1080p.HEVC.DV.DDP-HDCTV.mp4", + "category": "series", + "title": "Juvenile Justice", + "season": 1, + "episodes": [ + 2 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:112833", + "title_zh": "少年法庭", + "title_en": "소년심판", + "translation_source": "tmdb", + "reputation_score": 7.971, + "reputation_votes": 223, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"112833\"}" + }, + "display_title": "少年法庭 소년심판" + }, + { + "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", + "filename": "Juvenile.Justice.S01E10.2022.Netflix.WEB-DL.1080p.HEVC.DV.DDP-HDCTV.mp4", + "category": "series", + "title": "Juvenile Justice", + "season": 1, + "episodes": [ + 10 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:112833", + "title_zh": "少年法庭", + "title_en": "소년심판", + "translation_source": "tmdb", + "reputation_score": 7.971, + "reputation_votes": 223, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"112833\"}" + }, + "display_title": "少年法庭 소년심판" + }, + { + "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", + "filename": "Juvenile.Justice.S01E09.2022.Netflix.WEB-DL.1080p.HEVC.DV.DDP-HDCTV.mp4", + "category": "series", + "title": "Juvenile Justice", + "season": 1, + "episodes": [ + 9 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:112833", + "title_zh": "少年法庭", + "title_en": "소년심판", + "translation_source": "tmdb", + "reputation_score": 7.971, + "reputation_votes": 223, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"112833\"}" + }, + "display_title": "少年法庭 소년심판" + }, + { + "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", + "filename": "Juvenile.Justice.S01E04.2022.Netflix.WEB-DL.1080p.HEVC.DV.DDP-HDCTV.mp4", + "category": "series", + "title": "Juvenile Justice", + "season": 1, + "episodes": [ + 4 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:112833", + "title_zh": "少年法庭", + "title_en": "소년심판", + "translation_source": "tmdb", + "reputation_score": 7.971, + "reputation_votes": 223, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"112833\"}" + }, + "display_title": "少年法庭 소년심판" + }, + { + "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", + "filename": "Tokyo.Vice.S01E01.2022.1080p.WEB-DL.x265.10bit.AC3£cXcY@FRDS.mkv", + "category": "series", + "title": "Tokyo Vice", + "season": 1, + "episodes": [ + 1 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:90296", + "title_zh": "东京罪恶", + "title_en": "Tokyo Vice", + "translation_source": "tmdb", + "reputation_score": 7.8, + "reputation_votes": 353, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"90296\"}" + }, + "display_title": "东京罪恶 Tokyo Vice" + }, + { + "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", + "filename": "Tokyo.Vice.S01E05.2022.1080p.WEB-DL.x265.10bit.AC3£cXcY@FRDS.mkv", + "category": "series", + "title": "Tokyo Vice", + "season": 1, + "episodes": [ + 5 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:90296", + "title_zh": "东京罪恶", + "title_en": "Tokyo Vice", + "translation_source": "tmdb", + "reputation_score": 7.8, + "reputation_votes": 353, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"90296\"}" + }, + "display_title": "东京罪恶 Tokyo Vice" + }, + { + "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", + "filename": "Tokyo.Vice.S01E02.2022.1080p.WEB-DL.x265.10bit.AC3£cXcY@FRDS.mkv", + "category": "series", + "title": "Tokyo Vice", + "season": 1, + "episodes": [ + 2 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:90296", + "title_zh": "东京罪恶", + "title_en": "Tokyo Vice", + "translation_source": "tmdb", + "reputation_score": 7.8, + "reputation_votes": 353, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"90296\"}" + }, + "display_title": "东京罪恶 Tokyo Vice" + }, + { + "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", + "filename": "Tokyo.Vice.S01E06.2022.1080p.WEB-DL.x265.10bit.AC3£cXcY@FRDS.mkv", + "category": "series", + "title": "Tokyo Vice", + "season": 1, + "episodes": [ + 6 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:90296", + "title_zh": "东京罪恶", + "title_en": "Tokyo Vice", + "translation_source": "tmdb", + "reputation_score": 7.8, + "reputation_votes": 353, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"90296\"}" + }, + "display_title": "东京罪恶 Tokyo Vice" + }, + { + "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", + "filename": "Tokyo.Vice.S01E04.2022.1080p.WEB-DL.x265.10bit.AC3£cXcY@FRDS.mkv", + "category": "series", + "title": "Tokyo Vice", + "season": 1, + "episodes": [ + 4 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:90296", + "title_zh": "东京罪恶", + "title_en": "Tokyo Vice", + "translation_source": "tmdb", + "reputation_score": 7.8, + "reputation_votes": 353, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"90296\"}" + }, + "display_title": "东京罪恶 Tokyo Vice" + }, + { + "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", + "filename": "Tokyo.Vice.S01E08.2022.1080p.WEB-DL.x265.10bit.AC3£cXcY@FRDS.mkv", + "category": "series", + "title": "Tokyo Vice", + "season": 1, + "episodes": [ + 8 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:90296", + "title_zh": "东京罪恶", + "title_en": "Tokyo Vice", + "translation_source": "tmdb", + "reputation_score": 7.8, + "reputation_votes": 353, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"90296\"}" + }, + "display_title": "东京罪恶 Tokyo Vice" + }, + { + "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", + "filename": "Tokyo.Vice.S01E07.2022.1080p.WEB-DL.x265.10bit.AC3£cXcY@FRDS.mkv", + "category": "series", + "title": "Tokyo Vice", + "season": 1, + "episodes": [ + 7 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:90296", + "title_zh": "东京罪恶", + "title_en": "Tokyo Vice", + "translation_source": "tmdb", + "reputation_score": 7.8, + "reputation_votes": 353, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"90296\"}" + }, + "display_title": "东京罪恶 Tokyo Vice" + }, + { + "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", + "filename": "Tokyo.Vice.S01E03.2022.1080p.WEB-DL.x265.10bit.AC3£cXcY@FRDS.mkv", + "category": "series", + "title": "Tokyo Vice", + "season": 1, + "episodes": [ + 3 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:90296", + "title_zh": "东京罪恶", + "title_en": "Tokyo Vice", + "translation_source": "tmdb", + "reputation_score": 7.8, + "reputation_votes": 353, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"90296\"}" + }, + "display_title": "东京罪恶 Tokyo Vice" + }, + { + "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", + "filename": "The.Hot.Spot.2025.S01E09.1080p.NF.WEB-DL.x264.AAC-PTerWEB.mkv", + "category": "series", + "title": "The Hot Spot 2025", + "season": 1, + "episodes": [ + 9 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "The Hot Spot 2025" + }, + { + "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", + "filename": "The.Hot.Spot.2025.S01E07.1080p.NF.WEB-DL.x264.AAC-PTerWEB.mkv", + "category": "series", + "title": "The Hot Spot 2025", + "season": 1, + "episodes": [ + 7 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "The Hot Spot 2025" + }, + { + "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", + "filename": "The.Hot.Spot.2025.S01E08.1080p.NF.WEB-DL.x264.AAC-PTerWEB.mkv", + "category": "series", + "title": "The Hot Spot 2025", + "season": 1, + "episodes": [ + 8 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "The Hot Spot 2025" + }, + { + "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", + "filename": "The.Hot.Spot.2025.S01E06.1080p.NF.WEB-DL.x264.AAC-PTerWEB.mkv", + "category": "series", + "title": "The Hot Spot 2025", + "season": 1, + "episodes": [ + 6 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "The Hot Spot 2025" + }, + { + "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", + "filename": "The.Hot.Spot.2025.S01E05.1080p.NF.WEB-DL.x264.AAC-PTerWEB.mkv", + "category": "series", + "title": "The Hot Spot 2025", + "season": 1, + "episodes": [ + 5 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "The Hot Spot 2025" + }, + { + "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", + "filename": "The.Hot.Spot.2025.S01E04.1080p.NF.WEB-DL.x264.AAC-PTerWEB.mkv", + "category": "series", + "title": "The Hot Spot 2025", + "season": 1, + "episodes": [ + 4 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "The Hot Spot 2025" + }, + { + "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", + "filename": "The.Hot.Spot.2025.S01E02.1080p.NF.WEB-DL.x264.AAC-PTerWEB.mkv", + "category": "series", + "title": "The Hot Spot 2025", + "season": 1, + "episodes": [ + 2 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "The Hot Spot 2025" + }, + { + "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", + "filename": "The.Hot.Spot.2025.S01E03.1080p.NF.WEB-DL.x264.AAC-PTerWEB.mkv", + "category": "series", + "title": "The Hot Spot 2025", + "season": 1, + "episodes": [ + 3 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "The Hot Spot 2025" + }, + { + "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", + "filename": "The.Hot.Spot.2025.S01E10.1080p.NF.WEB-DL.x264.AAC-PTerWEB.mkv", + "category": "series", + "title": "The Hot Spot 2025", + "season": 1, + "episodes": [ + 10 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "The Hot Spot 2025" + }, + { + "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", + "filename": "The.Hot.Spot.2025.S01E01.1080p.NF.WEB-DL.x264.AAC-PTerWEB.mkv", + "category": "series", + "title": "The Hot Spot 2025", + "season": 1, + "episodes": [ + 1 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "The Hot Spot 2025" + }, + { + "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", + "filename": "Love.Complex.S01E06.1080p.AMZN.WEB-DL.DD+2.0.H.264-ARiN.mkv", + "category": "series", + "title": "Love Complex", + "season": 1, + "episodes": [ + 6 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:157932", + "title_zh": "迷雾中向往爱", + "title_en": "Eternally Confused and Eager for Love", + "translation_source": "tmdb", + "reputation_score": 6.8, + "reputation_votes": 13, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"157932\"}" + }, + "display_title": "迷雾中向往爱 Eternally Confused and Eager for Love" + }, + { + "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", + "filename": "Love.Complex.S01E02.1080p.AMZN.WEB-DL.DD+2.0.H.264-ARiN.mkv", + "category": "series", + "title": "Love Complex", + "season": 1, + "episodes": [ + 2 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:157932", + "title_zh": "迷雾中向往爱", + "title_en": "Eternally Confused and Eager for Love", + "translation_source": "tmdb", + "reputation_score": 6.8, + "reputation_votes": 13, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"157932\"}" + }, + "display_title": "迷雾中向往爱 Eternally Confused and Eager for Love" + }, + { + "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", + "filename": "Love.Complex.S01E11.1080p.AMZN.WEB-DL.DD+2.0.H.264-ARiN.mkv", + "category": "series", + "title": "Love Complex", + "season": 1, + "episodes": [ + 11 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:157932", + "title_zh": "迷雾中向往爱", + "title_en": "Eternally Confused and Eager for Love", + "translation_source": "tmdb", + "reputation_score": 6.8, + "reputation_votes": 13, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"157932\"}" + }, + "display_title": "迷雾中向往爱 Eternally Confused and Eager for Love" + }, + { + "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", + "filename": "Love.Complex.S01E10.1080p.AMZN.WEB-DL.DD+2.0.H.264-ARiN.mkv", + "category": "series", + "title": "Love Complex", + "season": 1, + "episodes": [ + 10 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:157932", + "title_zh": "迷雾中向往爱", + "title_en": "Eternally Confused and Eager for Love", + "translation_source": "tmdb", + "reputation_score": 6.8, + "reputation_votes": 13, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"157932\"}" + }, + "display_title": "迷雾中向往爱 Eternally Confused and Eager for Love" + }, + { + "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", + "filename": "Love.Complex.S01E07.1080p.AMZN.WEB-DL.DD+2.0.H.264-ARiN.mkv", + "category": "series", + "title": "Love Complex", + "season": 1, + "episodes": [ + 7 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:157932", + "title_zh": "迷雾中向往爱", + "title_en": "Eternally Confused and Eager for Love", + "translation_source": "tmdb", + "reputation_score": 6.8, + "reputation_votes": 13, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"157932\"}" + }, + "display_title": "迷雾中向往爱 Eternally Confused and Eager for Love" + }, + { + "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", + "filename": "Love.Complex.S01E03.1080p.AMZN.WEB-DL.DD+2.0.H.264-ARiN.mkv", + "category": "series", + "title": "Love Complex", + "season": 1, + "episodes": [ + 3 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:157932", + "title_zh": "迷雾中向往爱", + "title_en": "Eternally Confused and Eager for Love", + "translation_source": "tmdb", + "reputation_score": 6.8, + "reputation_votes": 13, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"157932\"}" + }, + "display_title": "迷雾中向往爱 Eternally Confused and Eager for Love" + }, + { + "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", + "filename": "Love.Complex.S01E09.1080p.AMZN.WEB-DL.DD+2.0.H.264-ARiN.mkv", + "category": "series", + "title": "Love Complex", + "season": 1, + "episodes": [ + 9 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:157932", + "title_zh": "迷雾中向往爱", + "title_en": "Eternally Confused and Eager for Love", + "translation_source": "tmdb", + "reputation_score": 6.8, + "reputation_votes": 13, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"157932\"}" + }, + "display_title": "迷雾中向往爱 Eternally Confused and Eager for Love" + }, + { + "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", + "filename": "Love.Complex.S01E05.1080p.AMZN.WEB-DL.DD+2.0.H.264-ARiN.mkv", + "category": "series", + "title": "Love Complex", + "season": 1, + "episodes": [ + 5 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:157932", + "title_zh": "迷雾中向往爱", + "title_en": "Eternally Confused and Eager for Love", + "translation_source": "tmdb", + "reputation_score": 6.8, + "reputation_votes": 13, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"157932\"}" + }, + "display_title": "迷雾中向往爱 Eternally Confused and Eager for Love" + }, + { + "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", + "filename": "Love.Complex.S01E01.1080p.AMZN.WEB-DL.DD+2.0.H.264-ARiN.mkv", + "category": "series", + "title": "Love Complex", + "season": 1, + "episodes": [ + 1 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:157932", + "title_zh": "迷雾中向往爱", + "title_en": "Eternally Confused and Eager for Love", + "translation_source": "tmdb", + "reputation_score": 6.8, + "reputation_votes": 13, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"157932\"}" + }, + "display_title": "迷雾中向往爱 Eternally Confused and Eager for Love" + }, + { + "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", + "filename": "Love.Complex.S01E04.1080p.AMZN.WEB-DL.DD+2.0.H.264-ARiN.mkv", + "category": "series", + "title": "Love Complex", + "season": 1, + "episodes": [ + 4 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:157932", + "title_zh": "迷雾中向往爱", + "title_en": "Eternally Confused and Eager for Love", + "translation_source": "tmdb", + "reputation_score": 6.8, + "reputation_votes": 13, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"157932\"}" + }, + "display_title": "迷雾中向往爱 Eternally Confused and Eager for Love" + }, + { + "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", + "filename": "Love.Complex.S01E08.1080p.AMZN.WEB-DL.DD+2.0.H.264-ARiN.mkv", + "category": "series", + "title": "Love Complex", + "season": 1, + "episodes": [ + 8 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:157932", + "title_zh": "迷雾中向往爱", + "title_en": "Eternally Confused and Eager for Love", + "translation_source": "tmdb", + "reputation_score": 6.8, + "reputation_votes": 13, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"157932\"}" + }, + "display_title": "迷雾中向往爱 Eternally Confused and Eager for Love" + }, + { + "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", + "filename": "Weak.Hero.Class.1.2022.E01.WEB-DL.4K.H265.AAC-HDCTV.mp4", + "category": "series", + "title": "Weak Hero Class 1 2022 E01 -Hdctv", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Weak Hero Class 1 2022 E01 -Hdctv" + }, + { + "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", + "filename": "Weak.Hero.Class.1.2022.E03.WEB-DL.4K.H265.AAC-HDCTV.mp4", + "category": "series", + "title": "Weak Hero Class 1 2022 E03 -Hdctv", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Weak Hero Class 1 2022 E03 -Hdctv" + }, + { + "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", + "filename": "Weak.Hero.Class.1.2022.E02.WEB-DL.4K.H265.AAC-HDCTV.mp4", + "category": "series", + "title": "Weak Hero Class 1 2022 E02 -Hdctv", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Weak Hero Class 1 2022 E02 -Hdctv" + }, + { + "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", + "filename": "Weak.Hero.Class.1.2022.E04.WEB-DL.4K.H265.AAC-HDCTV.mp4", + "category": "series", + "title": "Weak Hero Class 1 2022 E04 -Hdctv", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Weak Hero Class 1 2022 E04 -Hdctv" + }, + { + "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", + "filename": "Weak.Hero.Class.1.2022.E05.WEB-DL.4K.H265.AAC-HDCTV.mp4", + "category": "series", + "title": "Weak Hero Class 1 2022 E05 -Hdctv", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Weak Hero Class 1 2022 E05 -Hdctv" + }, + { + "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", + "filename": "Weak.Hero.Class.1.2022.E08.WEB-DL.4K.H265.AAC-HDCTV.mp4", + "category": "series", + "title": "Weak Hero Class 1 2022 E08 -Hdctv", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Weak Hero Class 1 2022 E08 -Hdctv" + }, + { + "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", + "filename": "Weak.Hero.Class.1.2022.E06.WEB-DL.4K.H265.AAC-HDCTV.mp4", + "category": "series", + "title": "Weak Hero Class 1 2022 E06 -Hdctv", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Weak Hero Class 1 2022 E06 -Hdctv" + }, + { + "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", + "filename": "Weak.Hero.Class.1.2022.E07.WEB-DL.4K.H265.AAC-HDCTV.mp4", + "category": "series", + "title": "Weak Hero Class 1 2022 E07 -Hdctv", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Weak Hero Class 1 2022 E07 -Hdctv" + }, + { + "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", + "filename": "When.Spring.Comes.2024.S01E06.1080p.KKTV.WEB-DL.H264.AAC-YingWEB.mkv", + "category": "series", + "title": "When Spring Comes 2024", + "season": 1, + "episodes": [ + 6 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "When Spring Comes 2024" + }, + { + "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", + "filename": "When.Spring.Comes.2024.S01E02.1080p.KKTV.WEB-DL.H264.AAC-YingWEB.mkv", + "category": "series", + "title": "When Spring Comes 2024", + "season": 1, + "episodes": [ + 2 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "When Spring Comes 2024" + }, + { + "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", + "filename": "When.Spring.Comes.2024.S01E03.1080p.KKTV.WEB-DL.H264.AAC-YingWEB.mkv", + "category": "series", + "title": "When Spring Comes 2024", + "season": 1, + "episodes": [ + 3 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "When Spring Comes 2024" + }, + { + "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", + "filename": "When.Spring.Comes.2024.S01E07.1080p.KKTV.WEB-DL.H264.AAC-YingWEB.mkv", + "category": "series", + "title": "When Spring Comes 2024", + "season": 1, + "episodes": [ + 7 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "When Spring Comes 2024" + }, + { + "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", + "filename": "When.Spring.Comes.2024.S01E10.1080p.KKTV.WEB-DL.H264.AAC-YingWEB.mkv", + "category": "series", + "title": "When Spring Comes 2024", + "season": 1, + "episodes": [ + 10 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "When Spring Comes 2024" + }, + { + "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", + "filename": "When.Spring.Comes.2024.S01E01.1080p.KKTV.WEB-DL.H264.AAC-YingWEB.mkv", + "category": "series", + "title": "When Spring Comes 2024", + "season": 1, + "episodes": [ + 1 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "When Spring Comes 2024" + }, + { + "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", + "filename": "When.Spring.Comes.2024.S01E08.1080p.KKTV.WEB-DL.H264.AAC-YingWEB.mkv", + "category": "series", + "title": "When Spring Comes 2024", + "season": 1, + "episodes": [ + 8 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "When Spring Comes 2024" + }, + { + "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", + "filename": "When.Spring.Comes.2024.S01E05.1080p.KKTV.WEB-DL.H264.AAC-YingWEB.mkv", + "category": "series", + "title": "When Spring Comes 2024", + "season": 1, + "episodes": [ + 5 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "When Spring Comes 2024" + }, + { + "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", + "filename": "When.Spring.Comes.2024.S01E04.1080p.KKTV.WEB-DL.H264.AAC-YingWEB.mkv", + "category": "series", + "title": "When Spring Comes 2024", + "season": 1, + "episodes": [ + 4 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "When Spring Comes 2024" + }, + { + "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", + "filename": "When.Spring.Comes.2024.S01E09.1080p.KKTV.WEB-DL.H264.AAC-YingWEB.mkv", + "category": "series", + "title": "When Spring Comes 2024", + "season": 1, + "episodes": [ + 9 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "When Spring Comes 2024" + }, + { + "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", + "filename": "When.Spring.Comes.2024.S01E11.1080p.KKTV.WEB-DL.H264.AAC-YingWEB.mkv", + "category": "series", + "title": "When Spring Comes 2024", + "season": 1, + "episodes": [ + 11 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "When Spring Comes 2024" + }, + { + "path": "/mnt/Downloads/series/こっち向いてよ向井くん EP06 720p HDTV x264 AAC-DoA.mkv", + "filename": "こっち向いてよ向井くん EP06 720p HDTV x264 AAC-DoA.mkv", + "category": "series", + "title": "こっち向いてよ向井くん Ep06 -Doa", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "こっち向いてよ向井くん Ep06 -Doa" + }, + { + "path": "/mnt/Downloads/series/連続ドラマW コールドケース2 ~真実の扉~ Complete 720p HDTV x264 AAC-DoA/連続ドラマW コールドケース2 ~真実の扉~ CASE10 「真犯人」 End 720p HDTV x264 AAC-DoA.mkv", + "filename": "連続ドラマW コールドケース2 ~真実の扉~ CASE10 「真犯人」 End 720p HDTV x264 AAC-DoA.mkv", + "category": "series", + "title": "連続ドラマW コールドケース2 ~真実の扉~ Case10 「真犯人」 End -Doa", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "連続ドラマW コールドケース2 ~真実の扉~ Case10 「真犯人」 End -Doa" + }, + { + "path": "/mnt/Downloads/series/連続ドラマW コールドケース2 ~真実の扉~ Complete 720p HDTV x264 AAC-DoA/連続ドラマW コールドケース2 ~真実の扉~ CASE6 「バブル」 720p HDTV x264 AAC-DoA.mkv", + "filename": "連続ドラマW コールドケース2 ~真実の扉~ CASE6 「バブル」 720p HDTV x264 AAC-DoA.mkv", + "category": "series", + "title": "連続ドラマW コールドケース2 ~真実の扉~ Case6 「バブル」 -Doa", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "連続ドラマW コールドケース2 ~真実の扉~ Case6 「バブル」 -Doa" + }, + { + "path": "/mnt/Downloads/series/連続ドラマW コールドケース2 ~真実の扉~ Complete 720p HDTV x264 AAC-DoA/連続ドラマW コールドケース2 ~真実の扉~ CASE2 「名前のない殺人者」 720p HDTV x264 AAC-DoA.mkv", + "filename": "連続ドラマW コールドケース2 ~真実の扉~ CASE2 「名前のない殺人者」 720p HDTV x264 AAC-DoA.mkv", + "category": "series", + "title": "連続ドラマW コールドケース2 ~真実の扉~ Case2 「名前のない殺人者」 -Doa", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "連続ドラマW コールドケース2 ~真実の扉~ Case2 「名前のない殺人者」 -Doa" + }, + { + "path": "/mnt/Downloads/series/連続ドラマW コールドケース2 ~真実の扉~ Complete 720p HDTV x264 AAC-DoA/連続ドラマW コールドケース2 ~真実の扉~ CASE3 「PKO」 720p HDTV x264 AAC-DoA.mkv", + "filename": "連続ドラマW コールドケース2 ~真実の扉~ CASE3 「PKO」 720p HDTV x264 AAC-DoA.mkv", + "category": "series", + "title": "連続ドラマW コールドケース2 ~真実の扉~ Case3 「Pko」 -Doa", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "連続ドラマW コールドケース2 ~真実の扉~ Case3 「Pko」 -Doa" + }, + { + "path": "/mnt/Downloads/series/連続ドラマW コールドケース2 ~真実の扉~ Complete 720p HDTV x264 AAC-DoA/連続ドラマW コールドケース2 ~真実の扉~ CASE8 「17歳の母」 720p HDTV x264 AAC-DoA.mkv", + "filename": "連続ドラマW コールドケース2 ~真実の扉~ CASE8 「17歳の母」 720p HDTV x264 AAC-DoA.mkv", + "category": "series", + "title": "連続ドラマW コールドケース2 ~真実の扉~ Case8 「17歳の母」 -Doa", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "連続ドラマW コールドケース2 ~真実の扉~ Case8 「17歳の母」 -Doa" + }, + { + "path": "/mnt/Downloads/series/連続ドラマW コールドケース2 ~真実の扉~ Complete 720p HDTV x264 AAC-DoA/連続ドラマW コールドケース2 ~真実の扉~ CASE1 「学生運動」 720p HDTV x264 AAC-DoA.mkv", + "filename": "連続ドラマW コールドケース2 ~真実の扉~ CASE1 「学生運動」 720p HDTV x264 AAC-DoA.mkv", + "category": "series", + "title": "連続ドラマW コールドケース2 ~真実の扉~ Case1 「学生運動」 -Doa", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "連続ドラマW コールドケース2 ~真実の扉~ Case1 「学生運動」 -Doa" + }, + { + "path": "/mnt/Downloads/series/連続ドラマW コールドケース2 ~真実の扉~ Complete 720p HDTV x264 AAC-DoA/連続ドラマW コールドケース2 ~真実の扉~ CASE4 「執行」 720p HDTV x264 AAC-DoA.mkv", + "filename": "連続ドラマW コールドケース2 ~真実の扉~ CASE4 「執行」 720p HDTV x264 AAC-DoA.mkv", + "category": "series", + "title": "連続ドラマW コールドケース2 ~真実の扉~ Case4 「執行」 -Doa", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "連続ドラマW コールドケース2 ~真実の扉~ Case4 「執行」 -Doa" + }, + { + "path": "/mnt/Downloads/series/連続ドラマW コールドケース2 ~真実の扉~ Complete 720p HDTV x264 AAC-DoA/連続ドラマW コールドケース2 ~真実の扉~ CASE5 「指輪」 720p HDTV x264 AAC-DoA.mkv", + "filename": "連続ドラマW コールドケース2 ~真実の扉~ CASE5 「指輪」 720p HDTV x264 AAC-DoA.mkv", + "category": "series", + "title": "連続ドラマW コールドケース2 ~真実の扉~ Case5 「指輪」 -Doa", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "連続ドラマW コールドケース2 ~真実の扉~ Case5 「指輪」 -Doa" + }, + { + "path": "/mnt/Downloads/series/連続ドラマW コールドケース2 ~真実の扉~ Complete 720p HDTV x264 AAC-DoA/連続ドラマW コールドケース2 ~真実の扉~ CASE7 「光と影」 720p HDTV x264 AAC-DoA.mkv", + "filename": "連続ドラマW コールドケース2 ~真実の扉~ CASE7 「光と影」 720p HDTV x264 AAC-DoA.mkv", + "category": "series", + "title": "連続ドラマW コールドケース2 ~真実の扉~ Case7 「光と影」 -Doa", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "連続ドラマW コールドケース2 ~真実の扉~ Case7 「光と影」 -Doa" + }, + { + "path": "/mnt/Downloads/series/連続ドラマW コールドケース2 ~真実の扉~ Complete 720p HDTV x264 AAC-DoA/連続ドラマW コールドケース2 ~真実の扉~ CASE9 「シベリアの涙」 720p HDTV x264 AAC-DoA.mkv", + "filename": "連続ドラマW コールドケース2 ~真実の扉~ CASE9 「シベリアの涙」 720p HDTV x264 AAC-DoA.mkv", + "category": "series", + "title": "連続ドラマW コールドケース2 ~真実の扉~ Case9 「シベリアの涙」 -Doa", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "連続ドラマW コールドケース2 ~真実の扉~ Case9 「シベリアの涙」 -Doa" + }, + { + "path": "/mnt/Downloads/series/好久没做.Long.time.no.sex.S01E01.2024.1080p.friDay.WEB-DL.H264.AAC-OurTV.mkv", + "filename": "好久没做.Long.time.no.sex.S01E01.2024.1080p.friDay.WEB-DL.H264.AAC-OurTV.mkv", + "category": "series", + "title": "好久没做 Long Time No Sex", + "season": 1, + "episodes": [ + 1 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:222767", + "title_zh": "好久没做", + "title_en": "Long Time No Sex", + "translation_source": "tmdb", + "reputation_score": 7.4, + "reputation_votes": 29, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"222767\"}" + }, + "display_title": "好久没做 Long Time No Sex" + }, + { + "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", + "filename": "Chokotto.Kyoto.ni.Sundemita.SP.2019.Amazon.WEB-DL.1080p.H264.DDP-HDCTV.mkv", + "category": "series", + "title": "Chokotto Kyoto Ni Sundemita Sp 2019 Amazon Ddp-Hdctv", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Chokotto Kyoto Ni Sundemita Sp 2019 Amazon Ddp-Hdctv" + }, + { + "path": "/mnt/Downloads/series/【幻月字幕组】【24年日剧】【追踪者游戏W 职权骚扰的上司是我的前女友】【01】【1080P】【中日双语】.mp4", + "filename": "【幻月字幕组】【24年日剧】【追踪者游戏W 职权骚扰的上司是我的前女友】【01】【1080P】【中日双语】.mp4", + "category": "series", + "title": "【幻月字幕组】【24年日剧】【追踪者游戏W 职权骚扰的上司是我的前女友】【01】【】【中日双语】", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "【幻月字幕组】【24年日剧】【追踪者游戏W 职权骚扰的上司是我的前女友】【01】【】【中日双语】" + }, + { + "path": "/mnt/Downloads/series/Reacher.S03E04.Dominique.1080p.AMZN.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv", + "filename": "Reacher.S03E04.Dominique.1080p.AMZN.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv", + "category": "series", + "title": "Reacher", + "season": 3, + "episodes": [ + 4 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:108978", + "title_zh": "侠探杰克", + "title_en": "Reacher", + "translation_source": "tmdb", + "reputation_score": 8.084, + "reputation_votes": 2645, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"108978\"}" + }, + "display_title": "侠探杰克 Reacher" + }, + { + "path": "/mnt/Downloads/series/Reacher.S03E06.Smoke.on.the.Water.1080p.AMZN.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv", + "filename": "Reacher.S03E06.Smoke.on.the.Water.1080p.AMZN.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv", + "category": "series", + "title": "Reacher", + "season": 3, + "episodes": [ + 6 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:108978", + "title_zh": "侠探杰克", + "title_en": "Reacher", + "translation_source": "tmdb", + "reputation_score": 8.084, + "reputation_votes": 2645, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"108978\"}" + }, + "display_title": "侠探杰克 Reacher" + }, + { + "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", + "filename": "My.Name.S01E02.2021.Netflix.WEB-DL.1080p.HEVC.HDR.DDP-HDCTV.mkv", + "category": "series", + "title": "My Name", + "season": 1, + "episodes": [ + 2 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:201763", + "title_zh": "my name is", + "title_en": "my name is", + "translation_source": "tmdb", + "reputation_score": 9.5, + "reputation_votes": 2, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"201763\"}" + }, + "display_title": "my name is" + }, + { + "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", + "filename": "My.Name.S01E06.2021.Netflix.WEB-DL.1080p.HEVC.HDR.DDP-HDCTV.mkv", + "category": "series", + "title": "My Name", + "season": 1, + "episodes": [ + 6 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:201763", + "title_zh": "my name is", + "title_en": "my name is", + "translation_source": "tmdb", + "reputation_score": 9.5, + "reputation_votes": 2, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"201763\"}" + }, + "display_title": "my name is" + }, + { + "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", + "filename": "My.Name.S01E01.2021.Netflix.WEB-DL.1080p.HEVC.HDR.DDP-HDCTV.mkv", + "category": "series", + "title": "My Name", + "season": 1, + "episodes": [ + 1 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:201763", + "title_zh": "my name is", + "title_en": "my name is", + "translation_source": "tmdb", + "reputation_score": 9.5, + "reputation_votes": 2, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"201763\"}" + }, + "display_title": "my name is" + }, + { + "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", + "filename": "My.Name.S01E05.2021.Netflix.WEB-DL.1080p.HEVC.HDR.DDP-HDCTV.mkv", + "category": "series", + "title": "My Name", + "season": 1, + "episodes": [ + 5 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:201763", + "title_zh": "my name is", + "title_en": "my name is", + "translation_source": "tmdb", + "reputation_score": 9.5, + "reputation_votes": 2, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"201763\"}" + }, + "display_title": "my name is" + }, + { + "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", + "filename": "My.Name.S01E07.2021.Netflix.WEB-DL.1080p.HEVC.HDR.DDP-HDCTV.mkv", + "category": "series", + "title": "My Name", + "season": 1, + "episodes": [ + 7 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:201763", + "title_zh": "my name is", + "title_en": "my name is", + "translation_source": "tmdb", + "reputation_score": 9.5, + "reputation_votes": 2, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"201763\"}" + }, + "display_title": "my name is" + }, + { + "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", + "filename": "My.Name.S01E03.2021.Netflix.WEB-DL.1080p.HEVC.HDR.DDP-HDCTV.mkv", + "category": "series", + "title": "My Name", + "season": 1, + "episodes": [ + 3 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:201763", + "title_zh": "my name is", + "title_en": "my name is", + "translation_source": "tmdb", + "reputation_score": 9.5, + "reputation_votes": 2, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"201763\"}" + }, + "display_title": "my name is" + }, + { + "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", + "filename": "My.Name.S01E04.2021.Netflix.WEB-DL.1080p.HEVC.HDR.DDP-HDCTV.mkv", + "category": "series", + "title": "My Name", + "season": 1, + "episodes": [ + 4 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:201763", + "title_zh": "my name is", + "title_en": "my name is", + "translation_source": "tmdb", + "reputation_score": 9.5, + "reputation_votes": 2, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"201763\"}" + }, + "display_title": "my name is" + }, + { + "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", + "filename": "My.Name.S01E08.2021.Netflix.WEB-DL.1080p.HEVC.HDR.DDP-HDCTV.mkv", + "category": "series", + "title": "My Name", + "season": 1, + "episodes": [ + 8 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:201763", + "title_zh": "my name is", + "title_en": "my name is", + "translation_source": "tmdb", + "reputation_score": 9.5, + "reputation_votes": 2, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"201763\"}" + }, + "display_title": "my name is" + }, + { + "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", + "filename": "When.Life.Gives.You.Tangerines.S01E04.2160p.NF.WEB-DL.H.265.DDP5.1.Atmos-ADWeb.mkv", + "category": "series", + "title": "When Life Gives You Tangerines", + "season": 1, + "episodes": [ + 4 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:219246", + "title_zh": "苦尽柑来遇见你", + "title_en": "폭싹 속았수다", + "translation_source": "tmdb", + "reputation_score": 8.719, + "reputation_votes": 466, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"219246\"}" + }, + "display_title": "苦尽柑来遇见你 폭싹 속았수다" + }, + { + "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", + "filename": "When.Life.Gives.You.Tangerines.S01E08.2160p.NF.WEB-DL.H.265.DDP5.1.Atmos-ADWeb.mkv", + "category": "series", + "title": "When Life Gives You Tangerines", + "season": 1, + "episodes": [ + 8 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:219246", + "title_zh": "苦尽柑来遇见你", + "title_en": "폭싹 속았수다", + "translation_source": "tmdb", + "reputation_score": 8.719, + "reputation_votes": 466, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"219246\"}" + }, + "display_title": "苦尽柑来遇见你 폭싹 속았수다" + }, + { + "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", + "filename": "When.Life.Gives.You.Tangerines.S01E12.2160p.NF.WEB-DL.H.265.DDP5.1.Atmos-ADWeb.mkv", + "category": "series", + "title": "When Life Gives You Tangerines", + "season": 1, + "episodes": [ + 12 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:219246", + "title_zh": "苦尽柑来遇见你", + "title_en": "폭싹 속았수다", + "translation_source": "tmdb", + "reputation_score": 8.719, + "reputation_votes": 466, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"219246\"}" + }, + "display_title": "苦尽柑来遇见你 폭싹 속았수다" + }, + { + "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", + "filename": "When.Life.Gives.You.Tangerines.S01E09.2160p.NF.WEB-DL.H.265.DDP5.1.Atmos-ADWeb.mkv", + "category": "series", + "title": "When Life Gives You Tangerines", + "season": 1, + "episodes": [ + 9 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:219246", + "title_zh": "苦尽柑来遇见你", + "title_en": "폭싹 속았수다", + "translation_source": "tmdb", + "reputation_score": 8.719, + "reputation_votes": 466, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"219246\"}" + }, + "display_title": "苦尽柑来遇见你 폭싹 속았수다" + }, + { + "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", + "filename": "When.Life.Gives.You.Tangerines.S01E01.2160p.NF.WEB-DL.H.265.DDP5.1.Atmos-ADWeb.mkv", + "category": "series", + "title": "When Life Gives You Tangerines", + "season": 1, + "episodes": [ + 1 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:219246", + "title_zh": "苦尽柑来遇见你", + "title_en": "폭싹 속았수다", + "translation_source": "tmdb", + "reputation_score": 8.719, + "reputation_votes": 466, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"219246\"}" + }, + "display_title": "苦尽柑来遇见你 폭싹 속았수다" + }, + { + "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", + "filename": "When.Life.Gives.You.Tangerines.S01E05.2160p.NF.WEB-DL.H.265.DDP5.1.Atmos-ADWeb.mkv", + "category": "series", + "title": "When Life Gives You Tangerines", + "season": 1, + "episodes": [ + 5 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:219246", + "title_zh": "苦尽柑来遇见你", + "title_en": "폭싹 속았수다", + "translation_source": "tmdb", + "reputation_score": 8.719, + "reputation_votes": 466, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"219246\"}" + }, + "display_title": "苦尽柑来遇见你 폭싹 속았수다" + }, + { + "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", + "filename": "When.Life.Gives.You.Tangerines.S01E10.2160p.NF.WEB-DL.H.265.DDP5.1.Atmos-ADWeb.mkv", + "category": "series", + "title": "When Life Gives You Tangerines", + "season": 1, + "episodes": [ + 10 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:219246", + "title_zh": "苦尽柑来遇见你", + "title_en": "폭싹 속았수다", + "translation_source": "tmdb", + "reputation_score": 8.719, + "reputation_votes": 466, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"219246\"}" + }, + "display_title": "苦尽柑来遇见你 폭싹 속았수다" + }, + { + "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", + "filename": "When.Life.Gives.You.Tangerines.S01E03.2160p.NF.WEB-DL.H.265.DDP5.1.Atmos-ADWeb.mkv", + "category": "series", + "title": "When Life Gives You Tangerines", + "season": 1, + "episodes": [ + 3 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:219246", + "title_zh": "苦尽柑来遇见你", + "title_en": "폭싹 속았수다", + "translation_source": "tmdb", + "reputation_score": 8.719, + "reputation_votes": 466, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"219246\"}" + }, + "display_title": "苦尽柑来遇见你 폭싹 속았수다" + }, + { + "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", + "filename": "When.Life.Gives.You.Tangerines.S01E07.2160p.NF.WEB-DL.H.265.DDP5.1.Atmos-ADWeb.mkv", + "category": "series", + "title": "When Life Gives You Tangerines", + "season": 1, + "episodes": [ + 7 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:219246", + "title_zh": "苦尽柑来遇见你", + "title_en": "폭싹 속았수다", + "translation_source": "tmdb", + "reputation_score": 8.719, + "reputation_votes": 466, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"219246\"}" + }, + "display_title": "苦尽柑来遇见你 폭싹 속았수다" + }, + { + "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", + "filename": "When.Life.Gives.You.Tangerines.S01E02.2160p.NF.WEB-DL.H.265.DDP5.1.Atmos-ADWeb.mkv", + "category": "series", + "title": "When Life Gives You Tangerines", + "season": 1, + "episodes": [ + 2 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:219246", + "title_zh": "苦尽柑来遇见你", + "title_en": "폭싹 속았수다", + "translation_source": "tmdb", + "reputation_score": 8.719, + "reputation_votes": 466, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"219246\"}" + }, + "display_title": "苦尽柑来遇见你 폭싹 속았수다" + }, + { + "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", + "filename": "When.Life.Gives.You.Tangerines.S01E06.2160p.NF.WEB-DL.H.265.DDP5.1.Atmos-ADWeb.mkv", + "category": "series", + "title": "When Life Gives You Tangerines", + "season": 1, + "episodes": [ + 6 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:219246", + "title_zh": "苦尽柑来遇见你", + "title_en": "폭싹 속았수다", + "translation_source": "tmdb", + "reputation_score": 8.719, + "reputation_votes": 466, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"219246\"}" + }, + "display_title": "苦尽柑来遇见你 폭싹 속았수다" + }, + { + "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", + "filename": "When.Life.Gives.You.Tangerines.S01E11.2160p.NF.WEB-DL.H.265.DDP5.1.Atmos-ADWeb.mkv", + "category": "series", + "title": "When Life Gives You Tangerines", + "season": 1, + "episodes": [ + 11 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:219246", + "title_zh": "苦尽柑来遇见你", + "title_en": "폭싹 속았수다", + "translation_source": "tmdb", + "reputation_score": 8.719, + "reputation_votes": 466, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"219246\"}" + }, + "display_title": "苦尽柑来遇见你 폭싹 속았수다" + }, + { + "path": "/mnt/Downloads/series/コタツがない家 Complete 1080p HDTV x264 AAC/コタツがない家 第2話 「舅 VS 夫」 1080p HDTV x264 AAC.mkv", + "filename": "コタツがない家 第2話 「舅 VS 夫」 1080p HDTV x264 AAC.mkv", + "category": "series", + "title": "コタツがない家 第2話 「舅 Vs 夫」", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "コタツがない家 第2話 「舅 Vs 夫」" + }, + { + "path": "/mnt/Downloads/series/コタツがない家 Complete 1080p HDTV x264 AAC/コタツがない家 第7話 「下僕の逆襲」 1080p HDTV x264 AAC.mkv", + "filename": "コタツがない家 第7話 「下僕の逆襲」 1080p HDTV x264 AAC.mkv", + "category": "series", + "title": "コタツがない家 第7話 「下僕の逆襲」", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "コタツがない家 第7話 「下僕の逆襲」" + }, + { + "path": "/mnt/Downloads/series/コタツがない家 Complete 1080p HDTV x264 AAC/コタツがない家 第6話 「後継者は君だ」 1080p HDTV x264 AAC.mkv", + "filename": "コタツがない家 第6話 「後継者は君だ」 1080p HDTV x264 AAC.mkv", + "category": "series", + "title": "コタツがない家 第6話 「後継者は君だ」", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "コタツがない家 第6話 「後継者は君だ」" + }, + { + "path": "/mnt/Downloads/series/コタツがない家 Complete 1080p HDTV x264 AAC/コタツがない家 第10話 「クリスマスの奇跡」 End 1080p HDTV x264 AAC.mkv", + "filename": "コタツがない家 第10話 「クリスマスの奇跡」 End 1080p HDTV x264 AAC.mkv", + "category": "series", + "title": "コタツがない家 第10話 「クリスマスの奇跡」 End", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "コタツがない家 第10話 「クリスマスの奇跡」 End" + }, + { + "path": "/mnt/Downloads/series/コタツがない家 Complete 1080p HDTV x264 AAC/コタツがない家 第5話 「鬼怒川の晴れ女」 1080p HDTV x264 AAC.mkv", + "filename": "コタツがない家 第5話 「鬼怒川の晴れ女」 1080p HDTV x264 AAC.mkv", + "category": "series", + "title": "コタツがない家 第5話 「鬼怒川の晴れ女」", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "コタツがない家 第5話 「鬼怒川の晴れ女」" + }, + { + "path": "/mnt/Downloads/series/コタツがない家 Complete 1080p HDTV x264 AAC/コタツがない家 第8話 「シン・嫉妬怪獣」 1080p HDTV x264 AAC.mkv", + "filename": "コタツがない家 第8話 「シン・嫉妬怪獣」 1080p HDTV x264 AAC.mkv", + "category": "series", + "title": "コタツがない家 第8話 「シン・嫉妬怪獣」", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "コタツがない家 第8話 「シン・嫉妬怪獣」" + }, + { + "path": "/mnt/Downloads/series/コタツがない家 Complete 1080p HDTV x264 AAC/コタツがない家 第4話 「母の仕事 子知らず」 1080p HDTV x264 AAC.mkv", + "filename": "コタツがない家 第4話 「母の仕事 子知らず」 1080p HDTV x264 AAC.mkv", + "category": "series", + "title": "コタツがない家 第4話 「母の仕事 子知らず」", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "コタツがない家 第4話 「母の仕事 子知らず」" + }, + { + "path": "/mnt/Downloads/series/コタツがない家 Complete 1080p HDTV x264 AAC/コタツがない家 第9話 「最終兵器チョーさん」 1080p HDTV x264 AAC.mkv", + "filename": "コタツがない家 第9話 「最終兵器チョーさん」 1080p HDTV x264 AAC.mkv", + "category": "series", + "title": "コタツがない家 第9話 「最終兵器チョーさん」", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "コタツがない家 第9話 「最終兵器チョーさん」" + }, + { + "path": "/mnt/Downloads/series/コタツがない家 Complete 1080p HDTV x264 AAC/コタツがない家 第1話 「戦力外の男たち」 1080p HDTV x264 AAC.mkv", + "filename": "コタツがない家 第1話 「戦力外の男たち」 1080p HDTV x264 AAC.mkv", + "category": "series", + "title": "コタツがない家 第1話 「戦力外の男たち」", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "コタツがない家 第1話 「戦力外の男たち」" + }, + { + "path": "/mnt/Downloads/series/コタツがない家 Complete 1080p HDTV x264 AAC/コタツがない家 第3話 「ダメ夫 働く」 1080p HDTV x264 AAC.mkv", + "filename": "コタツがない家 第3話 「ダメ夫 働く」 1080p HDTV x264 AAC.mkv", + "category": "series", + "title": "コタツがない家 第3話 「ダメ夫 働く」", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "コタツがない家 第3話 「ダメ夫 働く」" + }, + { + "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", + "filename": "Shinhannin.Flag.E10.2021.KKTV.WEB-DL.1080p.x264.AAC-HDCTV.mkv", + "category": "series", + "title": "Shinhannin Flag E10 2021 Kktv -Hdctv", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Shinhannin Flag E10 2021 Kktv -Hdctv" + }, + { + "path": "/mnt/Downloads/series/RoOT 第05話 1080p KKTV WEB-DL H264 AAC.mkv", + "filename": "RoOT 第05話 1080p KKTV WEB-DL H264 AAC.mkv", + "category": "series", + "title": "Root 第05話 Kktv", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Root 第05話 Kktv" + }, + { + "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", + "filename": "All.Her.Fault.S01E05.1080p.MAX.WEB-DL.H.264.DDP5.1-ADWeb.mkv", + "category": "series", + "title": "All Her Fault", + "season": 1, + "episodes": [ + 5 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:246386", + "title_zh": "都是她的错", + "title_en": "All Her Fault", + "translation_source": "tmdb", + "reputation_score": 8.152, + "reputation_votes": 178, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"246386\"}" + }, + "display_title": "都是她的错 All Her Fault" + }, + { + "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", + "filename": "All.Her.Fault.S01E01.1080p.MAX.WEB-DL.H.264.DDP5.1-ADWeb.mkv", + "category": "series", + "title": "All Her Fault", + "season": 1, + "episodes": [ + 1 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:246386", + "title_zh": "都是她的错", + "title_en": "All Her Fault", + "translation_source": "tmdb", + "reputation_score": 8.152, + "reputation_votes": 178, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"246386\"}" + }, + "display_title": "都是她的错 All Her Fault" + }, + { + "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", + "filename": "All.Her.Fault.S01E08.1080p.MAX.WEB-DL.H.264.DDP5.1-ADWeb.mkv", + "category": "series", + "title": "All Her Fault", + "season": 1, + "episodes": [ + 8 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:246386", + "title_zh": "都是她的错", + "title_en": "All Her Fault", + "translation_source": "tmdb", + "reputation_score": 8.152, + "reputation_votes": 178, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"246386\"}" + }, + "display_title": "都是她的错 All Her Fault" + }, + { + "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", + "filename": "All.Her.Fault.S01E04.1080p.MAX.WEB-DL.H.264.DDP5.1-ADWeb.mkv", + "category": "series", + "title": "All Her Fault", + "season": 1, + "episodes": [ + 4 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:246386", + "title_zh": "都是她的错", + "title_en": "All Her Fault", + "translation_source": "tmdb", + "reputation_score": 8.152, + "reputation_votes": 178, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"246386\"}" + }, + "display_title": "都是她的错 All Her Fault" + }, + { + "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", + "filename": "All.Her.Fault.S01E06.1080p.MAX.WEB-DL.H.264.DDP5.1-ADWeb.mkv", + "category": "series", + "title": "All Her Fault", + "season": 1, + "episodes": [ + 6 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:246386", + "title_zh": "都是她的错", + "title_en": "All Her Fault", + "translation_source": "tmdb", + "reputation_score": 8.152, + "reputation_votes": 178, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"246386\"}" + }, + "display_title": "都是她的错 All Her Fault" + }, + { + "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", + "filename": "All.Her.Fault.S01E02.1080p.MAX.WEB-DL.H.264.DDP5.1-ADWeb.mkv", + "category": "series", + "title": "All Her Fault", + "season": 1, + "episodes": [ + 2 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:246386", + "title_zh": "都是她的错", + "title_en": "All Her Fault", + "translation_source": "tmdb", + "reputation_score": 8.152, + "reputation_votes": 178, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"246386\"}" + }, + "display_title": "都是她的错 All Her Fault" + }, + { + "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", + "filename": "All.Her.Fault.S01E07.1080p.MAX.WEB-DL.H.264.DDP5.1-ADWeb.mkv", + "category": "series", + "title": "All Her Fault", + "season": 1, + "episodes": [ + 7 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:246386", + "title_zh": "都是她的错", + "title_en": "All Her Fault", + "translation_source": "tmdb", + "reputation_score": 8.152, + "reputation_votes": 178, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"246386\"}" + }, + "display_title": "都是她的错 All Her Fault" + }, + { + "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", + "filename": "All.Her.Fault.S01E03.1080p.MAX.WEB-DL.H.264.DDP5.1-ADWeb.mkv", + "category": "series", + "title": "All Her Fault", + "season": 1, + "episodes": [ + 3 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:246386", + "title_zh": "都是她的错", + "title_en": "All Her Fault", + "translation_source": "tmdb", + "reputation_score": 8.152, + "reputation_votes": 178, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"246386\"}" + }, + "display_title": "都是她的错 All Her Fault" + }, + { + "path": "/mnt/Downloads/series/未来への10カウント Complete 720p HDTV x264 AAC-DoA/未来への10カウント 第07話「お前たちが決めろ! 乱闘事件で部を追放!?涙のミーティング!」720p HDTV x264 AAC-DoA.mkv", + "filename": "未来への10カウント 第07話「お前たちが決めろ! 乱闘事件で部を追放!?涙のミーティング!」720p HDTV x264 AAC-DoA.mkv", + "category": "series", + "title": "未来への10カウント 第07話「お前たちが決めろ! 乱闘事件で部を追放!?涙のミーティング!」 -Doa", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "未来への10カウント 第07話「お前たちが決めろ! 乱闘事件で部を追放!?涙のミーティング!」 -Doa" + }, + { + "path": "/mnt/Downloads/series/未来への10カウント Complete 720p HDTV x264 AAC-DoA/未来への10カウント 第05話「消えた部員から届いた謎の伝言!宅配ピザ救出作戦!?」720p HDTV x264 AAC-DoA.mkv", + "filename": "未来への10カウント 第05話「消えた部員から届いた謎の伝言!宅配ピザ救出作戦!?」720p HDTV x264 AAC-DoA.mkv", + "category": "series", + "title": "未来への10カウント 第05話「消えた部員から届いた謎の伝言!宅配ピザ救出作戦!?」 -Doa", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "未来への10カウント 第05話「消えた部員から届いた謎の伝言!宅配ピザ救出作戦!?」 -Doa" + }, + { + "path": "/mnt/Downloads/series/未来への10カウント Complete 720p HDTV x264 AAC-DoA/未来への10カウント 第06話「亡き妻から宅配ピザ注文!?俺の名を呼んでくれ...奇跡の再会!」720p HDTV x264 AAC-DoA.mkv", + "filename": "未来への10カウント 第06話「亡き妻から宅配ピザ注文!?俺の名を呼んでくれ...奇跡の再会!」720p HDTV x264 AAC-DoA.mkv", + "category": "series", + "title": "未来への10カウント 第06話「亡き妻から宅配ピザ注文!?俺の名を呼んでくれ 奇跡の再会!」 -Doa", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "未来への10カウント 第06話「亡き妻から宅配ピザ注文!?俺の名を呼んでくれ 奇跡の再会!」 -Doa" + }, + { + "path": "/mnt/Downloads/series/未来への10カウント Complete 720p HDTV x264 AAC-DoA/未来への10カウント 第01話「伝説の男、母校へ…弱小チームを導く!」720p HDTV x264 AAC-DoA.mkv", + "filename": "未来への10カウント 第01話「伝説の男、母校へ…弱小チームを導く!」720p HDTV x264 AAC-DoA.mkv", + "category": "series", + "title": "未来への10カウント 第01話「伝説の男、母校へ…弱小チームを導く!」 -Doa", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "未来への10カウント 第01話「伝説の男、母校へ…弱小チームを導く!」 -Doa" + }, + { + "path": "/mnt/Downloads/series/未来への10カウント Complete 720p HDTV x264 AAC-DoA/未来への10カウント 第03話「コーチ助けて...女子部員の危機!母の敵をKOせよ!?」720p HDTV x264 AAC-DoA.mkv", + "filename": "未来への10カウント 第03話「コーチ助けて...女子部員の危機!母の敵をKOせよ!?」720p HDTV x264 AAC-DoA.mkv", + "category": "series", + "title": "未来への10カウント 第03話「コーチ助けて 女子部員の危機!母の敵をKoせよ!?」 -Doa", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "未来への10カウント 第03話「コーチ助けて 女子部員の危機!母の敵をKoせよ!?」 -Doa" + }, + { + "path": "/mnt/Downloads/series/未来への10カウント Complete 720p HDTV x264 AAC-DoA/未来への10カウント 第08話「逆プロポーズは突然に!? ついに決断の時...別れまでの7日間!」720p HDTV x264 AAC-DoA.mkv", + "filename": "未来への10カウント 第08話「逆プロポーズは突然に!? ついに決断の時...別れまでの7日間!」720p HDTV x264 AAC-DoA.mkv", + "category": "series", + "title": "未来への10カウント 第08話「逆プロポーズは突然に!? ついに決断の時 別れまでの7日間!」 -Doa", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "未来への10カウント 第08話「逆プロポーズは突然に!? ついに決断の時 別れまでの7日間!」 -Doa" + }, + { + "path": "/mnt/Downloads/series/未来への10カウント Complete 720p HDTV x264 AAC-DoA/未来への10カウント 第04話「リングの中心で、愛を叫ぶ!?型破りな恋愛指導で、衝撃結末!」720p HDTV x264 AAC-DoA.mkv", + "filename": "未来への10カウント 第04話「リングの中心で、愛を叫ぶ!?型破りな恋愛指導で、衝撃結末!」720p HDTV x264 AAC-DoA.mkv", + "category": "series", + "title": "未来への10カウント 第04話「リングの中心で、愛を叫ぶ!?型破りな恋愛指導で、衝撃結末!」 -Doa", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "未来への10カウント 第04話「リングの中心で、愛を叫ぶ!?型破りな恋愛指導で、衝撃結末!」 -Doa" + }, + { + "path": "/mnt/Downloads/series/未来への10カウント Complete 720p HDTV x264 AAC-DoA/未来への10カウント 第09話「お前たちをインターハイに連れていく... 涙の決勝戦!」END 720p HDTV x264 AAC-DoA.mkv", + "filename": "未来への10カウント 第09話「お前たちをインターハイに連れていく... 涙の決勝戦!」END 720p HDTV x264 AAC-DoA.mkv", + "category": "series", + "title": "未来への10カウント 第09話「お前たちをインターハイに連れていく 涙の決勝戦!」End -Doa", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "未来への10カウント 第09話「お前たちをインターハイに連れていく 涙の決勝戦!」End -Doa" + }, + { + "path": "/mnt/Downloads/series/未来への10カウント Complete 720p HDTV x264 AAC-DoA/未来への10カウント 第02話「型破り監督最弱チームに奇跡を!18年ぶり焼鳥授業!?」720p HDTV x264 AAC-DoA.mkv", + "filename": "未来への10カウント 第02話「型破り監督最弱チームに奇跡を!18年ぶり焼鳥授業!?」720p HDTV x264 AAC-DoA.mkv", + "category": "series", + "title": "未来への10カウント 第02話「型破り監督最弱チームに奇跡を!18年ぶり焼鳥授業!?」 -Doa", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "未来への10カウント 第02話「型破り監督最弱チームに奇跡を!18年ぶり焼鳥授業!?」 -Doa" + }, + { + "path": "/mnt/Downloads/series/Miyamoto.Musashi.2014.720p.BluRay.x264-WiKi/Miyamoto.Musashi.E02.2014.720p.BluRay.x264-WiKi.mkv", + "filename": "Miyamoto.Musashi.E02.2014.720p.BluRay.x264-WiKi.mkv", + "category": "series", + "title": "Miyamoto Musashi E02 2014 -Wiki", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Miyamoto Musashi E02 2014 -Wiki" + }, + { + "path": "/mnt/Downloads/series/Miyamoto.Musashi.2014.720p.BluRay.x264-WiKi/Sample/Miyamoto.Musashi.E01.2014.720p.BluRay.x264-WiKi.sample.mkv", + "filename": "Miyamoto.Musashi.E01.2014.720p.BluRay.x264-WiKi.sample.mkv", + "category": "series", + "title": "Miyamoto Musashi E01 2014 -Wiki Sample", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Miyamoto Musashi E01 2014 -Wiki Sample" + }, + { + "path": "/mnt/Downloads/series/Miyamoto.Musashi.2014.720p.BluRay.x264-WiKi/Miyamoto.Musashi.E01.2014.720p.BluRay.x264-WiKi.mkv", + "filename": "Miyamoto.Musashi.E01.2014.720p.BluRay.x264-WiKi.mkv", + "category": "series", + "title": "Miyamoto Musashi E01 2014 -Wiki", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Miyamoto Musashi E01 2014 -Wiki" + }, + { + "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", + "filename": "Berlin.S01E08.2023.2160p.NF.WEB-DL.DDP5.1.Atmos.H.265-HHWEB.mkv", + "category": "series", + "title": "Berlin", + "season": 1, + "episodes": [ + 8 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:33771", + "title_zh": "Berlin", + "title_en": "Berlin", + "translation_source": "tmdb", + "reputation_score": 0.0, + "reputation_votes": 1, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"33771\"}" + }, + "display_title": "Berlin" + }, + { + "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", + "filename": "Berlin.S01E02.2023.2160p.NF.WEB-DL.DDP5.1.Atmos.H.265-HHWEB.mkv", + "category": "series", + "title": "Berlin", + "season": 1, + "episodes": [ + 2 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:33771", + "title_zh": "Berlin", + "title_en": "Berlin", + "translation_source": "tmdb", + "reputation_score": 0.0, + "reputation_votes": 1, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"33771\"}" + }, + "display_title": "Berlin" + }, + { + "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", + "filename": "Berlin.S01E03.2023.2160p.NF.WEB-DL.DDP5.1.Atmos.H.265-HHWEB.mkv", + "category": "series", + "title": "Berlin", + "season": 1, + "episodes": [ + 3 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:33771", + "title_zh": "Berlin", + "title_en": "Berlin", + "translation_source": "tmdb", + "reputation_score": 0.0, + "reputation_votes": 1, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"33771\"}" + }, + "display_title": "Berlin" + }, + { + "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", + "filename": "Berlin.S01E01.2023.2160p.NF.WEB-DL.DDP5.1.Atmos.H.265-HHWEB.mkv", + "category": "series", + "title": "Berlin", + "season": 1, + "episodes": [ + 1 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:33771", + "title_zh": "Berlin", + "title_en": "Berlin", + "translation_source": "tmdb", + "reputation_score": 0.0, + "reputation_votes": 1, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"33771\"}" + }, + "display_title": "Berlin" + }, + { + "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", + "filename": "Berlin.S01E04.2023.2160p.NF.WEB-DL.DDP5.1.Atmos.H.265-HHWEB.mkv", + "category": "series", + "title": "Berlin", + "season": 1, + "episodes": [ + 4 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:33771", + "title_zh": "Berlin", + "title_en": "Berlin", + "translation_source": "tmdb", + "reputation_score": 0.0, + "reputation_votes": 1, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"33771\"}" + }, + "display_title": "Berlin" + }, + { + "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", + "filename": "Berlin.S01E05.2023.2160p.NF.WEB-DL.DDP5.1.Atmos.H.265-HHWEB.mkv", + "category": "series", + "title": "Berlin", + "season": 1, + "episodes": [ + 5 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:33771", + "title_zh": "Berlin", + "title_en": "Berlin", + "translation_source": "tmdb", + "reputation_score": 0.0, + "reputation_votes": 1, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"33771\"}" + }, + "display_title": "Berlin" + }, + { + "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", + "filename": "Berlin.S01E07.2023.2160p.NF.WEB-DL.DDP5.1.Atmos.H.265-HHWEB.mkv", + "category": "series", + "title": "Berlin", + "season": 1, + "episodes": [ + 7 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:33771", + "title_zh": "Berlin", + "title_en": "Berlin", + "translation_source": "tmdb", + "reputation_score": 0.0, + "reputation_votes": 1, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"33771\"}" + }, + "display_title": "Berlin" + }, + { + "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", + "filename": "Berlin.S01E06.2023.2160p.NF.WEB-DL.DDP5.1.Atmos.H.265-HHWEB.mkv", + "category": "series", + "title": "Berlin", + "season": 1, + "episodes": [ + 6 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:33771", + "title_zh": "Berlin", + "title_en": "Berlin", + "translation_source": "tmdb", + "reputation_score": 0.0, + "reputation_votes": 1, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"33771\"}" + }, + "display_title": "Berlin" + }, + { + "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", + "filename": "Hospital.Playlist.S01E08.2020.Netflix.WEB-DL.1080p.x264.DDP-AREY.mkv", + "category": "series", + "title": "Hospital Playlist", + "season": 1, + "episodes": [ + 8 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:293803", + "title_zh": "Hospital Playlist", + "title_en": "Hospital Playlist", + "translation_source": "tmdb", + "reputation_score": 0.0, + "reputation_votes": 1, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"293803\"}" + }, + "display_title": "Hospital Playlist" + }, + { + "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", + "filename": "Hospital.Playlist.S01E02.2020.Netflix.WEB-DL.1080p.x264.DDP-AREY.mkv", + "category": "series", + "title": "Hospital Playlist", + "season": 1, + "episodes": [ + 2 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:293803", + "title_zh": "Hospital Playlist", + "title_en": "Hospital Playlist", + "translation_source": "tmdb", + "reputation_score": 0.0, + "reputation_votes": 1, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"293803\"}" + }, + "display_title": "Hospital Playlist" + }, + { + "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", + "filename": "Hospital.Playlist.S01E04.2020.Netflix.WEB-DL.1080p.x264.DDP-AREY.mkv", + "category": "series", + "title": "Hospital Playlist", + "season": 1, + "episodes": [ + 4 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:293803", + "title_zh": "Hospital Playlist", + "title_en": "Hospital Playlist", + "translation_source": "tmdb", + "reputation_score": 0.0, + "reputation_votes": 1, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"293803\"}" + }, + "display_title": "Hospital Playlist" + }, + { + "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", + "filename": "Hospital.Playlist.S01E12.2020.Netflix.WEB-DL.1080p.x264.DDP-AREY.mkv", + "category": "series", + "title": "Hospital Playlist", + "season": 1, + "episodes": [ + 12 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:293803", + "title_zh": "Hospital Playlist", + "title_en": "Hospital Playlist", + "translation_source": "tmdb", + "reputation_score": 0.0, + "reputation_votes": 1, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"293803\"}" + }, + "display_title": "Hospital Playlist" + }, + { + "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", + "filename": "Hospital.Playlist.S01E09.2020.Netflix.WEB-DL.1080p.x264.DDP-AREY.mkv", + "category": "series", + "title": "Hospital Playlist", + "season": 1, + "episodes": [ + 9 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:293803", + "title_zh": "Hospital Playlist", + "title_en": "Hospital Playlist", + "translation_source": "tmdb", + "reputation_score": 0.0, + "reputation_votes": 1, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"293803\"}" + }, + "display_title": "Hospital Playlist" + }, + { + "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", + "filename": "Hospital.Playlist.S01E03.2020.Netflix.WEB-DL.1080p.x264.DDP-AREY.mkv", + "category": "series", + "title": "Hospital Playlist", + "season": 1, + "episodes": [ + 3 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:293803", + "title_zh": "Hospital Playlist", + "title_en": "Hospital Playlist", + "translation_source": "tmdb", + "reputation_score": 0.0, + "reputation_votes": 1, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"293803\"}" + }, + "display_title": "Hospital Playlist" + }, + { + "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", + "filename": "Hospital.Playlist.S01E05.2020.Netflix.WEB-DL.1080p.x264.DDP-AREY.mkv", + "category": "series", + "title": "Hospital Playlist", + "season": 1, + "episodes": [ + 5 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:293803", + "title_zh": "Hospital Playlist", + "title_en": "Hospital Playlist", + "translation_source": "tmdb", + "reputation_score": 0.0, + "reputation_votes": 1, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"293803\"}" + }, + "display_title": "Hospital Playlist" + }, + { + "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", + "filename": "Hospital.Playlist.S01E11.2020.Netflix.WEB-DL.1080p.x264.DDP-AREY.mkv", + "category": "series", + "title": "Hospital Playlist", + "season": 1, + "episodes": [ + 11 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:293803", + "title_zh": "Hospital Playlist", + "title_en": "Hospital Playlist", + "translation_source": "tmdb", + "reputation_score": 0.0, + "reputation_votes": 1, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"293803\"}" + }, + "display_title": "Hospital Playlist" + }, + { + "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", + "filename": "Hospital.Playlist.S01E06.2020.Netflix.WEB-DL.1080p.x264.DDP-AREY.mkv", + "category": "series", + "title": "Hospital Playlist", + "season": 1, + "episodes": [ + 6 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:293803", + "title_zh": "Hospital Playlist", + "title_en": "Hospital Playlist", + "translation_source": "tmdb", + "reputation_score": 0.0, + "reputation_votes": 1, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"293803\"}" + }, + "display_title": "Hospital Playlist" + }, + { + "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", + "filename": "Hospital.Playlist.S01E10.2020.Netflix.WEB-DL.1080p.x264.DDP-AREY.mkv", + "category": "series", + "title": "Hospital Playlist", + "season": 1, + "episodes": [ + 10 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:293803", + "title_zh": "Hospital Playlist", + "title_en": "Hospital Playlist", + "translation_source": "tmdb", + "reputation_score": 0.0, + "reputation_votes": 1, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"293803\"}" + }, + "display_title": "Hospital Playlist" + }, + { + "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", + "filename": "Hospital.Playlist.S01E07.2020.Netflix.WEB-DL.1080p.x264.DDP-AREY.mkv", + "category": "series", + "title": "Hospital Playlist", + "season": 1, + "episodes": [ + 7 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:293803", + "title_zh": "Hospital Playlist", + "title_en": "Hospital Playlist", + "translation_source": "tmdb", + "reputation_score": 0.0, + "reputation_votes": 1, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"293803\"}" + }, + "display_title": "Hospital Playlist" + }, + { + "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", + "filename": "Hospital.Playlist.S01E01.2020.Netflix.WEB-DL.1080p.x264.DDP-AREY.mkv", + "category": "series", + "title": "Hospital Playlist", + "season": 1, + "episodes": [ + 1 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:293803", + "title_zh": "Hospital Playlist", + "title_en": "Hospital Playlist", + "translation_source": "tmdb", + "reputation_score": 0.0, + "reputation_votes": 1, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"293803\"}" + }, + "display_title": "Hospital Playlist" + }, + { + "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", + "filename": "The.Hot.Spot.S01E04.2025.1080p.NF.WEB-DL.x264.AAC-ADWeb.mkv", + "category": "series", + "title": "The Hot Spot", + "season": 1, + "episodes": [ + 4 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:276903", + "title_zh": "热点", + "title_en": "ホットスポット", + "translation_source": "tmdb", + "reputation_score": 8.16, + "reputation_votes": 25, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"276903\"}" + }, + "display_title": "热点 ホットスポット" + }, + { + "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", + "filename": "The.Hot.Spot.S01E03.2025.1080p.NF.WEB-DL.x264.AAC-ADWeb.mkv", + "category": "series", + "title": "The Hot Spot", + "season": 1, + "episodes": [ + 3 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:276903", + "title_zh": "热点", + "title_en": "ホットスポット", + "translation_source": "tmdb", + "reputation_score": 8.16, + "reputation_votes": 25, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"276903\"}" + }, + "display_title": "热点 ホットスポット" + }, + { + "path": "/mnt/Downloads/series/主厨是名侦探.EP01-EP09.END.中日双语.1920X1080.HDTVrip-幻月字幕组/主厨是名侦探.EP09.END.中日双语.1920X1080.HDTVrip-幻月字幕组.mp4", + "filename": "主厨是名侦探.EP09.END.中日双语.1920X1080.HDTVrip-幻月字幕组.mp4", + "category": "series", + "title": "主厨是名侦探 Ep09 End 中日双语 19", + "season": 20, + "episodes": [ + 10 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "主厨是名侦探 Ep09 End 中日双语 19" + }, + { + "path": "/mnt/Downloads/series/主厨是名侦探.EP01-EP09.END.中日双语.1920X1080.HDTVrip-幻月字幕组/主厨是名侦探.EP02.中日双语.1920X1080.HDTVrip-幻月字幕组V2.mp4", + "filename": "主厨是名侦探.EP02.中日双语.1920X1080.HDTVrip-幻月字幕组V2.mp4", + "category": "series", + "title": "主厨是名侦探 Ep02 中日双语 19", + "season": 20, + "episodes": [ + 10 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "主厨是名侦探 Ep02 中日双语 19" + }, + { + "path": "/mnt/Downloads/series/主厨是名侦探.EP01-EP09.END.中日双语.1920X1080.HDTVrip-幻月字幕组/主厨是名侦探.EP04.中日双语.1920X1080.HDTVrip-幻月字幕组.mp4", + "filename": "主厨是名侦探.EP04.中日双语.1920X1080.HDTVrip-幻月字幕组.mp4", + "category": "series", + "title": "主厨是名侦探 Ep04 中日双语 19", + "season": 20, + "episodes": [ + 10 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "主厨是名侦探 Ep04 中日双语 19" + }, + { + "path": "/mnt/Downloads/series/主厨是名侦探.EP01-EP09.END.中日双语.1920X1080.HDTVrip-幻月字幕组/主厨是名侦探.EP05.中日双语.1920X1080.HDTVrip-幻月字幕组.mp4", + "filename": "主厨是名侦探.EP05.中日双语.1920X1080.HDTVrip-幻月字幕组.mp4", + "category": "series", + "title": "主厨是名侦探 Ep05 中日双语 19", + "season": 20, + "episodes": [ + 10 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "主厨是名侦探 Ep05 中日双语 19" + }, + { + "path": "/mnt/Downloads/series/主厨是名侦探.EP01-EP09.END.中日双语.1920X1080.HDTVrip-幻月字幕组/主厨是名侦探.EP06.中日双语.1920X1080.HDTVrip-幻月字幕组.mp4", + "filename": "主厨是名侦探.EP06.中日双语.1920X1080.HDTVrip-幻月字幕组.mp4", + "category": "series", + "title": "主厨是名侦探 Ep06 中日双语 19", + "season": 20, + "episodes": [ + 10 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "主厨是名侦探 Ep06 中日双语 19" + }, + { + "path": "/mnt/Downloads/series/主厨是名侦探.EP01-EP09.END.中日双语.1920X1080.HDTVrip-幻月字幕组/主厨是名侦探.EP07.中日双语.1920X1080.HDTVrip-幻月字幕组.mp4", + "filename": "主厨是名侦探.EP07.中日双语.1920X1080.HDTVrip-幻月字幕组.mp4", + "category": "series", + "title": "主厨是名侦探 Ep07 中日双语 19", + "season": 20, + "episodes": [ + 10 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "主厨是名侦探 Ep07 中日双语 19" + }, + { + "path": "/mnt/Downloads/series/主厨是名侦探.EP01-EP09.END.中日双语.1920X1080.HDTVrip-幻月字幕组/主厨是名侦探.EP01.中日双语.1920X1080.HDTVrip-幻月字幕组.mp4", + "filename": "主厨是名侦探.EP01.中日双语.1920X1080.HDTVrip-幻月字幕组.mp4", + "category": "series", + "title": "主厨是名侦探 Ep01 中日双语 19", + "season": 20, + "episodes": [ + 10 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "主厨是名侦探 Ep01 中日双语 19" + }, + { + "path": "/mnt/Downloads/series/主厨是名侦探.EP01-EP09.END.中日双语.1920X1080.HDTVrip-幻月字幕组/主厨是名侦探.EP03.中日双语.1920X1080.HDTVrip-幻月字幕组.mp4", + "filename": "主厨是名侦探.EP03.中日双语.1920X1080.HDTVrip-幻月字幕组.mp4", + "category": "series", + "title": "主厨是名侦探 Ep03 中日双语 19", + "season": 20, + "episodes": [ + 10 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "主厨是名侦探 Ep03 中日双语 19" + }, + { + "path": "/mnt/Downloads/series/主厨是名侦探.EP01-EP09.END.中日双语.1920X1080.HDTVrip-幻月字幕组/主厨是名侦探.EP08.中日双语.1920X1080.HDTVrip-幻月字幕组.mp4", + "filename": "主厨是名侦探.EP08.中日双语.1920X1080.HDTVrip-幻月字幕组.mp4", + "category": "series", + "title": "主厨是名侦探 Ep08 中日双语 19", + "season": 20, + "episodes": [ + 10 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "主厨是名侦探 Ep08 中日双语 19" + }, + { + "path": "/mnt/Downloads/series/Shogun.2024.S01E05.Broken.to.the.Fist.1080p.DSNP.WEB-DL.DDP5.1.H.264-APEX.mkv", + "filename": "Shogun.2024.S01E05.Broken.to.the.Fist.1080p.DSNP.WEB-DL.DDP5.1.H.264-APEX.mkv", + "category": "series", + "title": "Shogun 2024", + "season": 1, + "episodes": [ + 5 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Shogun 2024" + }, + { + "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", + "filename": "The.Swarm.S01E03.1080p.SRF.WEB-DL.AAC2.0.H.264-KORPOS.mkv", + "category": "series", + "title": "The Swarm", + "season": 1, + "episodes": [ + 3 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:211240", + "title_zh": "种群", + "title_en": "Der Schwarm", + "translation_source": "tmdb", + "reputation_score": 6.4, + "reputation_votes": 156, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"211240\"}" + }, + "display_title": "种群 Der Schwarm" + }, + { + "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", + "filename": "The.Swarm.S01E06.1080p.SRF.WEB-DL.AAC2.0.H.264-KORPOS.mkv", + "category": "series", + "title": "The Swarm", + "season": 1, + "episodes": [ + 6 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:211240", + "title_zh": "种群", + "title_en": "Der Schwarm", + "translation_source": "tmdb", + "reputation_score": 6.4, + "reputation_votes": 156, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"211240\"}" + }, + "display_title": "种群 Der Schwarm" + }, + { + "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", + "filename": "The.Swarm.S01E08.1080p.SRF.WEB-DL.AAC2.0.H.264-KORPOS.mkv", + "category": "series", + "title": "The Swarm", + "season": 1, + "episodes": [ + 8 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:211240", + "title_zh": "种群", + "title_en": "Der Schwarm", + "translation_source": "tmdb", + "reputation_score": 6.4, + "reputation_votes": 156, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"211240\"}" + }, + "display_title": "种群 Der Schwarm" + }, + { + "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", + "filename": "The.Swarm.S01E05.1080p.SRF.WEB-DL.AAC2.0.H.264-KORPOS.mkv", + "category": "series", + "title": "The Swarm", + "season": 1, + "episodes": [ + 5 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:211240", + "title_zh": "种群", + "title_en": "Der Schwarm", + "translation_source": "tmdb", + "reputation_score": 6.4, + "reputation_votes": 156, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"211240\"}" + }, + "display_title": "种群 Der Schwarm" + }, + { + "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", + "filename": "The.Swarm.S01E01.1080p.SRF.WEB-DL.AAC2.0.H.264-KORPOS.mkv", + "category": "series", + "title": "The Swarm", + "season": 1, + "episodes": [ + 1 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:211240", + "title_zh": "种群", + "title_en": "Der Schwarm", + "translation_source": "tmdb", + "reputation_score": 6.4, + "reputation_votes": 156, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"211240\"}" + }, + "display_title": "种群 Der Schwarm" + }, + { + "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", + "filename": "The.Swarm.S01E02.1080p.SRF.WEB-DL.AAC2.0.H.264-KORPOS.mkv", + "category": "series", + "title": "The Swarm", + "season": 1, + "episodes": [ + 2 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:211240", + "title_zh": "种群", + "title_en": "Der Schwarm", + "translation_source": "tmdb", + "reputation_score": 6.4, + "reputation_votes": 156, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"211240\"}" + }, + "display_title": "种群 Der Schwarm" + }, + { + "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", + "filename": "The.Swarm.S01E07.1080p.SRF.WEB-DL.AAC2.0.H.264-KORPOS.mkv", + "category": "series", + "title": "The Swarm", + "season": 1, + "episodes": [ + 7 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:211240", + "title_zh": "种群", + "title_en": "Der Schwarm", + "translation_source": "tmdb", + "reputation_score": 6.4, + "reputation_votes": 156, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"211240\"}" + }, + "display_title": "种群 Der Schwarm" + }, + { + "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", + "filename": "The.Swarm.S01E04.1080p.SRF.WEB-DL.AAC2.0.H.264-KORPOS.mkv", + "category": "series", + "title": "The Swarm", + "season": 1, + "episodes": [ + 4 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:211240", + "title_zh": "种群", + "title_en": "Der Schwarm", + "translation_source": "tmdb", + "reputation_score": 6.4, + "reputation_votes": 156, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"211240\"}" + }, + "display_title": "种群 Der Schwarm" + }, + { + "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", + "filename": "[认罪之罪].The.Price.of.Confession.2025.S01E12.1080p.NF.WEB-DL.H264.DDP5.1.Atmos-UBWEB.mkv", + "category": "series", + "title": "The Price Of Confession 2025", + "season": 1, + "episodes": [ + 12 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "The Price Of Confession 2025" + }, + { + "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", + "filename": "[认罪之罪].The.Price.of.Confession.2025.S01E03.1080p.NF.WEB-DL.H264.DDP5.1.Atmos-UBWEB.mkv", + "category": "series", + "title": "The Price Of Confession 2025", + "season": 1, + "episodes": [ + 3 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "The Price Of Confession 2025" + }, + { + "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", + "filename": "[认罪之罪].The.Price.of.Confession.2025.S01E05.1080p.NF.WEB-DL.H264.DDP5.1.Atmos-UBWEB.mkv", + "category": "series", + "title": "The Price Of Confession 2025", + "season": 1, + "episodes": [ + 5 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "The Price Of Confession 2025" + }, + { + "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", + "filename": "[认罪之罪].The.Price.of.Confession.2025.S01E09.1080p.NF.WEB-DL.H264.DDP5.1.Atmos-UBWEB.mkv", + "category": "series", + "title": "The Price Of Confession 2025", + "season": 1, + "episodes": [ + 9 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "The Price Of Confession 2025" + }, + { + "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", + "filename": "[认罪之罪].The.Price.of.Confession.2025.S01E02.1080p.NF.WEB-DL.H264.DDP5.1.Atmos-UBWEB.mkv", + "category": "series", + "title": "The Price Of Confession 2025", + "season": 1, + "episodes": [ + 2 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "The Price Of Confession 2025" + }, + { + "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", + "filename": "[认罪之罪].The.Price.of.Confession.2025.S01E04.1080p.NF.WEB-DL.H264.DDP5.1.Atmos-UBWEB.mkv", + "category": "series", + "title": "The Price Of Confession 2025", + "season": 1, + "episodes": [ + 4 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "The Price Of Confession 2025" + }, + { + "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", + "filename": "[认罪之罪].The.Price.of.Confession.2025.S01E08.1080p.NF.WEB-DL.H264.DDP5.1.Atmos-UBWEB.mkv", + "category": "series", + "title": "The Price Of Confession 2025", + "season": 1, + "episodes": [ + 8 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "The Price Of Confession 2025" + }, + { + "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", + "filename": "[认罪之罪].The.Price.of.Confession.2025.S01E10.1080p.NF.WEB-DL.H264.DDP5.1.Atmos-UBWEB.mkv", + "category": "series", + "title": "The Price Of Confession 2025", + "season": 1, + "episodes": [ + 10 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "The Price Of Confession 2025" + }, + { + "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", + "filename": "[认罪之罪].The.Price.of.Confession.2025.S01E07.1080p.NF.WEB-DL.H264.DDP5.1.Atmos-UBWEB.mkv", + "category": "series", + "title": "The Price Of Confession 2025", + "season": 1, + "episodes": [ + 7 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "The Price Of Confession 2025" + }, + { + "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", + "filename": "[认罪之罪].The.Price.of.Confession.2025.S01E01.1080p.NF.WEB-DL.H264.DDP5.1.Atmos-UBWEB.mkv", + "category": "series", + "title": "The Price Of Confession 2025", + "season": 1, + "episodes": [ + 1 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "The Price Of Confession 2025" + }, + { + "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", + "filename": "[认罪之罪].The.Price.of.Confession.2025.S01E11.1080p.NF.WEB-DL.H264.DDP5.1.Atmos-UBWEB.mkv", + "category": "series", + "title": "The Price Of Confession 2025", + "season": 1, + "episodes": [ + 11 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "The Price Of Confession 2025" + }, + { + "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", + "filename": "[认罪之罪].The.Price.of.Confession.2025.S01E06.1080p.NF.WEB-DL.H264.DDP5.1.Atmos-UBWEB.mkv", + "category": "series", + "title": "The Price Of Confession 2025", + "season": 1, + "episodes": [ + 6 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "The Price Of Confession 2025" + }, + { + "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", + "filename": "When.Life.Gives.You.Tangerines.S01E16.2025.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-ADWeb.mkv", + "category": "series", + "title": "When Life Gives You Tangerines", + "season": 1, + "episodes": [ + 16 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:219246", + "title_zh": "苦尽柑来遇见你", + "title_en": "폭싹 속았수다", + "translation_source": "tmdb", + "reputation_score": 8.719, + "reputation_votes": 466, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"219246\"}" + }, + "display_title": "苦尽柑来遇见你 폭싹 속았수다" + }, + { + "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", + "filename": "When.Life.Gives.You.Tangerines.S01E12.2025.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-ADWeb.mkv", + "category": "series", + "title": "When Life Gives You Tangerines", + "season": 1, + "episodes": [ + 12 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:219246", + "title_zh": "苦尽柑来遇见你", + "title_en": "폭싹 속았수다", + "translation_source": "tmdb", + "reputation_score": 8.719, + "reputation_votes": 466, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"219246\"}" + }, + "display_title": "苦尽柑来遇见你 폭싹 속았수다" + }, + { + "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", + "filename": "When.Life.Gives.You.Tangerines.S01E15.2025.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-ADWeb.mkv", + "category": "series", + "title": "When Life Gives You Tangerines", + "season": 1, + "episodes": [ + 15 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:219246", + "title_zh": "苦尽柑来遇见你", + "title_en": "폭싹 속았수다", + "translation_source": "tmdb", + "reputation_score": 8.719, + "reputation_votes": 466, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"219246\"}" + }, + "display_title": "苦尽柑来遇见你 폭싹 속았수다" + }, + { + "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", + "filename": "When.Life.Gives.You.Tangerines.S01E13.2025.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-ADWeb.mkv", + "category": "series", + "title": "When Life Gives You Tangerines", + "season": 1, + "episodes": [ + 13 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:219246", + "title_zh": "苦尽柑来遇见你", + "title_en": "폭싹 속았수다", + "translation_source": "tmdb", + "reputation_score": 8.719, + "reputation_votes": 466, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"219246\"}" + }, + "display_title": "苦尽柑来遇见你 폭싹 속았수다" + }, + { + "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", + "filename": "When.Life.Gives.You.Tangerines.S01E14.2025.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-ADWeb.mkv", + "category": "series", + "title": "When Life Gives You Tangerines", + "season": 1, + "episodes": [ + 14 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:219246", + "title_zh": "苦尽柑来遇见你", + "title_en": "폭싹 속았수다", + "translation_source": "tmdb", + "reputation_score": 8.719, + "reputation_votes": 466, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"219246\"}" + }, + "display_title": "苦尽柑来遇见你 폭싹 속았수다" + }, + { + "path": "/mnt/Downloads/series/RoOT 第06話 1080p KKTV WEB-DL H264 AAC.mkv", + "filename": "RoOT 第06話 1080p KKTV WEB-DL H264 AAC.mkv", + "category": "series", + "title": "Root 第06話 Kktv", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Root 第06話 Kktv" + }, + { + "path": "/mnt/Downloads/series/Taxi.Driver.S03E01.1080p.WEB-DL.AAC2.0.H.264-CHIOS.mkv", + "filename": "Taxi.Driver.S03E01.1080p.WEB-DL.AAC2.0.H.264-CHIOS.mkv", + "category": "series", + "title": "Taxi Driver", + "season": 3, + "episodes": [ + 1 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:127583", + "title_zh": "Лекс и Плу. Космические таксисты.", + "title_en": "Лекс и Плу. Космические таксисты.", + "translation_source": "tmdb", + "reputation_score": 0.0, + "reputation_votes": 1, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"127583\"}" + }, + "display_title": "Лекс и Плу. Космические таксисты." + }, + { + "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", + "filename": "The.Bear.S01E08.Braciole.1080p.DSNP.WEB-DL.DDP5.1.H.264-NTb.mkv", + "category": "series", + "title": "The Bear", + "season": 1, + "episodes": [ + 8 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:136315", + "title_zh": "熊家餐馆", + "title_en": "The Bear", + "translation_source": "tmdb", + "reputation_score": 8.173, + "reputation_votes": 1602, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"136315\"}" + }, + "display_title": "熊家餐馆 The Bear" + }, + { + "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", + "filename": "The.Bear.S01E07.Review.1080p.DSNP.WEB-DL.DDP5.1.H.264-NTb.mkv", + "category": "series", + "title": "The Bear", + "season": 1, + "episodes": [ + 7 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:136315", + "title_zh": "熊家餐馆", + "title_en": "The Bear", + "translation_source": "tmdb", + "reputation_score": 8.173, + "reputation_votes": 1602, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"136315\"}" + }, + "display_title": "熊家餐馆 The Bear" + }, + { + "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", + "filename": "The.Bear.S01E03.Brigade.1080p.DSNP.WEB-DL.DDP5.1.H.264-NTb.mkv", + "category": "series", + "title": "The Bear", + "season": 1, + "episodes": [ + 3 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:136315", + "title_zh": "熊家餐馆", + "title_en": "The Bear", + "translation_source": "tmdb", + "reputation_score": 8.173, + "reputation_votes": 1602, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"136315\"}" + }, + "display_title": "熊家餐馆 The Bear" + }, + { + "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", + "filename": "The.Bear.S01E05.Sheridan.1080p.DSNP.WEB-DL.DDP5.1.H.264-NTb.mkv", + "category": "series", + "title": "The Bear", + "season": 1, + "episodes": [ + 5 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:136315", + "title_zh": "熊家餐馆", + "title_en": "The Bear", + "translation_source": "tmdb", + "reputation_score": 8.173, + "reputation_votes": 1602, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"136315\"}" + }, + "display_title": "熊家餐馆 The Bear" + }, + { + "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", + "filename": "The.Bear.S01E01.System.1080p.DSNP.WEB-DL.DDP5.1.H.264-NTb.mkv", + "category": "series", + "title": "The Bear", + "season": 1, + "episodes": [ + 1 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:136315", + "title_zh": "熊家餐馆", + "title_en": "The Bear", + "translation_source": "tmdb", + "reputation_score": 8.173, + "reputation_votes": 1602, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"136315\"}" + }, + "display_title": "熊家餐馆 The Bear" + }, + { + "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", + "filename": "The.Bear.S01E04.Dogs.1080p.DSNP.WEB-DL.DDP5.1.H.264-NTb.mkv", + "category": "series", + "title": "The Bear", + "season": 1, + "episodes": [ + 4 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:136315", + "title_zh": "熊家餐馆", + "title_en": "The Bear", + "translation_source": "tmdb", + "reputation_score": 8.173, + "reputation_votes": 1602, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"136315\"}" + }, + "display_title": "熊家餐馆 The Bear" + }, + { + "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", + "filename": "The.Bear.S01E06.Ceres.1080p.DSNP.WEB-DL.DDP5.1.H.264-NTb.mkv", + "category": "series", + "title": "The Bear", + "season": 1, + "episodes": [ + 6 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:136315", + "title_zh": "熊家餐馆", + "title_en": "The Bear", + "translation_source": "tmdb", + "reputation_score": 8.173, + "reputation_votes": 1602, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"136315\"}" + }, + "display_title": "熊家餐馆 The Bear" + }, + { + "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", + "filename": "The.Bear.S01E02.Hands.1080p.DSNP.WEB-DL.DDP5.1.H.264-NTb.mkv", + "category": "series", + "title": "The Bear", + "season": 1, + "episodes": [ + 2 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:136315", + "title_zh": "熊家餐馆", + "title_en": "The Bear", + "translation_source": "tmdb", + "reputation_score": 8.173, + "reputation_votes": 1602, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"136315\"}" + }, + "display_title": "熊家餐馆 The Bear" + }, + { + "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", + "filename": "Live.Up.To.Your.Name.S01E07.1080p.NF.WEB-DL.DDP2.0.x264-Ao.mkv", + "category": "series", + "title": "Live Up To Your Name", + "season": 1, + "episodes": [ + 7 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:72851", + "title_zh": "名不虚传", + "title_en": "명불허전", + "translation_source": "tmdb", + "reputation_score": 6.863, + "reputation_votes": 62, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"72851\"}" + }, + "display_title": "名不虚传 명불허전" + }, + { + "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", + "filename": "Live.Up.To.Your.Name.S01E14.1080p.NF.WEB-DL.DDP2.0.x264-Ao.mkv", + "category": "series", + "title": "Live Up To Your Name", + "season": 1, + "episodes": [ + 14 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:72851", + "title_zh": "名不虚传", + "title_en": "명불허전", + "translation_source": "tmdb", + "reputation_score": 6.863, + "reputation_votes": 62, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"72851\"}" + }, + "display_title": "名不虚传 명불허전" + }, + { + "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", + "filename": "Live.Up.To.Your.Name.S01E13.1080p.NF.WEB-DL.DDP2.0.x264-Ao.mkv", + "category": "series", + "title": "Live Up To Your Name", + "season": 1, + "episodes": [ + 13 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:72851", + "title_zh": "名不虚传", + "title_en": "명불허전", + "translation_source": "tmdb", + "reputation_score": 6.863, + "reputation_votes": 62, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"72851\"}" + }, + "display_title": "名不虚传 명불허전" + }, + { + "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", + "filename": "Live.Up.To.Your.Name.S01E09.1080p.NF.WEB-DL.DDP2.0.x264-Ao.mkv", + "category": "series", + "title": "Live Up To Your Name", + "season": 1, + "episodes": [ + 9 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:72851", + "title_zh": "名不虚传", + "title_en": "명불허전", + "translation_source": "tmdb", + "reputation_score": 6.863, + "reputation_votes": 62, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"72851\"}" + }, + "display_title": "名不虚传 명불허전" + }, + { + "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", + "filename": "Live.Up.To.Your.Name.S01E04.1080p.NF.WEB-DL.DDP2.0.x264-Ao.mkv", + "category": "series", + "title": "Live Up To Your Name", + "season": 1, + "episodes": [ + 4 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:72851", + "title_zh": "名不虚传", + "title_en": "명불허전", + "translation_source": "tmdb", + "reputation_score": 6.863, + "reputation_votes": 62, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"72851\"}" + }, + "display_title": "名不虚传 명불허전" + }, + { + "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", + "filename": "Live.Up.To.Your.Name.S01E03.1080p.NF.WEB-DL.DDP2.0.x264-Ao.mkv", + "category": "series", + "title": "Live Up To Your Name", + "season": 1, + "episodes": [ + 3 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:72851", + "title_zh": "名不虚传", + "title_en": "명불허전", + "translation_source": "tmdb", + "reputation_score": 6.863, + "reputation_votes": 62, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"72851\"}" + }, + "display_title": "名不虚传 명불허전" + }, + { + "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", + "filename": "Live.Up.To.Your.Name.S01E10.1080p.NF.WEB-DL.DDP2.0.x264-Ao.mkv", + "category": "series", + "title": "Live Up To Your Name", + "season": 1, + "episodes": [ + 10 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:72851", + "title_zh": "名不虚传", + "title_en": "명불허전", + "translation_source": "tmdb", + "reputation_score": 6.863, + "reputation_votes": 62, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"72851\"}" + }, + "display_title": "名不虚传 명불허전" + }, + { + "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", + "filename": "Live.Up.To.Your.Name.S01E12.1080p.NF.WEB-DL.DDP2.0.x264-Ao.mkv", + "category": "series", + "title": "Live Up To Your Name", + "season": 1, + "episodes": [ + 12 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:72851", + "title_zh": "名不虚传", + "title_en": "명불허전", + "translation_source": "tmdb", + "reputation_score": 6.863, + "reputation_votes": 62, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"72851\"}" + }, + "display_title": "名不虚传 명불허전" + }, + { + "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", + "filename": "Live.Up.To.Your.Name.S01E08.1080p.NF.WEB-DL.DDP2.0.x264-Ao.mkv", + "category": "series", + "title": "Live Up To Your Name", + "season": 1, + "episodes": [ + 8 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:72851", + "title_zh": "名不虚传", + "title_en": "명불허전", + "translation_source": "tmdb", + "reputation_score": 6.863, + "reputation_votes": 62, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"72851\"}" + }, + "display_title": "名不虚传 명불허전" + }, + { + "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", + "filename": "Live.Up.To.Your.Name.S01E15.1080p.NF.WEB-DL.DDP2.0.x264-Ao.mkv", + "category": "series", + "title": "Live Up To Your Name", + "season": 1, + "episodes": [ + 15 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:72851", + "title_zh": "名不虚传", + "title_en": "명불허전", + "translation_source": "tmdb", + "reputation_score": 6.863, + "reputation_votes": 62, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"72851\"}" + }, + "display_title": "名不虚传 명불허전" + }, + { + "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", + "filename": "Live.Up.To.Your.Name.S01E06.1080p.NF.WEB-DL.DDP2.0.x264-Ao.mkv", + "category": "series", + "title": "Live Up To Your Name", + "season": 1, + "episodes": [ + 6 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:72851", + "title_zh": "名不虚传", + "title_en": "명불허전", + "translation_source": "tmdb", + "reputation_score": 6.863, + "reputation_votes": 62, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"72851\"}" + }, + "display_title": "名不虚传 명불허전" + }, + { + "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", + "filename": "Live.Up.To.Your.Name.S01E01.1080p.NF.WEB-DL.DDP2.0.x264-Ao.mkv", + "category": "series", + "title": "Live Up To Your Name", + "season": 1, + "episodes": [ + 1 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:72851", + "title_zh": "名不虚传", + "title_en": "명불허전", + "translation_source": "tmdb", + "reputation_score": 6.863, + "reputation_votes": 62, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"72851\"}" + }, + "display_title": "名不虚传 명불허전" + }, + { + "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", + "filename": "Live.Up.To.Your.Name.S01E16.1080p.NF.WEB-DL.DDP2.0.x264-Ao.mkv", + "category": "series", + "title": "Live Up To Your Name", + "season": 1, + "episodes": [ + 16 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:72851", + "title_zh": "名不虚传", + "title_en": "명불허전", + "translation_source": "tmdb", + "reputation_score": 6.863, + "reputation_votes": 62, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"72851\"}" + }, + "display_title": "名不虚传 명불허전" + }, + { + "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", + "filename": "Live.Up.To.Your.Name.S01E11.1080p.NF.WEB-DL.DDP2.0.x264-Ao.mkv", + "category": "series", + "title": "Live Up To Your Name", + "season": 1, + "episodes": [ + 11 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:72851", + "title_zh": "名不虚传", + "title_en": "명불허전", + "translation_source": "tmdb", + "reputation_score": 6.863, + "reputation_votes": 62, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"72851\"}" + }, + "display_title": "名不虚传 명불허전" + }, + { + "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", + "filename": "Live.Up.To.Your.Name.S01E02.1080p.NF.WEB-DL.DDP2.0.x264-Ao.mkv", + "category": "series", + "title": "Live Up To Your Name", + "season": 1, + "episodes": [ + 2 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:72851", + "title_zh": "名不虚传", + "title_en": "명불허전", + "translation_source": "tmdb", + "reputation_score": 6.863, + "reputation_votes": 62, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"72851\"}" + }, + "display_title": "名不虚传 명불허전" + }, + { + "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", + "filename": "Live.Up.To.Your.Name.S01E05.1080p.NF.WEB-DL.DDP2.0.x264-Ao.mkv", + "category": "series", + "title": "Live Up To Your Name", + "season": 1, + "episodes": [ + 5 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:72851", + "title_zh": "名不虚传", + "title_en": "명불허전", + "translation_source": "tmdb", + "reputation_score": 6.863, + "reputation_votes": 62, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"72851\"}" + }, + "display_title": "名不虚传 명불허전" + }, + { + "path": "/mnt/Downloads/series/(ドラマ) 時をかけるな、恋人たち 第07話 「私は明日、20年後のきみとデートしない」 (1440x1080i x264-AAC)-DoA.mkv", + "filename": "(ドラマ) 時をかけるな、恋人たち 第07話 「私は明日、20年後のきみとデートしない」 (1440x1080i x264-AAC)-DoA.mkv", + "category": "series", + "title": "(ドラマ) 時をかけるな、恋人たち 第07話 「私は明日、20年後のきみとデートしない」 (14", + "season": 40, + "episodes": [ + 10 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "(ドラマ) 時をかけるな、恋人たち 第07話 「私は明日、20年後のきみとデートしない」 (14" + }, + { + "path": "/mnt/Downloads/series/豺狼的日子.第一季/The.Day.Of.The.Jackal.S01E07.1080p.WEB-DL.DDP5.1.Atmos.x265.10bit-Yumi@FRDS.mkv", + "filename": "The.Day.Of.The.Jackal.S01E07.1080p.WEB-DL.DDP5.1.Atmos.x265.10bit-Yumi@FRDS.mkv", + "category": "series", + "title": "The Day Of The Jackal", + "season": 1, + "episodes": [ + 7 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:222766", + "title_zh": "豺狼的日子", + "title_en": "The Day of the Jackal", + "translation_source": "tmdb", + "reputation_score": 8.154, + "reputation_votes": 951, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"222766\"}" + }, + "display_title": "豺狼的日子 The Day of the Jackal" + }, + { + "path": "/mnt/Downloads/series/豺狼的日子.第一季/The.Day.Of.The.Jackal.S01E06.1080p.WEB-DL.DDP5.1.Atmos.x265.10bit-Yumi@FRDS.mkv", + "filename": "The.Day.Of.The.Jackal.S01E06.1080p.WEB-DL.DDP5.1.Atmos.x265.10bit-Yumi@FRDS.mkv", + "category": "series", + "title": "The Day Of The Jackal", + "season": 1, + "episodes": [ + 6 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:222766", + "title_zh": "豺狼的日子", + "title_en": "The Day of the Jackal", + "translation_source": "tmdb", + "reputation_score": 8.154, + "reputation_votes": 951, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"222766\"}" + }, + "display_title": "豺狼的日子 The Day of the Jackal" + }, + { + "path": "/mnt/Downloads/series/豺狼的日子.第一季/The.Day.Of.The.Jackal.S01E10.1080p.WEB-DL.DDP5.1.Atmos.x265.10bit-Yumi@FRDS.mkv", + "filename": "The.Day.Of.The.Jackal.S01E10.1080p.WEB-DL.DDP5.1.Atmos.x265.10bit-Yumi@FRDS.mkv", + "category": "series", + "title": "The Day Of The Jackal", + "season": 1, + "episodes": [ + 10 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:222766", + "title_zh": "豺狼的日子", + "title_en": "The Day of the Jackal", + "translation_source": "tmdb", + "reputation_score": 8.154, + "reputation_votes": 951, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"222766\"}" + }, + "display_title": "豺狼的日子 The Day of the Jackal" + }, + { + "path": "/mnt/Downloads/series/豺狼的日子.第一季/The.Day.Of.The.Jackal.S01E05.1080p.WEB-DL.DDP5.1.Atmos.x265.10bit-Yumi@FRDS.mkv", + "filename": "The.Day.Of.The.Jackal.S01E05.1080p.WEB-DL.DDP5.1.Atmos.x265.10bit-Yumi@FRDS.mkv", + "category": "series", + "title": "The Day Of The Jackal", + "season": 1, + "episodes": [ + 5 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:222766", + "title_zh": "豺狼的日子", + "title_en": "The Day of the Jackal", + "translation_source": "tmdb", + "reputation_score": 8.154, + "reputation_votes": 951, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"222766\"}" + }, + "display_title": "豺狼的日子 The Day of the Jackal" + }, + { + "path": "/mnt/Downloads/series/豺狼的日子.第一季/The.Day.Of.The.Jackal.S01E04.1080p.WEB-DL.DDP5.1.Atmos.x265.10bit-Yumi@FRDS.mkv", + "filename": "The.Day.Of.The.Jackal.S01E04.1080p.WEB-DL.DDP5.1.Atmos.x265.10bit-Yumi@FRDS.mkv", + "category": "series", + "title": "The Day Of The Jackal", + "season": 1, + "episodes": [ + 4 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:222766", + "title_zh": "豺狼的日子", + "title_en": "The Day of the Jackal", + "translation_source": "tmdb", + "reputation_score": 8.154, + "reputation_votes": 951, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"222766\"}" + }, + "display_title": "豺狼的日子 The Day of the Jackal" + }, + { + "path": "/mnt/Downloads/series/豺狼的日子.第一季/The.Day.Of.The.Jackal.S01E03.1080p.WEB-DL.DDP5.1.Atmos.x265.10bit-Yumi@FRDS.mkv", + "filename": "The.Day.Of.The.Jackal.S01E03.1080p.WEB-DL.DDP5.1.Atmos.x265.10bit-Yumi@FRDS.mkv", + "category": "series", + "title": "The Day Of The Jackal", + "season": 1, + "episodes": [ + 3 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:222766", + "title_zh": "豺狼的日子", + "title_en": "The Day of the Jackal", + "translation_source": "tmdb", + "reputation_score": 8.154, + "reputation_votes": 951, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"222766\"}" + }, + "display_title": "豺狼的日子 The Day of the Jackal" + }, + { + "path": "/mnt/Downloads/series/豺狼的日子.第一季/The.Day.Of.The.Jackal.S01E02.1080p.WEB-DL.DDP5.1.Atmos.x265.10bit-Yumi@FRDS.mkv", + "filename": "The.Day.Of.The.Jackal.S01E02.1080p.WEB-DL.DDP5.1.Atmos.x265.10bit-Yumi@FRDS.mkv", + "category": "series", + "title": "The Day Of The Jackal", + "season": 1, + "episodes": [ + 2 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:222766", + "title_zh": "豺狼的日子", + "title_en": "The Day of the Jackal", + "translation_source": "tmdb", + "reputation_score": 8.154, + "reputation_votes": 951, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"222766\"}" + }, + "display_title": "豺狼的日子 The Day of the Jackal" + }, + { + "path": "/mnt/Downloads/series/豺狼的日子.第一季/The.Day.Of.The.Jackal.S01E01.1080p.WEB-DL.DDP5.1.Atmos.x265.10bit-Yumi@FRDS.mkv", + "filename": "The.Day.Of.The.Jackal.S01E01.1080p.WEB-DL.DDP5.1.Atmos.x265.10bit-Yumi@FRDS.mkv", + "category": "series", + "title": "The Day Of The Jackal", + "season": 1, + "episodes": [ + 1 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:222766", + "title_zh": "豺狼的日子", + "title_en": "The Day of the Jackal", + "translation_source": "tmdb", + "reputation_score": 8.154, + "reputation_votes": 951, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"222766\"}" + }, + "display_title": "豺狼的日子 The Day of the Jackal" + }, + { + "path": "/mnt/Downloads/series/豺狼的日子.第一季/The.Day.Of.The.Jackal.S01E08.1080p.WEB-DL.DDP5.1.Atmos.x265.10bit-Yumi@FRDS.mkv", + "filename": "The.Day.Of.The.Jackal.S01E08.1080p.WEB-DL.DDP5.1.Atmos.x265.10bit-Yumi@FRDS.mkv", + "category": "series", + "title": "The Day Of The Jackal", + "season": 1, + "episodes": [ + 8 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:222766", + "title_zh": "豺狼的日子", + "title_en": "The Day of the Jackal", + "translation_source": "tmdb", + "reputation_score": 8.154, + "reputation_votes": 951, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"222766\"}" + }, + "display_title": "豺狼的日子 The Day of the Jackal" + }, + { + "path": "/mnt/Downloads/series/豺狼的日子.第一季/The.Day.Of.The.Jackal.S01E09.1080p.WEB-DL.DDP5.1.Atmos.x265.10bit-Yumi@FRDS.mkv", + "filename": "The.Day.Of.The.Jackal.S01E09.1080p.WEB-DL.DDP5.1.Atmos.x265.10bit-Yumi@FRDS.mkv", + "category": "series", + "title": "The Day Of The Jackal", + "season": 1, + "episodes": [ + 9 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:222766", + "title_zh": "豺狼的日子", + "title_en": "The Day of the Jackal", + "translation_source": "tmdb", + "reputation_score": 8.154, + "reputation_votes": 951, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"222766\"}" + }, + "display_title": "豺狼的日子 The Day of the Jackal" + }, + { + "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", + "filename": "俺の話は長い.S01E01.1080p.KKTV.WEB-DL.AAC2.0.x264-xiaopie@CHDWEB.mkv", + "category": "series", + "title": "俺の話は長い", + "season": 1, + "episodes": [ + 1 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:95838", + "title_zh": "我的事说来话长", + "title_en": "俺の話は長い", + "translation_source": "tmdb", + "reputation_score": 8.6, + "reputation_votes": 16, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"95838\"}" + }, + "display_title": "我的事说来话长 俺の話は長い" + }, + { + "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", + "filename": "俺の話は長い.S01E05.1080p.KKTV.WEB-DL.AAC2.0.x264-xiaopie@CHDWEB.mkv", + "category": "series", + "title": "俺の話は長い", + "season": 1, + "episodes": [ + 5 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:95838", + "title_zh": "我的事说来话长", + "title_en": "俺の話は長い", + "translation_source": "tmdb", + "reputation_score": 8.6, + "reputation_votes": 16, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"95838\"}" + }, + "display_title": "我的事说来话长 俺の話は長い" + }, + { + "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", + "filename": "俺の話は長い.S01E09.1080p.KKTV.WEB-DL.AAC2.0.x264-xiaopie@CHDWEB.mkv", + "category": "series", + "title": "俺の話は長い", + "season": 1, + "episodes": [ + 9 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:95838", + "title_zh": "我的事说来话长", + "title_en": "俺の話は長い", + "translation_source": "tmdb", + "reputation_score": 8.6, + "reputation_votes": 16, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"95838\"}" + }, + "display_title": "我的事说来话长 俺の話は長い" + }, + { + "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", + "filename": "俺の話は長い.S01E02.1080p.KKTV.WEB-DL.AAC2.0.x264-xiaopie@CHDWEB.mkv", + "category": "series", + "title": "俺の話は長い", + "season": 1, + "episodes": [ + 2 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:95838", + "title_zh": "我的事说来话长", + "title_en": "俺の話は長い", + "translation_source": "tmdb", + "reputation_score": 8.6, + "reputation_votes": 16, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"95838\"}" + }, + "display_title": "我的事说来话长 俺の話は長い" + }, + { + "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", + "filename": "俺の話は長い.S01E06.1080p.KKTV.WEB-DL.AAC2.0.x264-xiaopie@CHDWEB.mkv", + "category": "series", + "title": "俺の話は長い", + "season": 1, + "episodes": [ + 6 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:95838", + "title_zh": "我的事说来话长", + "title_en": "俺の話は長い", + "translation_source": "tmdb", + "reputation_score": 8.6, + "reputation_votes": 16, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"95838\"}" + }, + "display_title": "我的事说来话长 俺の話は長い" + }, + { + "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", + "filename": "俺の話は長い.S01E04.1080p.KKTV.WEB-DL.AAC2.0.x264-xiaopie@CHDWEB.mkv", + "category": "series", + "title": "俺の話は長い", + "season": 1, + "episodes": [ + 4 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:95838", + "title_zh": "我的事说来话长", + "title_en": "俺の話は長い", + "translation_source": "tmdb", + "reputation_score": 8.6, + "reputation_votes": 16, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"95838\"}" + }, + "display_title": "我的事说来话长 俺の話は長い" + }, + { + "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", + "filename": "俺の話は長い.S01E10.1080p.KKTV.WEB-DL.AAC2.0.x264-xiaopie@CHDWEB.mkv", + "category": "series", + "title": "俺の話は長い", + "season": 1, + "episodes": [ + 10 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:95838", + "title_zh": "我的事说来话长", + "title_en": "俺の話は長い", + "translation_source": "tmdb", + "reputation_score": 8.6, + "reputation_votes": 16, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"95838\"}" + }, + "display_title": "我的事说来话长 俺の話は長い" + }, + { + "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", + "filename": "俺の話は長い.S01E08.1080p.KKTV.WEB-DL.AAC2.0.x264-xiaopie@CHDWEB.mkv", + "category": "series", + "title": "俺の話は長い", + "season": 1, + "episodes": [ + 8 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:95838", + "title_zh": "我的事说来话长", + "title_en": "俺の話は長い", + "translation_source": "tmdb", + "reputation_score": 8.6, + "reputation_votes": 16, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"95838\"}" + }, + "display_title": "我的事说来话长 俺の話は長い" + }, + { + "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", + "filename": "俺の話は長い.S01E07.1080p.KKTV.WEB-DL.AAC2.0.x264-xiaopie@CHDWEB.mkv", + "category": "series", + "title": "俺の話は長い", + "season": 1, + "episodes": [ + 7 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:95838", + "title_zh": "我的事说来话长", + "title_en": "俺の話は長い", + "translation_source": "tmdb", + "reputation_score": 8.6, + "reputation_votes": 16, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"95838\"}" + }, + "display_title": "我的事说来话长 俺の話は長い" + }, + { + "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", + "filename": "俺の話は長い.S01E03.1080p.KKTV.WEB-DL.AAC2.0.x264-xiaopie@CHDWEB.mkv", + "category": "series", + "title": "俺の話は長い", + "season": 1, + "episodes": [ + 3 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:95838", + "title_zh": "我的事说来话长", + "title_en": "俺の話は長い", + "translation_source": "tmdb", + "reputation_score": 8.6, + "reputation_votes": 16, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"95838\"}" + }, + "display_title": "我的事说来话长 俺の話は長い" + }, + { + "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", + "filename": "Big.Mouth.S01E14.2022.Disney+.WEB-DL.1080p.H264.AAC-HDCTV.mkv", + "category": "series", + "title": "Big Mouth", + "season": 1, + "episodes": [ + 14 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:74204", + "title_zh": "青春无禁忌", + "title_en": "Big Mouth", + "translation_source": "tmdb", + "reputation_score": 7.6, + "reputation_votes": 1183, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"74204\"}" + }, + "display_title": "青春无禁忌 Big Mouth" + }, + { + "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", + "filename": "Big.Mouth.S01E10.2022.Disney+.WEB-DL.1080p.H264.AAC-HDCTV.mkv", + "category": "series", + "title": "Big Mouth", + "season": 1, + "episodes": [ + 10 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:74204", + "title_zh": "青春无禁忌", + "title_en": "Big Mouth", + "translation_source": "tmdb", + "reputation_score": 7.6, + "reputation_votes": 1183, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"74204\"}" + }, + "display_title": "青春无禁忌 Big Mouth" + }, + { + "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", + "filename": "Big.Mouth.S01E07.2022.Disney+.WEB-DL.1080p.H264.AAC-HDCTV.mkv", + "category": "series", + "title": "Big Mouth", + "season": 1, + "episodes": [ + 7 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:74204", + "title_zh": "青春无禁忌", + "title_en": "Big Mouth", + "translation_source": "tmdb", + "reputation_score": 7.6, + "reputation_votes": 1183, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"74204\"}" + }, + "display_title": "青春无禁忌 Big Mouth" + }, + { + "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", + "filename": "Big.Mouth.S01E03.2022.Disney+.WEB-DL.1080p.H264.AAC-HDCTV.mkv", + "category": "series", + "title": "Big Mouth", + "season": 1, + "episodes": [ + 3 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:74204", + "title_zh": "青春无禁忌", + "title_en": "Big Mouth", + "translation_source": "tmdb", + "reputation_score": 7.6, + "reputation_votes": 1183, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"74204\"}" + }, + "display_title": "青春无禁忌 Big Mouth" + }, + { + "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", + "filename": "Big.Mouth.S01E06.2022.Disney+.WEB-DL.1080p.H264.AAC-HDCTV.mkv", + "category": "series", + "title": "Big Mouth", + "season": 1, + "episodes": [ + 6 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:74204", + "title_zh": "青春无禁忌", + "title_en": "Big Mouth", + "translation_source": "tmdb", + "reputation_score": 7.6, + "reputation_votes": 1183, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"74204\"}" + }, + "display_title": "青春无禁忌 Big Mouth" + }, + { + "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", + "filename": "Big.Mouth.S01E02.2022.Disney+.WEB-DL.1080p.H264.AAC-HDCTV.mkv", + "category": "series", + "title": "Big Mouth", + "season": 1, + "episodes": [ + 2 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:74204", + "title_zh": "青春无禁忌", + "title_en": "Big Mouth", + "translation_source": "tmdb", + "reputation_score": 7.6, + "reputation_votes": 1183, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"74204\"}" + }, + "display_title": "青春无禁忌 Big Mouth" + }, + { + "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", + "filename": "Big.Mouth.S01E15.2022.Disney+.WEB-DL.1080p.H264.AAC-HDCTV.mkv", + "category": "series", + "title": "Big Mouth", + "season": 1, + "episodes": [ + 15 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:74204", + "title_zh": "青春无禁忌", + "title_en": "Big Mouth", + "translation_source": "tmdb", + "reputation_score": 7.6, + "reputation_votes": 1183, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"74204\"}" + }, + "display_title": "青春无禁忌 Big Mouth" + }, + { + "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", + "filename": "Big.Mouth.S01E11.2022.Disney+.WEB-DL.1080p.H264.AAC-HDCTV.mkv", + "category": "series", + "title": "Big Mouth", + "season": 1, + "episodes": [ + 11 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:74204", + "title_zh": "青春无禁忌", + "title_en": "Big Mouth", + "translation_source": "tmdb", + "reputation_score": 7.6, + "reputation_votes": 1183, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"74204\"}" + }, + "display_title": "青春无禁忌 Big Mouth" + }, + { + "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", + "filename": "Big.Mouth.S01E04.2022.Disney+.WEB-DL.1080p.H264.AAC-HDCTV.mkv", + "category": "series", + "title": "Big Mouth", + "season": 1, + "episodes": [ + 4 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:74204", + "title_zh": "青春无禁忌", + "title_en": "Big Mouth", + "translation_source": "tmdb", + "reputation_score": 7.6, + "reputation_votes": 1183, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"74204\"}" + }, + "display_title": "青春无禁忌 Big Mouth" + }, + { + "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", + "filename": "Big.Mouth.S01E08.2022.Disney+.WEB-DL.1080p.H264.AAC-HDCTV.mkv", + "category": "series", + "title": "Big Mouth", + "season": 1, + "episodes": [ + 8 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:74204", + "title_zh": "青春无禁忌", + "title_en": "Big Mouth", + "translation_source": "tmdb", + "reputation_score": 7.6, + "reputation_votes": 1183, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"74204\"}" + }, + "display_title": "青春无禁忌 Big Mouth" + }, + { + "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", + "filename": "Big.Mouth.S01E13.2022.Disney+.WEB-DL.1080p.H264.AAC-HDCTV.mkv", + "category": "series", + "title": "Big Mouth", + "season": 1, + "episodes": [ + 13 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:74204", + "title_zh": "青春无禁忌", + "title_en": "Big Mouth", + "translation_source": "tmdb", + "reputation_score": 7.6, + "reputation_votes": 1183, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"74204\"}" + }, + "display_title": "青春无禁忌 Big Mouth" + }, + { + "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", + "filename": "Big.Mouth.S01E16.2022.Disney+.WEB-DL.1080p.H264.AAC-HDCTV.mkv", + "category": "series", + "title": "Big Mouth", + "season": 1, + "episodes": [ + 16 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:74204", + "title_zh": "青春无禁忌", + "title_en": "Big Mouth", + "translation_source": "tmdb", + "reputation_score": 7.6, + "reputation_votes": 1183, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"74204\"}" + }, + "display_title": "青春无禁忌 Big Mouth" + }, + { + "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", + "filename": "Big.Mouth.S01E09.2022.Disney+.WEB-DL.1080p.H264.AAC-HDCTV.mkv", + "category": "series", + "title": "Big Mouth", + "season": 1, + "episodes": [ + 9 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:74204", + "title_zh": "青春无禁忌", + "title_en": "Big Mouth", + "translation_source": "tmdb", + "reputation_score": 7.6, + "reputation_votes": 1183, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"74204\"}" + }, + "display_title": "青春无禁忌 Big Mouth" + }, + { + "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", + "filename": "Big.Mouth.S01E12.2022.Disney+.WEB-DL.1080p.H264.AAC-HDCTV.mkv", + "category": "series", + "title": "Big Mouth", + "season": 1, + "episodes": [ + 12 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:74204", + "title_zh": "青春无禁忌", + "title_en": "Big Mouth", + "translation_source": "tmdb", + "reputation_score": 7.6, + "reputation_votes": 1183, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"74204\"}" + }, + "display_title": "青春无禁忌 Big Mouth" + }, + { + "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", + "filename": "Big.Mouth.S01E05.2022.Disney+.WEB-DL.1080p.H264.AAC-HDCTV.mkv", + "category": "series", + "title": "Big Mouth", + "season": 1, + "episodes": [ + 5 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:74204", + "title_zh": "青春无禁忌", + "title_en": "Big Mouth", + "translation_source": "tmdb", + "reputation_score": 7.6, + "reputation_votes": 1183, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"74204\"}" + }, + "display_title": "青春无禁忌 Big Mouth" + }, + { + "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", + "filename": "Big.Mouth.S01E01.2022.Disney+.WEB-DL.1080p.H264.AAC-HDCTV.mkv", + "category": "series", + "title": "Big Mouth", + "season": 1, + "episodes": [ + 1 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:74204", + "title_zh": "青春无禁忌", + "title_en": "Big Mouth", + "translation_source": "tmdb", + "reputation_score": 7.6, + "reputation_votes": 1183, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"74204\"}" + }, + "display_title": "青春无禁忌 Big Mouth" + }, + { + "path": "/mnt/Downloads/series/Dark.Matter.2024.S01E03.The.Box.1080p.ATVP.WEB-DL.DDP5.1.H.264-NTb.mkv", + "filename": "Dark.Matter.2024.S01E03.The.Box.1080p.ATVP.WEB-DL.DDP5.1.H.264-NTb.mkv", + "category": "series", + "title": "Dark Matter 2024", + "season": 1, + "episodes": [ + 3 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Dark Matter 2024" + }, + { + "path": "/mnt/Downloads/series/Reacher.S03E01.Persuader.1080p.AMZN.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv", + "filename": "Reacher.S03E01.Persuader.1080p.AMZN.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv", + "category": "series", + "title": "Reacher", + "season": 3, + "episodes": [ + 1 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:108978", + "title_zh": "侠探杰克", + "title_en": "Reacher", + "translation_source": "tmdb", + "reputation_score": 8.084, + "reputation_votes": 2645, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"108978\"}" + }, + "display_title": "侠探杰克 Reacher" + }, + { + "path": "/mnt/Downloads/series/True.Detective.S04E01.Night.Country.Part.1.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv", + "filename": "True.Detective.S04E01.Night.Country.Part.1.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv", + "category": "series", + "title": "True Detective", + "season": 4, + "episodes": [ + 1 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:46648", + "title_zh": "真探", + "title_en": "True Detective", + "translation_source": "tmdb", + "reputation_score": 8.282, + "reputation_votes": 3932, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"46648\"}" + }, + "display_title": "真探 True Detective" + }, + { + "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", + "filename": "True.Detective.S04E06.Night.Country.Part.6.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv", + "category": "series", + "title": "True Detective", + "season": 4, + "episodes": [ + 6 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:46648", + "title_zh": "真探", + "title_en": "True Detective", + "translation_source": "tmdb", + "reputation_score": 8.282, + "reputation_votes": 3932, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"46648\"}" + }, + "display_title": "真探 True Detective" + }, + { + "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", + "filename": "Sell.Your.Haunted.House.S01E01.1080p.WEB-DL.AAC2.0.H264-TTG.mkv", + "category": "series", + "title": "Sell Your Haunted House", + "season": 1, + "episodes": [ + 1 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:121695", + "title_zh": "大发不动产", + "title_en": "대박부동산", + "translation_source": "tmdb", + "reputation_score": 7.1, + "reputation_votes": 50, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"121695\"}" + }, + "display_title": "大发不动产 대박부동산" + }, + { + "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", + "filename": "Sell.Your.Haunted.House.S01E04.1080p.WEB-DL.AAC2.0.H264-TTG.mkv", + "category": "series", + "title": "Sell Your Haunted House", + "season": 1, + "episodes": [ + 4 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:121695", + "title_zh": "大发不动产", + "title_en": "대박부동산", + "translation_source": "tmdb", + "reputation_score": 7.1, + "reputation_votes": 50, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"121695\"}" + }, + "display_title": "大发不动产 대박부동산" + }, + { + "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", + "filename": "Sell.Your.Haunted.House.S01E02.1080p.WEB-DL.AAC2.0.H264-TTG.mkv", + "category": "series", + "title": "Sell Your Haunted House", + "season": 1, + "episodes": [ + 2 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:121695", + "title_zh": "大发不动产", + "title_en": "대박부동산", + "translation_source": "tmdb", + "reputation_score": 7.1, + "reputation_votes": 50, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"121695\"}" + }, + "display_title": "大发不动产 대박부동산" + }, + { + "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", + "filename": "Sell.Your.Haunted.House.S01E03.1080p.WEB-DL.AAC2.0.H264-TTG.mkv", + "category": "series", + "title": "Sell Your Haunted House", + "season": 1, + "episodes": [ + 3 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:121695", + "title_zh": "大发不动产", + "title_en": "대박부동산", + "translation_source": "tmdb", + "reputation_score": 7.1, + "reputation_votes": 50, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"121695\"}" + }, + "display_title": "大发不动产 대박부동산" + }, + { + "path": "/mnt/Downloads/series/こっち向いてよ向井くん EP04 720p HDTV x264 AAC-DoA.mkv", + "filename": "こっち向いてよ向井くん EP04 720p HDTV x264 AAC-DoA.mkv", + "category": "series", + "title": "こっち向いてよ向井くん Ep04 -Doa", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "こっち向いてよ向井くん Ep04 -Doa" + }, + { + "path": "/mnt/Downloads/series/RoOT 第03話 1080p KKTV WEB-DL H264 AAC.mkv", + "filename": "RoOT 第03話 1080p KKTV WEB-DL H264 AAC.mkv", + "category": "series", + "title": "Root 第03話 Kktv", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Root 第03話 Kktv" + }, + { + "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", + "filename": "Light.Shop.S01E02.2024.2160p.DSNP.WEB-DL.DDP5.1.Atmos.HDR.H.265-HHWEB.mkv", + "category": "series", + "title": "Light Shop", + "season": 1, + "episodes": [ + 2 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:226529", + "title_zh": "照明商店", + "title_en": "조명가게", + "translation_source": "tmdb", + "reputation_score": 8.42, + "reputation_votes": 231, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"226529\"}" + }, + "display_title": "照明商店 조명가게" + }, + { + "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", + "filename": "Light.Shop.S01E05.2024.2160p.DSNP.WEB-DL.DDP5.1.Atmos.HDR.H.265-HHWEB.mkv", + "category": "series", + "title": "Light Shop", + "season": 1, + "episodes": [ + 5 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:226529", + "title_zh": "照明商店", + "title_en": "조명가게", + "translation_source": "tmdb", + "reputation_score": 8.42, + "reputation_votes": 231, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"226529\"}" + }, + "display_title": "照明商店 조명가게" + }, + { + "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", + "filename": "Light.Shop.S01E03.2024.2160p.DSNP.WEB-DL.DDP5.1.Atmos.HDR.H.265-HHWEB.mkv", + "category": "series", + "title": "Light Shop", + "season": 1, + "episodes": [ + 3 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:226529", + "title_zh": "照明商店", + "title_en": "조명가게", + "translation_source": "tmdb", + "reputation_score": 8.42, + "reputation_votes": 231, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"226529\"}" + }, + "display_title": "照明商店 조명가게" + }, + { + "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", + "filename": "Light.Shop.S01E04.2024.2160p.DSNP.WEB-DL.DDP5.1.Atmos.HDR.H.265-HHWEB.mkv", + "category": "series", + "title": "Light Shop", + "season": 1, + "episodes": [ + 4 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:226529", + "title_zh": "照明商店", + "title_en": "조명가게", + "translation_source": "tmdb", + "reputation_score": 8.42, + "reputation_votes": 231, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"226529\"}" + }, + "display_title": "照明商店 조명가게" + }, + { + "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", + "filename": "Light.Shop.S01E07.2024.2160p.DSNP.WEB-DL.DDP5.1.Atmos.HDR.H.265-HHWEB.mkv", + "category": "series", + "title": "Light Shop", + "season": 1, + "episodes": [ + 7 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:226529", + "title_zh": "照明商店", + "title_en": "조명가게", + "translation_source": "tmdb", + "reputation_score": 8.42, + "reputation_votes": 231, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"226529\"}" + }, + "display_title": "照明商店 조명가게" + }, + { + "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", + "filename": "Light.Shop.S01E08.2024.2160p.DSNP.WEB-DL.DDP5.1.Atmos.HDR.H.265-HHWEB.mkv", + "category": "series", + "title": "Light Shop", + "season": 1, + "episodes": [ + 8 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:226529", + "title_zh": "照明商店", + "title_en": "조명가게", + "translation_source": "tmdb", + "reputation_score": 8.42, + "reputation_votes": 231, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"226529\"}" + }, + "display_title": "照明商店 조명가게" + }, + { + "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", + "filename": "Light.Shop.S01E06.2024.2160p.DSNP.WEB-DL.DDP5.1.Atmos.HDR.H.265-HHWEB.mkv", + "category": "series", + "title": "Light Shop", + "season": 1, + "episodes": [ + 6 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:226529", + "title_zh": "照明商店", + "title_en": "조명가게", + "translation_source": "tmdb", + "reputation_score": 8.42, + "reputation_votes": 231, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"226529\"}" + }, + "display_title": "照明商店 조명가게" + }, + { + "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", + "filename": "Light.Shop.S01E01.2024.2160p.DSNP.WEB-DL.DDP5.1.Atmos.HDR.H.265-HHWEB.mkv", + "category": "series", + "title": "Light Shop", + "season": 1, + "episodes": [ + 1 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:226529", + "title_zh": "照明商店", + "title_en": "조명가게", + "translation_source": "tmdb", + "reputation_score": 8.42, + "reputation_votes": 231, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"226529\"}" + }, + "display_title": "照明商店 조명가게" + }, + { + "path": "/mnt/Downloads/series/Shogun.2024.S01E03.Tomorrow.Is.Tomorrow.1080p.DSNP.WEB-DL.DDP5.1.H.264-APEX.mkv", + "filename": "Shogun.2024.S01E03.Tomorrow.Is.Tomorrow.1080p.DSNP.WEB-DL.DDP5.1.H.264-APEX.mkv", + "category": "series", + "title": "Shogun 2024", + "season": 1, + "episodes": [ + 3 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Shogun 2024" + }, + { + "path": "/mnt/Downloads/series/(ドラマ) 時をかけるな、恋人たち 第04話 「ある日浅草のどこかで」 (1440x1080i x264-AAC)-DoA.mkv", + "filename": "(ドラマ) 時をかけるな、恋人たち 第04話 「ある日浅草のどこかで」 (1440x1080i x264-AAC)-DoA.mkv", + "category": "series", + "title": "(ドラマ) 時をかけるな、恋人たち 第04話 「ある日浅草のどこかで」 (14", + "season": 40, + "episodes": [ + 10 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "(ドラマ) 時をかけるな、恋人たち 第04話 「ある日浅草のどこかで」 (14" + }, + { + "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", + "filename": "Nine.Puzzles.S01E04.Episode.4.1080p.Disney+.WEB-DL.DDP.5.1.Atmos.H.264-CHDWEB.mkv", + "category": "series", + "title": "Nine Puzzles", + "season": 1, + "episodes": [ + 4 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:227191", + "title_zh": "血谜拼图", + "title_en": "나인 퍼즐", + "translation_source": "tmdb", + "reputation_score": 7.821, + "reputation_votes": 67, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"227191\"}" + }, + "display_title": "血谜拼图 나인 퍼즐" + }, + { + "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", + "filename": "Nine.Puzzles.S01E09.Episode.9.1080p.Disney+.WEB-DL.DDP.5.1.Atmos.H.264-CHDWEB.mkv", + "category": "series", + "title": "Nine Puzzles", + "season": 1, + "episodes": [ + 9 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:227191", + "title_zh": "血谜拼图", + "title_en": "나인 퍼즐", + "translation_source": "tmdb", + "reputation_score": 7.821, + "reputation_votes": 67, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"227191\"}" + }, + "display_title": "血谜拼图 나인 퍼즐" + }, + { + "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", + "filename": "Nine.Puzzles.S01E05.Episode.5.1080p.Disney+.WEB-DL.DDP.5.1.Atmos.H.264-CHDWEB.mkv", + "category": "series", + "title": "Nine Puzzles", + "season": 1, + "episodes": [ + 5 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:227191", + "title_zh": "血谜拼图", + "title_en": "나인 퍼즐", + "translation_source": "tmdb", + "reputation_score": 7.821, + "reputation_votes": 67, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"227191\"}" + }, + "display_title": "血谜拼图 나인 퍼즐" + }, + { + "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", + "filename": "Nine.Puzzles.S01E08.Episode.8.1080p.Disney+.WEB-DL.DDP.5.1.Atmos.H.264-CHDWEB.mkv", + "category": "series", + "title": "Nine Puzzles", + "season": 1, + "episodes": [ + 8 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:227191", + "title_zh": "血谜拼图", + "title_en": "나인 퍼즐", + "translation_source": "tmdb", + "reputation_score": 7.821, + "reputation_votes": 67, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"227191\"}" + }, + "display_title": "血谜拼图 나인 퍼즐" + }, + { + "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", + "filename": "Nine.Puzzles.S01E01.Episode.1.1080p.Disney+.WEB-DL.DDP.5.1.Atmos.H.264-CHDWEB.mkv", + "category": "series", + "title": "Nine Puzzles", + "season": 1, + "episodes": [ + 1 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:227191", + "title_zh": "血谜拼图", + "title_en": "나인 퍼즐", + "translation_source": "tmdb", + "reputation_score": 7.821, + "reputation_votes": 67, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"227191\"}" + }, + "display_title": "血谜拼图 나인 퍼즐" + }, + { + "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", + "filename": "Nine.Puzzles.S01E07.Episode.7.1080p.Disney+.WEB-DL.DDP.5.1.Atmos.H.264-CHDWEB.mkv", + "category": "series", + "title": "Nine Puzzles", + "season": 1, + "episodes": [ + 7 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:227191", + "title_zh": "血谜拼图", + "title_en": "나인 퍼즐", + "translation_source": "tmdb", + "reputation_score": 7.821, + "reputation_votes": 67, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"227191\"}" + }, + "display_title": "血谜拼图 나인 퍼즐" + }, + { + "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", + "filename": "Nine.Puzzles.S01E10.Episode.10.1080p.Disney+.WEB-DL.DDP.5.1.Atmos.H.264-CHDWEB.mkv", + "category": "series", + "title": "Nine Puzzles", + "season": 1, + "episodes": [ + 10 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:227191", + "title_zh": "血谜拼图", + "title_en": "나인 퍼즐", + "translation_source": "tmdb", + "reputation_score": 7.821, + "reputation_votes": 67, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"227191\"}" + }, + "display_title": "血谜拼图 나인 퍼즐" + }, + { + "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", + "filename": "Nine.Puzzles.S01E03.Episode.3.1080p.Disney+.WEB-DL.DDP.5.1.Atmos.H.264-CHDWEB.mkv", + "category": "series", + "title": "Nine Puzzles", + "season": 1, + "episodes": [ + 3 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:227191", + "title_zh": "血谜拼图", + "title_en": "나인 퍼즐", + "translation_source": "tmdb", + "reputation_score": 7.821, + "reputation_votes": 67, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"227191\"}" + }, + "display_title": "血谜拼图 나인 퍼즐" + }, + { + "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", + "filename": "Nine.Puzzles.S01E11.Episode.11.1080p.Disney+.WEB-DL.DDP.5.1.Atmos.H.264-CHDWEB.mkv", + "category": "series", + "title": "Nine Puzzles", + "season": 1, + "episodes": [ + 11 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:227191", + "title_zh": "血谜拼图", + "title_en": "나인 퍼즐", + "translation_source": "tmdb", + "reputation_score": 7.821, + "reputation_votes": 67, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"227191\"}" + }, + "display_title": "血谜拼图 나인 퍼즐" + }, + { + "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", + "filename": "Nine.Puzzles.S01E02.Episode.2.1080p.Disney+.WEB-DL.DDP.5.1.Atmos.H.264-CHDWEB.mkv", + "category": "series", + "title": "Nine Puzzles", + "season": 1, + "episodes": [ + 2 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:227191", + "title_zh": "血谜拼图", + "title_en": "나인 퍼즐", + "translation_source": "tmdb", + "reputation_score": 7.821, + "reputation_votes": 67, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"227191\"}" + }, + "display_title": "血谜拼图 나인 퍼즐" + }, + { + "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", + "filename": "Nine.Puzzles.S01E06.Episode.6.1080p.Disney+.WEB-DL.DDP.5.1.Atmos.H.264-CHDWEB.mkv", + "category": "series", + "title": "Nine Puzzles", + "season": 1, + "episodes": [ + 6 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:227191", + "title_zh": "血谜拼图", + "title_en": "나인 퍼즐", + "translation_source": "tmdb", + "reputation_score": 7.821, + "reputation_votes": 67, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"227191\"}" + }, + "display_title": "血谜拼图 나인 퍼즐" + }, + { + "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", + "filename": "Shrink-精神科医ヨワイ- 第01話 1080p AMZN WEB-DL H264 AAC-e@DoA.mp4", + "category": "series", + "title": "Shrink-精神科医ヨワイ- 第01話 Amzn -E@Doa", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Shrink-精神科医ヨワイ- 第01話 Amzn -E@Doa" + }, + { + "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", + "filename": "Shrink-精神科医ヨワイ- 第03話 END 1080p AMZN WEB-DL H264 AAC-e@DoA.mp4", + "category": "series", + "title": "Shrink-精神科医ヨワイ- 第03話 End Amzn -E@Doa", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Shrink-精神科医ヨワイ- 第03話 End Amzn -E@Doa" + }, + { + "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", + "filename": "Shrink-精神科医ヨワイ- 第02話 1080p AMZN WEB-DL H264 AAC-e@DoA.mp4", + "category": "series", + "title": "Shrink-精神科医ヨワイ- 第02話 Amzn -E@Doa", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Shrink-精神科医ヨワイ- 第02話 Amzn -E@Doa" + }, + { + "path": "/mnt/Downloads/series/RoOT 第09話 1080p KKTV WEB-DL H264 AAC.mkv", + "filename": "RoOT 第09話 1080p KKTV WEB-DL H264 AAC.mkv", + "category": "series", + "title": "Root 第09話 Kktv", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Root 第09話 Kktv" + }, + { + "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", + "filename": "My.Undead.Yokai.Girlfriend.S01E02.Happy.Death.Ritual.1080p.AMZN.WEB-DL.DDP5.1.H.264-ADWeb.mkv", + "category": "series", + "title": "My Undead Yokai Girlfriend", + "season": 1, + "episodes": [ + 2 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:248395", + "title_zh": "我亲爱的妖怪女友", + "title_en": "僕の愛しい妖怪ガールフレンド", + "translation_source": "tmdb", + "reputation_score": 6.2, + "reputation_votes": 13, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"248395\"}" + }, + "display_title": "我亲爱的妖怪女友 僕の愛しい妖怪ガールフレンド" + }, + { + "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", + "filename": "My.Undead.Yokai.Girlfriend.S01E07.Premonition.of.a.Storm.1080p.AMZN.WEB-DL.DDP5.1.H.264-ADWeb.mkv", + "category": "series", + "title": "My Undead Yokai Girlfriend", + "season": 1, + "episodes": [ + 7 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:248395", + "title_zh": "我亲爱的妖怪女友", + "title_en": "僕の愛しい妖怪ガールフレンド", + "translation_source": "tmdb", + "reputation_score": 6.2, + "reputation_votes": 13, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"248395\"}" + }, + "display_title": "我亲爱的妖怪女友 僕の愛しい妖怪ガールフレンド" + }, + { + "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", + "filename": "My.Undead.Yokai.Girlfriend.S01E08.If.You.Love.Someone.1080p.AMZN.WEB-DL.DDP5.1.H.264-ADWeb.mkv", + "category": "series", + "title": "My Undead Yokai Girlfriend", + "season": 1, + "episodes": [ + 8 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:248395", + "title_zh": "我亲爱的妖怪女友", + "title_en": "僕の愛しい妖怪ガールフレンド", + "translation_source": "tmdb", + "reputation_score": 6.2, + "reputation_votes": 13, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"248395\"}" + }, + "display_title": "我亲爱的妖怪女友 僕の愛しい妖怪ガールフレンド" + }, + { + "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", + "filename": "My.Undead.Yokai.Girlfriend.S01E03.Ground.Rules.1080p.AMZN.WEB-DL.DDP5.1.H.264-ADWeb.mkv", + "category": "series", + "title": "My Undead Yokai Girlfriend", + "season": 1, + "episodes": [ + 3 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:248395", + "title_zh": "我亲爱的妖怪女友", + "title_en": "僕の愛しい妖怪ガールフレンド", + "translation_source": "tmdb", + "reputation_score": 6.2, + "reputation_votes": 13, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"248395\"}" + }, + "display_title": "我亲爱的妖怪女友 僕の愛しい妖怪ガールフレンド" + }, + { + "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", + "filename": "My.Undead.Yokai.Girlfriend.S01E05.Happy.Birthday.Detective.Inukai.1080p.AMZN.WEB-DL.DDP5.1.H.264-ADWeb.mkv", + "category": "series", + "title": "My Undead Yokai Girlfriend", + "season": 1, + "episodes": [ + 5 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:248395", + "title_zh": "我亲爱的妖怪女友", + "title_en": "僕の愛しい妖怪ガールフレンド", + "translation_source": "tmdb", + "reputation_score": 6.2, + "reputation_votes": 13, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"248395\"}" + }, + "display_title": "我亲爱的妖怪女友 僕の愛しい妖怪ガールフレンド" + }, + { + "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", + "filename": "My.Undead.Yokai.Girlfriend.S01E01.Meet.Creepy-Cute.1080p.AMZN.WEB-DL.DDP5.1.H.264-ADWeb.mkv", + "category": "series", + "title": "My Undead Yokai Girlfriend", + "season": 1, + "episodes": [ + 1 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:248395", + "title_zh": "我亲爱的妖怪女友", + "title_en": "僕の愛しい妖怪ガールフレンド", + "translation_source": "tmdb", + "reputation_score": 6.2, + "reputation_votes": 13, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"248395\"}" + }, + "display_title": "我亲爱的妖怪女友 僕の愛しい妖怪ガールフレンド" + }, + { + "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", + "filename": "My.Undead.Yokai.Girlfriend.S01E04.Baiting.and.Dating.1080p.AMZN.WEB-DL.DDP5.1.H.264-ADWeb.mkv", + "category": "series", + "title": "My Undead Yokai Girlfriend", + "season": 1, + "episodes": [ + 4 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:248395", + "title_zh": "我亲爱的妖怪女友", + "title_en": "僕の愛しい妖怪ガールフレンド", + "translation_source": "tmdb", + "reputation_score": 6.2, + "reputation_votes": 13, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"248395\"}" + }, + "display_title": "我亲爱的妖怪女友 僕の愛しい妖怪ガールフレンド" + }, + { + "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", + "filename": "My.Undead.Yokai.Girlfriend.S01E06.Broken.Dreams.1080p.AMZN.WEB-DL.DDP5.1.H.264-ADWeb.mkv", + "category": "series", + "title": "My Undead Yokai Girlfriend", + "season": 1, + "episodes": [ + 6 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:248395", + "title_zh": "我亲爱的妖怪女友", + "title_en": "僕の愛しい妖怪ガールフレンド", + "translation_source": "tmdb", + "reputation_score": 6.2, + "reputation_votes": 13, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"248395\"}" + }, + "display_title": "我亲爱的妖怪女友 僕の愛しい妖怪ガールフレンド" + }, + { + "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", + "filename": "Moon.Knight.S01E06.Gods.and.Monsters.2160p.WEB-DL.DDP5.1.Atmos.H.265-TBD.mkv", + "category": "series", + "title": "Moon Knight", + "season": 1, + "episodes": [ + 6 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:92749", + "title_zh": "月光骑士", + "title_en": "Moon Knight", + "translation_source": "tmdb", + "reputation_score": 7.653, + "reputation_votes": 3355, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"92749\"}" + }, + "display_title": "月光骑士 Moon Knight" + }, + { + "path": "/mnt/Downloads/series/Dark.Matter.2024.S01E05.Worldless.1080p.ATVP.WEB-DL.DDP5.1.H.264-NTb.mkv", + "filename": "Dark.Matter.2024.S01E05.Worldless.1080p.ATVP.WEB-DL.DDP5.1.H.264-NTb.mkv", + "category": "series", + "title": "Dark Matter 2024", + "season": 1, + "episodes": [ + 5 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Dark Matter 2024" + }, + { + "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", + "filename": "Westworld.S04E06.1080p.HMAX.WEB-DL.x264.DD5.1-PTerWEB.mkv", + "category": "series", + "title": "Westworld", + "season": 4, + "episodes": [ + 6 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:63247", + "title_zh": "西部世界", + "title_en": "Westworld", + "translation_source": "tmdb", + "reputation_score": 8.024, + "reputation_votes": 5998, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"63247\"}" + }, + "display_title": "西部世界 Westworld" + }, + { + "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", + "filename": "Westworld.S04E02.1080p.HMAX.WEB-DL.x264.DD5.1-PTerWEB.mkv", + "category": "series", + "title": "Westworld", + "season": 4, + "episodes": [ + 2 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:63247", + "title_zh": "西部世界", + "title_en": "Westworld", + "translation_source": "tmdb", + "reputation_score": 8.024, + "reputation_votes": 5998, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"63247\"}" + }, + "display_title": "西部世界 Westworld" + }, + { + "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", + "filename": "Westworld.S04E07.1080p.HMAX.WEB-DL.x264.DD5.1-PTerWEB.mkv", + "category": "series", + "title": "Westworld", + "season": 4, + "episodes": [ + 7 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:63247", + "title_zh": "西部世界", + "title_en": "Westworld", + "translation_source": "tmdb", + "reputation_score": 8.024, + "reputation_votes": 5998, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"63247\"}" + }, + "display_title": "西部世界 Westworld" + }, + { + "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", + "filename": "Westworld.S04E04.1080p.HMAX.WEB-DL.x264.DD5.1-PTerWEB.mkv", + "category": "series", + "title": "Westworld", + "season": 4, + "episodes": [ + 4 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:63247", + "title_zh": "西部世界", + "title_en": "Westworld", + "translation_source": "tmdb", + "reputation_score": 8.024, + "reputation_votes": 5998, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"63247\"}" + }, + "display_title": "西部世界 Westworld" + }, + { + "path": "/mnt/Downloads/series/こっち向いてよ向井くん EP05 720p HDTV x264 AAC-DoA.mkv", + "filename": "こっち向いてよ向井くん EP05 720p HDTV x264 AAC-DoA.mkv", + "category": "series", + "title": "こっち向いてよ向井くん Ep05 -Doa", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "こっち向いてよ向井くん Ep05 -Doa" + }, + { + "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", + "filename": "Mercy.For.None.S01E03.Episode.3.1080p.NF.WEB-DL.DUAL.DDP5.1.Atmos.H.264-FLUX.mkv", + "category": "series", + "title": "Mercy For None", + "season": 1, + "episodes": [ + 3 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:232766", + "title_zh": "无赦之仇", + "title_en": "광장", + "translation_source": "tmdb", + "reputation_score": 7.748, + "reputation_votes": 133, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"232766\"}" + }, + "display_title": "无赦之仇 광장" + }, + { + "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", + "filename": "Mercy.For.None.S01E04.Episode.4.1080p.NF.WEB-DL.DUAL.DDP5.1.Atmos.H.264-FLUX.mkv", + "category": "series", + "title": "Mercy For None", + "season": 1, + "episodes": [ + 4 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:232766", + "title_zh": "无赦之仇", + "title_en": "광장", + "translation_source": "tmdb", + "reputation_score": 7.748, + "reputation_votes": 133, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"232766\"}" + }, + "display_title": "无赦之仇 광장" + }, + { + "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", + "filename": "Mercy.For.None.S01E07.Episode.7.1080p.NF.WEB-DL.DUAL.DDP5.1.Atmos.H.264-FLUX.mkv", + "category": "series", + "title": "Mercy For None", + "season": 1, + "episodes": [ + 7 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:232766", + "title_zh": "无赦之仇", + "title_en": "광장", + "translation_source": "tmdb", + "reputation_score": 7.748, + "reputation_votes": 133, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"232766\"}" + }, + "display_title": "无赦之仇 광장" + }, + { + "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", + "filename": "Mercy.For.None.S01E05.Episode.5.1080p.NF.WEB-DL.DUAL.DDP5.1.Atmos.H.264-FLUX.mkv", + "category": "series", + "title": "Mercy For None", + "season": 1, + "episodes": [ + 5 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:232766", + "title_zh": "无赦之仇", + "title_en": "광장", + "translation_source": "tmdb", + "reputation_score": 7.748, + "reputation_votes": 133, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"232766\"}" + }, + "display_title": "无赦之仇 광장" + }, + { + "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", + "filename": "Mercy.For.None.S01E02.Episode.2.1080p.NF.WEB-DL.DUAL.DDP5.1.Atmos.H.264-FLUX.mkv", + "category": "series", + "title": "Mercy For None", + "season": 1, + "episodes": [ + 2 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:232766", + "title_zh": "无赦之仇", + "title_en": "광장", + "translation_source": "tmdb", + "reputation_score": 7.748, + "reputation_votes": 133, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"232766\"}" + }, + "display_title": "无赦之仇 광장" + }, + { + "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", + "filename": "Mercy.For.None.S01E06.Episode.6.1080p.NF.WEB-DL.DUAL.DDP5.1.Atmos.H.264-FLUX.mkv", + "category": "series", + "title": "Mercy For None", + "season": 1, + "episodes": [ + 6 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:232766", + "title_zh": "无赦之仇", + "title_en": "광장", + "translation_source": "tmdb", + "reputation_score": 7.748, + "reputation_votes": 133, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"232766\"}" + }, + "display_title": "无赦之仇 광장" + }, + { + "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", + "filename": "Mercy.For.None.S01E01.Episode.1.1080p.NF.WEB-DL.DUAL.DDP5.1.Atmos.H.264-FLUX.mkv", + "category": "series", + "title": "Mercy For None", + "season": 1, + "episodes": [ + 1 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:232766", + "title_zh": "无赦之仇", + "title_en": "광장", + "translation_source": "tmdb", + "reputation_score": 7.748, + "reputation_votes": 133, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"232766\"}" + }, + "display_title": "无赦之仇 광장" + }, + { + "path": "/mnt/Downloads/series/True.Detective.S04E05.Night.Country.Part.5.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv", + "filename": "True.Detective.S04E05.Night.Country.Part.5.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv", + "category": "series", + "title": "True Detective", + "season": 4, + "episodes": [ + 5 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:46648", + "title_zh": "真探", + "title_en": "True Detective", + "translation_source": "tmdb", + "reputation_score": 8.282, + "reputation_votes": 3932, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"46648\"}" + }, + "display_title": "真探 True Detective" + }, + { + "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", + "filename": "Going.My.Home.E03.2012.1080p.Blu-ray.x265.10bit.AC3£cXcY@FRDS.mkv", + "category": "series", + "title": "Going My Home E03 2012 £Cxcy@Frds", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Going My Home E03 2012 £Cxcy@Frds" + }, + { + "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", + "filename": "Going.My.Home.E02.2012.1080p.Blu-ray.x265.10bit.AC3£cXcY@FRDS.mkv", + "category": "series", + "title": "Going My Home E02 2012 £Cxcy@Frds", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Going My Home E02 2012 £Cxcy@Frds" + }, + { + "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", + "filename": "Going.My.Home.E10.2012.1080p.Blu-ray.x265.10bit.AC3£cXcY@FRDS.mkv", + "category": "series", + "title": "Going My Home E10 2012 £Cxcy@Frds", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Going My Home E10 2012 £Cxcy@Frds" + }, + { + "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", + "filename": "Going.My.Home.E01.2012.1080p.Blu-ray.x265.10bit.AC3£cXcY@FRDS.mkv", + "category": "series", + "title": "Going My Home E01 2012 £Cxcy@Frds", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Going My Home E01 2012 £Cxcy@Frds" + }, + { + "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", + "filename": "Going.My.Home.E11.2012.1080p.Blu-ray.x265.10bit.AC3£cXcY@FRDS.mkv", + "category": "series", + "title": "Going My Home E11 2012 £Cxcy@Frds", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Going My Home E11 2012 £Cxcy@Frds" + }, + { + "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", + "filename": "Going.My.Home.E05.2012.1080p.Blu-ray.x265.10bit.AC3£cXcY@FRDS.mkv", + "category": "series", + "title": "Going My Home E05 2012 £Cxcy@Frds", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Going My Home E05 2012 £Cxcy@Frds" + }, + { + "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", + "filename": "Going.My.Home.E04.2012.1080p.Blu-ray.x265.10bit.AC3£cXcY@FRDS.mkv", + "category": "series", + "title": "Going My Home E04 2012 £Cxcy@Frds", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Going My Home E04 2012 £Cxcy@Frds" + }, + { + "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", + "filename": "Going.My.Home.E06.2012.1080p.Blu-ray.x265.10bit.AC3£cXcY@FRDS.mkv", + "category": "series", + "title": "Going My Home E06 2012 £Cxcy@Frds", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Going My Home E06 2012 £Cxcy@Frds" + }, + { + "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", + "filename": "Going.My.Home.E07.2012.1080p.Blu-ray.x265.10bit.AC3£cXcY@FRDS.mkv", + "category": "series", + "title": "Going My Home E07 2012 £Cxcy@Frds", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Going My Home E07 2012 £Cxcy@Frds" + }, + { + "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", + "filename": "Going.My.Home.E08.2012.1080p.Blu-ray.x265.10bit.AC3£cXcY@FRDS.mkv", + "category": "series", + "title": "Going My Home E08 2012 £Cxcy@Frds", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Going My Home E08 2012 £Cxcy@Frds" + }, + { + "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", + "filename": "Going.My.Home.E09.2012.1080p.Blu-ray.x265.10bit.AC3£cXcY@FRDS.mkv", + "category": "series", + "title": "Going My Home E09 2012 £Cxcy@Frds", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Going My Home E09 2012 £Cxcy@Frds" + }, + { + "path": "/mnt/Downloads/series/Believe-君にかける橋- 第4話 最愛の妻の嘘 1080p TVer WEB-DL H264 AAC-Solitude@DoA.mkv", + "filename": "Believe-君にかける橋- 第4話 最愛の妻の嘘 1080p TVer WEB-DL H264 AAC-Solitude@DoA.mkv", + "category": "series", + "title": "Believe-君にかける橋- 第4話 最愛の妻の嘘 Tver -Solitude@Doa", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Believe-君にかける橋- 第4話 最愛の妻の嘘 Tver -Solitude@Doa" + }, + { + "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", + "filename": "3.Body.Problem.S01E02.Red.Coast.1080p.NF.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv", + "category": "series", + "title": "3 Body Problem", + "season": 1, + "episodes": [ + 2 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:108545", + "title_zh": "3 Body Problem", + "title_en": "3 Body Problem", + "translation_source": "tmdb", + "reputation_score": 7.456, + "reputation_votes": 1373, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"108545\"}" + }, + "display_title": "3 Body Problem" + }, + { + "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", + "filename": "3.Body.Problem.S01E01.Countdown.1080p.NF.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv", + "category": "series", + "title": "3 Body Problem", + "season": 1, + "episodes": [ + 1 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:108545", + "title_zh": "3 Body Problem", + "title_en": "3 Body Problem", + "translation_source": "tmdb", + "reputation_score": 7.456, + "reputation_votes": 1373, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"108545\"}" + }, + "display_title": "3 Body Problem" + }, + { + "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", + "filename": "3.Body.Problem.S01E06.The.Stars.Our.Destination.1080p.NF.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv", + "category": "series", + "title": "3 Body Problem", + "season": 1, + "episodes": [ + 6 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:108545", + "title_zh": "3 Body Problem", + "title_en": "3 Body Problem", + "translation_source": "tmdb", + "reputation_score": 7.456, + "reputation_votes": 1373, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"108545\"}" + }, + "display_title": "3 Body Problem" + }, + { + "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", + "filename": "3.Body.Problem.S01E05.Judgment.Day.1080p.NF.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv", + "category": "series", + "title": "3 Body Problem", + "season": 1, + "episodes": [ + 5 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:108545", + "title_zh": "3 Body Problem", + "title_en": "3 Body Problem", + "translation_source": "tmdb", + "reputation_score": 7.456, + "reputation_votes": 1373, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"108545\"}" + }, + "display_title": "3 Body Problem" + }, + { + "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", + "filename": "3.Body.Problem.S01E03.Destroyer.of.Worlds.1080p.NF.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv", + "category": "series", + "title": "3 Body Problem", + "season": 1, + "episodes": [ + 3 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:108545", + "title_zh": "3 Body Problem", + "title_en": "3 Body Problem", + "translation_source": "tmdb", + "reputation_score": 7.456, + "reputation_votes": 1373, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"108545\"}" + }, + "display_title": "3 Body Problem" + }, + { + "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", + "filename": "3.Body.Problem.S01E07.Only.Advance.1080p.NF.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv", + "category": "series", + "title": "3 Body Problem", + "season": 1, + "episodes": [ + 7 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:108545", + "title_zh": "3 Body Problem", + "title_en": "3 Body Problem", + "translation_source": "tmdb", + "reputation_score": 7.456, + "reputation_votes": 1373, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"108545\"}" + }, + "display_title": "3 Body Problem" + }, + { + "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", + "filename": "3.Body.Problem.S01E08.Wallfacer.1080p.NF.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv", + "category": "series", + "title": "3 Body Problem", + "season": 1, + "episodes": [ + 8 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:108545", + "title_zh": "3 Body Problem", + "title_en": "3 Body Problem", + "translation_source": "tmdb", + "reputation_score": 7.456, + "reputation_votes": 1373, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"108545\"}" + }, + "display_title": "3 Body Problem" + }, + { + "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", + "filename": "3.Body.Problem.S01E04.Our.Lord.1080p.NF.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv", + "category": "series", + "title": "3 Body Problem", + "season": 1, + "episodes": [ + 4 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:108545", + "title_zh": "3 Body Problem", + "title_en": "3 Body Problem", + "translation_source": "tmdb", + "reputation_score": 7.456, + "reputation_votes": 1373, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"108545\"}" + }, + "display_title": "3 Body Problem" + }, + { + "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", + "filename": "The.Judge.From.Hell.S01E14.2024.1080p.DSNP.WEB-DL.H264.AAC-ADWeb.mkv", + "category": "series", + "title": "The Judge From Hell", + "season": 1, + "episodes": [ + 14 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:235577", + "title_zh": "来自地狱的法官", + "title_en": "지옥에서 온 판사", + "translation_source": "tmdb", + "reputation_score": 8.6, + "reputation_votes": 147, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"235577\"}" + }, + "display_title": "来自地狱的法官 지옥에서 온 판사" + }, + { + "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", + "filename": "The.Judge.From.Hell.S01E04.2024.1080p.DSNP.WEB-DL.H264.AAC-ADWeb.mkv", + "category": "series", + "title": "The Judge From Hell", + "season": 1, + "episodes": [ + 4 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:235577", + "title_zh": "来自地狱的法官", + "title_en": "지옥에서 온 판사", + "translation_source": "tmdb", + "reputation_score": 8.6, + "reputation_votes": 147, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"235577\"}" + }, + "display_title": "来自地狱的法官 지옥에서 온 판사" + }, + { + "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", + "filename": "The.Judge.From.Hell.S01E03.2024.1080p.DSNP.WEB-DL.H264.AAC-ADWeb.mkv", + "category": "series", + "title": "The Judge From Hell", + "season": 1, + "episodes": [ + 3 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:235577", + "title_zh": "来自地狱的法官", + "title_en": "지옥에서 온 판사", + "translation_source": "tmdb", + "reputation_score": 8.6, + "reputation_votes": 147, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"235577\"}" + }, + "display_title": "来自地狱的法官 지옥에서 온 판사" + }, + { + "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", + "filename": "The.Judge.From.Hell.S01E13.2024.1080p.DSNP.WEB-DL.H264.AAC-ADWeb.mkv", + "category": "series", + "title": "The Judge From Hell", + "season": 1, + "episodes": [ + 13 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:235577", + "title_zh": "来自地狱的法官", + "title_en": "지옥에서 온 판사", + "translation_source": "tmdb", + "reputation_score": 8.6, + "reputation_votes": 147, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"235577\"}" + }, + "display_title": "来自地狱的法官 지옥에서 온 판사" + }, + { + "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", + "filename": "The.Judge.From.Hell.S01E05.2024.1080p.DSNP.WEB-DL.H264.AAC-ADWeb.mkv", + "category": "series", + "title": "The Judge From Hell", + "season": 1, + "episodes": [ + 5 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:235577", + "title_zh": "来自地狱的法官", + "title_en": "지옥에서 온 판사", + "translation_source": "tmdb", + "reputation_score": 8.6, + "reputation_votes": 147, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"235577\"}" + }, + "display_title": "来自地狱的法官 지옥에서 온 판사" + }, + { + "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", + "filename": "The.Judge.From.Hell.S01E12.2024.1080p.DSNP.WEB-DL.H264.AAC-ADWeb.mkv", + "category": "series", + "title": "The Judge From Hell", + "season": 1, + "episodes": [ + 12 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:235577", + "title_zh": "来自地狱的法官", + "title_en": "지옥에서 온 판사", + "translation_source": "tmdb", + "reputation_score": 8.6, + "reputation_votes": 147, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"235577\"}" + }, + "display_title": "来自地狱的法官 지옥에서 온 판사" + }, + { + "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", + "filename": "The.Judge.From.Hell.S01E02.2024.1080p.DSNP.WEB-DL.H264.AAC-ADWeb.mkv", + "category": "series", + "title": "The Judge From Hell", + "season": 1, + "episodes": [ + 2 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:235577", + "title_zh": "来自地狱的法官", + "title_en": "지옥에서 온 판사", + "translation_source": "tmdb", + "reputation_score": 8.6, + "reputation_votes": 147, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"235577\"}" + }, + "display_title": "来自地狱的法官 지옥에서 온 판사" + }, + { + "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", + "filename": "The.Judge.From.Hell.S01E01.2024.1080p.DSNP.WEB-DL.H264.AAC-ADWeb.mkv", + "category": "series", + "title": "The Judge From Hell", + "season": 1, + "episodes": [ + 1 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:235577", + "title_zh": "来自地狱的法官", + "title_en": "지옥에서 온 판사", + "translation_source": "tmdb", + "reputation_score": 8.6, + "reputation_votes": 147, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"235577\"}" + }, + "display_title": "来自地狱的法官 지옥에서 온 판사" + }, + { + "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", + "filename": "The.Judge.From.Hell.S01E11.2024.1080p.DSNP.WEB-DL.H264.AAC-ADWeb.mkv", + "category": "series", + "title": "The Judge From Hell", + "season": 1, + "episodes": [ + 11 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:235577", + "title_zh": "来自地狱的法官", + "title_en": "지옥에서 온 판사", + "translation_source": "tmdb", + "reputation_score": 8.6, + "reputation_votes": 147, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"235577\"}" + }, + "display_title": "来自地狱的法官 지옥에서 온 판사" + }, + { + "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", + "filename": "The.Judge.From.Hell.S01E09.2024.1080p.DSNP.WEB-DL.H264.AAC-ADWeb.mkv", + "category": "series", + "title": "The Judge From Hell", + "season": 1, + "episodes": [ + 9 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:235577", + "title_zh": "来自地狱的法官", + "title_en": "지옥에서 온 판사", + "translation_source": "tmdb", + "reputation_score": 8.6, + "reputation_votes": 147, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"235577\"}" + }, + "display_title": "来自地狱的法官 지옥에서 온 판사" + }, + { + "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", + "filename": "The.Judge.From.Hell.S01E06.2024.1080p.DSNP.WEB-DL.H264.AAC-ADWeb.mkv", + "category": "series", + "title": "The Judge From Hell", + "season": 1, + "episodes": [ + 6 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:235577", + "title_zh": "来自地狱的法官", + "title_en": "지옥에서 온 판사", + "translation_source": "tmdb", + "reputation_score": 8.6, + "reputation_votes": 147, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"235577\"}" + }, + "display_title": "来自地狱的法官 지옥에서 온 판사" + }, + { + "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", + "filename": "The.Judge.From.Hell.S01E08.2024.1080p.DSNP.WEB-DL.H264.AAC-ADWeb.mkv", + "category": "series", + "title": "The Judge From Hell", + "season": 1, + "episodes": [ + 8 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:235577", + "title_zh": "来自地狱的法官", + "title_en": "지옥에서 온 판사", + "translation_source": "tmdb", + "reputation_score": 8.6, + "reputation_votes": 147, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"235577\"}" + }, + "display_title": "来自地狱的法官 지옥에서 온 판사" + }, + { + "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", + "filename": "The.Judge.From.Hell.S01E10.2024.1080p.DSNP.WEB-DL.H264.AAC-ADWeb.mkv", + "category": "series", + "title": "The Judge From Hell", + "season": 1, + "episodes": [ + 10 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:235577", + "title_zh": "来自地狱的法官", + "title_en": "지옥에서 온 판사", + "translation_source": "tmdb", + "reputation_score": 8.6, + "reputation_votes": 147, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"235577\"}" + }, + "display_title": "来自地狱的法官 지옥에서 온 판사" + }, + { + "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", + "filename": "The.Judge.From.Hell.S01E07.2024.1080p.DSNP.WEB-DL.H264.AAC-ADWeb.mkv", + "category": "series", + "title": "The Judge From Hell", + "season": 1, + "episodes": [ + 7 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:235577", + "title_zh": "来自地狱的法官", + "title_en": "지옥에서 온 판사", + "translation_source": "tmdb", + "reputation_score": 8.6, + "reputation_votes": 147, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"235577\"}" + }, + "display_title": "来自地狱的法官 지옥에서 온 판사" + }, + { + "path": "/mnt/Downloads/series/2010.圣殿春秋/圣殿春秋.The.Pillars.Of.The.Earth.E03.Chi_Eng.HR-HDTV.AC3.1024X576.x264-YYeTs人人影视.mkv", + "filename": "圣殿春秋.The.Pillars.Of.The.Earth.E03.Chi_Eng.HR-HDTV.AC3.1024X576.x264-YYeTs人人影视.mkv", + "category": "series", + "title": "圣殿春秋 The Pillars Of The Earth E03 Chi Eng Hr- 10", + "season": 24, + "episodes": [ + 57 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "圣殿春秋 The Pillars Of The Earth E03 Chi Eng Hr- 10" + }, + { + "path": "/mnt/Downloads/series/2010.圣殿春秋/圣殿春秋.The.Pillars.Of.The.Earth.E04.Chi_Eng.HR-HDTV.AC3.1024X576.x264-YYeTs人人影视.mkv", + "filename": "圣殿春秋.The.Pillars.Of.The.Earth.E04.Chi_Eng.HR-HDTV.AC3.1024X576.x264-YYeTs人人影视.mkv", + "category": "series", + "title": "圣殿春秋 The Pillars Of The Earth E04 Chi Eng Hr- 10", + "season": 24, + "episodes": [ + 57 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "圣殿春秋 The Pillars Of The Earth E04 Chi Eng Hr- 10" + }, + { + "path": "/mnt/Downloads/series/2010.圣殿春秋/圣殿春秋.The.Pillars.Of.The.Earth.E02.Chi_Eng.HR-HDTV.AC3.1024X576.x264-YYeTs人人影视.mkv", + "filename": "圣殿春秋.The.Pillars.Of.The.Earth.E02.Chi_Eng.HR-HDTV.AC3.1024X576.x264-YYeTs人人影视.mkv", + "category": "series", + "title": "圣殿春秋 The Pillars Of The Earth E02 Chi Eng Hr- 10", + "season": 24, + "episodes": [ + 57 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "圣殿春秋 The Pillars Of The Earth E02 Chi Eng Hr- 10" + }, + { + "path": "/mnt/Downloads/series/2010.圣殿春秋/圣殿春秋.The.Pillars.Of.The.Earth.E05.Chi_Eng.HR-HDTV.AC3.1024X576.x264-YYeTs人人影视.mkv", + "filename": "圣殿春秋.The.Pillars.Of.The.Earth.E05.Chi_Eng.HR-HDTV.AC3.1024X576.x264-YYeTs人人影视.mkv", + "category": "series", + "title": "圣殿春秋 The Pillars Of The Earth E05 Chi Eng Hr- 10", + "season": 24, + "episodes": [ + 57 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "圣殿春秋 The Pillars Of The Earth E05 Chi Eng Hr- 10" + }, + { + "path": "/mnt/Downloads/series/2010.圣殿春秋/圣殿春秋.The.Pillars.Of.The.Earth.E06.Chi_Eng.HR-HDTV.AC3.1024X576.x264-YYeTs人人影视.mkv", + "filename": "圣殿春秋.The.Pillars.Of.The.Earth.E06.Chi_Eng.HR-HDTV.AC3.1024X576.x264-YYeTs人人影视.mkv", + "category": "series", + "title": "圣殿春秋 The Pillars Of The Earth E06 Chi Eng Hr- 10", + "season": 24, + "episodes": [ + 57 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "圣殿春秋 The Pillars Of The Earth E06 Chi Eng Hr- 10" + }, + { + "path": "/mnt/Downloads/series/2010.圣殿春秋/圣殿春秋.The.Pillars.Of.The.Earth.E01.Chi_Eng.HR-HDTV.AC3.1024X576.x264-YYeTs人人影视.mkv", + "filename": "圣殿春秋.The.Pillars.Of.The.Earth.E01.Chi_Eng.HR-HDTV.AC3.1024X576.x264-YYeTs人人影视.mkv", + "category": "series", + "title": "圣殿春秋 The Pillars Of The Earth E01 Chi Eng Hr- 10", + "season": 24, + "episodes": [ + 57 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "圣殿春秋 The Pillars Of The Earth E01 Chi Eng Hr- 10" + }, + { + "path": "/mnt/Downloads/series/2010.圣殿春秋/圣殿春秋.The.Pillars.Of.The.Earth.E07-E08.Chi_Eng.HR-HDTV.AC3.1024X576.x264-YYeTs人人影视.mkv", + "filename": "圣殿春秋.The.Pillars.Of.The.Earth.E07-E08.Chi_Eng.HR-HDTV.AC3.1024X576.x264-YYeTs人人影视.mkv", + "category": "series", + "title": "圣殿春秋 The Pillars Of The Earth E07-E08 Chi Eng Hr- 10", + "season": 24, + "episodes": [ + 57 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "圣殿春秋 The Pillars Of The Earth E07-E08 Chi Eng Hr- 10" + }, + { + "path": "/mnt/Downloads/series/Reacher.S02E06.New.Yorks.Finest.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv", + "filename": "Reacher.S02E06.New.Yorks.Finest.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv", + "category": "series", + "title": "Reacher", + "season": 2, + "episodes": [ + 6 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:108978", + "title_zh": "侠探杰克", + "title_en": "Reacher", + "translation_source": "tmdb", + "reputation_score": 8.084, + "reputation_votes": 2645, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"108978\"}" + }, + "display_title": "侠探杰克 Reacher" + }, + { + "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", + "filename": "Wonder.Hatch.Soratobu.Ryuu.no.Shima.EP01.720p.DSNP.WEB-DL.DDP5.1.H.264-MagicStar.mkv", + "category": "series", + "title": "Wonder Hatch Soratobu Ryuu No Shima Ep01 Dsnp Ddp5 1 H 264-Magicstar", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Wonder Hatch Soratobu Ryuu No Shima Ep01 Dsnp Ddp5 1 H 264-Magicstar" + }, + { + "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", + "filename": "Wonder.Hatch.Soratobu.Ryuu.no.Shima.EP03.720p.DSNP.WEB-DL.DDP5.1.H.264-MagicStar.mkv", + "category": "series", + "title": "Wonder Hatch Soratobu Ryuu No Shima Ep03 Dsnp Ddp5 1 H 264-Magicstar", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Wonder Hatch Soratobu Ryuu No Shima Ep03 Dsnp Ddp5 1 H 264-Magicstar" + }, + { + "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", + "filename": "Wonder.Hatch.Soratobu.Ryuu.no.Shima.EP04.720p.DSNP.WEB-DL.DDP5.1.H.264-MagicStar.mkv", + "category": "series", + "title": "Wonder Hatch Soratobu Ryuu No Shima Ep04 Dsnp Ddp5 1 H 264-Magicstar", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Wonder Hatch Soratobu Ryuu No Shima Ep04 Dsnp Ddp5 1 H 264-Magicstar" + }, + { + "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", + "filename": "Wonder.Hatch.Soratobu.Ryuu.no.Shima.EP02.720p.DSNP.WEB-DL.DDP5.1.H.264-MagicStar.mkv", + "category": "series", + "title": "Wonder Hatch Soratobu Ryuu No Shima Ep02 Dsnp Ddp5 1 H 264-Magicstar", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Wonder Hatch Soratobu Ryuu No Shima Ep02 Dsnp Ddp5 1 H 264-Magicstar" + }, + { + "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", + "filename": "Savouring.China.2018.EP01.WEB-DL.1080p.HEVC.AAC-AREY.mp4", + "category": "series", + "title": "Savouring China 2018 Ep01 -Arey", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Savouring China 2018 Ep01 -Arey" + }, + { + "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", + "filename": "Savouring.China.2018.EP02.WEB-DL.1080p.HEVC.AAC-AREY.mp4", + "category": "series", + "title": "Savouring China 2018 Ep02 -Arey", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Savouring China 2018 Ep02 -Arey" + }, + { + "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", + "filename": "Taiwan.Crime.Stories.S01E08.2023.Disney+.WEB-DL.1080p.H264.DDP-HDCTV.mkv", + "category": "series", + "title": "Taiwan Crime Stories", + "season": 1, + "episodes": [ + 8 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:197294", + "title_zh": "台湾犯罪故事", + "title_en": "台灣犯罪故事", + "translation_source": "tmdb", + "reputation_score": 7.2, + "reputation_votes": 10, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"197294\"}" + }, + "display_title": "台湾犯罪故事 台灣犯罪故事" + }, + { + "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", + "filename": "Taiwan.Crime.Stories.S01E04.2023.Disney+.WEB-DL.1080p.H264.DDP-HDCTV.mkv", + "category": "series", + "title": "Taiwan Crime Stories", + "season": 1, + "episodes": [ + 4 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:197294", + "title_zh": "台湾犯罪故事", + "title_en": "台灣犯罪故事", + "translation_source": "tmdb", + "reputation_score": 7.2, + "reputation_votes": 10, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"197294\"}" + }, + "display_title": "台湾犯罪故事 台灣犯罪故事" + }, + { + "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", + "filename": "Taiwan.Crime.Stories.S01E05.2023.Disney+.WEB-DL.1080p.H264.DDP-HDCTV.mkv", + "category": "series", + "title": "Taiwan Crime Stories", + "season": 1, + "episodes": [ + 5 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:197294", + "title_zh": "台湾犯罪故事", + "title_en": "台灣犯罪故事", + "translation_source": "tmdb", + "reputation_score": 7.2, + "reputation_votes": 10, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"197294\"}" + }, + "display_title": "台湾犯罪故事 台灣犯罪故事" + }, + { + "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", + "filename": "Taiwan.Crime.Stories.S01E01.2023.Disney+.WEB-DL.1080p.H264.DDP-HDCTV.mkv", + "category": "series", + "title": "Taiwan Crime Stories", + "season": 1, + "episodes": [ + 1 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:197294", + "title_zh": "台湾犯罪故事", + "title_en": "台灣犯罪故事", + "translation_source": "tmdb", + "reputation_score": 7.2, + "reputation_votes": 10, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"197294\"}" + }, + "display_title": "台湾犯罪故事 台灣犯罪故事" + }, + { + "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", + "filename": "Taiwan.Crime.Stories.S01E12.2023.Disney+.WEB-DL.1080p.H264.DDP-HDCTV.mkv", + "category": "series", + "title": "Taiwan Crime Stories", + "season": 1, + "episodes": [ + 12 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:197294", + "title_zh": "台湾犯罪故事", + "title_en": "台灣犯罪故事", + "translation_source": "tmdb", + "reputation_score": 7.2, + "reputation_votes": 10, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"197294\"}" + }, + "display_title": "台湾犯罪故事 台灣犯罪故事" + }, + { + "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", + "filename": "Taiwan.Crime.Stories.S01E09.2023.Disney+.WEB-DL.1080p.H264.DDP-HDCTV.mkv", + "category": "series", + "title": "Taiwan Crime Stories", + "season": 1, + "episodes": [ + 9 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:197294", + "title_zh": "台湾犯罪故事", + "title_en": "台灣犯罪故事", + "translation_source": "tmdb", + "reputation_score": 7.2, + "reputation_votes": 10, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"197294\"}" + }, + "display_title": "台湾犯罪故事 台灣犯罪故事" + }, + { + "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", + "filename": "Taiwan.Crime.Stories.S01E07.2023.Disney+.WEB-DL.1080p.H264.DDP-HDCTV.mkv", + "category": "series", + "title": "Taiwan Crime Stories", + "season": 1, + "episodes": [ + 7 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:197294", + "title_zh": "台湾犯罪故事", + "title_en": "台灣犯罪故事", + "translation_source": "tmdb", + "reputation_score": 7.2, + "reputation_votes": 10, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"197294\"}" + }, + "display_title": "台湾犯罪故事 台灣犯罪故事" + }, + { + "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", + "filename": "Taiwan.Crime.Stories.S01E03.2023.Disney+.WEB-DL.1080p.H264.DDP-HDCTV.mkv", + "category": "series", + "title": "Taiwan Crime Stories", + "season": 1, + "episodes": [ + 3 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:197294", + "title_zh": "台湾犯罪故事", + "title_en": "台灣犯罪故事", + "translation_source": "tmdb", + "reputation_score": 7.2, + "reputation_votes": 10, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"197294\"}" + }, + "display_title": "台湾犯罪故事 台灣犯罪故事" + }, + { + "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", + "filename": "Taiwan.Crime.Stories.S01E10.2023.Disney+.WEB-DL.1080p.H264.DDP-HDCTV.mkv", + "category": "series", + "title": "Taiwan Crime Stories", + "season": 1, + "episodes": [ + 10 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:197294", + "title_zh": "台湾犯罪故事", + "title_en": "台灣犯罪故事", + "translation_source": "tmdb", + "reputation_score": 7.2, + "reputation_votes": 10, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"197294\"}" + }, + "display_title": "台湾犯罪故事 台灣犯罪故事" + }, + { + "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", + "filename": "Taiwan.Crime.Stories.S01E11.2023.Disney+.WEB-DL.1080p.H264.DDP-HDCTV.mkv", + "category": "series", + "title": "Taiwan Crime Stories", + "season": 1, + "episodes": [ + 11 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:197294", + "title_zh": "台湾犯罪故事", + "title_en": "台灣犯罪故事", + "translation_source": "tmdb", + "reputation_score": 7.2, + "reputation_votes": 10, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"197294\"}" + }, + "display_title": "台湾犯罪故事 台灣犯罪故事" + }, + { + "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", + "filename": "Taiwan.Crime.Stories.S01E06.2023.Disney+.WEB-DL.1080p.H264.DDP-HDCTV.mkv", + "category": "series", + "title": "Taiwan Crime Stories", + "season": 1, + "episodes": [ + 6 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:197294", + "title_zh": "台湾犯罪故事", + "title_en": "台灣犯罪故事", + "translation_source": "tmdb", + "reputation_score": 7.2, + "reputation_votes": 10, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"197294\"}" + }, + "display_title": "台湾犯罪故事 台灣犯罪故事" + }, + { + "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", + "filename": "Taiwan.Crime.Stories.S01E02.2023.Disney+.WEB-DL.1080p.H264.DDP-HDCTV.mkv", + "category": "series", + "title": "Taiwan Crime Stories", + "season": 1, + "episodes": [ + 2 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:197294", + "title_zh": "台湾犯罪故事", + "title_en": "台灣犯罪故事", + "translation_source": "tmdb", + "reputation_score": 7.2, + "reputation_votes": 10, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"197294\"}" + }, + "display_title": "台湾犯罪故事 台灣犯罪故事" + }, + { + "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", + "filename": "Chokotto.Kyoto.ni.Sundemita.E01.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV.mkv", + "category": "series", + "title": "Chokotto Kyoto Ni Sundemita E01 2022 Kktv -Hdctv", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Chokotto Kyoto Ni Sundemita E01 2022 Kktv -Hdctv" + }, + { + "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", + "filename": "Chokotto.Kyoto.ni.Sundemita.E06.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV.mkv", + "category": "series", + "title": "Chokotto Kyoto Ni Sundemita E06 2022 Kktv -Hdctv", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Chokotto Kyoto Ni Sundemita E06 2022 Kktv -Hdctv" + }, + { + "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", + "filename": "Chokotto.Kyoto.ni.Sundemita.E05.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV.mkv", + "category": "series", + "title": "Chokotto Kyoto Ni Sundemita E05 2022 Kktv -Hdctv", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Chokotto Kyoto Ni Sundemita E05 2022 Kktv -Hdctv" + }, + { + "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", + "filename": "Chokotto.Kyoto.ni.Sundemita.E02.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV.mkv", + "category": "series", + "title": "Chokotto Kyoto Ni Sundemita E02 2022 Kktv -Hdctv", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Chokotto Kyoto Ni Sundemita E02 2022 Kktv -Hdctv" + }, + { + "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", + "filename": "Chokotto.Kyoto.ni.Sundemita.E04.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV.mkv", + "category": "series", + "title": "Chokotto Kyoto Ni Sundemita E04 2022 Kktv -Hdctv", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Chokotto Kyoto Ni Sundemita E04 2022 Kktv -Hdctv" + }, + { + "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", + "filename": "Chokotto.Kyoto.ni.Sundemita.E03.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV.mkv", + "category": "series", + "title": "Chokotto Kyoto Ni Sundemita E03 2022 Kktv -Hdctv", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Chokotto Kyoto Ni Sundemita E03 2022 Kktv -Hdctv" + }, + { + "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", + "filename": "Shogun.S01E09.2024.2160p.DSNP.WEB-DL.DDP5.1.DV.HDR.H.265-HHWEB.mkv", + "category": "series", + "title": "Shogun", + "season": 1, + "episodes": [ + 9 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:126308", + "title_zh": "Shōgun", + "title_en": "Shōgun", + "translation_source": "tmdb", + "reputation_score": 8.441, + "reputation_votes": 1614, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"126308\"}" + }, + "display_title": "Shōgun" + }, + { + "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", + "filename": "Shogun.S01E07.2024.2160p.DSNP.WEB-DL.DDP5.1.DV.HDR.H.265-HHWEB.mkv", + "category": "series", + "title": "Shogun", + "season": 1, + "episodes": [ + 7 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:126308", + "title_zh": "Shōgun", + "title_en": "Shōgun", + "translation_source": "tmdb", + "reputation_score": 8.441, + "reputation_votes": 1614, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"126308\"}" + }, + "display_title": "Shōgun" + }, + { + "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", + "filename": "Shogun.S01E08.2024.2160p.DSNP.WEB-DL.DDP5.1.DV.HDR.H.265-HHWEB.mkv", + "category": "series", + "title": "Shogun", + "season": 1, + "episodes": [ + 8 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:126308", + "title_zh": "Shōgun", + "title_en": "Shōgun", + "translation_source": "tmdb", + "reputation_score": 8.441, + "reputation_votes": 1614, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"126308\"}" + }, + "display_title": "Shōgun" + }, + { + "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", + "filename": "Shogun.S01E10.2024.2160p.DSNP.WEB-DL.DDP5.1.DV.HDR.H.265-HHWEB.mkv", + "category": "series", + "title": "Shogun", + "season": 1, + "episodes": [ + 10 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:126308", + "title_zh": "Shōgun", + "title_en": "Shōgun", + "translation_source": "tmdb", + "reputation_score": 8.441, + "reputation_votes": 1614, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"126308\"}" + }, + "display_title": "Shōgun" + }, + { + "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", + "filename": "Study.Group.S01E10.2025.2160p.IQ.WEB-DL.H265.AAC-CHDWEB.mkv", + "category": "series", + "title": "Study Group", + "season": 1, + "episodes": [ + 10 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:233347", + "title_zh": "流氓读书会", + "title_en": "스터디그룹", + "translation_source": "tmdb", + "reputation_score": 8.415, + "reputation_votes": 94, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"233347\"}" + }, + "display_title": "流氓读书会 스터디그룹" + }, + { + "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", + "filename": "Study.Group.S01E06.2025.2160p.IQ.WEB-DL.H265.AAC-CHDWEB.mkv", + "category": "series", + "title": "Study Group", + "season": 1, + "episodes": [ + 6 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:233347", + "title_zh": "流氓读书会", + "title_en": "스터디그룹", + "translation_source": "tmdb", + "reputation_score": 8.415, + "reputation_votes": 94, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"233347\"}" + }, + "display_title": "流氓读书会 스터디그룹" + }, + { + "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", + "filename": "Study.Group.S01E08.2025.2160p.IQ.WEB-DL.H265.AAC-CHDWEB.mkv", + "category": "series", + "title": "Study Group", + "season": 1, + "episodes": [ + 8 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:233347", + "title_zh": "流氓读书会", + "title_en": "스터디그룹", + "translation_source": "tmdb", + "reputation_score": 8.415, + "reputation_votes": 94, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"233347\"}" + }, + "display_title": "流氓读书会 스터디그룹" + }, + { + "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", + "filename": "Study.Group.S01E05.2025.2160p.IQ.WEB-DL.H265.AAC-CHDWEB.mkv", + "category": "series", + "title": "Study Group", + "season": 1, + "episodes": [ + 5 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:233347", + "title_zh": "流氓读书会", + "title_en": "스터디그룹", + "translation_source": "tmdb", + "reputation_score": 8.415, + "reputation_votes": 94, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"233347\"}" + }, + "display_title": "流氓读书会 스터디그룹" + }, + { + "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", + "filename": "Study.Group.S01E03.2025.2160p.IQ.WEB-DL.H265.AAC-CHDWEB.mkv", + "category": "series", + "title": "Study Group", + "season": 1, + "episodes": [ + 3 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:233347", + "title_zh": "流氓读书会", + "title_en": "스터디그룹", + "translation_source": "tmdb", + "reputation_score": 8.415, + "reputation_votes": 94, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"233347\"}" + }, + "display_title": "流氓读书会 스터디그룹" + }, + { + "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", + "filename": "Study.Group.S01E09.2025.2160p.IQ.WEB-DL.H265.AAC-CHDWEB.mkv", + "category": "series", + "title": "Study Group", + "season": 1, + "episodes": [ + 9 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:233347", + "title_zh": "流氓读书会", + "title_en": "스터디그룹", + "translation_source": "tmdb", + "reputation_score": 8.415, + "reputation_votes": 94, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"233347\"}" + }, + "display_title": "流氓读书会 스터디그룹" + }, + { + "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", + "filename": "Study.Group.S01E07.2025.2160p.IQ.WEB-DL.H265.AAC-CHDWEB.mkv", + "category": "series", + "title": "Study Group", + "season": 1, + "episodes": [ + 7 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:233347", + "title_zh": "流氓读书会", + "title_en": "스터디그룹", + "translation_source": "tmdb", + "reputation_score": 8.415, + "reputation_votes": 94, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"233347\"}" + }, + "display_title": "流氓读书会 스터디그룹" + }, + { + "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", + "filename": "Study.Group.S01E04.2025.2160p.IQ.WEB-DL.H265.AAC-CHDWEB.mkv", + "category": "series", + "title": "Study Group", + "season": 1, + "episodes": [ + 4 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:233347", + "title_zh": "流氓读书会", + "title_en": "스터디그룹", + "translation_source": "tmdb", + "reputation_score": 8.415, + "reputation_votes": 94, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"233347\"}" + }, + "display_title": "流氓读书会 스터디그룹" + }, + { + "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", + "filename": "Study.Group.S01E01.2025.2160p.IQ.WEB-DL.H265.AAC-CHDWEB.mkv", + "category": "series", + "title": "Study Group", + "season": 1, + "episodes": [ + 1 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:233347", + "title_zh": "流氓读书会", + "title_en": "스터디그룹", + "translation_source": "tmdb", + "reputation_score": 8.415, + "reputation_votes": 94, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"233347\"}" + }, + "display_title": "流氓读书会 스터디그룹" + }, + { + "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", + "filename": "Study.Group.S01E02.2025.2160p.IQ.WEB-DL.H265.AAC-CHDWEB.mkv", + "category": "series", + "title": "Study Group", + "season": 1, + "episodes": [ + 2 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:233347", + "title_zh": "流氓读书会", + "title_en": "스터디그룹", + "translation_source": "tmdb", + "reputation_score": 8.415, + "reputation_votes": 94, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"233347\"}" + }, + "display_title": "流氓读书会 스터디그룹" + }, + { + "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", + "filename": "jukkakukannosatsujin.S01E04.1080p.HuluJP.WEB-DL.AAC.2.0.H.264-CHDWEB.mkv", + "category": "series", + "title": "Jukkakukannosatsujin", + "season": 1, + "episodes": [ + 4 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Jukkakukannosatsujin" + }, + { + "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", + "filename": "jukkakukannosatsujin.S01E05.1080p.HuluJP.WEB-DL.AAC.2.0.H.264-CHDWEB.mkv", + "category": "series", + "title": "Jukkakukannosatsujin", + "season": 1, + "episodes": [ + 5 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Jukkakukannosatsujin" + }, + { + "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", + "filename": "jukkakukannosatsujin.S01E01.1080p.HuluJP.WEB-DL.AAC.2.0.H.264-CHDWEB.mkv", + "category": "series", + "title": "Jukkakukannosatsujin", + "season": 1, + "episodes": [ + 1 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Jukkakukannosatsujin" + }, + { + "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", + "filename": "jukkakukannosatsujin.S01E03.1080p.HuluJP.WEB-DL.AAC.2.0.H.264-CHDWEB.mkv", + "category": "series", + "title": "Jukkakukannosatsujin", + "season": 1, + "episodes": [ + 3 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Jukkakukannosatsujin" + }, + { + "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", + "filename": "jukkakukannosatsujin.S01E02.1080p.HuluJP.WEB-DL.AAC.2.0.H.264-CHDWEB.mkv", + "category": "series", + "title": "Jukkakukannosatsujin", + "season": 1, + "episodes": [ + 2 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Jukkakukannosatsujin" + }, + { + "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", + "filename": "Life on Mars.EP16.END.1080p.WEB-DL.x264-SAKURA.mkv", + "category": "series", + "title": "Life On Mars Ep16 End -Sakura", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Life On Mars Ep16 End -Sakura" + }, + { + "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", + "filename": "Life on Mars.EP09.1080p.WEB-DL.x264-SAKURA.mkv", + "category": "series", + "title": "Life On Mars Ep09 -Sakura", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Life On Mars Ep09 -Sakura" + }, + { + "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", + "filename": "Life on Mars.EP15.1080p.WEB-DL.x264-SAKURA.mkv", + "category": "series", + "title": "Life On Mars Ep15 -Sakura", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Life On Mars Ep15 -Sakura" + }, + { + "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", + "filename": "Life on Mars.EP07.1080p.WEB-DL.x264-SAKURA.mkv", + "category": "series", + "title": "Life On Mars Ep07 -Sakura", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Life On Mars Ep07 -Sakura" + }, + { + "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", + "filename": "Life on Mars.EP14.1080p.WEB-DL.x264-SAKURA.mkv", + "category": "series", + "title": "Life On Mars Ep14 -Sakura", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Life On Mars Ep14 -Sakura" + }, + { + "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", + "filename": "Life on Mars.EP08.1080p.WEB-DL.x264-SAKURA.mkv", + "category": "series", + "title": "Life On Mars Ep08 -Sakura", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Life On Mars Ep08 -Sakura" + }, + { + "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", + "filename": "Life on Mars.EP06.1080p.WEB-DL.x264-SAKURA.mkv", + "category": "series", + "title": "Life On Mars Ep06 -Sakura", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Life On Mars Ep06 -Sakura" + }, + { + "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", + "filename": "Life on Mars.EP05.1080p.WEB-DL.x264-SAKURA.mkv", + "category": "series", + "title": "Life On Mars Ep05 -Sakura", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Life On Mars Ep05 -Sakura" + }, + { + "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", + "filename": "Life on Mars.EP04.1080p.WEB-DL.x264-SAKURA.mkv", + "category": "series", + "title": "Life On Mars Ep04 -Sakura", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Life On Mars Ep04 -Sakura" + }, + { + "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", + "filename": "Life on Mars.EP02.1080p.WEB-DL.x264-SAKURA.mkv", + "category": "series", + "title": "Life On Mars Ep02 -Sakura", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Life On Mars Ep02 -Sakura" + }, + { + "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", + "filename": "Life on Mars.EP10.1080p.WEB-DL.x264-SAKURA.mkv", + "category": "series", + "title": "Life On Mars Ep10 -Sakura", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Life On Mars Ep10 -Sakura" + }, + { + "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", + "filename": "Life on Mars.EP03.1080p.WEB-DL.x264-SAKURA.mkv", + "category": "series", + "title": "Life On Mars Ep03 -Sakura", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Life On Mars Ep03 -Sakura" + }, + { + "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", + "filename": "Life on Mars.EP11.1080p.WEB-DL.x264-SAKURA.mkv", + "category": "series", + "title": "Life On Mars Ep11 -Sakura", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Life On Mars Ep11 -Sakura" + }, + { + "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", + "filename": "Life on Mars.EP12.1080p.WEB-DL.x264-SAKURA.mkv", + "category": "series", + "title": "Life On Mars Ep12 -Sakura", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Life On Mars Ep12 -Sakura" + }, + { + "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", + "filename": "Life on Mars.EP13.1080p.WEB-DL.x264-SAKURA.mkv", + "category": "series", + "title": "Life On Mars Ep13 -Sakura", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Life On Mars Ep13 -Sakura" + }, + { + "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", + "filename": "Life on Mars.EP01.1080p.WEB-DL.x264-SAKURA.mkv", + "category": "series", + "title": "Life On Mars Ep01 -Sakura", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Life On Mars Ep01 -Sakura" + }, + { + "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", + "filename": "[黑鸽].Black.Doves.S01E06.2024.1080p.NF.WEB-DL.x264.DDP.5.1.Atmos-CMCTV.mkv", + "category": "series", + "title": "Black Doves", + "season": 1, + "episodes": [ + 6 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:225385", + "title_zh": "黑鸽", + "title_en": "Black Doves", + "translation_source": "tmdb", + "reputation_score": 7.092, + "reputation_votes": 358, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"225385\"}" + }, + "display_title": "黑鸽 Black Doves" + }, + { + "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", + "filename": "[黑鸽].Black.Doves.S01E04.2024.1080p.NF.WEB-DL.x264.DDP.5.1.Atmos-CMCTV.mkv", + "category": "series", + "title": "Black Doves", + "season": 1, + "episodes": [ + 4 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:225385", + "title_zh": "黑鸽", + "title_en": "Black Doves", + "translation_source": "tmdb", + "reputation_score": 7.092, + "reputation_votes": 358, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"225385\"}" + }, + "display_title": "黑鸽 Black Doves" + }, + { + "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", + "filename": "[黑鸽].Black.Doves.S01E05.2024.1080p.NF.WEB-DL.x264.DDP.5.1.Atmos-CMCTV.mkv", + "category": "series", + "title": "Black Doves", + "season": 1, + "episodes": [ + 5 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:225385", + "title_zh": "黑鸽", + "title_en": "Black Doves", + "translation_source": "tmdb", + "reputation_score": 7.092, + "reputation_votes": 358, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"225385\"}" + }, + "display_title": "黑鸽 Black Doves" + }, + { + "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", + "filename": "[黑鸽].Black.Doves.S01E01.2024.1080p.NF.WEB-DL.x264.DDP.5.1.Atmos-CMCTV.mkv", + "category": "series", + "title": "Black Doves", + "season": 1, + "episodes": [ + 1 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:225385", + "title_zh": "黑鸽", + "title_en": "Black Doves", + "translation_source": "tmdb", + "reputation_score": 7.092, + "reputation_votes": 358, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"225385\"}" + }, + "display_title": "黑鸽 Black Doves" + }, + { + "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", + "filename": "[黑鸽].Black.Doves.S01E02.2024.1080p.NF.WEB-DL.x264.DDP.5.1.Atmos-CMCTV.mkv", + "category": "series", + "title": "Black Doves", + "season": 1, + "episodes": [ + 2 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:225385", + "title_zh": "黑鸽", + "title_en": "Black Doves", + "translation_source": "tmdb", + "reputation_score": 7.092, + "reputation_votes": 358, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"225385\"}" + }, + "display_title": "黑鸽 Black Doves" + }, + { + "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", + "filename": "[黑鸽].Black.Doves.S01E03.2024.1080p.NF.WEB-DL.x264.DDP.5.1.Atmos-CMCTV.mkv", + "category": "series", + "title": "Black Doves", + "season": 1, + "episodes": [ + 3 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:225385", + "title_zh": "黑鸽", + "title_en": "Black Doves", + "translation_source": "tmdb", + "reputation_score": 7.092, + "reputation_votes": 358, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"225385\"}" + }, + "display_title": "黑鸽 Black Doves" + }, + { + "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", + "filename": "The.Naked.Director.E08.2019.Netflix.WEB-DL.1080p.x264.DDP-AREY.mkv", + "category": "series", + "title": "The Naked Director E08 2019 Netflix Ddp-Arey", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "The Naked Director E08 2019 Netflix Ddp-Arey" + }, + { + "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", + "filename": "The.Naked.Director.E02.2019.Netflix.WEB-DL.1080p.x264.DDP-AREY.mkv", + "category": "series", + "title": "The Naked Director E02 2019 Netflix Ddp-Arey", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "The Naked Director E02 2019 Netflix Ddp-Arey" + }, + { + "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", + "filename": "The.Naked.Director.E04.2019.Netflix.WEB-DL.1080p.x264.DDP-AREY.mkv", + "category": "series", + "title": "The Naked Director E04 2019 Netflix Ddp-Arey", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "The Naked Director E04 2019 Netflix Ddp-Arey" + }, + { + "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", + "filename": "The.Naked.Director.E03.2019.Netflix.WEB-DL.1080p.x264.DDP-AREY.mkv", + "category": "series", + "title": "The Naked Director E03 2019 Netflix Ddp-Arey", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "The Naked Director E03 2019 Netflix Ddp-Arey" + }, + { + "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", + "filename": "The.Naked.Director.E05.2019.Netflix.WEB-DL.1080p.x264.DDP-AREY.mkv", + "category": "series", + "title": "The Naked Director E05 2019 Netflix Ddp-Arey", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "The Naked Director E05 2019 Netflix Ddp-Arey" + }, + { + "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", + "filename": "The.Naked.Director.E06.2019.Netflix.WEB-DL.1080p.x264.DDP-AREY.mkv", + "category": "series", + "title": "The Naked Director E06 2019 Netflix Ddp-Arey", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "The Naked Director E06 2019 Netflix Ddp-Arey" + }, + { + "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", + "filename": "The.Naked.Director.E07.2019.Netflix.WEB-DL.1080p.x264.DDP-AREY.mkv", + "category": "series", + "title": "The Naked Director E07 2019 Netflix Ddp-Arey", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "The Naked Director E07 2019 Netflix Ddp-Arey" + }, + { + "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", + "filename": "The.Naked.Director.E01.2019.Netflix.WEB-DL.1080p.x264.DDP-AREY.mkv", + "category": "series", + "title": "The Naked Director E01 2019 Netflix Ddp-Arey", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "The Naked Director E01 2019 Netflix Ddp-Arey" + }, + { + "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", + "filename": "My.Story.Is.Long.S01E01.1080p.friDay.WEB-DL.AAC2.0.H.264-CHDWEB.mkv", + "category": "series", + "title": "My Story Is Long", + "season": 1, + "episodes": [ + 1 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:287882", + "title_zh": "我的事说来话长~2025・春~", + "title_en": "俺の話は長い ~2025・春~", + "translation_source": "tmdb", + "reputation_score": 7.5, + "reputation_votes": 2, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"287882\"}" + }, + "display_title": "我的事说来话长~2025・春~ 俺の話は長い ~2025・春~" + }, + { + "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", + "filename": "My.Story.Is.Long.S01E02.1080p.friDay.WEB-DL.AAC2.0.H.264-CHDWEB.mkv", + "category": "series", + "title": "My Story Is Long", + "season": 1, + "episodes": [ + 2 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:287882", + "title_zh": "我的事说来话长~2025・春~", + "title_en": "俺の話は長い ~2025・春~", + "translation_source": "tmdb", + "reputation_score": 7.5, + "reputation_votes": 2, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"287882\"}" + }, + "display_title": "我的事说来话长~2025・春~ 俺の話は長い ~2025・春~" + }, + { + "path": "/mnt/Downloads/series/(ドラマ) 完全無罪 第01話 「悪い夢」 (1920x1080 x264-AAC)-DoA [v2].mkv", + "filename": "(ドラマ) 完全無罪 第01話 「悪い夢」 (1920x1080 x264-AAC)-DoA [v2].mkv", + "category": "series", + "title": "(ドラマ) 完全無罪 第01話 「悪い夢」 (19", + "season": 20, + "episodes": [ + 10 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "(ドラマ) 完全無罪 第01話 「悪い夢」 (19" + }, + { + "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", + "filename": "Constellation.S01E01.2024.1080p.ATVP.WEB-DL.H264.DDP5.1.Atmos-ADWeb.mkv", + "category": "series", + "title": "Constellation", + "season": 1, + "episodes": [ + 1 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:197125", + "title_zh": "Constellation", + "title_en": "Constellation", + "translation_source": "tmdb", + "reputation_score": 7.0, + "reputation_votes": 333, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"197125\"}" + }, + "display_title": "Constellation" + }, + { + "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", + "filename": "Constellation.S01E02.2024.1080p.ATVP.WEB-DL.H264.DDP5.1.Atmos-ADWeb.mkv", + "category": "series", + "title": "Constellation", + "season": 1, + "episodes": [ + 2 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:197125", + "title_zh": "Constellation", + "title_en": "Constellation", + "translation_source": "tmdb", + "reputation_score": 7.0, + "reputation_votes": 333, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"197125\"}" + }, + "display_title": "Constellation" + }, + { + "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", + "filename": "Constellation.S01E03.2024.1080p.ATVP.WEB-DL.H264.DDP5.1.Atmos-ADWeb.mkv", + "category": "series", + "title": "Constellation", + "season": 1, + "episodes": [ + 3 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:197125", + "title_zh": "Constellation", + "title_en": "Constellation", + "translation_source": "tmdb", + "reputation_score": 7.0, + "reputation_votes": 333, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"197125\"}" + }, + "display_title": "Constellation" + }, + { + "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", + "filename": "Constellation.S01E04.2024.1080p.ATVP.WEB-DL.H264.DDP5.1.Atmos-ADWeb.mkv", + "category": "series", + "title": "Constellation", + "season": 1, + "episodes": [ + 4 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:197125", + "title_zh": "Constellation", + "title_en": "Constellation", + "translation_source": "tmdb", + "reputation_score": 7.0, + "reputation_votes": 333, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"197125\"}" + }, + "display_title": "Constellation" + }, + { + "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", + "filename": "Constellation.S01E05.2024.1080p.ATVP.WEB-DL.H264.DDP5.1.Atmos-ADWeb.mkv", + "category": "series", + "title": "Constellation", + "season": 1, + "episodes": [ + 5 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:197125", + "title_zh": "Constellation", + "title_en": "Constellation", + "translation_source": "tmdb", + "reputation_score": 7.0, + "reputation_votes": 333, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"197125\"}" + }, + "display_title": "Constellation" + }, + { + "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", + "filename": "Constellation.S01E06.2024.1080p.ATVP.WEB-DL.H264.DDP5.1.Atmos-ADWeb.mkv", + "category": "series", + "title": "Constellation", + "season": 1, + "episodes": [ + 6 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:197125", + "title_zh": "Constellation", + "title_en": "Constellation", + "translation_source": "tmdb", + "reputation_score": 7.0, + "reputation_votes": 333, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"197125\"}" + }, + "display_title": "Constellation" + }, + { + "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", + "filename": "Constellation.S01E07.2024.1080p.ATVP.WEB-DL.H264.DDP5.1.Atmos-ADWeb.mkv", + "category": "series", + "title": "Constellation", + "season": 1, + "episodes": [ + 7 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:197125", + "title_zh": "Constellation", + "title_en": "Constellation", + "translation_source": "tmdb", + "reputation_score": 7.0, + "reputation_votes": 333, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"197125\"}" + }, + "display_title": "Constellation" + }, + { + "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", + "filename": "Constellation.S01E08.2024.1080p.ATVP.WEB-DL.H264.DDP5.1.Atmos-ADWeb.mkv", + "category": "series", + "title": "Constellation", + "season": 1, + "episodes": [ + 8 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:197125", + "title_zh": "Constellation", + "title_en": "Constellation", + "translation_source": "tmdb", + "reputation_score": 7.0, + "reputation_votes": 333, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"197125\"}" + }, + "display_title": "Constellation" + }, + { + "path": "/mnt/Downloads/series/True.Detective.S04E03.Night.Country.Part.3.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv", + "filename": "True.Detective.S04E03.Night.Country.Part.3.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv", + "category": "series", + "title": "True Detective", + "season": 4, + "episodes": [ + 3 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:46648", + "title_zh": "真探", + "title_en": "True Detective", + "translation_source": "tmdb", + "reputation_score": 8.282, + "reputation_votes": 3932, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"46648\"}" + }, + "display_title": "真探 True Detective" + }, + { + "path": "/mnt/Downloads/series/Reacher.S02E07.The.Man.Goes.Through.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv", + "filename": "Reacher.S02E07.The.Man.Goes.Through.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv", + "category": "series", + "title": "Reacher", + "season": 2, + "episodes": [ + 7 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:108978", + "title_zh": "侠探杰克", + "title_en": "Reacher", + "translation_source": "tmdb", + "reputation_score": 8.084, + "reputation_votes": 2645, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"108978\"}" + }, + "display_title": "侠探杰克 Reacher" + }, + { + "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", + "filename": "The Boys (2019) - S01E06 - The Innocents (1080p AMZN WEB-DL x265 RZeroX).mkv", + "category": "series", + "title": "The Boys (2019) -", + "season": 1, + "episodes": [ + 6 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "The Boys (2019) -" + }, + { + "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", + "filename": "The Boys (2019) - S01E04 - The Female of the Species (1080p AMZN WEB-DL x265 RZeroX).mkv", + "category": "series", + "title": "The Boys (2019) -", + "season": 1, + "episodes": [ + 4 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "The Boys (2019) -" + }, + { + "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", + "filename": "The Boys (2019) - S01E08 - You Found Me (1080p AMZN WEB-DL x265 RZeroX).mkv", + "category": "series", + "title": "The Boys (2019) -", + "season": 1, + "episodes": [ + 8 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "The Boys (2019) -" + }, + { + "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", + "filename": "The Boys (2019) - S01E02 - Cherry (1080p AMZN WEB-DL x265 RZeroX).mkv.mkv", + "category": "series", + "title": "The Boys (2019) -", + "season": 1, + "episodes": [ + 2 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "The Boys (2019) -" + }, + { + "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", + "filename": "The Boys (2019) - S01E03 - Get Some (1080p AMZN WEB-DL x265 RZeroX).mkv", + "category": "series", + "title": "The Boys (2019) -", + "season": 1, + "episodes": [ + 3 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "The Boys (2019) -" + }, + { + "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", + "filename": "The Boys (2019) - S01E01 - The Name of the Game (1080p AMZN WEB-DL x265 RZeroX).mkv.mkv", + "category": "series", + "title": "The Boys (2019) -", + "season": 1, + "episodes": [ + 1 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "The Boys (2019) -" + }, + { + "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", + "filename": "The Boys (2019) - S01E05 - Good for the Soul (1080p AMZN WEB-DL x265 RZeroX).mkv", + "category": "series", + "title": "The Boys (2019) -", + "season": 1, + "episodes": [ + 5 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "The Boys (2019) -" + }, + { + "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", + "filename": "The Boys (2019) - S01E07 - The Self-Preservation Society (1080p AMZN WEB-DL x265 RZeroX).mkv", + "category": "series", + "title": "The Boys (2019) -", + "season": 1, + "episodes": [ + 7 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "The Boys (2019) -" + }, + { + "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", + "filename": "[全领域异常解决室].Zen-ryoiki.Ijo.Kaiketsu.Shitsu.2024.S01E01.1080p.NF.WEB-DL.H264.AAC-UBWEB.mkv", + "category": "series", + "title": "Zen-Ryoiki Ijo Kaiketsu Shitsu 2024", + "season": 1, + "episodes": [ + 1 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Zen-Ryoiki Ijo Kaiketsu Shitsu 2024" + }, + { + "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", + "filename": "[全领域异常解决室].Zen-ryoiki.Ijo.Kaiketsu.Shitsu.2024.S01E06.1080p.NF.WEB-DL.H264.AAC-UBWEB.mkv", + "category": "series", + "title": "Zen-Ryoiki Ijo Kaiketsu Shitsu 2024", + "season": 1, + "episodes": [ + 6 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Zen-Ryoiki Ijo Kaiketsu Shitsu 2024" + }, + { + "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", + "filename": "[全领域异常解决室].Zen-ryoiki.Ijo.Kaiketsu.Shitsu.2024.S01E08.1080p.NF.WEB-DL.H264.AAC-UBWEB.mkv", + "category": "series", + "title": "Zen-Ryoiki Ijo Kaiketsu Shitsu 2024", + "season": 1, + "episodes": [ + 8 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Zen-Ryoiki Ijo Kaiketsu Shitsu 2024" + }, + { + "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", + "filename": "[全领域异常解决室].Zen-ryoiki.Ijo.Kaiketsu.Shitsu.2024.S01E05.1080p.NF.WEB-DL.H264.AAC-UBWEB.mkv", + "category": "series", + "title": "Zen-Ryoiki Ijo Kaiketsu Shitsu 2024", + "season": 1, + "episodes": [ + 5 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Zen-Ryoiki Ijo Kaiketsu Shitsu 2024" + }, + { + "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", + "filename": "[全领域异常解决室].Zen-ryoiki.Ijo.Kaiketsu.Shitsu.2024.S01E02.1080p.NF.WEB-DL.H264.AAC-UBWEB.mkv", + "category": "series", + "title": "Zen-Ryoiki Ijo Kaiketsu Shitsu 2024", + "season": 1, + "episodes": [ + 2 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Zen-Ryoiki Ijo Kaiketsu Shitsu 2024" + }, + { + "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", + "filename": "[全领域异常解决室].Zen-ryoiki.Ijo.Kaiketsu.Shitsu.2024.S01E09.1080p.NF.WEB-DL.H264.AAC-UBWEB.mkv", + "category": "series", + "title": "Zen-Ryoiki Ijo Kaiketsu Shitsu 2024", + "season": 1, + "episodes": [ + 9 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Zen-Ryoiki Ijo Kaiketsu Shitsu 2024" + }, + { + "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", + "filename": "[全领域异常解决室].Zen-ryoiki.Ijo.Kaiketsu.Shitsu.2024.S01E07.1080p.NF.WEB-DL.H264.AAC-UBWEB.mkv", + "category": "series", + "title": "Zen-Ryoiki Ijo Kaiketsu Shitsu 2024", + "season": 1, + "episodes": [ + 7 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Zen-Ryoiki Ijo Kaiketsu Shitsu 2024" + }, + { + "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", + "filename": "[全领域异常解决室].Zen-ryoiki.Ijo.Kaiketsu.Shitsu.2024.S01E10.1080p.NF.WEB-DL.H264.AAC-UBWEB.mkv", + "category": "series", + "title": "Zen-Ryoiki Ijo Kaiketsu Shitsu 2024", + "season": 1, + "episodes": [ + 10 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Zen-Ryoiki Ijo Kaiketsu Shitsu 2024" + }, + { + "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", + "filename": "[全领域异常解决室].Zen-ryoiki.Ijo.Kaiketsu.Shitsu.2024.S01E03.1080p.NF.WEB-DL.H264.AAC-UBWEB.mkv", + "category": "series", + "title": "Zen-Ryoiki Ijo Kaiketsu Shitsu 2024", + "season": 1, + "episodes": [ + 3 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Zen-Ryoiki Ijo Kaiketsu Shitsu 2024" + }, + { + "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", + "filename": "[全领域异常解决室].Zen-ryoiki.Ijo.Kaiketsu.Shitsu.2024.S01E04.1080p.NF.WEB-DL.H264.AAC-UBWEB.mkv", + "category": "series", + "title": "Zen-Ryoiki Ijo Kaiketsu Shitsu 2024", + "season": 1, + "episodes": [ + 4 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Zen-Ryoiki Ijo Kaiketsu Shitsu 2024" + }, + { + "path": "/mnt/Downloads/series/Daredevil.Born.Again.S01E01.Heavens.Half.Hour.1080p.DSNP.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv", + "filename": "Daredevil.Born.Again.S01E01.Heavens.Half.Hour.1080p.DSNP.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv", + "category": "series", + "title": "Daredevil Born Again", + "season": 1, + "episodes": [ + 1 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:202555", + "title_zh": "夜魔侠:重生", + "title_en": "Daredevil: Born Again", + "translation_source": "tmdb", + "reputation_score": 8.0, + "reputation_votes": 643, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"202555\"}" + }, + "display_title": "夜魔侠:重生 Daredevil: Born Again" + }, + { + "path": "/mnt/Downloads/series/Bara no nai Hanaya/E04[1280x720 DivX6.xx].avi", + "filename": "E04[1280x720 DivX6.xx].avi", + "category": "series", + "title": "E04[12", + "season": 80, + "episodes": [ + 72 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "E04[12" + }, + { + "path": "/mnt/Downloads/series/Bara no nai Hanaya/E05[1280x720 DivX6.xx].avi", + "filename": "E05[1280x720 DivX6.xx].avi", + "category": "series", + "title": "E05[12", + "season": 80, + "episodes": [ + 72 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "E05[12" + }, + { + "path": "/mnt/Downloads/series/Bara no nai Hanaya/E10[1280x720 DivX6.xx].avi", + "filename": "E10[1280x720 DivX6.xx].avi", + "category": "series", + "title": "E10[12", + "season": 80, + "episodes": [ + 72 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "E10[12" + }, + { + "path": "/mnt/Downloads/series/Bara no nai Hanaya/E07[1280x720 DivX6.xx].avi", + "filename": "E07[1280x720 DivX6.xx].avi", + "category": "series", + "title": "E07[12", + "season": 80, + "episodes": [ + 72 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "E07[12" + }, + { + "path": "/mnt/Downloads/series/Bara no nai Hanaya/E06[1280x720 DivX6.xx].avi", + "filename": "E06[1280x720 DivX6.xx].avi", + "category": "series", + "title": "E06[12", + "season": 80, + "episodes": [ + 72 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "E06[12" + }, + { + "path": "/mnt/Downloads/series/Bara no nai Hanaya/E11[1280x720 DivX6.xx].avi", + "filename": "E11[1280x720 DivX6.xx].avi", + "category": "series", + "title": "E11[12", + "season": 80, + "episodes": [ + 72 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "E11[12" + }, + { + "path": "/mnt/Downloads/series/Bara no nai Hanaya/E09[1280x720 DivX6.xx].avi", + "filename": "E09[1280x720 DivX6.xx].avi", + "category": "series", + "title": "E09[12", + "season": 80, + "episodes": [ + 72 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "E09[12" + }, + { + "path": "/mnt/Downloads/series/Bara no nai Hanaya/E02[1280x720 DivX6.xx].avi", + "filename": "E02[1280x720 DivX6.xx].avi", + "category": "series", + "title": "E02[12", + "season": 80, + "episodes": [ + 72 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "E02[12" + }, + { + "path": "/mnt/Downloads/series/Bara no nai Hanaya/E03[1280x720 DivX6.xx].avi", + "filename": "E03[1280x720 DivX6.xx].avi", + "category": "series", + "title": "E03[12", + "season": 80, + "episodes": [ + 72 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "E03[12" + }, + { + "path": "/mnt/Downloads/series/Bara no nai Hanaya/E08[1280x720 DivX6.xx].avi", + "filename": "E08[1280x720 DivX6.xx].avi", + "category": "series", + "title": "E08[12", + "season": 80, + "episodes": [ + 72 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "E08[12" + }, + { + "path": "/mnt/Downloads/series/Bara no nai Hanaya/E01[1280x720 DivX6.xx].avi", + "filename": "E01[1280x720 DivX6.xx].avi", + "category": "series", + "title": "E01[12", + "season": 80, + "episodes": [ + 72 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "E01[12" + }, + { + "path": "/mnt/Downloads/series/[MagicStar] Nemesis EP07 [WEBDL] [1080p] [HULU] [JPN_SUB]/Nemesis.EP07.1080p.HULU.WEB-DL.AAC2.0.H.264-MagicStar.mkv", + "filename": "Nemesis.EP07.1080p.HULU.WEB-DL.AAC2.0.H.264-MagicStar.mkv", + "category": "series", + "title": "Nemesis Ep07 Hulu Aac2 0 H 264-Magicstar", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Nemesis Ep07 Hulu Aac2 0 H 264-Magicstar" + }, + { + "path": "/mnt/Downloads/series/Shogun.2024.S01E02.Servants.of.Two.Masters.REPACK.1080p.DSNP.WEB-DL.DDP5.1.H.264-APEX.mkv", + "filename": "Shogun.2024.S01E02.Servants.of.Two.Masters.REPACK.1080p.DSNP.WEB-DL.DDP5.1.H.264-APEX.mkv", + "category": "series", + "title": "Shogun 2024", + "season": 1, + "episodes": [ + 2 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Shogun 2024" + }, + { + "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", + "filename": "Offline.Love.S01E02.2025.2160p.NF.WEB-DL.DDP5.1.DV.H.265-HHWEB.mkv", + "category": "series", + "title": "Offline Love", + "season": 1, + "episodes": [ + 2 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:282651", + "title_zh": "离线找真爱", + "title_en": "オフライン ラブ", + "translation_source": "tmdb", + "reputation_score": 8.8, + "reputation_votes": 6, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"282651\"}" + }, + "display_title": "离线找真爱 オフライン ラブ" + }, + { + "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", + "filename": "Offline.Love.S01E05.2025.2160p.NF.WEB-DL.DDP5.1.DV.H.265-HHWEB.mkv", + "category": "series", + "title": "Offline Love", + "season": 1, + "episodes": [ + 5 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:282651", + "title_zh": "离线找真爱", + "title_en": "オフライン ラブ", + "translation_source": "tmdb", + "reputation_score": 8.8, + "reputation_votes": 6, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"282651\"}" + }, + "display_title": "离线找真爱 オフライン ラブ" + }, + { + "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", + "filename": "Offline.Love.S01E08.2025.2160p.NF.WEB-DL.DDP5.1.DV.H.265-HHWEB.mkv", + "category": "series", + "title": "Offline Love", + "season": 1, + "episodes": [ + 8 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:282651", + "title_zh": "离线找真爱", + "title_en": "オフライン ラブ", + "translation_source": "tmdb", + "reputation_score": 8.8, + "reputation_votes": 6, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"282651\"}" + }, + "display_title": "离线找真爱 オフライン ラブ" + }, + { + "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", + "filename": "Offline.Love.S01E01.2025.2160p.NF.WEB-DL.DDP5.1.DV.H.265-HHWEB.mkv", + "category": "series", + "title": "Offline Love", + "season": 1, + "episodes": [ + 1 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:282651", + "title_zh": "离线找真爱", + "title_en": "オフライン ラブ", + "translation_source": "tmdb", + "reputation_score": 8.8, + "reputation_votes": 6, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"282651\"}" + }, + "display_title": "离线找真爱 オフライン ラブ" + }, + { + "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", + "filename": "Offline.Love.S01E06.2025.2160p.NF.WEB-DL.DDP5.1.DV.H.265-HHWEB.mkv", + "category": "series", + "title": "Offline Love", + "season": 1, + "episodes": [ + 6 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:282651", + "title_zh": "离线找真爱", + "title_en": "オフライン ラブ", + "translation_source": "tmdb", + "reputation_score": 8.8, + "reputation_votes": 6, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"282651\"}" + }, + "display_title": "离线找真爱 オフライン ラブ" + }, + { + "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", + "filename": "Offline.Love.S01E09.2025.2160p.NF.WEB-DL.DDP5.1.DV.H.265-HHWEB.mkv", + "category": "series", + "title": "Offline Love", + "season": 1, + "episodes": [ + 9 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:282651", + "title_zh": "离线找真爱", + "title_en": "オフライン ラブ", + "translation_source": "tmdb", + "reputation_score": 8.8, + "reputation_votes": 6, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"282651\"}" + }, + "display_title": "离线找真爱 オフライン ラブ" + }, + { + "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", + "filename": "Offline.Love.S01E04.2025.2160p.NF.WEB-DL.DDP5.1.DV.H.265-HHWEB.mkv", + "category": "series", + "title": "Offline Love", + "season": 1, + "episodes": [ + 4 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:282651", + "title_zh": "离线找真爱", + "title_en": "オフライン ラブ", + "translation_source": "tmdb", + "reputation_score": 8.8, + "reputation_votes": 6, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"282651\"}" + }, + "display_title": "离线找真爱 オフライン ラブ" + }, + { + "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", + "filename": "Offline.Love.S01E03.2025.2160p.NF.WEB-DL.DDP5.1.DV.H.265-HHWEB.mkv", + "category": "series", + "title": "Offline Love", + "season": 1, + "episodes": [ + 3 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:282651", + "title_zh": "离线找真爱", + "title_en": "オフライン ラブ", + "translation_source": "tmdb", + "reputation_score": 8.8, + "reputation_votes": 6, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"282651\"}" + }, + "display_title": "离线找真爱 オフライン ラブ" + }, + { + "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", + "filename": "Offline.Love.S01E10.2025.2160p.NF.WEB-DL.DDP5.1.DV.H.265-HHWEB.mkv", + "category": "series", + "title": "Offline Love", + "season": 1, + "episodes": [ + 10 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:282651", + "title_zh": "离线找真爱", + "title_en": "オフライン ラブ", + "translation_source": "tmdb", + "reputation_score": 8.8, + "reputation_votes": 6, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"282651\"}" + }, + "display_title": "离线找真爱 オフライン ラブ" + }, + { + "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", + "filename": "Offline.Love.S01E07.2025.2160p.NF.WEB-DL.DDP5.1.DV.H.265-HHWEB.mkv", + "category": "series", + "title": "Offline Love", + "season": 1, + "episodes": [ + 7 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:282651", + "title_zh": "离线找真爱", + "title_en": "オフライン ラブ", + "translation_source": "tmdb", + "reputation_score": 8.8, + "reputation_votes": 6, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"282651\"}" + }, + "display_title": "离线找真爱 オフライン ラブ" + }, + { + "path": "/mnt/Downloads/series/新参者/【ドラマ】 新参者 第07話 「刑事の息子」 (1440x1080i x264-AAC).mp4", + "filename": "【ドラマ】 新参者 第07話 「刑事の息子」 (1440x1080i x264-AAC).mp4", + "category": "series", + "title": "【ドラマ】 新参者 第07話 「刑事の息子」 (14", + "season": 40, + "episodes": [ + 10 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "【ドラマ】 新参者 第07話 「刑事の息子」 (14" + }, + { + "path": "/mnt/Downloads/series/新参者/【ドラマ】 新参者 第09話 「民芸品店の客」 (1440x1080i x264-AAC).mp4", + "filename": "【ドラマ】 新参者 第09話 「民芸品店の客」 (1440x1080i x264-AAC).mp4", + "category": "series", + "title": "【ドラマ】 新参者 第09話 「民芸品店の客」 (14", + "season": 40, + "episodes": [ + 10 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "【ドラマ】 新参者 第09話 「民芸品店の客」 (14" + }, + { + "path": "/mnt/Downloads/series/新参者/【ドラマ】 新参者 第04話 「時計屋の犬」 (1440x1080i x264-AAC).mp4", + "filename": "【ドラマ】 新参者 第04話 「時計屋の犬」 (1440x1080i x264-AAC).mp4", + "category": "series", + "title": "【ドラマ】 新参者 第04話 「時計屋の犬」 (14", + "season": 40, + "episodes": [ + 10 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "【ドラマ】 新参者 第04話 「時計屋の犬」 (14" + }, + { + "path": "/mnt/Downloads/series/新参者/【ドラマ】 新参者 第03話 「瀬戸物屋の娘」 (1440x1080i x264-AAC).mp4", + "filename": "【ドラマ】 新参者 第03話 「瀬戸物屋の娘」 (1440x1080i x264-AAC).mp4", + "category": "series", + "title": "【ドラマ】 新参者 第03話 「瀬戸物屋の娘」 (14", + "season": 40, + "episodes": [ + 10 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "【ドラマ】 新参者 第03話 「瀬戸物屋の娘」 (14" + }, + { + "path": "/mnt/Downloads/series/新参者/【ドラマ】 新参者 第02話 「料亭の小僧」 (1440x1080i x264-AAC).mp4", + "filename": "【ドラマ】 新参者 第02話 「料亭の小僧」 (1440x1080i x264-AAC).mp4", + "category": "series", + "title": "【ドラマ】 新参者 第02話 「料亭の小僧」 (14", + "season": 40, + "episodes": [ + 10 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "【ドラマ】 新参者 第02話 「料亭の小僧」 (14" + }, + { + "path": "/mnt/Downloads/series/新参者/【ドラマ】 新参者 第08話 「清掃会社の社長」 (1440x1080i x264-AAC).mp4", + "filename": "【ドラマ】 新参者 第08話 「清掃会社の社長」 (1440x1080i x264-AAC).mp4", + "category": "series", + "title": "【ドラマ】 新参者 第08話 「清掃会社の社長」 (14", + "season": 40, + "episodes": [ + 10 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "【ドラマ】 新参者 第08話 「清掃会社の社長」 (14" + }, + { + "path": "/mnt/Downloads/series/新参者/【ドラマ】 新参者 第06話 「翻訳家の友」 (1440x1080i x264-AAC).mp4", + "filename": "【ドラマ】 新参者 第06話 「翻訳家の友」 (1440x1080i x264-AAC).mp4", + "category": "series", + "title": "【ドラマ】 新参者 第06話 「翻訳家の友」 (14", + "season": 40, + "episodes": [ + 10 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "【ドラマ】 新参者 第06話 「翻訳家の友」 (14" + }, + { + "path": "/mnt/Downloads/series/新参者/【ドラマ】 新参者 第01話 「煎餅屋の娘」 (1440x1080i x264-AAC).mp4", + "filename": "【ドラマ】 新参者 第01話 「煎餅屋の娘」 (1440x1080i x264-AAC).mp4", + "category": "series", + "title": "【ドラマ】 新参者 第01話 「煎餅屋の娘」 (14", + "season": 40, + "episodes": [ + 10 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "【ドラマ】 新参者 第01話 「煎餅屋の娘」 (14" + }, + { + "path": "/mnt/Downloads/series/新参者/【ドラマSP】 赤い指~『新参者』加賀恭一郎再び! (1440x1080i x264-AAC).mp4", + "filename": "【ドラマSP】 赤い指~『新参者』加賀恭一郎再び! (1440x1080i x264-AAC).mp4", + "category": "series", + "title": "【ドラマSp】 赤い指~『新参者』加賀恭一郎再び! (14", + "season": 40, + "episodes": [ + 10 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "【ドラマSp】 赤い指~『新参者』加賀恭一郎再び! (14" + }, + { + "path": "/mnt/Downloads/series/新参者/【ドラマ】 新参者 第05話 「洋菓子屋の店員」 (1440x1080i x264-AAC).mp4", + "filename": "【ドラマ】 新参者 第05話 「洋菓子屋の店員」 (1440x1080i x264-AAC).mp4", + "category": "series", + "title": "【ドラマ】 新参者 第05話 「洋菓子屋の店員」 (14", + "season": 40, + "episodes": [ + 10 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "【ドラマ】 新参者 第05話 「洋菓子屋の店員」 (14" + }, + { + "path": "/mnt/Downloads/series/新参者/【ドラマ】 新参者 第10話(終) 「人形町の刑事」(1440x1080i x264-AAC).mp4", + "filename": "【ドラマ】 新参者 第10話(終) 「人形町の刑事」(1440x1080i x264-AAC).mp4", + "category": "series", + "title": "【ドラマ】 新参者 第10話(終) 「人形町の刑事」(14", + "season": 40, + "episodes": [ + 10 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "【ドラマ】 新参者 第10話(終) 「人形町の刑事」(14" + }, + { + "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", + "filename": "Industry.S03E07.Useful.Idiot.1080p.Max.WEB-DL.DDP.5.1.Atmos.H.264-CHDWEB.mkv", + "category": "series", + "title": "Industry", + "season": 3, + "episodes": [ + 7 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:90812", + "title_zh": "投行风云", + "title_en": "Industry", + "translation_source": "tmdb", + "reputation_score": 6.8, + "reputation_votes": 231, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"90812\"}" + }, + "display_title": "投行风云 Industry" + }, + { + "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", + "filename": "Industry.S03E05.Company.Man.1080p.Max.WEB-DL.DDP.5.1.Atmos.H.264-CHDWEB.mkv", + "category": "series", + "title": "Industry", + "season": 3, + "episodes": [ + 5 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:90812", + "title_zh": "投行风云", + "title_en": "Industry", + "translation_source": "tmdb", + "reputation_score": 6.8, + "reputation_votes": 231, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"90812\"}" + }, + "display_title": "投行风云 Industry" + }, + { + "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", + "filename": "Industry.S03E04.White.Mischief.1080p.Max.WEB-DL.DDP.5.1.Atmos.H.264-CHDWEB.mkv", + "category": "series", + "title": "Industry", + "season": 3, + "episodes": [ + 4 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:90812", + "title_zh": "投行风云", + "title_en": "Industry", + "translation_source": "tmdb", + "reputation_score": 6.8, + "reputation_votes": 231, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"90812\"}" + }, + "display_title": "投行风云 Industry" + }, + { + "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", + "filename": "Industry.S03E02.Smoke.and.Mirrors.1080p.Max.WEB-DL.DDP.5.1.Atmos.H.264-CHDWEB.mkv", + "category": "series", + "title": "Industry", + "season": 3, + "episodes": [ + 2 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:90812", + "title_zh": "投行风云", + "title_en": "Industry", + "translation_source": "tmdb", + "reputation_score": 6.8, + "reputation_votes": 231, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"90812\"}" + }, + "display_title": "投行风云 Industry" + }, + { + "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", + "filename": "Industry.S03E08.Infinite.Largesse.1080p.Max.WEB-DL.DDP.5.1.Atmos.H.264-CHDWEB.mkv", + "category": "series", + "title": "Industry", + "season": 3, + "episodes": [ + 8 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:90812", + "title_zh": "投行风云", + "title_en": "Industry", + "translation_source": "tmdb", + "reputation_score": 6.8, + "reputation_votes": 231, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"90812\"}" + }, + "display_title": "投行风云 Industry" + }, + { + "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", + "filename": "Industry.S03E03.It.1080p.Max.WEB-DL.DDP.5.1.Atmos.H.264-CHDWEB.mkv", + "category": "series", + "title": "Industry", + "season": 3, + "episodes": [ + 3 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:90812", + "title_zh": "投行风云", + "title_en": "Industry", + "translation_source": "tmdb", + "reputation_score": 6.8, + "reputation_votes": 231, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"90812\"}" + }, + "display_title": "投行风云 Industry" + }, + { + "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", + "filename": "Industry.S03E01.Il.Mattino.ha.LOro.Bocca.1080p.Max.WEB-DL.DDP.5.1.Atmos.H.264-CHDWEB.mkv", + "category": "series", + "title": "Industry", + "season": 3, + "episodes": [ + 1 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:90812", + "title_zh": "投行风云", + "title_en": "Industry", + "translation_source": "tmdb", + "reputation_score": 6.8, + "reputation_votes": 231, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"90812\"}" + }, + "display_title": "投行风云 Industry" + }, + { + "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", + "filename": "Industry.S03E06.Nikki.Beach.1080p.Max.WEB-DL.DDP.5.1.Atmos.H.264-CHDWEB.mkv", + "category": "series", + "title": "Industry", + "season": 3, + "episodes": [ + 6 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:90812", + "title_zh": "投行风云", + "title_en": "Industry", + "translation_source": "tmdb", + "reputation_score": 6.8, + "reputation_votes": 231, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"90812\"}" + }, + "display_title": "投行风云 Industry" + }, + { + "path": "/mnt/Downloads/series/Dark.Matter.2024.S01E02.Trip.of.a.Lifetime.1080p.ATVP.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv", + "filename": "Dark.Matter.2024.S01E02.Trip.of.a.Lifetime.1080p.ATVP.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv", + "category": "series", + "title": "Dark Matter 2024", + "season": 1, + "episodes": [ + 2 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Dark Matter 2024" + }, + { + "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", + "filename": "Dept.Q.S01E06.Episode.6.1080p.NF.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv", + "category": "series", + "title": "Dept Q", + "season": 1, + "episodes": [ + 6 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:245703", + "title_zh": "悬案解码", + "title_en": "Dept. Q", + "translation_source": "tmdb", + "reputation_score": 7.932, + "reputation_votes": 344, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"245703\"}" + }, + "display_title": "悬案解码 Dept. Q" + }, + { + "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", + "filename": "Dept.Q.S01E07.Episode.7.1080p.NF.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv", + "category": "series", + "title": "Dept Q", + "season": 1, + "episodes": [ + 7 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:245703", + "title_zh": "悬案解码", + "title_en": "Dept. Q", + "translation_source": "tmdb", + "reputation_score": 7.932, + "reputation_votes": 344, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"245703\"}" + }, + "display_title": "悬案解码 Dept. Q" + }, + { + "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", + "filename": "Dept.Q.S01E05.Episode.5.1080p.NF.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv", + "category": "series", + "title": "Dept Q", + "season": 1, + "episodes": [ + 5 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:245703", + "title_zh": "悬案解码", + "title_en": "Dept. Q", + "translation_source": "tmdb", + "reputation_score": 7.932, + "reputation_votes": 344, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"245703\"}" + }, + "display_title": "悬案解码 Dept. Q" + }, + { + "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", + "filename": "Dept.Q.S01E04.Episode.4.1080p.NF.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv", + "category": "series", + "title": "Dept Q", + "season": 1, + "episodes": [ + 4 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:245703", + "title_zh": "悬案解码", + "title_en": "Dept. Q", + "translation_source": "tmdb", + "reputation_score": 7.932, + "reputation_votes": 344, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"245703\"}" + }, + "display_title": "悬案解码 Dept. Q" + }, + { + "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", + "filename": "Dept.Q.S01E09.Episode.9.1080p.NF.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv", + "category": "series", + "title": "Dept Q", + "season": 1, + "episodes": [ + 9 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:245703", + "title_zh": "悬案解码", + "title_en": "Dept. Q", + "translation_source": "tmdb", + "reputation_score": 7.932, + "reputation_votes": 344, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"245703\"}" + }, + "display_title": "悬案解码 Dept. Q" + }, + { + "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", + "filename": "Dept.Q.S01E01.Episode.1.1080p.NF.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv", + "category": "series", + "title": "Dept Q", + "season": 1, + "episodes": [ + 1 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:245703", + "title_zh": "悬案解码", + "title_en": "Dept. Q", + "translation_source": "tmdb", + "reputation_score": 7.932, + "reputation_votes": 344, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"245703\"}" + }, + "display_title": "悬案解码 Dept. Q" + }, + { + "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", + "filename": "Dept.Q.S01E08.Episode.8.1080p.NF.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv", + "category": "series", + "title": "Dept Q", + "season": 1, + "episodes": [ + 8 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:245703", + "title_zh": "悬案解码", + "title_en": "Dept. Q", + "translation_source": "tmdb", + "reputation_score": 7.932, + "reputation_votes": 344, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"245703\"}" + }, + "display_title": "悬案解码 Dept. Q" + }, + { + "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", + "filename": "Dept.Q.S01E02.Episode.2.1080p.NF.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv", + "category": "series", + "title": "Dept Q", + "season": 1, + "episodes": [ + 2 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:245703", + "title_zh": "悬案解码", + "title_en": "Dept. Q", + "translation_source": "tmdb", + "reputation_score": 7.932, + "reputation_votes": 344, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"245703\"}" + }, + "display_title": "悬案解码 Dept. Q" + }, + { + "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", + "filename": "Dept.Q.S01E03.Episode.3.1080p.NF.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv", + "category": "series", + "title": "Dept Q", + "season": 1, + "episodes": [ + 3 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:245703", + "title_zh": "悬案解码", + "title_en": "Dept. Q", + "translation_source": "tmdb", + "reputation_score": 7.932, + "reputation_votes": 344, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"245703\"}" + }, + "display_title": "悬案解码 Dept. Q" + }, + { + "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", + "filename": "Silo.S01E04.Truth.1080p.ATVP.WEB-DL.DDP5.1.H.264-NTb.mkv", + "category": "series", + "title": "Silo", + "season": 1, + "episodes": [ + 4 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:125988", + "title_zh": "末日地堡", + "title_en": "Silo", + "translation_source": "tmdb", + "reputation_score": 8.124, + "reputation_votes": 1883, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"125988\"}" + }, + "display_title": "末日地堡 Silo" + }, + { + "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", + "filename": "Silo.S01E02.Holstons.Pick.1080p.ATVP.WEB-DL.DDP5.1.H.264-NTb.mkv", + "category": "series", + "title": "Silo", + "season": 1, + "episodes": [ + 2 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:125988", + "title_zh": "末日地堡", + "title_en": "Silo", + "translation_source": "tmdb", + "reputation_score": 8.124, + "reputation_votes": 1883, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"125988\"}" + }, + "display_title": "末日地堡 Silo" + }, + { + "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", + "filename": "Silo.S01E01.Freedom.Day.1080p.ATVP.WEB-DL.DDP5.1.H.264-NTb.mkv", + "category": "series", + "title": "Silo", + "season": 1, + "episodes": [ + 1 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:125988", + "title_zh": "末日地堡", + "title_en": "Silo", + "translation_source": "tmdb", + "reputation_score": 8.124, + "reputation_votes": 1883, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"125988\"}" + }, + "display_title": "末日地堡 Silo" + }, + { + "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", + "filename": "The.Glory.S01E16.2022.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-ADWeb.mkv", + "category": "series", + "title": "The Glory", + "season": 1, + "episodes": [ + 16 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:77404", + "title_zh": "The Glory Boys", + "title_en": "The Glory Boys", + "translation_source": "tmdb", + "reputation_score": 5.5, + "reputation_votes": 6, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"77404\"}" + }, + "display_title": "The Glory Boys" + }, + { + "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", + "filename": "The.Glory.S01E12.2022.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-ADWeb.mkv", + "category": "series", + "title": "The Glory", + "season": 1, + "episodes": [ + 12 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:77404", + "title_zh": "The Glory Boys", + "title_en": "The Glory Boys", + "translation_source": "tmdb", + "reputation_score": 5.5, + "reputation_votes": 6, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"77404\"}" + }, + "display_title": "The Glory Boys" + }, + { + "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", + "filename": "The.Glory.S01E15.2022.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-ADWeb.mkv", + "category": "series", + "title": "The Glory", + "season": 1, + "episodes": [ + 15 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:77404", + "title_zh": "The Glory Boys", + "title_en": "The Glory Boys", + "translation_source": "tmdb", + "reputation_score": 5.5, + "reputation_votes": 6, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"77404\"}" + }, + "display_title": "The Glory Boys" + }, + { + "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", + "filename": "The.Glory.S01E09.2022.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-ADWeb.mkv", + "category": "series", + "title": "The Glory", + "season": 1, + "episodes": [ + 9 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:77404", + "title_zh": "The Glory Boys", + "title_en": "The Glory Boys", + "translation_source": "tmdb", + "reputation_score": 5.5, + "reputation_votes": 6, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"77404\"}" + }, + "display_title": "The Glory Boys" + }, + { + "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", + "filename": "The.Glory.S01E11.2022.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-ADWeb.mkv", + "category": "series", + "title": "The Glory", + "season": 1, + "episodes": [ + 11 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:77404", + "title_zh": "The Glory Boys", + "title_en": "The Glory Boys", + "translation_source": "tmdb", + "reputation_score": 5.5, + "reputation_votes": 6, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"77404\"}" + }, + "display_title": "The Glory Boys" + }, + { + "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", + "filename": "The.Glory.S01E13.2022.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-ADWeb.mkv", + "category": "series", + "title": "The Glory", + "season": 1, + "episodes": [ + 13 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:77404", + "title_zh": "The Glory Boys", + "title_en": "The Glory Boys", + "translation_source": "tmdb", + "reputation_score": 5.5, + "reputation_votes": 6, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"77404\"}" + }, + "display_title": "The Glory Boys" + }, + { + "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", + "filename": "The.Glory.S01E10.2022.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-ADWeb.mkv", + "category": "series", + "title": "The Glory", + "season": 1, + "episodes": [ + 10 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:77404", + "title_zh": "The Glory Boys", + "title_en": "The Glory Boys", + "translation_source": "tmdb", + "reputation_score": 5.5, + "reputation_votes": 6, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"77404\"}" + }, + "display_title": "The Glory Boys" + }, + { + "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", + "filename": "The.Glory.S01E14.2022.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-ADWeb.mkv", + "category": "series", + "title": "The Glory", + "season": 1, + "episodes": [ + 14 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:77404", + "title_zh": "The Glory Boys", + "title_en": "The Glory Boys", + "translation_source": "tmdb", + "reputation_score": 5.5, + "reputation_votes": 6, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"77404\"}" + }, + "display_title": "The Glory Boys" + }, + { + "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", + "filename": "Extraordinary.Attorney.Woo.S01E01.2022.Netflix.WEB-DL.1080p.x264.DDP-HDCTV.mkv", + "category": "series", + "title": "Extraordinary Attorney Woo", + "season": 1, + "episodes": [ + 1 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:197067", + "title_zh": "非常律师禹英禑", + "title_en": "이상한 변호사 우영우", + "translation_source": "tmdb", + "reputation_score": 8.484, + "reputation_votes": 899, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"197067\"}" + }, + "display_title": "非常律师禹英禑 이상한 변호사 우영우" + }, + { + "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", + "filename": "Extraordinary.Attorney.Woo.S01E05.2022.Netflix.WEB-DL.1080p.x264.DDP-HDCTV.mkv", + "category": "series", + "title": "Extraordinary Attorney Woo", + "season": 1, + "episodes": [ + 5 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:197067", + "title_zh": "非常律师禹英禑", + "title_en": "이상한 변호사 우영우", + "translation_source": "tmdb", + "reputation_score": 8.484, + "reputation_votes": 899, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"197067\"}" + }, + "display_title": "非常律师禹英禑 이상한 변호사 우영우" + }, + { + "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", + "filename": "Extraordinary.Attorney.Woo.S01E12.2022.Netflix.WEB-DL.1080p.x264.DDP-HDCTV.mkv", + "category": "series", + "title": "Extraordinary Attorney Woo", + "season": 1, + "episodes": [ + 12 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:197067", + "title_zh": "非常律师禹英禑", + "title_en": "이상한 변호사 우영우", + "translation_source": "tmdb", + "reputation_score": 8.484, + "reputation_votes": 899, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"197067\"}" + }, + "display_title": "非常律师禹英禑 이상한 변호사 우영우" + }, + { + "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", + "filename": "Extraordinary.Attorney.Woo.S01E09.2022.Netflix.WEB-DL.1080p.x264.DDP-HDCTV.mkv", + "category": "series", + "title": "Extraordinary Attorney Woo", + "season": 1, + "episodes": [ + 9 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:197067", + "title_zh": "非常律师禹英禑", + "title_en": "이상한 변호사 우영우", + "translation_source": "tmdb", + "reputation_score": 8.484, + "reputation_votes": 899, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"197067\"}" + }, + "display_title": "非常律师禹英禑 이상한 변호사 우영우" + }, + { + "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", + "filename": "Extraordinary.Attorney.Woo.S01E16.2022.Netflix.WEB-DL.1080p.x264.DDP-HDCTV.mkv", + "category": "series", + "title": "Extraordinary Attorney Woo", + "season": 1, + "episodes": [ + 16 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:197067", + "title_zh": "非常律师禹英禑", + "title_en": "이상한 변호사 우영우", + "translation_source": "tmdb", + "reputation_score": 8.484, + "reputation_votes": 899, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"197067\"}" + }, + "display_title": "非常律师禹英禑 이상한 변호사 우영우" + }, + { + "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", + "filename": "Extraordinary.Attorney.Woo.S01E13.2022.Netflix.WEB-DL.1080p.x264.DDP-HDCTV.mkv", + "category": "series", + "title": "Extraordinary Attorney Woo", + "season": 1, + "episodes": [ + 13 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:197067", + "title_zh": "非常律师禹英禑", + "title_en": "이상한 변호사 우영우", + "translation_source": "tmdb", + "reputation_score": 8.484, + "reputation_votes": 899, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"197067\"}" + }, + "display_title": "非常律师禹英禑 이상한 변호사 우영우" + }, + { + "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", + "filename": "Extraordinary.Attorney.Woo.S01E08.2022.Netflix.WEB-DL.1080p.x264.DDP-HDCTV.mkv", + "category": "series", + "title": "Extraordinary Attorney Woo", + "season": 1, + "episodes": [ + 8 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:197067", + "title_zh": "非常律师禹英禑", + "title_en": "이상한 변호사 우영우", + "translation_source": "tmdb", + "reputation_score": 8.484, + "reputation_votes": 899, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"197067\"}" + }, + "display_title": "非常律师禹英禑 이상한 변호사 우영우" + }, + { + "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", + "filename": "Extraordinary.Attorney.Woo.S01E04.2022.Netflix.WEB-DL.1080p.x264.DDP-HDCTV.mkv", + "category": "series", + "title": "Extraordinary Attorney Woo", + "season": 1, + "episodes": [ + 4 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:197067", + "title_zh": "非常律师禹英禑", + "title_en": "이상한 변호사 우영우", + "translation_source": "tmdb", + "reputation_score": 8.484, + "reputation_votes": 899, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"197067\"}" + }, + "display_title": "非常律师禹英禑 이상한 변호사 우영우" + }, + { + "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", + "filename": "Extraordinary.Attorney.Woo.S01E11.2022.Netflix.WEB-DL.1080p.x264.DDP-HDCTV.mkv", + "category": "series", + "title": "Extraordinary Attorney Woo", + "season": 1, + "episodes": [ + 11 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:197067", + "title_zh": "非常律师禹英禑", + "title_en": "이상한 변호사 우영우", + "translation_source": "tmdb", + "reputation_score": 8.484, + "reputation_votes": 899, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"197067\"}" + }, + "display_title": "非常律师禹英禑 이상한 변호사 우영우" + }, + { + "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", + "filename": "Extraordinary.Attorney.Woo.S01E15.2022.Netflix.WEB-DL.1080p.x264.DDP-HDCTV.mkv", + "category": "series", + "title": "Extraordinary Attorney Woo", + "season": 1, + "episodes": [ + 15 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:197067", + "title_zh": "非常律师禹英禑", + "title_en": "이상한 변호사 우영우", + "translation_source": "tmdb", + "reputation_score": 8.484, + "reputation_votes": 899, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"197067\"}" + }, + "display_title": "非常律师禹英禑 이상한 변호사 우영우" + }, + { + "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", + "filename": "Extraordinary.Attorney.Woo.S01E02.2022.Netflix.WEB-DL.1080p.x264.DDP-HDCTV.mkv", + "category": "series", + "title": "Extraordinary Attorney Woo", + "season": 1, + "episodes": [ + 2 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:197067", + "title_zh": "非常律师禹英禑", + "title_en": "이상한 변호사 우영우", + "translation_source": "tmdb", + "reputation_score": 8.484, + "reputation_votes": 899, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"197067\"}" + }, + "display_title": "非常律师禹英禑 이상한 변호사 우영우" + }, + { + "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", + "filename": "Extraordinary.Attorney.Woo.S01E06.2022.Netflix.WEB-DL.1080p.x264.DDP-HDCTV.mkv", + "category": "series", + "title": "Extraordinary Attorney Woo", + "season": 1, + "episodes": [ + 6 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:197067", + "title_zh": "非常律师禹英禑", + "title_en": "이상한 변호사 우영우", + "translation_source": "tmdb", + "reputation_score": 8.484, + "reputation_votes": 899, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"197067\"}" + }, + "display_title": "非常律师禹英禑 이상한 변호사 우영우" + }, + { + "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", + "filename": "Extraordinary.Attorney.Woo.S01E03.2022.Netflix.WEB-DL.1080p.x264.DDP-HDCTV.mkv", + "category": "series", + "title": "Extraordinary Attorney Woo", + "season": 1, + "episodes": [ + 3 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:197067", + "title_zh": "非常律师禹英禑", + "title_en": "이상한 변호사 우영우", + "translation_source": "tmdb", + "reputation_score": 8.484, + "reputation_votes": 899, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"197067\"}" + }, + "display_title": "非常律师禹英禑 이상한 변호사 우영우" + }, + { + "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", + "filename": "Extraordinary.Attorney.Woo.S01E07.2022.Netflix.WEB-DL.1080p.x264.DDP-HDCTV.mkv", + "category": "series", + "title": "Extraordinary Attorney Woo", + "season": 1, + "episodes": [ + 7 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:197067", + "title_zh": "非常律师禹英禑", + "title_en": "이상한 변호사 우영우", + "translation_source": "tmdb", + "reputation_score": 8.484, + "reputation_votes": 899, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"197067\"}" + }, + "display_title": "非常律师禹英禑 이상한 변호사 우영우" + }, + { + "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", + "filename": "Extraordinary.Attorney.Woo.S01E10.2022.Netflix.WEB-DL.1080p.x264.DDP-HDCTV.mkv", + "category": "series", + "title": "Extraordinary Attorney Woo", + "season": 1, + "episodes": [ + 10 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:197067", + "title_zh": "非常律师禹英禑", + "title_en": "이상한 변호사 우영우", + "translation_source": "tmdb", + "reputation_score": 8.484, + "reputation_votes": 899, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"197067\"}" + }, + "display_title": "非常律师禹英禑 이상한 변호사 우영우" + }, + { + "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", + "filename": "Extraordinary.Attorney.Woo.S01E14.2022.Netflix.WEB-DL.1080p.x264.DDP-HDCTV.mkv", + "category": "series", + "title": "Extraordinary Attorney Woo", + "season": 1, + "episodes": [ + 14 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:197067", + "title_zh": "非常律师禹英禑", + "title_en": "이상한 변호사 우영우", + "translation_source": "tmdb", + "reputation_score": 8.484, + "reputation_votes": 899, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"197067\"}" + }, + "display_title": "非常律师禹英禑 이상한 변호사 우영우" + }, + { + "path": "/mnt/Downloads/series/(ドラマ) 時をかけるな、恋人たち 第05話 「バスクラッシュ・エフェクト」 (1440x1080i x264-AAC)-DoA.mkv", + "filename": "(ドラマ) 時をかけるな、恋人たち 第05話 「バスクラッシュ・エフェクト」 (1440x1080i x264-AAC)-DoA.mkv", + "category": "series", + "title": "(ドラマ) 時をかけるな、恋人たち 第05話 「バスクラッシュ・エフェクト」 (14", + "season": 40, + "episodes": [ + 10 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "(ドラマ) 時をかけるな、恋人たち 第05話 「バスクラッシュ・エフェクト」 (14" + }, + { + "path": "/mnt/Downloads/series/Daredevil.Born.Again.S01E02.With.Interest.1080p.DSNP.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv", + "filename": "Daredevil.Born.Again.S01E02.With.Interest.1080p.DSNP.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv", + "category": "series", + "title": "Daredevil Born Again", + "season": 1, + "episodes": [ + 2 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:202555", + "title_zh": "夜魔侠:重生", + "title_en": "Daredevil: Born Again", + "translation_source": "tmdb", + "reputation_score": 8.0, + "reputation_votes": 643, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"202555\"}" + }, + "display_title": "夜魔侠:重生 Daredevil: Born Again" + }, + { + "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", + "filename": "Reacher.S01E08.Pie.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv", + "category": "series", + "title": "Reacher", + "season": 1, + "episodes": [ + 8 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:108978", + "title_zh": "侠探杰克", + "title_en": "Reacher", + "translation_source": "tmdb", + "reputation_score": 8.084, + "reputation_votes": 2645, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"108978\"}" + }, + "display_title": "侠探杰克 Reacher" + }, + { + "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", + "filename": "Reacher.S01E06.Papier.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv", + "category": "series", + "title": "Reacher", + "season": 1, + "episodes": [ + 6 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:108978", + "title_zh": "侠探杰克", + "title_en": "Reacher", + "translation_source": "tmdb", + "reputation_score": 8.084, + "reputation_votes": 2645, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"108978\"}" + }, + "display_title": "侠探杰克 Reacher" + }, + { + "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", + "filename": "Reacher.S01E05.No.Apologies.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv", + "category": "series", + "title": "Reacher", + "season": 1, + "episodes": [ + 5 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:108978", + "title_zh": "侠探杰克", + "title_en": "Reacher", + "translation_source": "tmdb", + "reputation_score": 8.084, + "reputation_votes": 2645, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"108978\"}" + }, + "display_title": "侠探杰克 Reacher" + }, + { + "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", + "filename": "Reacher.S01E04.In.a.Tree.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv", + "category": "series", + "title": "Reacher", + "season": 1, + "episodes": [ + 4 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:108978", + "title_zh": "侠探杰克", + "title_en": "Reacher", + "translation_source": "tmdb", + "reputation_score": 8.084, + "reputation_votes": 2645, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"108978\"}" + }, + "display_title": "侠探杰克 Reacher" + }, + { + "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", + "filename": "Reacher.S01E03.Spoonful.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv", + "category": "series", + "title": "Reacher", + "season": 1, + "episodes": [ + 3 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:108978", + "title_zh": "侠探杰克", + "title_en": "Reacher", + "translation_source": "tmdb", + "reputation_score": 8.084, + "reputation_votes": 2645, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"108978\"}" + }, + "display_title": "侠探杰克 Reacher" + }, + { + "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", + "filename": "Reacher.S01E07.Reacher.Said.Nothing.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv", + "category": "series", + "title": "Reacher", + "season": 1, + "episodes": [ + 7 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:108978", + "title_zh": "侠探杰克", + "title_en": "Reacher", + "translation_source": "tmdb", + "reputation_score": 8.084, + "reputation_votes": 2645, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"108978\"}" + }, + "display_title": "侠探杰克 Reacher" + }, + { + "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", + "filename": "Reacher.S01E02.First.Dance.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv", + "category": "series", + "title": "Reacher", + "season": 1, + "episodes": [ + 2 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:108978", + "title_zh": "侠探杰克", + "title_en": "Reacher", + "translation_source": "tmdb", + "reputation_score": 8.084, + "reputation_votes": 2645, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"108978\"}" + }, + "display_title": "侠探杰克 Reacher" + }, + { + "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", + "filename": "Reacher.S01E01.Welcome.to.Margrave.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv", + "category": "series", + "title": "Reacher", + "season": 1, + "episodes": [ + 1 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:108978", + "title_zh": "侠探杰克", + "title_en": "Reacher", + "translation_source": "tmdb", + "reputation_score": 8.084, + "reputation_votes": 2645, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"108978\"}" + }, + "display_title": "侠探杰克 Reacher" + }, + { + "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", + "filename": "Shogun.S01E06.2024.2160p.DSNP.WEB-DL.H265.HDR.DDP5.1-ADWeb.mkv", + "category": "series", + "title": "Shogun", + "season": 1, + "episodes": [ + 6 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:126308", + "title_zh": "Shōgun", + "title_en": "Shōgun", + "translation_source": "tmdb", + "reputation_score": 8.441, + "reputation_votes": 1614, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"126308\"}" + }, + "display_title": "Shōgun" + }, + { + "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)", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "The Amateur (2025) ( It Dv Ddp Atmos 5 1 English - Hone)" + }, + { + "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", + "filename": "The.Glory.2022.S02E10.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-PTerWEB.mkv", + "category": "series", + "title": "The Glory 2022", + "season": 2, + "episodes": [ + 10 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "The Glory 2022" + }, + { + "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", + "filename": "The.Glory.2022.S02E13.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-PTerWEB.mkv", + "category": "series", + "title": "The Glory 2022", + "season": 2, + "episodes": [ + 13 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "The Glory 2022" + }, + { + "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", + "filename": "The.Glory.2022.S02E15.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-PTerWEB.mkv", + "category": "series", + "title": "The Glory 2022", + "season": 2, + "episodes": [ + 15 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "The Glory 2022" + }, + { + "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", + "filename": "The.Glory.2022.S02E16.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-PTerWEB.mkv", + "category": "series", + "title": "The Glory 2022", + "season": 2, + "episodes": [ + 16 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "The Glory 2022" + }, + { + "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", + "filename": "The.Glory.2022.S02E14.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-PTerWEB.mkv", + "category": "series", + "title": "The Glory 2022", + "season": 2, + "episodes": [ + 14 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "The Glory 2022" + }, + { + "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", + "filename": "The.Glory.2022.S02E12.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-PTerWEB.mkv", + "category": "series", + "title": "The Glory 2022", + "season": 2, + "episodes": [ + 12 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "The Glory 2022" + }, + { + "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", + "filename": "The.Glory.2022.S02E11.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-PTerWEB.mkv", + "category": "series", + "title": "The Glory 2022", + "season": 2, + "episodes": [ + 11 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "The Glory 2022" + }, + { + "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", + "filename": "The.Glory.2022.S02E09.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-PTerWEB.mkv", + "category": "series", + "title": "The Glory 2022", + "season": 2, + "episodes": [ + 9 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "The Glory 2022" + }, + { + "path": "/mnt/Downloads/series/Reacher.S03E03.Number.2.with.a.Bullet.1080p.AMZN.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv", + "filename": "Reacher.S03E03.Number.2.with.a.Bullet.1080p.AMZN.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv", + "category": "series", + "title": "Reacher", + "season": 3, + "episodes": [ + 3 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:108978", + "title_zh": "侠探杰克", + "title_en": "Reacher", + "translation_source": "tmdb", + "reputation_score": 8.084, + "reputation_votes": 2645, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"108978\"}" + }, + "display_title": "侠探杰克 Reacher" + }, + { + "path": "/mnt/Downloads/series/坂道上的家.Sakaie.2019.HDTV.1080p.x265.10bit-Yumi/Sakaie.2019.EP01.HDTV.1080p.x265.10bit-Yumi.mkv", + "filename": "Sakaie.2019.EP01.HDTV.1080p.x265.10bit-Yumi.mkv", + "category": "series", + "title": "Sakaie 2019 Ep01 -Yumi", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Sakaie 2019 Ep01 -Yumi" + }, + { + "path": "/mnt/Downloads/series/坂道上的家.Sakaie.2019.HDTV.1080p.x265.10bit-Yumi/Sakaie.2019.EP05.HDTV.1080p.x265.10bit-Yumi.mkv", + "filename": "Sakaie.2019.EP05.HDTV.1080p.x265.10bit-Yumi.mkv", + "category": "series", + "title": "Sakaie 2019 Ep05 -Yumi", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Sakaie 2019 Ep05 -Yumi" + }, + { + "path": "/mnt/Downloads/series/坂道上的家.Sakaie.2019.HDTV.1080p.x265.10bit-Yumi/Sakaie.2019.EP04.HDTV.1080p.x265.10bit-Yumi.mkv", + "filename": "Sakaie.2019.EP04.HDTV.1080p.x265.10bit-Yumi.mkv", + "category": "series", + "title": "Sakaie 2019 Ep04 -Yumi", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Sakaie 2019 Ep04 -Yumi" + }, + { + "path": "/mnt/Downloads/series/坂道上的家.Sakaie.2019.HDTV.1080p.x265.10bit-Yumi/Sakaie.2019.EP02.HDTV.1080p.x265.10bit-Yumi.mkv", + "filename": "Sakaie.2019.EP02.HDTV.1080p.x265.10bit-Yumi.mkv", + "category": "series", + "title": "Sakaie 2019 Ep02 -Yumi", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Sakaie 2019 Ep02 -Yumi" + }, + { + "path": "/mnt/Downloads/series/坂道上的家.Sakaie.2019.HDTV.1080p.x265.10bit-Yumi/Sakaie.2019.EP06.HDTV.1080p.x265.10bit-Yumi.mkv", + "filename": "Sakaie.2019.EP06.HDTV.1080p.x265.10bit-Yumi.mkv", + "category": "series", + "title": "Sakaie 2019 Ep06 -Yumi", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Sakaie 2019 Ep06 -Yumi" + }, + { + "path": "/mnt/Downloads/series/坂道上的家.Sakaie.2019.HDTV.1080p.x265.10bit-Yumi/Sakaie.2019.EP03.HDTV.1080p.x265.10bit-Yumi.mkv", + "filename": "Sakaie.2019.EP03.HDTV.1080p.x265.10bit-Yumi.mkv", + "category": "series", + "title": "Sakaie 2019 Ep03 -Yumi", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Sakaie 2019 Ep03 -Yumi" + }, + { + "path": "/mnt/Downloads/series/Saiai.2021.KKTV.WEB-DL.1080p.x264.AAC-HDCTV/Saiai.E03.2021.KKTV.WEB-DL.1080p.x264.AAC-HDCTV.mkv", + "filename": "Saiai.E03.2021.KKTV.WEB-DL.1080p.x264.AAC-HDCTV.mkv", + "category": "series", + "title": "Saiai E03 2021 Kktv -Hdctv", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Saiai E03 2021 Kktv -Hdctv" + }, + { + "path": "/mnt/Downloads/series/Saiai.2021.KKTV.WEB-DL.1080p.x264.AAC-HDCTV/Saiai.E02.2021.KKTV.WEB-DL.1080p.x264.AAC-HDCTV.mkv", + "filename": "Saiai.E02.2021.KKTV.WEB-DL.1080p.x264.AAC-HDCTV.mkv", + "category": "series", + "title": "Saiai E02 2021 Kktv -Hdctv", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Saiai E02 2021 Kktv -Hdctv" + }, + { + "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", + "filename": "The.Capture.S02E06.The.Flip.1080p.iP.WEB-DL.AAC2.0.H.264-playWEB.mkv", + "category": "series", + "title": "The Capture", + "season": 2, + "episodes": [ + 6 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:93166", + "title_zh": "真相捕捉", + "title_en": "The Capture", + "translation_source": "tmdb", + "reputation_score": 7.763, + "reputation_votes": 274, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"93166\"}" + }, + "display_title": "真相捕捉 The Capture" + }, + { + "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", + "filename": "The.Capture.S02E05.Imposter.Syndrome.1080p.iP.WEB-DL.AAC2.0.H.264-playWEB.mkv", + "category": "series", + "title": "The Capture", + "season": 2, + "episodes": [ + 5 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:93166", + "title_zh": "真相捕捉", + "title_en": "The Capture", + "translation_source": "tmdb", + "reputation_score": 7.763, + "reputation_votes": 274, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"93166\"}" + }, + "display_title": "真相捕捉 The Capture" + }, + { + "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", + "filename": "The.Capture.S02E02.Made.in.China.1080p.iP.WEB-DL.AAC2.0.H.264-playWEB.mkv", + "category": "series", + "title": "The Capture", + "season": 2, + "episodes": [ + 2 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:93166", + "title_zh": "真相捕捉", + "title_en": "The Capture", + "translation_source": "tmdb", + "reputation_score": 7.763, + "reputation_votes": 274, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"93166\"}" + }, + "display_title": "真相捕捉 The Capture" + }, + { + "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", + "filename": "The.Capture.S02E03.Charlie.Foxtrot.1080p.iP.WEB-DL.AAC2.0.H.264-playWEB.mkv", + "category": "series", + "title": "The Capture", + "season": 2, + "episodes": [ + 3 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:93166", + "title_zh": "真相捕捉", + "title_en": "The Capture", + "translation_source": "tmdb", + "reputation_score": 7.763, + "reputation_votes": 274, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"93166\"}" + }, + "display_title": "真相捕捉 The Capture" + }, + { + "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", + "filename": "The.Capture.S02E01.Invisible.Men.1080p.iP.WEB-DL.AAC2.0.H.264-playWEB.mkv", + "category": "series", + "title": "The Capture", + "season": 2, + "episodes": [ + 1 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:93166", + "title_zh": "真相捕捉", + "title_en": "The Capture", + "translation_source": "tmdb", + "reputation_score": 7.763, + "reputation_votes": 274, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"93166\"}" + }, + "display_title": "真相捕捉 The Capture" + }, + { + "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", + "filename": "The.Capture.S02E04.therealzacturner.1080p.iP.WEB-DL.AAC2.0.H.264-playWEB.mkv", + "category": "series", + "title": "The Capture", + "season": 2, + "episodes": [ + 4 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:93166", + "title_zh": "真相捕捉", + "title_en": "The Capture", + "translation_source": "tmdb", + "reputation_score": 7.763, + "reputation_votes": 274, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"93166\"}" + }, + "display_title": "真相捕捉 The Capture" + }, + { + "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", + "filename": "The.World.Between.Us.S01E09.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv", + "category": "series", + "title": "The World Between Us", + "season": 1, + "episodes": [ + 9 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:218755", + "title_zh": "我们与恶的距离", + "title_en": "The World Between Us", + "translation_source": "tmdb", + "reputation_score": 0.0, + "reputation_votes": 1, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"218755\"}" + }, + "display_title": "我们与恶的距离 The World Between Us" + }, + { + "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", + "filename": "The.World.Between.Us.S01E08.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv", + "category": "series", + "title": "The World Between Us", + "season": 1, + "episodes": [ + 8 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:218755", + "title_zh": "我们与恶的距离", + "title_en": "The World Between Us", + "translation_source": "tmdb", + "reputation_score": 0.0, + "reputation_votes": 1, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"218755\"}" + }, + "display_title": "我们与恶的距离 The World Between Us" + }, + { + "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", + "filename": "The.World.Between.Us.S01E03.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv", + "category": "series", + "title": "The World Between Us", + "season": 1, + "episodes": [ + 3 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:218755", + "title_zh": "我们与恶的距离", + "title_en": "The World Between Us", + "translation_source": "tmdb", + "reputation_score": 0.0, + "reputation_votes": 1, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"218755\"}" + }, + "display_title": "我们与恶的距离 The World Between Us" + }, + { + "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", + "filename": "The.World.Between.Us.S01.Extras.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv", + "category": "series", + "title": "The World Between Us S01 Extras Flac Mnhd-Frds", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "The World Between Us S01 Extras Flac Mnhd-Frds" + }, + { + "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", + "filename": "The.World.Between.Us.S01E02.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv", + "category": "series", + "title": "The World Between Us", + "season": 1, + "episodes": [ + 2 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:218755", + "title_zh": "我们与恶的距离", + "title_en": "The World Between Us", + "translation_source": "tmdb", + "reputation_score": 0.0, + "reputation_votes": 1, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"218755\"}" + }, + "display_title": "我们与恶的距离 The World Between Us" + }, + { + "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", + "filename": "The.World.Between.Us.S01E01.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv", + "category": "series", + "title": "The World Between Us", + "season": 1, + "episodes": [ + 1 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:218755", + "title_zh": "我们与恶的距离", + "title_en": "The World Between Us", + "translation_source": "tmdb", + "reputation_score": 0.0, + "reputation_votes": 1, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"218755\"}" + }, + "display_title": "我们与恶的距离 The World Between Us" + }, + { + "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", + "filename": "The.World.Between.Us.S01E07.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv", + "category": "series", + "title": "The World Between Us", + "season": 1, + "episodes": [ + 7 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:218755", + "title_zh": "我们与恶的距离", + "title_en": "The World Between Us", + "translation_source": "tmdb", + "reputation_score": 0.0, + "reputation_votes": 1, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"218755\"}" + }, + "display_title": "我们与恶的距离 The World Between Us" + }, + { + "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", + "filename": "The.World.Between.Us.S01E06.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv", + "category": "series", + "title": "The World Between Us", + "season": 1, + "episodes": [ + 6 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:218755", + "title_zh": "我们与恶的距离", + "title_en": "The World Between Us", + "translation_source": "tmdb", + "reputation_score": 0.0, + "reputation_votes": 1, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"218755\"}" + }, + "display_title": "我们与恶的距离 The World Between Us" + }, + { + "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", + "filename": "The.World.Between.Us.S01E05.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv", + "category": "series", + "title": "The World Between Us", + "season": 1, + "episodes": [ + 5 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:218755", + "title_zh": "我们与恶的距离", + "title_en": "The World Between Us", + "translation_source": "tmdb", + "reputation_score": 0.0, + "reputation_votes": 1, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"218755\"}" + }, + "display_title": "我们与恶的距离 The World Between Us" + }, + { + "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", + "filename": "The.World.Between.Us.S01E10.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv", + "category": "series", + "title": "The World Between Us", + "season": 1, + "episodes": [ + 10 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:218755", + "title_zh": "我们与恶的距离", + "title_en": "The World Between Us", + "translation_source": "tmdb", + "reputation_score": 0.0, + "reputation_votes": 1, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"218755\"}" + }, + "display_title": "我们与恶的距离 The World Between Us" + }, + { + "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", + "filename": "The.World.Between.Us.S01E04.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv", + "category": "series", + "title": "The World Between Us", + "season": 1, + "episodes": [ + 4 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:218755", + "title_zh": "我们与恶的距离", + "title_en": "The World Between Us", + "translation_source": "tmdb", + "reputation_score": 0.0, + "reputation_votes": 1, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"218755\"}" + }, + "display_title": "我们与恶的距离 The World Between Us" + }, + { + "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", + "filename": "财阀家的小儿子.Reborn.Rich.2022.S01E10.1080p.friDay.WEB-DL.H264.AAC-OurTV.mkv", + "category": "series", + "title": "财阀家的小儿子 Reborn Rich 2022", + "season": 1, + "episodes": [ + 10 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "财阀家的小儿子 Reborn Rich 2022" + }, + { + "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", + "filename": "财阀家的小儿子.Reborn.Rich.2022.S01E01.1080p.friDay.WEB-DL.H264.AAC-OurTV.mkv", + "category": "series", + "title": "财阀家的小儿子 Reborn Rich 2022", + "season": 1, + "episodes": [ + 1 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "财阀家的小儿子 Reborn Rich 2022" + }, + { + "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", + "filename": "财阀家的小儿子.Reborn.Rich.2022.S01E08.1080p.friDay.WEB-DL.H264.AAC-OurTV.mkv", + "category": "series", + "title": "财阀家的小儿子 Reborn Rich 2022", + "season": 1, + "episodes": [ + 8 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "财阀家的小儿子 Reborn Rich 2022" + }, + { + "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", + "filename": "财阀家的小儿子.Reborn.Rich.2022.S01E14.1080p.friDay.WEB-DL.H264.AAC-OurTV.mkv", + "category": "series", + "title": "财阀家的小儿子 Reborn Rich 2022", + "season": 1, + "episodes": [ + 14 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "财阀家的小儿子 Reborn Rich 2022" + }, + { + "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", + "filename": "财阀家的小儿子.Reborn.Rich.2022.S01E05.1080p.friDay.WEB-DL.H264.AAC-OurTV.mkv", + "category": "series", + "title": "财阀家的小儿子 Reborn Rich 2022", + "season": 1, + "episodes": [ + 5 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "财阀家的小儿子 Reborn Rich 2022" + }, + { + "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", + "filename": "财阀家的小儿子.Reborn.Rich.2022.S01E04.1080p.friDay.WEB-DL.H264.AAC-OurTV.mkv", + "category": "series", + "title": "财阀家的小儿子 Reborn Rich 2022", + "season": 1, + "episodes": [ + 4 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "财阀家的小儿子 Reborn Rich 2022" + }, + { + "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", + "filename": "财阀家的小儿子.Reborn.Rich.2022.S01E15.1080p.friDay.WEB-DL.H264.AAC-OurTV.mkv", + "category": "series", + "title": "财阀家的小儿子 Reborn Rich 2022", + "season": 1, + "episodes": [ + 15 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "财阀家的小儿子 Reborn Rich 2022" + }, + { + "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", + "filename": "财阀家的小儿子.Reborn.Rich.2022.S01E09.1080p.friDay.WEB-DL.H264.AAC-OurTV.mkv", + "category": "series", + "title": "财阀家的小儿子 Reborn Rich 2022", + "season": 1, + "episodes": [ + 9 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "财阀家的小儿子 Reborn Rich 2022" + }, + { + "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", + "filename": "财阀家的小儿子.Reborn.Rich.2022.S01E11.1080p.friDay.WEB-DL.H264.AAC-OurTV.mkv", + "category": "series", + "title": "财阀家的小儿子 Reborn Rich 2022", + "season": 1, + "episodes": [ + 11 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "财阀家的小儿子 Reborn Rich 2022" + }, + { + "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", + "filename": "财阀家的小儿子.Reborn.Rich.2022.S01E06.1080p.friDay.WEB-DL.H264.AAC-OurTV.mkv", + "category": "series", + "title": "财阀家的小儿子 Reborn Rich 2022", + "season": 1, + "episodes": [ + 6 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "财阀家的小儿子 Reborn Rich 2022" + }, + { + "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", + "filename": "财阀家的小儿子.Reborn.Rich.2022.S01E02.1080p.friDay.WEB-DL.H264.AAC-OurTV.mkv", + "category": "series", + "title": "财阀家的小儿子 Reborn Rich 2022", + "season": 1, + "episodes": [ + 2 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "财阀家的小儿子 Reborn Rich 2022" + }, + { + "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", + "filename": "财阀家的小儿子.Reborn.Rich.2022.S01E13.1080p.friDay.WEB-DL.H264.AAC-OurTV.mkv", + "category": "series", + "title": "财阀家的小儿子 Reborn Rich 2022", + "season": 1, + "episodes": [ + 13 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "财阀家的小儿子 Reborn Rich 2022" + }, + { + "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", + "filename": "财阀家的小儿子.Reborn.Rich.2022.S01E12.1080p.friDay.WEB-DL.H264.AAC-OurTV.mkv", + "category": "series", + "title": "财阀家的小儿子 Reborn Rich 2022", + "season": 1, + "episodes": [ + 12 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "财阀家的小儿子 Reborn Rich 2022" + }, + { + "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", + "filename": "财阀家的小儿子.Reborn.Rich.2022.S01E03.1080p.friDay.WEB-DL.H264.AAC-OurTV.mkv", + "category": "series", + "title": "财阀家的小儿子 Reborn Rich 2022", + "season": 1, + "episodes": [ + 3 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "财阀家的小儿子 Reborn Rich 2022" + }, + { + "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", + "filename": "财阀家的小儿子.Reborn.Rich.2022.S01E16.1080p.friDay.WEB-DL.H264.AAC-OurTV.mkv", + "category": "series", + "title": "财阀家的小儿子 Reborn Rich 2022", + "season": 1, + "episodes": [ + 16 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "财阀家的小儿子 Reborn Rich 2022" + }, + { + "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", + "filename": "财阀家的小儿子.Reborn.Rich.2022.S01E07.1080p.friDay.WEB-DL.H264.AAC-OurTV.mkv", + "category": "series", + "title": "财阀家的小儿子 Reborn Rich 2022", + "season": 1, + "episodes": [ + 7 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "财阀家的小儿子 Reborn Rich 2022" + }, + { + "path": "/mnt/Downloads/series/Study.Group.2025.S01E02.1080p.Friday.WEB-DL.H264.AAC-PTerWEB.mkv", + "filename": "Study.Group.2025.S01E02.1080p.Friday.WEB-DL.H264.AAC-PTerWEB.mkv", + "category": "series", + "title": "Study Group 2025", + "season": 1, + "episodes": [ + 2 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Study Group 2025" + }, + { + "path": "/mnt/Downloads/series/Stranger.S02.1080p.BluRay.x265.10bit-WiKi/Stranger.S02E14.1080p.BluRay.x265.10bit-WiKi.mkv", + "filename": "Stranger.S02E14.1080p.BluRay.x265.10bit-WiKi.mkv", + "category": "series", + "title": "Stranger", + "season": 2, + "episodes": [ + 14 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:82183", + "title_zh": "陌生人", + "title_en": "Strangers", + "translation_source": "tmdb", + "reputation_score": 6.47, + "reputation_votes": 33, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"82183\"}" + }, + "display_title": "陌生人 Strangers" + }, + { + "path": "/mnt/Downloads/series/Stranger.S02.1080p.BluRay.x265.10bit-WiKi/Stranger.S02E03.1080p.BluRay.x265.10bit-WiKi.mkv", + "filename": "Stranger.S02E03.1080p.BluRay.x265.10bit-WiKi.mkv", + "category": "series", + "title": "Stranger", + "season": 2, + "episodes": [ + 3 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:82183", + "title_zh": "陌生人", + "title_en": "Strangers", + "translation_source": "tmdb", + "reputation_score": 6.47, + "reputation_votes": 33, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"82183\"}" + }, + "display_title": "陌生人 Strangers" + }, + { + "path": "/mnt/Downloads/series/Stranger.S02.1080p.BluRay.x265.10bit-WiKi/Stranger.S02E07.1080p.BluRay.x265.10bit-WiKi.mkv", + "filename": "Stranger.S02E07.1080p.BluRay.x265.10bit-WiKi.mkv", + "category": "series", + "title": "Stranger", + "season": 2, + "episodes": [ + 7 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:82183", + "title_zh": "陌生人", + "title_en": "Strangers", + "translation_source": "tmdb", + "reputation_score": 6.47, + "reputation_votes": 33, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"82183\"}" + }, + "display_title": "陌生人 Strangers" + }, + { + "path": "/mnt/Downloads/series/Stranger.S02.1080p.BluRay.x265.10bit-WiKi/Stranger.S02E10.1080p.BluRay.x265.10bit-WiKi.mkv", + "filename": "Stranger.S02E10.1080p.BluRay.x265.10bit-WiKi.mkv", + "category": "series", + "title": "Stranger", + "season": 2, + "episodes": [ + 10 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:82183", + "title_zh": "陌生人", + "title_en": "Strangers", + "translation_source": "tmdb", + "reputation_score": 6.47, + "reputation_votes": 33, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"82183\"}" + }, + "display_title": "陌生人 Strangers" + }, + { + "path": "/mnt/Downloads/series/Stranger.S02.1080p.BluRay.x265.10bit-WiKi/Stranger.S02E06.1080p.BluRay.x265.10bit-WiKi.mkv", + "filename": "Stranger.S02E06.1080p.BluRay.x265.10bit-WiKi.mkv", + "category": "series", + "title": "Stranger", + "season": 2, + "episodes": [ + 6 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:82183", + "title_zh": "陌生人", + "title_en": "Strangers", + "translation_source": "tmdb", + "reputation_score": 6.47, + "reputation_votes": 33, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"82183\"}" + }, + "display_title": "陌生人 Strangers" + }, + { + "path": "/mnt/Downloads/series/Stranger.S02.1080p.BluRay.x265.10bit-WiKi/Stranger.S02E11.1080p.BluRay.x265.10bit-WiKi.mkv", + "filename": "Stranger.S02E11.1080p.BluRay.x265.10bit-WiKi.mkv", + "category": "series", + "title": "Stranger", + "season": 2, + "episodes": [ + 11 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:82183", + "title_zh": "陌生人", + "title_en": "Strangers", + "translation_source": "tmdb", + "reputation_score": 6.47, + "reputation_votes": 33, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"82183\"}" + }, + "display_title": "陌生人 Strangers" + }, + { + "path": "/mnt/Downloads/series/Stranger.S02.1080p.BluRay.x265.10bit-WiKi/Stranger.S02E15.1080p.BluRay.x265.10bit-WiKi.mkv", + "filename": "Stranger.S02E15.1080p.BluRay.x265.10bit-WiKi.mkv", + "category": "series", + "title": "Stranger", + "season": 2, + "episodes": [ + 15 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:82183", + "title_zh": "陌生人", + "title_en": "Strangers", + "translation_source": "tmdb", + "reputation_score": 6.47, + "reputation_votes": 33, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"82183\"}" + }, + "display_title": "陌生人 Strangers" + }, + { + "path": "/mnt/Downloads/series/Stranger.S02.1080p.BluRay.x265.10bit-WiKi/Stranger.S02E02.1080p.BluRay.x265.10bit-WiKi.mkv", + "filename": "Stranger.S02E02.1080p.BluRay.x265.10bit-WiKi.mkv", + "category": "series", + "title": "Stranger", + "season": 2, + "episodes": [ + 2 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:82183", + "title_zh": "陌生人", + "title_en": "Strangers", + "translation_source": "tmdb", + "reputation_score": 6.47, + "reputation_votes": 33, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"82183\"}" + }, + "display_title": "陌生人 Strangers" + }, + { + "path": "/mnt/Downloads/series/Stranger.S02.1080p.BluRay.x265.10bit-WiKi/Stranger.S02E04.1080p.BluRay.x265.10bit-WiKi.mkv", + "filename": "Stranger.S02E04.1080p.BluRay.x265.10bit-WiKi.mkv", + "category": "series", + "title": "Stranger", + "season": 2, + "episodes": [ + 4 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:82183", + "title_zh": "陌生人", + "title_en": "Strangers", + "translation_source": "tmdb", + "reputation_score": 6.47, + "reputation_votes": 33, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"82183\"}" + }, + "display_title": "陌生人 Strangers" + }, + { + "path": "/mnt/Downloads/series/Stranger.S02.1080p.BluRay.x265.10bit-WiKi/Stranger.S02E13.1080p.BluRay.x265.10bit-WiKi.mkv", + "filename": "Stranger.S02E13.1080p.BluRay.x265.10bit-WiKi.mkv", + "category": "series", + "title": "Stranger", + "season": 2, + "episodes": [ + 13 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:82183", + "title_zh": "陌生人", + "title_en": "Strangers", + "translation_source": "tmdb", + "reputation_score": 6.47, + "reputation_votes": 33, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"82183\"}" + }, + "display_title": "陌生人 Strangers" + }, + { + "path": "/mnt/Downloads/series/Stranger.S02.1080p.BluRay.x265.10bit-WiKi/Stranger.S02E09.1080p.BluRay.x265.10bit-WiKi.mkv", + "filename": "Stranger.S02E09.1080p.BluRay.x265.10bit-WiKi.mkv", + "category": "series", + "title": "Stranger", + "season": 2, + "episodes": [ + 9 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:82183", + "title_zh": "陌生人", + "title_en": "Strangers", + "translation_source": "tmdb", + "reputation_score": 6.47, + "reputation_votes": 33, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"82183\"}" + }, + "display_title": "陌生人 Strangers" + }, + { + "path": "/mnt/Downloads/series/Stranger.S02.1080p.BluRay.x265.10bit-WiKi/Stranger.S02E16.1080p.BluRay.x265.10bit-WiKi.mkv", + "filename": "Stranger.S02E16.1080p.BluRay.x265.10bit-WiKi.mkv", + "category": "series", + "title": "Stranger", + "season": 2, + "episodes": [ + 16 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:82183", + "title_zh": "陌生人", + "title_en": "Strangers", + "translation_source": "tmdb", + "reputation_score": 6.47, + "reputation_votes": 33, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"82183\"}" + }, + "display_title": "陌生人 Strangers" + }, + { + "path": "/mnt/Downloads/series/Stranger.S02.1080p.BluRay.x265.10bit-WiKi/Stranger.S02E01.1080p.BluRay.x265.10bit-WiKi.mkv", + "filename": "Stranger.S02E01.1080p.BluRay.x265.10bit-WiKi.mkv", + "category": "series", + "title": "Stranger", + "season": 2, + "episodes": [ + 1 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:82183", + "title_zh": "陌生人", + "title_en": "Strangers", + "translation_source": "tmdb", + "reputation_score": 6.47, + "reputation_votes": 33, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"82183\"}" + }, + "display_title": "陌生人 Strangers" + }, + { + "path": "/mnt/Downloads/series/Stranger.S02.1080p.BluRay.x265.10bit-WiKi/Stranger.S02E08.1080p.BluRay.x265.10bit-WiKi.mkv", + "filename": "Stranger.S02E08.1080p.BluRay.x265.10bit-WiKi.mkv", + "category": "series", + "title": "Stranger", + "season": 2, + "episodes": [ + 8 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:82183", + "title_zh": "陌生人", + "title_en": "Strangers", + "translation_source": "tmdb", + "reputation_score": 6.47, + "reputation_votes": 33, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"82183\"}" + }, + "display_title": "陌生人 Strangers" + }, + { + "path": "/mnt/Downloads/series/Stranger.S02.1080p.BluRay.x265.10bit-WiKi/Stranger.S02E05.1080p.BluRay.x265.10bit-WiKi.mkv", + "filename": "Stranger.S02E05.1080p.BluRay.x265.10bit-WiKi.mkv", + "category": "series", + "title": "Stranger", + "season": 2, + "episodes": [ + 5 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:82183", + "title_zh": "陌生人", + "title_en": "Strangers", + "translation_source": "tmdb", + "reputation_score": 6.47, + "reputation_votes": 33, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"82183\"}" + }, + "display_title": "陌生人 Strangers" + }, + { + "path": "/mnt/Downloads/series/Stranger.S02.1080p.BluRay.x265.10bit-WiKi/Stranger.S02E12.1080p.BluRay.x265.10bit-WiKi.mkv", + "filename": "Stranger.S02E12.1080p.BluRay.x265.10bit-WiKi.mkv", + "category": "series", + "title": "Stranger", + "season": 2, + "episodes": [ + 12 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:82183", + "title_zh": "陌生人", + "title_en": "Strangers", + "translation_source": "tmdb", + "reputation_score": 6.47, + "reputation_votes": 33, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"82183\"}" + }, + "display_title": "陌生人 Strangers" + }, + { + "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", + "filename": "Grande.Maison.Tokyo.E01.2019.KKTV.WEB-DL.1080p.x264.AAC-AREY.mkv", + "category": "series", + "title": "Grande Maison Tokyo E01 2019 Kktv -Arey", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Grande Maison Tokyo E01 2019 Kktv -Arey" + }, + { + "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", + "filename": "Grande.Maison.Tokyo.E02.2019.KKTV.WEB-DL.1080p.x264.AAC-AREY.mkv", + "category": "series", + "title": "Grande Maison Tokyo E02 2019 Kktv -Arey", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Grande Maison Tokyo E02 2019 Kktv -Arey" + }, + { + "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", + "filename": "Grande.Maison.Tokyo.E07.2019.KKTV.WEB-DL.1080p.x264.AAC-AREY.mkv", + "category": "series", + "title": "Grande Maison Tokyo E07 2019 Kktv -Arey", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Grande Maison Tokyo E07 2019 Kktv -Arey" + }, + { + "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", + "filename": "Grande.Maison.Tokyo.E09.2019.KKTV.WEB-DL.1080p.x264.AAC-AREY.mkv", + "category": "series", + "title": "Grande Maison Tokyo E09 2019 Kktv -Arey", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Grande Maison Tokyo E09 2019 Kktv -Arey" + }, + { + "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", + "filename": "Grande.Maison.Tokyo.E11.2019.KKTV.WEB-DL.1080p.x264.AAC-AREY.mkv", + "category": "series", + "title": "Grande Maison Tokyo E11 2019 Kktv -Arey", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Grande Maison Tokyo E11 2019 Kktv -Arey" + }, + { + "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", + "filename": "Grande.Maison.Tokyo.E04.2019.KKTV.WEB-DL.1080p.x264.AAC-AREY.mkv", + "category": "series", + "title": "Grande Maison Tokyo E04 2019 Kktv -Arey", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Grande Maison Tokyo E04 2019 Kktv -Arey" + }, + { + "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", + "filename": "Grande.Maison.Tokyo.E03.2019.KKTV.WEB-DL.1080p.x264.AAC-AREY.mkv", + "category": "series", + "title": "Grande Maison Tokyo E03 2019 Kktv -Arey", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Grande Maison Tokyo E03 2019 Kktv -Arey" + }, + { + "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", + "filename": "Grande.Maison.Tokyo.E08.2019.KKTV.WEB-DL.1080p.x264.AAC-AREY.mkv", + "category": "series", + "title": "Grande Maison Tokyo E08 2019 Kktv -Arey", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Grande Maison Tokyo E08 2019 Kktv -Arey" + }, + { + "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", + "filename": "Grande.Maison.Tokyo.E06.2019.KKTV.WEB-DL.1080p.x264.AAC-AREY.mkv", + "category": "series", + "title": "Grande Maison Tokyo E06 2019 Kktv -Arey", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Grande Maison Tokyo E06 2019 Kktv -Arey" + }, + { + "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", + "filename": "Grande.Maison.Tokyo.E10.2019.KKTV.WEB-DL.1080p.x264.AAC-AREY.mkv", + "category": "series", + "title": "Grande Maison Tokyo E10 2019 Kktv -Arey", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Grande Maison Tokyo E10 2019 Kktv -Arey" + }, + { + "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", + "filename": "Grande.Maison.Tokyo.E05.2019.KKTV.WEB-DL.1080p.x264.AAC-AREY.mkv", + "category": "series", + "title": "Grande Maison Tokyo E05 2019 Kktv -Arey", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Grande Maison Tokyo E05 2019 Kktv -Arey" + }, + { + "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", + "filename": "The.Wheel.of.Time.S02E08.What.Was.Meant.To.Be.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv", + "category": "series", + "title": "The Wheel Of Time", + "season": 2, + "episodes": [ + 8 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:71914", + "title_zh": "时光之轮", + "title_en": "The Wheel of Time", + "translation_source": "tmdb", + "reputation_score": 7.623, + "reputation_votes": 2338, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"71914\"}" + }, + "display_title": "时光之轮 The Wheel of Time" + }, + { + "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", + "filename": "The.Wheel.of.Time.S02E07.Daes.DaeMar.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv", + "category": "series", + "title": "The Wheel Of Time", + "season": 2, + "episodes": [ + 7 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:71914", + "title_zh": "时光之轮", + "title_en": "The Wheel of Time", + "translation_source": "tmdb", + "reputation_score": 7.623, + "reputation_votes": 2338, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"71914\"}" + }, + "display_title": "时光之轮 The Wheel of Time" + }, + { + "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", + "filename": "The.Wheel.of.Time.S02E04.Daughter.of.the.Night.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv", + "category": "series", + "title": "The Wheel Of Time", + "season": 2, + "episodes": [ + 4 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:71914", + "title_zh": "时光之轮", + "title_en": "The Wheel of Time", + "translation_source": "tmdb", + "reputation_score": 7.623, + "reputation_votes": 2338, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"71914\"}" + }, + "display_title": "时光之轮 The Wheel of Time" + }, + { + "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", + "filename": "The.Wheel.of.Time.S02E06.Eyes.Without.Pity.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv", + "category": "series", + "title": "The Wheel Of Time", + "season": 2, + "episodes": [ + 6 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:71914", + "title_zh": "时光之轮", + "title_en": "The Wheel of Time", + "translation_source": "tmdb", + "reputation_score": 7.623, + "reputation_votes": 2338, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"71914\"}" + }, + "display_title": "时光之轮 The Wheel of Time" + }, + { + "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", + "filename": "The.Wheel.of.Time.S02E05.Damane.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv", + "category": "series", + "title": "The Wheel Of Time", + "season": 2, + "episodes": [ + 5 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:71914", + "title_zh": "时光之轮", + "title_en": "The Wheel of Time", + "translation_source": "tmdb", + "reputation_score": 7.623, + "reputation_votes": 2338, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"71914\"}" + }, + "display_title": "时光之轮 The Wheel of Time" + }, + { + "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", + "filename": "The.Peripheral.S01E05.2022.Amazon.WEB-DL.1080p.H264.DDP-HDCTV.mkv", + "category": "series", + "title": "The Peripheral", + "season": 1, + "episodes": [ + 5 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:95403", + "title_zh": "边缘世界", + "title_en": "The Peripheral", + "translation_source": "tmdb", + "reputation_score": 7.671, + "reputation_votes": 1273, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"95403\"}" + }, + "display_title": "边缘世界 The Peripheral" + }, + { + "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", + "filename": "The.Peripheral.S01E08.2022.Amazon.WEB-DL.1080p.H264.DDP-HDCTV.mkv", + "category": "series", + "title": "The Peripheral", + "season": 1, + "episodes": [ + 8 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:95403", + "title_zh": "边缘世界", + "title_en": "The Peripheral", + "translation_source": "tmdb", + "reputation_score": 7.671, + "reputation_votes": 1273, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"95403\"}" + }, + "display_title": "边缘世界 The Peripheral" + }, + { + "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", + "filename": "The.Peripheral.S01E04.2022.Amazon.WEB-DL.1080p.H264.DDP-HDCTV.mkv", + "category": "series", + "title": "The Peripheral", + "season": 1, + "episodes": [ + 4 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:95403", + "title_zh": "边缘世界", + "title_en": "The Peripheral", + "translation_source": "tmdb", + "reputation_score": 7.671, + "reputation_votes": 1273, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"95403\"}" + }, + "display_title": "边缘世界 The Peripheral" + }, + { + "path": "/mnt/Downloads/series/Presumed.Innocent.S01E01.Bases.Loaded.1080p.ATVP.WEB-DL.DDP5.1.H.264-NTb.mkv", + "filename": "Presumed.Innocent.S01E01.Bases.Loaded.1080p.ATVP.WEB-DL.DDP5.1.H.264-NTb.mkv", + "category": "series", + "title": "Presumed Innocent", + "season": 1, + "episodes": [ + 1 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:156933", + "title_zh": "Presumed Innocent", + "title_en": "Presumed Innocent", + "translation_source": "tmdb", + "reputation_score": 7.863, + "reputation_votes": 554, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"156933\"}" + }, + "display_title": "Presumed Innocent" + }, + { + "path": "/mnt/Downloads/series/(ドラマ) 時をかけるな、恋人たち 第03話 「きみがぼくを見つけた夜」 (1440x1080i x264-AAC)-DoA.mkv", + "filename": "(ドラマ) 時をかけるな、恋人たち 第03話 「きみがぼくを見つけた夜」 (1440x1080i x264-AAC)-DoA.mkv", + "category": "series", + "title": "(ドラマ) 時をかけるな、恋人たち 第03話 「きみがぼくを見つけた夜」 (14", + "season": 40, + "episodes": [ + 10 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "(ドラマ) 時をかけるな、恋人たち 第03話 「きみがぼくを見つけた夜」 (14" + }, + { + "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", + "filename": "Goodbye.Earth.S01E08.Dum.Spiro.Spero.1080p.NF.WEB-DL.DUAL.DDP5.1.Atmos.H.264-FLUX.mkv", + "category": "series", + "title": "Goodbye Earth", + "season": 1, + "episodes": [ + 8 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:139547", + "title_zh": "末日愚者", + "title_en": "종말의 바보", + "translation_source": "tmdb", + "reputation_score": 6.067, + "reputation_votes": 60, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"139547\"}" + }, + "display_title": "末日愚者 종말의 바보" + }, + { + "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", + "filename": "Goodbye.Earth.S01E10.Exodus.Eclipsed.1080p.NF.WEB-DL.DUAL.DDP5.1.Atmos.H.264-FLUX.mkv", + "category": "series", + "title": "Goodbye Earth", + "season": 1, + "episodes": [ + 10 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:139547", + "title_zh": "末日愚者", + "title_en": "종말의 바보", + "translation_source": "tmdb", + "reputation_score": 6.067, + "reputation_votes": 60, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"139547\"}" + }, + "display_title": "末日愚者 종말의 바보" + }, + { + "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", + "filename": "Goodbye.Earth.S01E02.Love.is.Back.1080p.NF.WEB-DL.DUAL.DDP5.1.Atmos.H.264-FLUX.mkv", + "category": "series", + "title": "Goodbye Earth", + "season": 1, + "episodes": [ + 2 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:139547", + "title_zh": "末日愚者", + "title_en": "종말의 바보", + "translation_source": "tmdb", + "reputation_score": 6.067, + "reputation_votes": 60, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"139547\"}" + }, + "display_title": "末日愚者 종말의 바보" + }, + { + "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", + "filename": "Goodbye.Earth.S01E03.I.Have.Butterflies.1080p.NF.WEB-DL.DUAL.DDP5.1.Atmos.H.264-FLUX.mkv", + "category": "series", + "title": "Goodbye Earth", + "season": 1, + "episodes": [ + 3 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:139547", + "title_zh": "末日愚者", + "title_en": "종말의 바보", + "translation_source": "tmdb", + "reputation_score": 6.067, + "reputation_votes": 60, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"139547\"}" + }, + "display_title": "末日愚者 종말의 바보" + }, + { + "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", + "filename": "Goodbye.Earth.S01E11.Last.Christmas.1080p.NF.WEB-DL.DUAL.DDP5.1.Atmos.H.264-FLUX.mkv", + "category": "series", + "title": "Goodbye Earth", + "season": 1, + "episodes": [ + 11 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:139547", + "title_zh": "末日愚者", + "title_en": "종말의 바보", + "translation_source": "tmdb", + "reputation_score": 6.067, + "reputation_votes": 60, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"139547\"}" + }, + "display_title": "末日愚者 종말의 바보" + }, + { + "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", + "filename": "Goodbye.Earth.S01E12.Goodbye.Earth.1080p.NF.WEB-DL.DUAL.DDP5.1.Atmos.H.264-FLUX.mkv", + "category": "series", + "title": "Goodbye Earth", + "season": 1, + "episodes": [ + 12 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:139547", + "title_zh": "末日愚者", + "title_en": "종말의 바보", + "translation_source": "tmdb", + "reputation_score": 6.067, + "reputation_votes": 60, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"139547\"}" + }, + "display_title": "末日愚者 종말의 바보" + }, + { + "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", + "filename": "Goodbye.Earth.S01E07.Arirang.Gone.But.Not.Forgotten.1080p.NF.WEB-DL.DUAL.DDP5.1.Atmos.H.264-FLUX.mkv", + "category": "series", + "title": "Goodbye Earth", + "season": 1, + "episodes": [ + 7 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:139547", + "title_zh": "末日愚者", + "title_en": "종말의 바보", + "translation_source": "tmdb", + "reputation_score": 6.067, + "reputation_votes": 60, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"139547\"}" + }, + "display_title": "末日愚者 종말의 바보" + }, + { + "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", + "filename": "Goodbye.Earth.S01E01.Football.Bloody.Hell.1080p.NF.WEB-DL.DUAL.DDP5.1.Atmos.H.264-FLUX.mkv", + "category": "series", + "title": "Goodbye Earth", + "season": 1, + "episodes": [ + 1 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:139547", + "title_zh": "末日愚者", + "title_en": "종말의 바보", + "translation_source": "tmdb", + "reputation_score": 6.067, + "reputation_votes": 60, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"139547\"}" + }, + "display_title": "末日愚者 종말의 바보" + }, + { + "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", + "filename": "Goodbye.Earth.S01E05.The.Girl.with.a.Cat.1080p.NF.WEB-DL.DUAL.DDP5.1.Atmos.H.264-FLUX.mkv", + "category": "series", + "title": "Goodbye Earth", + "season": 1, + "episodes": [ + 5 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:139547", + "title_zh": "末日愚者", + "title_en": "종말의 바보", + "translation_source": "tmdb", + "reputation_score": 6.067, + "reputation_votes": 60, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"139547\"}" + }, + "display_title": "末日愚者 종말의 바보" + }, + { + "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", + "filename": "Goodbye.Earth.S01E06.Much.Ado.About.Nothing.1080p.NF.WEB-DL.DUAL.DDP5.1.Atmos.H.264-FLUX.mkv", + "category": "series", + "title": "Goodbye Earth", + "season": 1, + "episodes": [ + 6 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:139547", + "title_zh": "末日愚者", + "title_en": "종말의 바보", + "translation_source": "tmdb", + "reputation_score": 6.067, + "reputation_votes": 60, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"139547\"}" + }, + "display_title": "末日愚者 종말의 바보" + }, + { + "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", + "filename": "Goodbye.Earth.S01E09.Silver.Lining.1080p.NF.WEB-DL.DUAL.DDP5.1.Atmos.H.264-FLUX.mkv", + "category": "series", + "title": "Goodbye Earth", + "season": 1, + "episodes": [ + 9 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:139547", + "title_zh": "末日愚者", + "title_en": "종말의 바보", + "translation_source": "tmdb", + "reputation_score": 6.067, + "reputation_votes": 60, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"139547\"}" + }, + "display_title": "末日愚者 종말의 바보" + }, + { + "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", + "filename": "Goodbye.Earth.S01E04.Felix.Culpa.1080p.NF.WEB-DL.DUAL.DDP5.1.Atmos.H.264-FLUX.mkv", + "category": "series", + "title": "Goodbye Earth", + "season": 1, + "episodes": [ + 4 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:139547", + "title_zh": "末日愚者", + "title_en": "종말의 바보", + "translation_source": "tmdb", + "reputation_score": 6.067, + "reputation_votes": 60, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"139547\"}" + }, + "display_title": "末日愚者 종말의 바보" + }, + { + "path": "/mnt/Downloads/series/こっち向いてよ向井くん EP01 720p HDTV x264 AAC-DoA.mkv", + "filename": "こっち向いてよ向井くん EP01 720p HDTV x264 AAC-DoA.mkv", + "category": "series", + "title": "こっち向いてよ向井くん Ep01 -Doa", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "こっち向いてよ向井くん Ep01 -Doa" + }, + { + "path": "/mnt/Downloads/series/Believe-君にかける橋- 第08話 1080p KKTV WEB-DL H264 AAC.mkv", + "filename": "Believe-君にかける橋- 第08話 1080p KKTV WEB-DL H264 AAC.mkv", + "category": "series", + "title": "Believe-君にかける橋- 第08話 Kktv", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Believe-君にかける橋- 第08話 Kktv" + }, + { + "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", + "filename": "Itaewon.Class.S01E14.720p.NF.WEB-DL.DDP2.0.x264-ExREN.mkv", + "category": "series", + "title": "Itaewon Class", + "season": 1, + "episodes": [ + 14 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:96162", + "title_zh": "梨泰院 Class", + "title_en": "이태원 클라쓰", + "translation_source": "tmdb", + "reputation_score": 8.415, + "reputation_votes": 386, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"96162\"}" + }, + "display_title": "梨泰院 Class 이태원 클라쓰" + }, + { + "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", + "filename": "Itaewon.Class.S01E04.720p.NF.WEB-DL.DDP2.0.x264-ExREN.mkv", + "category": "series", + "title": "Itaewon Class", + "season": 1, + "episodes": [ + 4 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:96162", + "title_zh": "梨泰院 Class", + "title_en": "이태원 클라쓰", + "translation_source": "tmdb", + "reputation_score": 8.415, + "reputation_votes": 386, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"96162\"}" + }, + "display_title": "梨泰院 Class 이태원 클라쓰" + }, + { + "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", + "filename": "Itaewon.Class.S01E15.720p.NF.WEB-DL.DDP2.0.x264-ExREN.mkv", + "category": "series", + "title": "Itaewon Class", + "season": 1, + "episodes": [ + 15 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:96162", + "title_zh": "梨泰院 Class", + "title_en": "이태원 클라쓰", + "translation_source": "tmdb", + "reputation_score": 8.415, + "reputation_votes": 386, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"96162\"}" + }, + "display_title": "梨泰院 Class 이태원 클라쓰" + }, + { + "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", + "filename": "Itaewon.Class.S01E05.720p.NF.WEB-DL.DDP2.0.x264-ExREN.mkv", + "category": "series", + "title": "Itaewon Class", + "season": 1, + "episodes": [ + 5 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:96162", + "title_zh": "梨泰院 Class", + "title_en": "이태원 클라쓰", + "translation_source": "tmdb", + "reputation_score": 8.415, + "reputation_votes": 386, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"96162\"}" + }, + "display_title": "梨泰院 Class 이태원 클라쓰" + }, + { + "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", + "filename": "Itaewon.Class.S01E06.720p.NF.WEB-DL.DDP2.0.x264-ExREN.mkv", + "category": "series", + "title": "Itaewon Class", + "season": 1, + "episodes": [ + 6 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:96162", + "title_zh": "梨泰院 Class", + "title_en": "이태원 클라쓰", + "translation_source": "tmdb", + "reputation_score": 8.415, + "reputation_votes": 386, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"96162\"}" + }, + "display_title": "梨泰院 Class 이태원 클라쓰" + }, + { + "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", + "filename": "Itaewon.Class.S01E16.720p.NF.WEB-DL.DDP2.0.x264-ExREN.mkv", + "category": "series", + "title": "Itaewon Class", + "season": 1, + "episodes": [ + 16 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:96162", + "title_zh": "梨泰院 Class", + "title_en": "이태원 클라쓰", + "translation_source": "tmdb", + "reputation_score": 8.415, + "reputation_votes": 386, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"96162\"}" + }, + "display_title": "梨泰院 Class 이태원 클라쓰" + }, + { + "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", + "filename": "Itaewon.Class.S01E08.720p.NF.WEB-DL.DDP2.0.x264-ExREN.mkv", + "category": "series", + "title": "Itaewon Class", + "season": 1, + "episodes": [ + 8 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:96162", + "title_zh": "梨泰院 Class", + "title_en": "이태원 클라쓰", + "translation_source": "tmdb", + "reputation_score": 8.415, + "reputation_votes": 386, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"96162\"}" + }, + "display_title": "梨泰院 Class 이태원 클라쓰" + }, + { + "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", + "filename": "Itaewon.Class.S01E07.720p.NF.WEB-DL.DDP2.0.x264-ExREN.mkv", + "category": "series", + "title": "Itaewon Class", + "season": 1, + "episodes": [ + 7 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:96162", + "title_zh": "梨泰院 Class", + "title_en": "이태원 클라쓰", + "translation_source": "tmdb", + "reputation_score": 8.415, + "reputation_votes": 386, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"96162\"}" + }, + "display_title": "梨泰院 Class 이태원 클라쓰" + }, + { + "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", + "filename": "Itaewon.Class.S01E09.720p.NF.WEB-DL.DDP2.0.x264-ExREN.mkv", + "category": "series", + "title": "Itaewon Class", + "season": 1, + "episodes": [ + 9 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:96162", + "title_zh": "梨泰院 Class", + "title_en": "이태원 클라쓰", + "translation_source": "tmdb", + "reputation_score": 8.415, + "reputation_votes": 386, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"96162\"}" + }, + "display_title": "梨泰院 Class 이태원 클라쓰" + }, + { + "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", + "filename": "Itaewon.Class.S01E01.720p.NF.WEB-DL.DDP2.0.x264-ExREN.mkv", + "category": "series", + "title": "Itaewon Class", + "season": 1, + "episodes": [ + 1 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:96162", + "title_zh": "梨泰院 Class", + "title_en": "이태원 클라쓰", + "translation_source": "tmdb", + "reputation_score": 8.415, + "reputation_votes": 386, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"96162\"}" + }, + "display_title": "梨泰院 Class 이태원 클라쓰" + }, + { + "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", + "filename": "Itaewon.Class.S01E11.720p.NF.WEB-DL.DDP2.0.x264-ExREN.mkv", + "category": "series", + "title": "Itaewon Class", + "season": 1, + "episodes": [ + 11 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:96162", + "title_zh": "梨泰院 Class", + "title_en": "이태원 클라쓰", + "translation_source": "tmdb", + "reputation_score": 8.415, + "reputation_votes": 386, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"96162\"}" + }, + "display_title": "梨泰院 Class 이태원 클라쓰" + }, + { + "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", + "filename": "Itaewon.Class.S01E10.720p.NF.WEB-DL.DDP2.0.x264-ExREN.mkv", + "category": "series", + "title": "Itaewon Class", + "season": 1, + "episodes": [ + 10 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:96162", + "title_zh": "梨泰院 Class", + "title_en": "이태원 클라쓰", + "translation_source": "tmdb", + "reputation_score": 8.415, + "reputation_votes": 386, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"96162\"}" + }, + "display_title": "梨泰院 Class 이태원 클라쓰" + }, + { + "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", + "filename": "Itaewon.Class.S01E13.720p.NF.WEB-DL.DDP2.0.x264-ExREN.mkv", + "category": "series", + "title": "Itaewon Class", + "season": 1, + "episodes": [ + 13 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:96162", + "title_zh": "梨泰院 Class", + "title_en": "이태원 클라쓰", + "translation_source": "tmdb", + "reputation_score": 8.415, + "reputation_votes": 386, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"96162\"}" + }, + "display_title": "梨泰院 Class 이태원 클라쓰" + }, + { + "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", + "filename": "Itaewon.Class.S01E03.720p.NF.WEB-DL.DDP2.0.x264-ExREN.mkv", + "category": "series", + "title": "Itaewon Class", + "season": 1, + "episodes": [ + 3 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:96162", + "title_zh": "梨泰院 Class", + "title_en": "이태원 클라쓰", + "translation_source": "tmdb", + "reputation_score": 8.415, + "reputation_votes": 386, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"96162\"}" + }, + "display_title": "梨泰院 Class 이태원 클라쓰" + }, + { + "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", + "filename": "Itaewon.Class.S01E12.720p.NF.WEB-DL.DDP2.0.x264-ExREN.mkv", + "category": "series", + "title": "Itaewon Class", + "season": 1, + "episodes": [ + 12 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:96162", + "title_zh": "梨泰院 Class", + "title_en": "이태원 클라쓰", + "translation_source": "tmdb", + "reputation_score": 8.415, + "reputation_votes": 386, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"96162\"}" + }, + "display_title": "梨泰院 Class 이태원 클라쓰" + }, + { + "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", + "filename": "Itaewon.Class.S01E02.720p.NF.WEB-DL.DDP2.0.x264-ExREN.mkv", + "category": "series", + "title": "Itaewon Class", + "season": 1, + "episodes": [ + 2 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:96162", + "title_zh": "梨泰院 Class", + "title_en": "이태원 클라쓰", + "translation_source": "tmdb", + "reputation_score": 8.415, + "reputation_votes": 386, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"96162\"}" + }, + "display_title": "梨泰院 Class 이태원 클라쓰" + }, + { + "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", + "filename": "The.Bear.S03E08.Ice.Chips.1080p.DSNP.WEB-DL.DDP5.1.H.264-NTb.mkv", + "category": "series", + "title": "The Bear", + "season": 3, + "episodes": [ + 8 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:136315", + "title_zh": "熊家餐馆", + "title_en": "The Bear", + "translation_source": "tmdb", + "reputation_score": 8.173, + "reputation_votes": 1602, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"136315\"}" + }, + "display_title": "熊家餐馆 The Bear" + }, + { + "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", + "filename": "The.Bear.S03E10.Forever.1080p.DSNP.WEB-DL.DDP5.1.H.264-NTb.mkv", + "category": "series", + "title": "The Bear", + "season": 3, + "episodes": [ + 10 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:136315", + "title_zh": "熊家餐馆", + "title_en": "The Bear", + "translation_source": "tmdb", + "reputation_score": 8.173, + "reputation_votes": 1602, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"136315\"}" + }, + "display_title": "熊家餐馆 The Bear" + }, + { + "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", + "filename": "The.Bear.S03E02.Next.1080p.DSNP.WEB-DL.DDP5.1.H.264-NTb.mkv", + "category": "series", + "title": "The Bear", + "season": 3, + "episodes": [ + 2 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:136315", + "title_zh": "熊家餐馆", + "title_en": "The Bear", + "translation_source": "tmdb", + "reputation_score": 8.173, + "reputation_votes": 1602, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"136315\"}" + }, + "display_title": "熊家餐馆 The Bear" + }, + { + "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", + "filename": "The.Bear.S03E05.Children.1080p.DSNP.WEB-DL.DDP5.1.H.264-NTb.mkv", + "category": "series", + "title": "The Bear", + "season": 3, + "episodes": [ + 5 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:136315", + "title_zh": "熊家餐馆", + "title_en": "The Bear", + "translation_source": "tmdb", + "reputation_score": 8.173, + "reputation_votes": 1602, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"136315\"}" + }, + "display_title": "熊家餐馆 The Bear" + }, + { + "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", + "filename": "The.Bear.S03E03.Doors.1080p.DSNP.WEB-DL.DDP5.1.H.264-NTb.mkv", + "category": "series", + "title": "The Bear", + "season": 3, + "episodes": [ + 3 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:136315", + "title_zh": "熊家餐馆", + "title_en": "The Bear", + "translation_source": "tmdb", + "reputation_score": 8.173, + "reputation_votes": 1602, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"136315\"}" + }, + "display_title": "熊家餐馆 The Bear" + }, + { + "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", + "filename": "The.Bear.S03E07.Legacy.1080p.DSNP.WEB-DL.DDP5.1.H.264-NTb.mkv", + "category": "series", + "title": "The Bear", + "season": 3, + "episodes": [ + 7 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:136315", + "title_zh": "熊家餐馆", + "title_en": "The Bear", + "translation_source": "tmdb", + "reputation_score": 8.173, + "reputation_votes": 1602, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"136315\"}" + }, + "display_title": "熊家餐馆 The Bear" + }, + { + "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", + "filename": "The.Bear.S03E09.Apologies.1080p.DSNP.WEB-DL.DDP5.1.H.264-NTb.mkv", + "category": "series", + "title": "The Bear", + "season": 3, + "episodes": [ + 9 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:136315", + "title_zh": "熊家餐馆", + "title_en": "The Bear", + "translation_source": "tmdb", + "reputation_score": 8.173, + "reputation_votes": 1602, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"136315\"}" + }, + "display_title": "熊家餐馆 The Bear" + }, + { + "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", + "filename": "The.Bear.S03E01.Tomorrow.1080p.DSNP.WEB-DL.DDP5.1.H.264-NTb.mkv", + "category": "series", + "title": "The Bear", + "season": 3, + "episodes": [ + 1 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:136315", + "title_zh": "熊家餐馆", + "title_en": "The Bear", + "translation_source": "tmdb", + "reputation_score": 8.173, + "reputation_votes": 1602, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"136315\"}" + }, + "display_title": "熊家餐馆 The Bear" + }, + { + "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", + "filename": "The.Bear.S03E04.Violet.1080p.DSNP.WEB-DL.DDP5.1.H.264-NTb.mkv", + "category": "series", + "title": "The Bear", + "season": 3, + "episodes": [ + 4 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:136315", + "title_zh": "熊家餐馆", + "title_en": "The Bear", + "translation_source": "tmdb", + "reputation_score": 8.173, + "reputation_votes": 1602, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"136315\"}" + }, + "display_title": "熊家餐馆 The Bear" + }, + { + "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", + "filename": "The.Bear.S03E06.Napkins.1080p.DSNP.WEB-DL.DDP5.1.H.264-NTb.mkv", + "category": "series", + "title": "The Bear", + "season": 3, + "episodes": [ + 6 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:136315", + "title_zh": "熊家餐馆", + "title_en": "The Bear", + "translation_source": "tmdb", + "reputation_score": 8.173, + "reputation_votes": 1602, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"136315\"}" + }, + "display_title": "熊家餐馆 The Bear" + }, + { + "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", + "filename": "The.Witcher.S02E06.Dear.Friend.1080p.NF.WEB-DL.DDP5.1.Atmos.HDR.H.265-TEPES.mkv", + "category": "series", + "title": "The Witcher", + "season": 2, + "episodes": [ + 6 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:71912", + "title_zh": "猎魔人", + "title_en": "The Witcher", + "translation_source": "tmdb", + "reputation_score": 7.946, + "reputation_votes": 6527, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"71912\"}" + }, + "display_title": "猎魔人 The Witcher" + }, + { + "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", + "filename": "The.Witcher.S02E05.Turn.Your.Back.1080p.NF.WEB-DL.DDP5.1.Atmos.HDR.H.265-TEPES.mkv", + "category": "series", + "title": "The Witcher", + "season": 2, + "episodes": [ + 5 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:71912", + "title_zh": "猎魔人", + "title_en": "The Witcher", + "translation_source": "tmdb", + "reputation_score": 7.946, + "reputation_votes": 6527, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"71912\"}" + }, + "display_title": "猎魔人 The Witcher" + }, + { + "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", + "filename": "The.Witcher.S02E07.Voleth.Meir.1080p.NF.WEB-DL.DDP5.1.Atmos.HDR.H.265-TEPES.mkv", + "category": "series", + "title": "The Witcher", + "season": 2, + "episodes": [ + 7 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:71912", + "title_zh": "猎魔人", + "title_en": "The Witcher", + "translation_source": "tmdb", + "reputation_score": 7.946, + "reputation_votes": 6527, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"71912\"}" + }, + "display_title": "猎魔人 The Witcher" + }, + { + "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", + "filename": "The.Witcher.S02E08.Family.1080p.NF.WEB-DL.DDP5.1.Atmos.HDR.H.265-TEPES.mkv", + "category": "series", + "title": "The Witcher", + "season": 2, + "episodes": [ + 8 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:71912", + "title_zh": "猎魔人", + "title_en": "The Witcher", + "translation_source": "tmdb", + "reputation_score": 7.946, + "reputation_votes": 6527, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"71912\"}" + }, + "display_title": "猎魔人 The Witcher" + }, + { + "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", + "filename": "The.Witcher.S02E02.Kaer.Morhen.1080p.NF.WEB-DL.DDP5.1.Atmos.HDR.H.265-TEPES.mkv", + "category": "series", + "title": "The Witcher", + "season": 2, + "episodes": [ + 2 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:71912", + "title_zh": "猎魔人", + "title_en": "The Witcher", + "translation_source": "tmdb", + "reputation_score": 7.946, + "reputation_votes": 6527, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"71912\"}" + }, + "display_title": "猎魔人 The Witcher" + }, + { + "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", + "filename": "The.Witcher.S02E04.Redanian.Intelligence.1080p.NF.WEB-DL.DDP5.1.Atmos.HDR.H.265-TEPES.mkv", + "category": "series", + "title": "The Witcher", + "season": 2, + "episodes": [ + 4 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:71912", + "title_zh": "猎魔人", + "title_en": "The Witcher", + "translation_source": "tmdb", + "reputation_score": 7.946, + "reputation_votes": 6527, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"71912\"}" + }, + "display_title": "猎魔人 The Witcher" + }, + { + "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", + "filename": "The.Witcher.S02E01.A.Grain.of.Truth.1080p.NF.WEB-DL.DDP5.1.Atmos.HDR.H.265-TEPES.mkv", + "category": "series", + "title": "The Witcher", + "season": 2, + "episodes": [ + 1 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:71912", + "title_zh": "猎魔人", + "title_en": "The Witcher", + "translation_source": "tmdb", + "reputation_score": 7.946, + "reputation_votes": 6527, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"71912\"}" + }, + "display_title": "猎魔人 The Witcher" + }, + { + "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", + "filename": "The.Witcher.S02E03.What.Is.Lost.1080p.NF.WEB-DL.DDP5.1.Atmos.HDR.H.265-TEPES.mkv", + "category": "series", + "title": "The Witcher", + "season": 2, + "episodes": [ + 3 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:71912", + "title_zh": "猎魔人", + "title_en": "The Witcher", + "translation_source": "tmdb", + "reputation_score": 7.946, + "reputation_votes": 6527, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"71912\"}" + }, + "display_title": "猎魔人 The Witcher" + }, + { + "path": "/mnt/Downloads/series/Zenryouiki.Ijou.Kaiketsushitsu.EP02.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv", + "filename": "Zenryouiki.Ijou.Kaiketsushitsu.EP02.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv", + "category": "series", + "title": "Zenryouiki Ijou Kaiketsushitsu Ep02 Amzn Ddp2 0 H 264-Magicstar", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Zenryouiki Ijou Kaiketsushitsu Ep02 Amzn Ddp2 0 H 264-Magicstar" + }, + { + "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", + "filename": "Its.Okay.to.Not.Be.Okay.2020.S01E14.The.Hand.the.Monkfish.1080p.NF.WEB-DL.DDP.2.0.x265.10bit-monster6688.mkv", + "category": "series", + "title": "Its Okay To Not Be Okay 2020", + "season": 1, + "episodes": [ + 14 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Its Okay To Not Be Okay 2020" + }, + { + "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", + "filename": "Its.Okay.to.Not.Be.Okay.2020.S01E03.Sleeping.Witch.1080p.NF.WEB-DL.DDP.2.0.x265.10bit-monster6688.mkv", + "category": "series", + "title": "Its Okay To Not Be Okay 2020", + "season": 1, + "episodes": [ + 3 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Its Okay To Not Be Okay 2020" + }, + { + "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", + "filename": "Its.Okay.to.Not.Be.Okay.2020.S01E07.The.Cheerful.Dog.1080p.NF.WEB-DL.DDP.2.0.x265.10bit-monster6688.mkv", + "category": "series", + "title": "Its Okay To Not Be Okay 2020", + "season": 1, + "episodes": [ + 7 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Its Okay To Not Be Okay 2020" + }, + { + "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", + "filename": "Its.Okay.to.Not.Be.Okay.2020.S01E16.Finding.The.Real.Face.1080p.NF.WEB-DL.DDP.2.0.x265.10bit-monster6688.mkv", + "category": "series", + "title": "Its Okay To Not Be Okay 2020", + "season": 1, + "episodes": [ + 16 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Its Okay To Not Be Okay 2020" + }, + { + "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", + "filename": "Its.Okay.to.Not.Be.Okay.2020.S01E12.Romeo.and.Juliet.1080p.NF.WEB-DL.DDP.2.0.x265.10bit-monster6688.mkv", + "category": "series", + "title": "Its Okay To Not Be Okay 2020", + "season": 1, + "episodes": [ + 12 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Its Okay To Not Be Okay 2020" + }, + { + "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", + "filename": "Its.Okay.to.Not.Be.Okay.2020.S01E09.King.Donkey.Ears.1080p.NF.WEB-DL.DDP.2.0.x265.10bit-monster6688.mkv", + "category": "series", + "title": "Its Okay To Not Be Okay 2020", + "season": 1, + "episodes": [ + 9 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Its Okay To Not Be Okay 2020" + }, + { + "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", + "filename": "Its.Okay.to.Not.Be.Okay.2020.S01E08.Beauty.and.the.Beast.1080p.NF.WEB-DL.DDP.2.0.x265.10bit-monster6688.mkv", + "category": "series", + "title": "Its Okay To Not Be Okay 2020", + "season": 1, + "episodes": [ + 8 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Its Okay To Not Be Okay 2020" + }, + { + "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", + "filename": "Its.Okay.to.Not.Be.Okay.2020.S01E04.Zombie.Kid.1080p.NF.WEB-DL.DDP.2.0.x265.10bit-monster6688.mkv", + "category": "series", + "title": "Its Okay To Not Be Okay 2020", + "season": 1, + "episodes": [ + 4 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Its Okay To Not Be Okay 2020" + }, + { + "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", + "filename": "Its.Okay.to.Not.Be.Okay.2020.S01E05.Rapunzel.And.The.Cursed.Castle.1080p.NF.WEB-DL.DDP.2.0.x265.10bit-monster6688.mkv", + "category": "series", + "title": "Its Okay To Not Be Okay 2020", + "season": 1, + "episodes": [ + 5 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Its Okay To Not Be Okay 2020" + }, + { + "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", + "filename": "Its.Okay.to.Not.Be.Okay.2020.S01E15.The.Tale.of.Two.Brothers.1080p.NF.WEB-DL.DDP.2.0.x265.10bit-monster6688.mkv", + "category": "series", + "title": "Its Okay To Not Be Okay 2020", + "season": 1, + "episodes": [ + 15 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Its Okay To Not Be Okay 2020" + }, + { + "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", + "filename": "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", + "category": "series", + "title": "Its Okay To Not Be Okay 2020", + "season": 1, + "episodes": [ + 13 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Its Okay To Not Be Okay 2020" + }, + { + "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", + "filename": "Its.Okay.to.Not.Be.Okay.2020.S01E11.The.Ugly.Duckling.1080p.NF.WEB-DL.DDP.2.0.x265.10bit-monster6688.mkv", + "category": "series", + "title": "Its Okay To Not Be Okay 2020", + "season": 1, + "episodes": [ + 11 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Its Okay To Not Be Okay 2020" + }, + { + "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", + "filename": "Its.Okay.to.Not.Be.Okay.2020.S01E02.The.Lady.in.Red.Shoes.1080p.NF.WEB-DL.DDP.2.0.x265.10bit-monster6688.mkv", + "category": "series", + "title": "Its Okay To Not Be Okay 2020", + "season": 1, + "episodes": [ + 2 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Its Okay To Not Be Okay 2020" + }, + { + "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", + "filename": "Its.Okay.to.Not.Be.Okay.2020.S01E10.The.Girl.Who.Cried.Wolf.1080p.NF.WEB-DL.DDP.2.0.x265.10bit-monster6688.mkv", + "category": "series", + "title": "Its Okay To Not Be Okay 2020", + "season": 1, + "episodes": [ + 10 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Its Okay To Not Be Okay 2020" + }, + { + "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", + "filename": "Its.Okay.to.Not.Be.Okay.2020.S01E06.Bluebeards.Secret.1080p.NF.WEB-DL.DDP.2.0.x265.10bit-monster6688.mkv", + "category": "series", + "title": "Its Okay To Not Be Okay 2020", + "season": 1, + "episodes": [ + 6 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Its Okay To Not Be Okay 2020" + }, + { + "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", + "filename": "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", + "category": "series", + "title": "Its Okay To Not Be Okay 2020", + "season": 1, + "episodes": [ + 1 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Its Okay To Not Be Okay 2020" + }, + { + "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", + "filename": "Street.Food.S01E02.Osaka.Japan.1080p.NF.WEB-DL.DDP5.1.x264-NTG.mkv", + "category": "series", + "title": "Street Food", + "season": 1, + "episodes": [ + 2 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:205857", + "title_zh": "街头绝味:美国", + "title_en": "Street Food: USA", + "translation_source": "tmdb", + "reputation_score": 6.857, + "reputation_votes": 14, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"205857\"}" + }, + "display_title": "街头绝味:美国 Street Food: USA" + }, + { + "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", + "filename": "Street.Food.S01E05.Chiayi.Taiwan.1080p.NF.WEB-DL.DDP5.1.x264-NTG.mkv", + "category": "series", + "title": "Street Food", + "season": 1, + "episodes": [ + 5 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:205857", + "title_zh": "街头绝味:美国", + "title_en": "Street Food: USA", + "translation_source": "tmdb", + "reputation_score": 6.857, + "reputation_votes": 14, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"205857\"}" + }, + "display_title": "街头绝味:美国 Street Food: USA" + }, + { + "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", + "filename": "Street.Food.S01E01.Bangkok.Thailand.1080p.NF.WEB-DL.DDP5.1.x264-NTG.mkv", + "category": "series", + "title": "Street Food", + "season": 1, + "episodes": [ + 1 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:205857", + "title_zh": "街头绝味:美国", + "title_en": "Street Food: USA", + "translation_source": "tmdb", + "reputation_score": 6.857, + "reputation_votes": 14, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"205857\"}" + }, + "display_title": "街头绝味:美国 Street Food: USA" + }, + { + "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", + "filename": "Street.Food.S01E04.Yogyakarta.Indonesia.1080p.NF.WEB-DL.DDP5.1.x264-NTG.mkv", + "category": "series", + "title": "Street Food", + "season": 1, + "episodes": [ + 4 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:205857", + "title_zh": "街头绝味:美国", + "title_en": "Street Food: USA", + "translation_source": "tmdb", + "reputation_score": 6.857, + "reputation_votes": 14, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"205857\"}" + }, + "display_title": "街头绝味:美国 Street Food: USA" + }, + { + "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", + "filename": "Street.Food.S01E06.Seoul.South.Korea.1080p.NF.WEB-DL.DDP5.1.x264-NTG.mkv", + "category": "series", + "title": "Street Food", + "season": 1, + "episodes": [ + 6 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:205857", + "title_zh": "街头绝味:美国", + "title_en": "Street Food: USA", + "translation_source": "tmdb", + "reputation_score": 6.857, + "reputation_votes": 14, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"205857\"}" + }, + "display_title": "街头绝味:美国 Street Food: USA" + }, + { + "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", + "filename": "Street.Food.S01E08.Singapore.1080p.NF.WEB-DL.DDP5.1.x264-NTG.mkv", + "category": "series", + "title": "Street Food", + "season": 1, + "episodes": [ + 8 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:205857", + "title_zh": "街头绝味:美国", + "title_en": "Street Food: USA", + "translation_source": "tmdb", + "reputation_score": 6.857, + "reputation_votes": 14, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"205857\"}" + }, + "display_title": "街头绝味:美国 Street Food: USA" + }, + { + "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", + "filename": "Street.Food.S01E03.Delhi.India.1080p.NF.WEB-DL.DDP5.1.x264-NTG.mkv", + "category": "series", + "title": "Street Food", + "season": 1, + "episodes": [ + 3 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:205857", + "title_zh": "街头绝味:美国", + "title_en": "Street Food: USA", + "translation_source": "tmdb", + "reputation_score": 6.857, + "reputation_votes": 14, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"205857\"}" + }, + "display_title": "街头绝味:美国 Street Food: USA" + }, + { + "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", + "filename": "Street.Food.S01E09.Cebu.Philippines.1080p.NF.WEB-DL.DDP5.1.x264-NTG.mkv", + "category": "series", + "title": "Street Food", + "season": 1, + "episodes": [ + 9 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:205857", + "title_zh": "街头绝味:美国", + "title_en": "Street Food: USA", + "translation_source": "tmdb", + "reputation_score": 6.857, + "reputation_votes": 14, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"205857\"}" + }, + "display_title": "街头绝味:美国 Street Food: USA" + }, + { + "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", + "filename": "Street.Food.S01E07.Ho.Chi.Minh.City.Vietnam.1080p.NF.WEB-DL.DDP5.1.x264-NTG.mkv", + "category": "series", + "title": "Street Food", + "season": 1, + "episodes": [ + 7 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:205857", + "title_zh": "街头绝味:美国", + "title_en": "Street Food: USA", + "translation_source": "tmdb", + "reputation_score": 6.857, + "reputation_votes": 14, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"205857\"}" + }, + "display_title": "街头绝味:美国 Street Food: USA" + }, + { + "path": "/mnt/Downloads/series/【幻月字幕组】【21年日剧】【38岁离婚单身女尝试相亲APP的成果日记】【01-06】【END】【1080P】【中日双语】/【幻月字幕组】【21年日剧】【38岁离婚单身女尝试相亲APP的成果日记】【04】【1080P】【中日双语】.mp4", + "filename": "【幻月字幕组】【21年日剧】【38岁离婚单身女尝试相亲APP的成果日记】【04】【1080P】【中日双语】.mp4", + "category": "series", + "title": "【幻月字幕组】【21年日剧】【38岁离婚单身女尝试相亲App的成果日记】【04】【】【中日双语】", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "【幻月字幕组】【21年日剧】【38岁离婚单身女尝试相亲App的成果日记】【04】【】【中日双语】" + }, + { + "path": "/mnt/Downloads/series/【幻月字幕组】【21年日剧】【38岁离婚单身女尝试相亲APP的成果日记】【01-06】【END】【1080P】【中日双语】/【幻月字幕组】【21年日剧】【38岁离婚单身女尝试相亲APP的成果日记】【06】【END】【1080P】【中日双语】.mp4", + "filename": "【幻月字幕组】【21年日剧】【38岁离婚单身女尝试相亲APP的成果日记】【06】【END】【1080P】【中日双语】.mp4", + "category": "series", + "title": "【幻月字幕组】【21年日剧】【38岁离婚单身女尝试相亲App的成果日记】【06】【End】【】【中日双语】", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "【幻月字幕组】【21年日剧】【38岁离婚单身女尝试相亲App的成果日记】【06】【End】【】【中日双语】" + }, + { + "path": "/mnt/Downloads/series/【幻月字幕组】【21年日剧】【38岁离婚单身女尝试相亲APP的成果日记】【01-06】【END】【1080P】【中日双语】/【幻月字幕组】【21年日剧】【38岁离婚单身女尝试相亲APP的成果日记】【05】【1080P】【中日双语】.mp4", + "filename": "【幻月字幕组】【21年日剧】【38岁离婚单身女尝试相亲APP的成果日记】【05】【1080P】【中日双语】.mp4", + "category": "series", + "title": "【幻月字幕组】【21年日剧】【38岁离婚单身女尝试相亲App的成果日记】【05】【】【中日双语】", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "【幻月字幕组】【21年日剧】【38岁离婚单身女尝试相亲App的成果日记】【05】【】【中日双语】" + }, + { + "path": "/mnt/Downloads/series/【幻月字幕组】【21年日剧】【38岁离婚单身女尝试相亲APP的成果日记】【01-06】【END】【1080P】【中日双语】/【幻月字幕组】【21年日剧】【38岁离婚单身女尝试相亲APP的成果日记】【01】【1080P】【中日双语】.mp4", + "filename": "【幻月字幕组】【21年日剧】【38岁离婚单身女尝试相亲APP的成果日记】【01】【1080P】【中日双语】.mp4", + "category": "series", + "title": "【幻月字幕组】【21年日剧】【38岁离婚单身女尝试相亲App的成果日记】【01】【】【中日双语】", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "【幻月字幕组】【21年日剧】【38岁离婚单身女尝试相亲App的成果日记】【01】【】【中日双语】" + }, + { + "path": "/mnt/Downloads/series/【幻月字幕组】【21年日剧】【38岁离婚单身女尝试相亲APP的成果日记】【01-06】【END】【1080P】【中日双语】/【幻月字幕组】【21年日剧】【38岁离婚单身女尝试相亲APP的成果日记】【03】【1080P】【中日双语】.mp4", + "filename": "【幻月字幕组】【21年日剧】【38岁离婚单身女尝试相亲APP的成果日记】【03】【1080P】【中日双语】.mp4", + "category": "series", + "title": "【幻月字幕组】【21年日剧】【38岁离婚单身女尝试相亲App的成果日记】【03】【】【中日双语】", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "【幻月字幕组】【21年日剧】【38岁离婚单身女尝试相亲App的成果日记】【03】【】【中日双语】" + }, + { + "path": "/mnt/Downloads/series/【幻月字幕组】【21年日剧】【38岁离婚单身女尝试相亲APP的成果日记】【01-06】【END】【1080P】【中日双语】/【幻月字幕组】【21年日剧】【38岁离婚单身女尝试相亲APP的成果日记】【02】【1080P】【中日双语】.mp4", + "filename": "【幻月字幕组】【21年日剧】【38岁离婚单身女尝试相亲APP的成果日记】【02】【1080P】【中日双语】.mp4", + "category": "series", + "title": "【幻月字幕组】【21年日剧】【38岁离婚单身女尝试相亲App的成果日记】【02】【】【中日双语】", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "【幻月字幕组】【21年日剧】【38岁离婚单身女尝试相亲App的成果日记】【02】【】【中日双语】" + }, + { + "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", + "filename": "Yellowstone.2018.S05E01.One.Hundred.Years.is.Nothing.1080p.REPACK.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv", + "category": "series", + "title": "Yellowstone 2018", + "season": 5, + "episodes": [ + 1 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Yellowstone 2018" + }, + { + "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", + "filename": "Yellowstone.2018.S05E02.The.Sting.of.Wisdom.1080p.REPACK.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv", + "category": "series", + "title": "Yellowstone 2018", + "season": 5, + "episodes": [ + 2 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Yellowstone 2018" + }, + { + "path": "/mnt/Downloads/series/A.Shop.for.Killers.S01E01.Murthehelp.1080p.Disney+.WEB-DL.DDP.5.1.H.264-CHDWEB.mkv", + "filename": "A.Shop.for.Killers.S01E01.Murthehelp.1080p.Disney+.WEB-DL.DDP.5.1.H.264-CHDWEB.mkv", + "category": "series", + "title": "A Shop For Killers", + "season": 1, + "episodes": [ + 1 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:215072", + "title_zh": "杀人者的购物中心", + "title_en": "킬러들의 쇼핑몰", + "translation_source": "tmdb", + "reputation_score": 8.1, + "reputation_votes": 141, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"215072\"}" + }, + "display_title": "杀人者的购物中心 킬러들의 쇼핑몰" + }, + { + "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", + "filename": "Shiawase.Kanako.no.Koroshiya.Seikatsu.S01E06.2025.1080p.WEB-DL.H264.AAC-ADWeb.mkv", + "category": "series", + "title": "Shiawase Kanako No Koroshiya Seikatsu", + "season": 1, + "episodes": [ + 6 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:253797", + "title_zh": "幸福伽菜子的快乐生活", + "title_en": "幸せカナコの殺し屋生活", + "translation_source": "tmdb", + "reputation_score": 8.1, + "reputation_votes": 24, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"253797\"}" + }, + "display_title": "幸福伽菜子的快乐生活 幸せカナコの殺し屋生活" + }, + { + "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", + "filename": "Shiawase.Kanako.no.Koroshiya.Seikatsu.S01E01.Repack.2025.1080p.WEB-DL.H264.AAC-ADWeb.mkv", + "category": "series", + "title": "Shiawase Kanako No Koroshiya Seikatsu", + "season": 1, + "episodes": [ + 1 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:253797", + "title_zh": "幸福伽菜子的快乐生活", + "title_en": "幸せカナコの殺し屋生活", + "translation_source": "tmdb", + "reputation_score": 8.1, + "reputation_votes": 24, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"253797\"}" + }, + "display_title": "幸福伽菜子的快乐生活 幸せカナコの殺し屋生活" + }, + { + "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", + "filename": "Shiawase.Kanako.no.Koroshiya.Seikatsu.S01E05.2025.1080p.WEB-DL.H264.AAC-ADWeb.mkv", + "category": "series", + "title": "Shiawase Kanako No Koroshiya Seikatsu", + "season": 1, + "episodes": [ + 5 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:253797", + "title_zh": "幸福伽菜子的快乐生活", + "title_en": "幸せカナコの殺し屋生活", + "translation_source": "tmdb", + "reputation_score": 8.1, + "reputation_votes": 24, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"253797\"}" + }, + "display_title": "幸福伽菜子的快乐生活 幸せカナコの殺し屋生活" + }, + { + "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", + "filename": "Shiawase.Kanako.no.Koroshiya.Seikatsu.S01E04.2025.1080p.WEB-DL.H264.AAC-ADWeb.mkv", + "category": "series", + "title": "Shiawase Kanako No Koroshiya Seikatsu", + "season": 1, + "episodes": [ + 4 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:253797", + "title_zh": "幸福伽菜子的快乐生活", + "title_en": "幸せカナコの殺し屋生活", + "translation_source": "tmdb", + "reputation_score": 8.1, + "reputation_votes": 24, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"253797\"}" + }, + "display_title": "幸福伽菜子的快乐生活 幸せカナコの殺し屋生活" + }, + { + "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", + "filename": "Shiawase.Kanako.no.Koroshiya.Seikatsu.S01E03.Repack.2025.1080p.WEB-DL.H264.AAC-ADWeb.mkv", + "category": "series", + "title": "Shiawase Kanako No Koroshiya Seikatsu", + "season": 1, + "episodes": [ + 3 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:253797", + "title_zh": "幸福伽菜子的快乐生活", + "title_en": "幸せカナコの殺し屋生活", + "translation_source": "tmdb", + "reputation_score": 8.1, + "reputation_votes": 24, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"253797\"}" + }, + "display_title": "幸福伽菜子的快乐生活 幸せカナコの殺し屋生活" + }, + { + "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", + "filename": "Shiawase.Kanako.no.Koroshiya.Seikatsu.S01E02.Repack.2025.1080p.WEB-DL.H264.AAC-ADWeb.mkv", + "category": "series", + "title": "Shiawase Kanako No Koroshiya Seikatsu", + "season": 1, + "episodes": [ + 2 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:253797", + "title_zh": "幸福伽菜子的快乐生活", + "title_en": "幸せカナコの殺し屋生活", + "translation_source": "tmdb", + "reputation_score": 8.1, + "reputation_votes": 24, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"253797\"}" + }, + "display_title": "幸福伽菜子的快乐生活 幸せカナコの殺し屋生活" + }, + { + "path": "/mnt/Downloads/series/リビングの松永さん Complete 1080p HDTV x264 AAC/リビングの松永さん #07 「誕生日会は恋の決戦!」 1080p HDTV x264 AAC.mkv", + "filename": "リビングの松永さん #07 「誕生日会は恋の決戦!」 1080p HDTV x264 AAC.mkv", + "category": "series", + "title": "リビングの松永さん #07 「誕生日会は恋の決戦!」", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "リビングの松永さん #07 「誕生日会は恋の決戦!」" + }, + { + "path": "/mnt/Downloads/series/リビングの松永さん Complete 1080p HDTV x264 AAC/リビングの松永さん #09 「愛と涙の結婚式!松永の決意」 1080p HDTV x264 AAC.mkv", + "filename": "リビングの松永さん #09 「愛と涙の結婚式!松永の決意」 1080p HDTV x264 AAC.mkv", + "category": "series", + "title": "リビングの松永さん #09 「愛と涙の結婚式!松永の決意」", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "リビングの松永さん #09 「愛と涙の結婚式!松永の決意」" + }, + { + "path": "/mnt/Downloads/series/リビングの松永さん Complete 1080p HDTV x264 AAC/リビングの松永さん #11 「クライマックス突入!最大の危機」 1080p HDTV x264 AAC.mkv", + "filename": "リビングの松永さん #11 「クライマックス突入!最大の危機」 1080p HDTV x264 AAC.mkv", + "category": "series", + "title": "リビングの松永さん #11 「クライマックス突入!最大の危機」", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "リビングの松永さん #11 「クライマックス突入!最大の危機」" + }, + { + "path": "/mnt/Downloads/series/リビングの松永さん Complete 1080p HDTV x264 AAC/リビングの松永さん #08 「あふれる思い!涙の告白」 1080p HDTV x264 AAC.mkv", + "filename": "リビングの松永さん #08 「あふれる思い!涙の告白」 1080p HDTV x264 AAC.mkv", + "category": "series", + "title": "リビングの松永さん #08 「あふれる思い!涙の告白」", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "リビングの松永さん #08 「あふれる思い!涙の告白」" + }, + { + "path": "/mnt/Downloads/series/リビングの松永さん Complete 1080p HDTV x264 AAC/リビングの松永さん #04 「合コンで事件発生」 1080p HDTV x264 AAC.mkv", + "filename": "リビングの松永さん #04 「合コンで事件発生」 1080p HDTV x264 AAC.mkv", + "category": "series", + "title": "リビングの松永さん #04 「合コンで事件発生」", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "リビングの松永さん #04 「合コンで事件発生」" + }, + { + "path": "/mnt/Downloads/series/リビングの松永さん Complete 1080p HDTV x264 AAC/リビングの松永さん #01 「同居生活開始!」 1080p HDTV x264 AAC.mkv", + "filename": "リビングの松永さん #01 「同居生活開始!」 1080p HDTV x264 AAC.mkv", + "category": "series", + "title": "リビングの松永さん #01 「同居生活開始!」", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "リビングの松永さん #01 「同居生活開始!」" + }, + { + "path": "/mnt/Downloads/series/リビングの松永さん Complete 1080p HDTV x264 AAC/リビングの松永さん #05 「恋の三角関係!忍び寄る影」 1080p HDTV x264 AAC.mkv", + "filename": "リビングの松永さん #05 「恋の三角関係!忍び寄る影」 1080p HDTV x264 AAC.mkv", + "category": "series", + "title": "リビングの松永さん #05 「恋の三角関係!忍び寄る影」", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "リビングの松永さん #05 「恋の三角関係!忍び寄る影」" + }, + { + "path": "/mnt/Downloads/series/リビングの松永さん Complete 1080p HDTV x264 AAC/リビングの松永さん #12 「最終回!運命の恋の結末!」 End 1080p HDTV x264 AAC.mkv", + "filename": "リビングの松永さん #12 「最終回!運命の恋の結末!」 End 1080p HDTV x264 AAC.mkv", + "category": "series", + "title": "リビングの松永さん #12 「最終回!運命の恋の結末!」 End", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "リビングの松永さん #12 「最終回!運命の恋の結末!」 End" + }, + { + "path": "/mnt/Downloads/series/リビングの松永さん Complete 1080p HDTV x264 AAC/リビングの松永さん #02 「真夜中に近づく心」 1080p HDTV x264 AAC.mkv", + "filename": "リビングの松永さん #02 「真夜中に近づく心」 1080p HDTV x264 AAC.mkv", + "category": "series", + "title": "リビングの松永さん #02 「真夜中に近づく心」", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "リビングの松永さん #02 「真夜中に近づく心」" + }, + { + "path": "/mnt/Downloads/series/リビングの松永さん Complete 1080p HDTV x264 AAC/リビングの松永さん #10 「恋心の結末!呪いを解くキス」 1080p HDTV x264 AAC.mkv", + "filename": "リビングの松永さん #10 「恋心の結末!呪いを解くキス」 1080p HDTV x264 AAC.mkv", + "category": "series", + "title": "リビングの松永さん #10 「恋心の結末!呪いを解くキス」", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "リビングの松永さん #10 「恋心の結末!呪いを解くキス」" + }, + { + "path": "/mnt/Downloads/series/リビングの松永さん Complete 1080p HDTV x264 AAC/リビングの松永さん #03 「二人きりでお泊り」 1080p HDTV x264 AAC.mkv", + "filename": "リビングの松永さん #03 「二人きりでお泊り」 1080p HDTV x264 AAC.mkv", + "category": "series", + "title": "リビングの松永さん #03 「二人きりでお泊り」", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "リビングの松永さん #03 「二人きりでお泊り」" + }, + { + "path": "/mnt/Downloads/series/リビングの松永さん Complete 1080p HDTV x264 AAC/リビングの松永さん #06 「忘れられない、昔の恋」 1080p HDTV x264 AAC.mkv", + "filename": "リビングの松永さん #06 「忘れられない、昔の恋」 1080p HDTV x264 AAC.mkv", + "category": "series", + "title": "リビングの松永さん #06 「忘れられない、昔の恋」", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "リビングの松永さん #06 「忘れられない、昔の恋」" + }, + { + "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", + "filename": "The.Makanai.Cooking.for.the.Maiko.House.2023.S01E06.1080p.NF.WEB-DL.DDP5.1.HDR.H265-PTerWEB.mkv", + "category": "series", + "title": "The Makanai Cooking For The Maiko House 2023", + "season": 1, + "episodes": [ + 6 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "The Makanai Cooking For The Maiko House 2023" + }, + { + "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", + "filename": "The.Makanai.Cooking.for.the.Maiko.House.2023.S01E01.1080p.NF.WEB-DL.DDP5.1.HDR.H265-PTerWEB.mkv", + "category": "series", + "title": "The Makanai Cooking For The Maiko House 2023", + "season": 1, + "episodes": [ + 1 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "The Makanai Cooking For The Maiko House 2023" + }, + { + "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", + "filename": "The.Makanai.Cooking.for.the.Maiko.House.2023.S01E07.1080p.NF.WEB-DL.DDP5.1.HDR.H265-PTerWEB.mkv", + "category": "series", + "title": "The Makanai Cooking For The Maiko House 2023", + "season": 1, + "episodes": [ + 7 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "The Makanai Cooking For The Maiko House 2023" + }, + { + "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", + "filename": "The.Makanai.Cooking.for.the.Maiko.House.2023.S01E04.1080p.NF.WEB-DL.DDP5.1.HDR.H265-PTerWEB.mkv", + "category": "series", + "title": "The Makanai Cooking For The Maiko House 2023", + "season": 1, + "episodes": [ + 4 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "The Makanai Cooking For The Maiko House 2023" + }, + { + "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", + "filename": "The.Makanai.Cooking.for.the.Maiko.House.2023.S01E02.1080p.NF.WEB-DL.DDP5.1.HDR.H265-PTerWEB.mkv", + "category": "series", + "title": "The Makanai Cooking For The Maiko House 2023", + "season": 1, + "episodes": [ + 2 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "The Makanai Cooking For The Maiko House 2023" + }, + { + "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", + "filename": "The.Makanai.Cooking.for.the.Maiko.House.2023.S01E08.1080p.NF.WEB-DL.DDP5.1.HDR.H265-PTerWEB.mkv", + "category": "series", + "title": "The Makanai Cooking For The Maiko House 2023", + "season": 1, + "episodes": [ + 8 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "The Makanai Cooking For The Maiko House 2023" + }, + { + "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", + "filename": "The.Makanai.Cooking.for.the.Maiko.House.2023.S01E05.1080p.NF.WEB-DL.DDP5.1.HDR.H265-PTerWEB.mkv", + "category": "series", + "title": "The Makanai Cooking For The Maiko House 2023", + "season": 1, + "episodes": [ + 5 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "The Makanai Cooking For The Maiko House 2023" + }, + { + "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", + "filename": "The.Makanai.Cooking.for.the.Maiko.House.2023.S01E03.1080p.NF.WEB-DL.DDP5.1.HDR.H265-PTerWEB.mkv", + "category": "series", + "title": "The Makanai Cooking For The Maiko House 2023", + "season": 1, + "episodes": [ + 3 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "The Makanai Cooking For The Maiko House 2023" + }, + { + "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", + "filename": "The.Makanai.Cooking.for.the.Maiko.House.2023.S01E09.1080p.NF.WEB-DL.DDP5.1.HDR.H265-PTerWEB.mkv", + "category": "series", + "title": "The Makanai Cooking For The Maiko House 2023", + "season": 1, + "episodes": [ + 9 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "The Makanai Cooking For The Maiko House 2023" + }, + { + "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", + "filename": "Fallout.S01E05.The.Past.1080p.AMZN.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv", + "category": "series", + "title": "Fallout", + "season": 1, + "episodes": [ + 5 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:106379", + "title_zh": "辐射", + "title_en": "Fallout", + "translation_source": "tmdb", + "reputation_score": 8.139, + "reputation_votes": 2537, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"106379\"}" + }, + "display_title": "辐射 Fallout" + }, + { + "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", + "filename": "Fallout.S01E04.The.Ghouls.1080p.AMZN.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv", + "category": "series", + "title": "Fallout", + "season": 1, + "episodes": [ + 4 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:106379", + "title_zh": "辐射", + "title_en": "Fallout", + "translation_source": "tmdb", + "reputation_score": 8.139, + "reputation_votes": 2537, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"106379\"}" + }, + "display_title": "辐射 Fallout" + }, + { + "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", + "filename": "Fallout.S01E08.The.Beginning.1080p.AMZN.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv", + "category": "series", + "title": "Fallout", + "season": 1, + "episodes": [ + 8 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:106379", + "title_zh": "辐射", + "title_en": "Fallout", + "translation_source": "tmdb", + "reputation_score": 8.139, + "reputation_votes": 2537, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"106379\"}" + }, + "display_title": "辐射 Fallout" + }, + { + "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", + "filename": "Fallout.S01E07.The.Radio.1080p.AMZN.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv", + "category": "series", + "title": "Fallout", + "season": 1, + "episodes": [ + 7 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:106379", + "title_zh": "辐射", + "title_en": "Fallout", + "translation_source": "tmdb", + "reputation_score": 8.139, + "reputation_votes": 2537, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"106379\"}" + }, + "display_title": "辐射 Fallout" + }, + { + "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", + "filename": "Fallout.S01E02.The.Target.1080p.AMZN.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv", + "category": "series", + "title": "Fallout", + "season": 1, + "episodes": [ + 2 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:106379", + "title_zh": "辐射", + "title_en": "Fallout", + "translation_source": "tmdb", + "reputation_score": 8.139, + "reputation_votes": 2537, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"106379\"}" + }, + "display_title": "辐射 Fallout" + }, + { + "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", + "filename": "Fallout.S01E01.The.End.1080p.AMZN.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv", + "category": "series", + "title": "Fallout", + "season": 1, + "episodes": [ + 1 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:106379", + "title_zh": "辐射", + "title_en": "Fallout", + "translation_source": "tmdb", + "reputation_score": 8.139, + "reputation_votes": 2537, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"106379\"}" + }, + "display_title": "辐射 Fallout" + }, + { + "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", + "filename": "Fallout.S01E06.The.Trap.1080p.AMZN.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv", + "category": "series", + "title": "Fallout", + "season": 1, + "episodes": [ + 6 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:106379", + "title_zh": "辐射", + "title_en": "Fallout", + "translation_source": "tmdb", + "reputation_score": 8.139, + "reputation_votes": 2537, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"106379\"}" + }, + "display_title": "辐射 Fallout" + }, + { + "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", + "filename": "Fallout.S01E03.The.Head.1080p.AMZN.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv", + "category": "series", + "title": "Fallout", + "season": 1, + "episodes": [ + 3 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:106379", + "title_zh": "辐射", + "title_en": "Fallout", + "translation_source": "tmdb", + "reputation_score": 8.139, + "reputation_votes": 2537, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"106379\"}" + }, + "display_title": "辐射 Fallout" + }, + { + "path": "/mnt/Downloads/series/Presumed.Innocent.S01E02.People.vs.Rozat.Sabich.1080p.ATVP.WEB-DL.DDP5.1.H.264-NTb.mkv", + "filename": "Presumed.Innocent.S01E02.People.vs.Rozat.Sabich.1080p.ATVP.WEB-DL.DDP5.1.H.264-NTb.mkv", + "category": "series", + "title": "Presumed Innocent", + "season": 1, + "episodes": [ + 2 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:156933", + "title_zh": "Presumed Innocent", + "title_en": "Presumed Innocent", + "translation_source": "tmdb", + "reputation_score": 7.863, + "reputation_votes": 554, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"156933\"}" + }, + "display_title": "Presumed Innocent" + }, + { + "path": "/mnt/Downloads/series/Dark.Matter.2024.S01E08.Jupiter.1080p.ATVP.WEB-DL.DDP5.1.H.264-NTb.mkv", + "filename": "Dark.Matter.2024.S01E08.Jupiter.1080p.ATVP.WEB-DL.DDP5.1.H.264-NTb.mkv", + "category": "series", + "title": "Dark Matter 2024", + "season": 1, + "episodes": [ + 8 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Dark Matter 2024" + }, + { + "path": "/mnt/Downloads/series/連続ドラマW パレートの誤算~ケースワーカー殺人事件 Complete 720p HDTV x264 AAC-DoA/連続ドラマW パレートの誤算~ケースワーカー殺人事件 第一話 720p HDTV x264 AAC-DoA.mkv", + "filename": "連続ドラマW パレートの誤算~ケースワーカー殺人事件 第一話 720p HDTV x264 AAC-DoA.mkv", + "category": "series", + "title": "連続ドラマW パレートの誤算~ケースワーカー殺人事件 第一話 -Doa", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "連続ドラマW パレートの誤算~ケースワーカー殺人事件 第一話 -Doa" + }, + { + "path": "/mnt/Downloads/series/連続ドラマW パレートの誤算~ケースワーカー殺人事件 Complete 720p HDTV x264 AAC-DoA/連続ドラマW パレートの誤算~ケースワーカー殺人事件 最終話 End 720p HDTV x264 AAC-DoA.mkv", + "filename": "連続ドラマW パレートの誤算~ケースワーカー殺人事件 最終話 End 720p HDTV x264 AAC-DoA.mkv", + "category": "series", + "title": "連続ドラマW パレートの誤算~ケースワーカー殺人事件 最終話 End -Doa", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "連続ドラマW パレートの誤算~ケースワーカー殺人事件 最終話 End -Doa" + }, + { + "path": "/mnt/Downloads/series/連続ドラマW パレートの誤算~ケースワーカー殺人事件 Complete 720p HDTV x264 AAC-DoA/連続ドラマW パレートの誤算~ケースワーカー殺人事件 第三話 720p HDTV x264 AAC-DoA.mkv", + "filename": "連続ドラマW パレートの誤算~ケースワーカー殺人事件 第三話 720p HDTV x264 AAC-DoA.mkv", + "category": "series", + "title": "連続ドラマW パレートの誤算~ケースワーカー殺人事件 第三話 -Doa", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "連続ドラマW パレートの誤算~ケースワーカー殺人事件 第三話 -Doa" + }, + { + "path": "/mnt/Downloads/series/連続ドラマW パレートの誤算~ケースワーカー殺人事件 Complete 720p HDTV x264 AAC-DoA/連続ドラマW パレートの誤算~ケースワーカー殺人事件 第二話 720p HDTV x264 AAC-DoA.mkv", + "filename": "連続ドラマW パレートの誤算~ケースワーカー殺人事件 第二話 720p HDTV x264 AAC-DoA.mkv", + "category": "series", + "title": "連続ドラマW パレートの誤算~ケースワーカー殺人事件 第二話 -Doa", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "連続ドラマW パレートの誤算~ケースワーカー殺人事件 第二話 -Doa" + }, + { + "path": "/mnt/Downloads/series/連続ドラマW パレートの誤算~ケースワーカー殺人事件 Complete 720p HDTV x264 AAC-DoA/連続ドラマW パレートの誤算~ケースワーカー殺人事件 第四話 720p HDTV x264 AAC-DoA.mkv", + "filename": "連続ドラマW パレートの誤算~ケースワーカー殺人事件 第四話 720p HDTV x264 AAC-DoA.mkv", + "category": "series", + "title": "連続ドラマW パレートの誤算~ケースワーカー殺人事件 第四話 -Doa", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "連続ドラマW パレートの誤算~ケースワーカー殺人事件 第四話 -Doa" + }, + { + "path": "/mnt/Downloads/series/Study.Group.2025.S01E01.1080p.Friday.WEB-DL.H264.AAC-PTerWEB.mkv", + "filename": "Study.Group.2025.S01E01.1080p.Friday.WEB-DL.H264.AAC-PTerWEB.mkv", + "category": "series", + "title": "Study Group 2025", + "season": 1, + "episodes": [ + 1 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Study Group 2025" + }, + { + "path": "/mnt/Downloads/series/連続ドラマW セイレーンの懺悔 Complete 720p HDTV x264 AAC-DoA/連続ドラマW セイレーンの懺悔 第一話 720p HDTV x264 AAC-DoA.mkv", + "filename": "連続ドラマW セイレーンの懺悔 第一話 720p HDTV x264 AAC-DoA.mkv", + "category": "series", + "title": "連続ドラマW セイレーンの懺悔 第一話 -Doa", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "連続ドラマW セイレーンの懺悔 第一話 -Doa" + }, + { + "path": "/mnt/Downloads/series/連続ドラマW セイレーンの懺悔 Complete 720p HDTV x264 AAC-DoA/連続ドラマW セイレーンの懺悔 最終話 720p HDTV x264 AAC-DoA.mkv", + "filename": "連続ドラマW セイレーンの懺悔 最終話 720p HDTV x264 AAC-DoA.mkv", + "category": "series", + "title": "連続ドラマW セイレーンの懺悔 最終話 -Doa", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "連続ドラマW セイレーンの懺悔 最終話 -Doa" + }, + { + "path": "/mnt/Downloads/series/連続ドラマW セイレーンの懺悔 Complete 720p HDTV x264 AAC-DoA/連続ドラマW セイレーンの懺悔 第二話 720p HDTV x264 AAC-DoA.mkv", + "filename": "連続ドラマW セイレーンの懺悔 第二話 720p HDTV x264 AAC-DoA.mkv", + "category": "series", + "title": "連続ドラマW セイレーンの懺悔 第二話 -Doa", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "連続ドラマW セイレーンの懺悔 第二話 -Doa" + }, + { + "path": "/mnt/Downloads/series/連続ドラマW セイレーンの懺悔 Complete 720p HDTV x264 AAC-DoA/連続ドラマW セイレーンの懺悔 第三話 720p HDTV x264 AAC-DoA.mkv", + "filename": "連続ドラマW セイレーンの懺悔 第三話 720p HDTV x264 AAC-DoA.mkv", + "category": "series", + "title": "連続ドラマW セイレーンの懺悔 第三話 -Doa", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "連続ドラマW セイレーンの懺悔 第三話 -Doa" + }, + { + "path": "/mnt/Downloads/series/Believe-君にかける橋- 第5話 〈波乱の逃亡編〉ついに完結―! 1080p TVer WEB-DL H264 AAC-Solitude@DoA.mkv", + "filename": "Believe-君にかける橋- 第5話 〈波乱の逃亡編〉ついに完結―! 1080p TVer WEB-DL H264 AAC-Solitude@DoA.mkv", + "category": "series", + "title": "Believe-君にかける橋- 第5話 〈波乱の逃亡編〉ついに完結―! Tver -Solitude@Doa", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Believe-君にかける橋- 第5話 〈波乱の逃亡編〉ついに完結―! Tver -Solitude@Doa" + }, + { + "path": "/mnt/Downloads/series/Believe-君にかける橋- 第09話 END 1080p KKTV WEB-DL H264 AAC.mkv", + "filename": "Believe-君にかける橋- 第09話 END 1080p KKTV WEB-DL H264 AAC.mkv", + "category": "series", + "title": "Believe-君にかける橋- 第09話 End Kktv", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Believe-君にかける橋- 第09話 End Kktv" + }, + { + "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", + "filename": "Tsuma.Shougakusei.ni.Naru.E08.2022.WEB-DL.1080p.H265.AAC-HDCTV.mkv", + "category": "series", + "title": "Tsuma Shougakusei Ni Naru E08 2022 -Hdctv", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Tsuma Shougakusei Ni Naru E08 2022 -Hdctv" + }, + { + "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", + "filename": "Tsuma.Shougakusei.ni.Naru.E06.2022.WEB-DL.1080p.H265.AAC-HDCTV.mkv", + "category": "series", + "title": "Tsuma Shougakusei Ni Naru E06 2022 -Hdctv", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Tsuma Shougakusei Ni Naru E06 2022 -Hdctv" + }, + { + "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", + "filename": "Tsuma.Shougakusei.ni.Naru.E09.2022.WEB-DL.1080p.H265.AAC-HDCTV.mkv", + "category": "series", + "title": "Tsuma Shougakusei Ni Naru E09 2022 -Hdctv", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Tsuma Shougakusei Ni Naru E09 2022 -Hdctv" + }, + { + "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", + "filename": "Tsuma.Shougakusei.ni.Naru.E07.2022.WEB-DL.1080p.H265.AAC-HDCTV.mkv", + "category": "series", + "title": "Tsuma Shougakusei Ni Naru E07 2022 -Hdctv", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Tsuma Shougakusei Ni Naru E07 2022 -Hdctv" + }, + { + "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", + "filename": "Tsuma.Shougakusei.ni.Naru.E04.2022.WEB-DL.1080p.H265.AAC-HDCTV.mkv", + "category": "series", + "title": "Tsuma Shougakusei Ni Naru E04 2022 -Hdctv", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Tsuma Shougakusei Ni Naru E04 2022 -Hdctv" + }, + { + "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", + "filename": "Tsuma.Shougakusei.ni.Naru.E05.2022.WEB-DL.1080p.H265.AAC-HDCTV.mkv", + "category": "series", + "title": "Tsuma Shougakusei Ni Naru E05 2022 -Hdctv", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Tsuma Shougakusei Ni Naru E05 2022 -Hdctv" + }, + { + "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", + "filename": "Tsuma.Shougakusei.ni.Naru.E03.2022.WEB-DL.1080p.H265.AAC-HDCTV.mkv", + "category": "series", + "title": "Tsuma Shougakusei Ni Naru E03 2022 -Hdctv", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Tsuma Shougakusei Ni Naru E03 2022 -Hdctv" + }, + { + "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", + "filename": "Tsuma.Shougakusei.ni.Naru.E02.2022.WEB-DL.1080p.H265.AAC-HDCTV.mkv", + "category": "series", + "title": "Tsuma Shougakusei Ni Naru E02 2022 -Hdctv", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Tsuma Shougakusei Ni Naru E02 2022 -Hdctv" + }, + { + "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", + "filename": "Tsuma.Shougakusei.ni.Naru.E01.2022.WEB-DL.1080p.H265.AAC-HDCTV.mkv", + "category": "series", + "title": "Tsuma Shougakusei Ni Naru E01 2022 -Hdctv", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Tsuma Shougakusei Ni Naru E01 2022 -Hdctv" + }, + { + "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", + "filename": "Tsuma.Shougakusei.ni.Naru.E10.2022.WEB-DL.1080p.H265.AAC-HDCTV.mkv", + "category": "series", + "title": "Tsuma Shougakusei Ni Naru E10 2022 -Hdctv", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Tsuma Shougakusei Ni Naru E10 2022 -Hdctv" + }, + { + "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", + "filename": "A.Murder.at.the.End.of.the.World.S01E02.The.Silver.Doe.1080p.DSNP.WEB-DL.DDP5.1.H.264-FLUX.mkv", + "category": "series", + "title": "A Murder At The End Of The World", + "season": 1, + "episodes": [ + 2 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:134095", + "title_zh": "世界尽头的一场谋杀", + "title_en": "A Murder at the End of the World", + "translation_source": "tmdb", + "reputation_score": 6.934, + "reputation_votes": 258, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"134095\"}" + }, + "display_title": "世界尽头的一场谋杀 A Murder at the End of the World" + }, + { + "path": "/mnt/Downloads/series/Shogun.2024.S01E04.The.Eightfold.Fence.1080p.DSNP.WEB-DL.DDP5.1.H.264-APEX.mkv", + "filename": "Shogun.2024.S01E04.The.Eightfold.Fence.1080p.DSNP.WEB-DL.DDP5.1.H.264-APEX.mkv", + "category": "series", + "title": "Shogun 2024", + "season": 1, + "episodes": [ + 4 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Shogun 2024" + }, + { + "path": "/mnt/Downloads/series/Shogun.2024.S01E01.Anjin.1080p.DSNP.WEB-DL.DDP5.1.H.264-APEX.mkv", + "filename": "Shogun.2024.S01E01.Anjin.1080p.DSNP.WEB-DL.DDP5.1.H.264-APEX.mkv", + "category": "series", + "title": "Shogun 2024", + "season": 1, + "episodes": [ + 1 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Shogun 2024" + }, + { + "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", + "filename": "Brooklyn.Nine-Nine.S08E09.The.Last.Day.1.1080p.Blu-ray.Remux.AVC.DTS-HD.MA.5.1-SiCFoI.mkv", + "category": "series", + "title": "Brooklyn Nine-Nine", + "season": 8, + "episodes": [ + 9 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:48891", + "title_zh": "神烦警探", + "title_en": "Brooklyn Nine-Nine", + "translation_source": "tmdb", + "reputation_score": 8.218, + "reputation_votes": 3813, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"48891\"}" + }, + "display_title": "神烦警探 Brooklyn Nine-Nine" + }, + { + "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", + "filename": "Brooklyn.Nine-Nine.S08E06.The.Set.Up.1080p.Blu-ray.Remux.AVC.DTS-HD.MA.5.1-SiCFoI.mkv", + "category": "series", + "title": "Brooklyn Nine-Nine", + "season": 8, + "episodes": [ + 6 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:48891", + "title_zh": "神烦警探", + "title_en": "Brooklyn Nine-Nine", + "translation_source": "tmdb", + "reputation_score": 8.218, + "reputation_votes": 3813, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"48891\"}" + }, + "display_title": "神烦警探 Brooklyn Nine-Nine" + }, + { + "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", + "filename": "Brooklyn.Nine-Nine.S08E10.The.Last.Day.2.1080p.Blu-ray.Remux.AVC.DTS-HD.MA.5.1-SiCFoI.mkv", + "category": "series", + "title": "Brooklyn Nine-Nine", + "season": 8, + "episodes": [ + 10 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:48891", + "title_zh": "神烦警探", + "title_en": "Brooklyn Nine-Nine", + "translation_source": "tmdb", + "reputation_score": 8.218, + "reputation_votes": 3813, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"48891\"}" + }, + "display_title": "神烦警探 Brooklyn Nine-Nine" + }, + { + "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", + "filename": "Brooklyn.Nine-Nine.S08E04.Balancing.1080p.Blu-ray.Remux.AVC.DTS-HD.MA.5.1-SiCFoI.mkv", + "category": "series", + "title": "Brooklyn Nine-Nine", + "season": 8, + "episodes": [ + 4 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:48891", + "title_zh": "神烦警探", + "title_en": "Brooklyn Nine-Nine", + "translation_source": "tmdb", + "reputation_score": 8.218, + "reputation_votes": 3813, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"48891\"}" + }, + "display_title": "神烦警探 Brooklyn Nine-Nine" + }, + { + "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", + "filename": "Brooklyn.Nine-Nine.S08E07.Game.of.Boyles.1080p.Blu-ray.Remux.AVC.DTS-HD.MA.5.1-SiCFoI.mkv", + "category": "series", + "title": "Brooklyn Nine-Nine", + "season": 8, + "episodes": [ + 7 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:48891", + "title_zh": "神烦警探", + "title_en": "Brooklyn Nine-Nine", + "translation_source": "tmdb", + "reputation_score": 8.218, + "reputation_votes": 3813, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"48891\"}" + }, + "display_title": "神烦警探 Brooklyn Nine-Nine" + }, + { + "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", + "filename": "Brooklyn.Nine-Nine.S08E01.The.Good.Ones.1080p.Blu-ray.Remux.AVC.DTS-HD.MA.5.1-SiCFoI.mkv", + "category": "series", + "title": "Brooklyn Nine-Nine", + "season": 8, + "episodes": [ + 1 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:48891", + "title_zh": "神烦警探", + "title_en": "Brooklyn Nine-Nine", + "translation_source": "tmdb", + "reputation_score": 8.218, + "reputation_votes": 3813, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"48891\"}" + }, + "display_title": "神烦警探 Brooklyn Nine-Nine" + }, + { + "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", + "filename": "Brooklyn.Nine-Nine.S08E02.The.Lake.House.1080p.Blu-ray.Remux.AVC.DTS-HD.MA.5.1-SiCFoI.mkv", + "category": "series", + "title": "Brooklyn Nine-Nine", + "season": 8, + "episodes": [ + 2 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:48891", + "title_zh": "神烦警探", + "title_en": "Brooklyn Nine-Nine", + "translation_source": "tmdb", + "reputation_score": 8.218, + "reputation_votes": 3813, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"48891\"}" + }, + "display_title": "神烦警探 Brooklyn Nine-Nine" + }, + { + "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", + "filename": "Brooklyn.Nine-Nine.S08E03.Blue.Flu.1080p.Blu-ray.Remux.AVC.DTS-HD.MA.5.1-SiCFoI.mkv", + "category": "series", + "title": "Brooklyn Nine-Nine", + "season": 8, + "episodes": [ + 3 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:48891", + "title_zh": "神烦警探", + "title_en": "Brooklyn Nine-Nine", + "translation_source": "tmdb", + "reputation_score": 8.218, + "reputation_votes": 3813, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"48891\"}" + }, + "display_title": "神烦警探 Brooklyn Nine-Nine" + }, + { + "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", + "filename": "Brooklyn.Nine-Nine.S08E08.Renewal.1080p.Blu-ray.Remux.AVC.DTS-HD.MA.5.1-SiCFoI.mkv", + "category": "series", + "title": "Brooklyn Nine-Nine", + "season": 8, + "episodes": [ + 8 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:48891", + "title_zh": "神烦警探", + "title_en": "Brooklyn Nine-Nine", + "translation_source": "tmdb", + "reputation_score": 8.218, + "reputation_votes": 3813, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"48891\"}" + }, + "display_title": "神烦警探 Brooklyn Nine-Nine" + }, + { + "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", + "filename": "Brooklyn.Nine-Nine.S08E05.PB.&.J.1080p.Blu-ray.Remux.AVC.DTS-HD.MA.5.1-SiCFoI.mkv", + "category": "series", + "title": "Brooklyn Nine-Nine", + "season": 8, + "episodes": [ + 5 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:48891", + "title_zh": "神烦警探", + "title_en": "Brooklyn Nine-Nine", + "translation_source": "tmdb", + "reputation_score": 8.218, + "reputation_votes": 3813, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"48891\"}" + }, + "display_title": "神烦警探 Brooklyn Nine-Nine" + }, + { + "path": "/mnt/Downloads/series/冰上恋人/Pride 06 1280x720p.mkv", + "filename": "Pride 06 1280x720p.mkv", + "category": "series", + "title": "Pride 06 12", + "season": 80, + "episodes": [ + 72 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Pride 06 12" + }, + { + "path": "/mnt/Downloads/series/冰上恋人/Pride 09 1280x720p.mkv", + "filename": "Pride 09 1280x720p.mkv", + "category": "series", + "title": "Pride 09 12", + "season": 80, + "episodes": [ + 72 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Pride 09 12" + }, + { + "path": "/mnt/Downloads/series/冰上恋人/Pride 10 1280x720p.mkv", + "filename": "Pride 10 1280x720p.mkv", + "category": "series", + "title": "Pride 10 12", + "season": 80, + "episodes": [ + 72 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Pride 10 12" + }, + { + "path": "/mnt/Downloads/series/冰上恋人/Pride 01-02 1280x720p.mkv", + "filename": "Pride 01-02 1280x720p.mkv", + "category": "series", + "title": "Pride 01-02 12", + "season": 80, + "episodes": [ + 72 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Pride 01-02 12" + }, + { + "path": "/mnt/Downloads/series/冰上恋人/Pride 11 1280x720p.mkv", + "filename": "Pride 11 1280x720p.mkv", + "category": "series", + "title": "Pride 11 12", + "season": 80, + "episodes": [ + 72 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Pride 11 12" + }, + { + "path": "/mnt/Downloads/series/冰上恋人/Pride 05 1280x720p.mkv", + "filename": "Pride 05 1280x720p.mkv", + "category": "series", + "title": "Pride 05 12", + "season": 80, + "episodes": [ + 72 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Pride 05 12" + }, + { + "path": "/mnt/Downloads/series/冰上恋人/Pride 08 1280x720p.mkv", + "filename": "Pride 08 1280x720p.mkv", + "category": "series", + "title": "Pride 08 12", + "season": 80, + "episodes": [ + 72 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Pride 08 12" + }, + { + "path": "/mnt/Downloads/series/冰上恋人/Pride 03-04 1280x720p.mkv", + "filename": "Pride 03-04 1280x720p.mkv", + "category": "series", + "title": "Pride 03-04 12", + "season": 80, + "episodes": [ + 72 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Pride 03-04 12" + }, + { + "path": "/mnt/Downloads/series/冰上恋人/Pride 07 1280x720p.mkv", + "filename": "Pride 07 1280x720p.mkv", + "category": "series", + "title": "Pride 07 12", + "season": 80, + "episodes": [ + 72 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Pride 07 12" + }, + { + "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", + "filename": "Bodies.S01E02.2023.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-ADWeb.mkv", + "category": "series", + "title": "Bodies", + "season": 1, + "episodes": [ + 2 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:233629", + "title_zh": "搜索尸间线", + "title_en": "Bodies", + "translation_source": "tmdb", + "reputation_score": 7.161, + "reputation_votes": 489, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"233629\"}" + }, + "display_title": "搜索尸间线 Bodies" + }, + { + "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", + "filename": "Bodies.S01E06.2023.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-ADWeb.mkv", + "category": "series", + "title": "Bodies", + "season": 1, + "episodes": [ + 6 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:233629", + "title_zh": "搜索尸间线", + "title_en": "Bodies", + "translation_source": "tmdb", + "reputation_score": 7.161, + "reputation_votes": 489, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"233629\"}" + }, + "display_title": "搜索尸间线 Bodies" + }, + { + "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", + "filename": "Bodies.S01E01.2023.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-ADWeb.mkv", + "category": "series", + "title": "Bodies", + "season": 1, + "episodes": [ + 1 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:233629", + "title_zh": "搜索尸间线", + "title_en": "Bodies", + "translation_source": "tmdb", + "reputation_score": 7.161, + "reputation_votes": 489, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"233629\"}" + }, + "display_title": "搜索尸间线 Bodies" + }, + { + "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", + "filename": "Bodies.S01E05.2023.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-ADWeb.mkv", + "category": "series", + "title": "Bodies", + "season": 1, + "episodes": [ + 5 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:233629", + "title_zh": "搜索尸间线", + "title_en": "Bodies", + "translation_source": "tmdb", + "reputation_score": 7.161, + "reputation_votes": 489, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"233629\"}" + }, + "display_title": "搜索尸间线 Bodies" + }, + { + "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", + "filename": "Bodies.S01E07.2023.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-ADWeb.mkv", + "category": "series", + "title": "Bodies", + "season": 1, + "episodes": [ + 7 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:233629", + "title_zh": "搜索尸间线", + "title_en": "Bodies", + "translation_source": "tmdb", + "reputation_score": 7.161, + "reputation_votes": 489, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"233629\"}" + }, + "display_title": "搜索尸间线 Bodies" + }, + { + "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", + "filename": "Bodies.S01E03.2023.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-ADWeb.mkv", + "category": "series", + "title": "Bodies", + "season": 1, + "episodes": [ + 3 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:233629", + "title_zh": "搜索尸间线", + "title_en": "Bodies", + "translation_source": "tmdb", + "reputation_score": 7.161, + "reputation_votes": 489, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"233629\"}" + }, + "display_title": "搜索尸间线 Bodies" + }, + { + "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", + "filename": "Bodies.S01E04.2023.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-ADWeb.mkv", + "category": "series", + "title": "Bodies", + "season": 1, + "episodes": [ + 4 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:233629", + "title_zh": "搜索尸间线", + "title_en": "Bodies", + "translation_source": "tmdb", + "reputation_score": 7.161, + "reputation_votes": 489, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"233629\"}" + }, + "display_title": "搜索尸间线 Bodies" + }, + { + "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", + "filename": "Bodies.S01E08.2023.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-ADWeb.mkv", + "category": "series", + "title": "Bodies", + "season": 1, + "episodes": [ + 8 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:233629", + "title_zh": "搜索尸间线", + "title_en": "Bodies", + "translation_source": "tmdb", + "reputation_score": 7.161, + "reputation_votes": 489, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"233629\"}" + }, + "display_title": "搜索尸间线 Bodies" + }, + { + "path": "/mnt/Downloads/series/ホリデイラブ Complete 720p HDTV x264 AAC-DoA/ホリデイラブ ep.3 「最後のクリスマス」 720p HDTV x264 AAC-DoA.mkv", + "filename": "ホリデイラブ ep.3 「最後のクリスマス」 720p HDTV x264 AAC-DoA.mkv", + "category": "series", + "title": "ホリデイラブ Ep 3 「最後のクリスマス」 -Doa", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "ホリデイラブ Ep 3 「最後のクリスマス」 -Doa" + }, + { + "path": "/mnt/Downloads/series/ホリデイラブ Complete 720p HDTV x264 AAC-DoA/ホリデイラブ ep.1 「夫の帰還」 720p HDTV x264 AAC-DoA.mkv", + "filename": "ホリデイラブ ep.1 「夫の帰還」 720p HDTV x264 AAC-DoA.mkv", + "category": "series", + "title": "ホリデイラブ Ep 1 「夫の帰還」 -Doa", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "ホリデイラブ Ep 1 「夫の帰還」 -Doa" + }, + { + "path": "/mnt/Downloads/series/ホリデイラブ Complete 720p HDTV x264 AAC-DoA/ホリデイラブ ep.2 「妻の攻撃」 720p HDTV x264 AAC-DoA.mkv", + "filename": "ホリデイラブ ep.2 「妻の攻撃」 720p HDTV x264 AAC-DoA.mkv", + "category": "series", + "title": "ホリデイラブ Ep 2 「妻の攻撃」 -Doa", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "ホリデイラブ Ep 2 「妻の攻撃」 -Doa" + }, + { + "path": "/mnt/Downloads/series/ホリデイラブ Complete 720p HDTV x264 AAC-DoA/ホリデイラブ ep.4 「妻の覚醒」 720p HDTV x264 AAC-DoA.mkv", + "filename": "ホリデイラブ ep.4 「妻の覚醒」 720p HDTV x264 AAC-DoA.mkv", + "category": "series", + "title": "ホリデイラブ Ep 4 「妻の覚醒」 -Doa", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "ホリデイラブ Ep 4 「妻の覚醒」 -Doa" + }, + { + "path": "/mnt/Downloads/series/ホリデイラブ Complete 720p HDTV x264 AAC-DoA/ホリデイラブ ep.5 「夫の逆襲」 720p HDTV x264 AAC-DoA.mkv", + "filename": "ホリデイラブ ep.5 「夫の逆襲」 720p HDTV x264 AAC-DoA.mkv", + "category": "series", + "title": "ホリデイラブ Ep 5 「夫の逆襲」 -Doa", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "ホリデイラブ Ep 5 「夫の逆襲」 -Doa" + }, + { + "path": "/mnt/Downloads/series/ホリデイラブ Complete 720p HDTV x264 AAC-DoA/ホリデイラブ ep.6 「魔性の復讐」 720p HDTV x264 AAC-DoA.mkv", + "filename": "ホリデイラブ ep.6 「魔性の復讐」 720p HDTV x264 AAC-DoA.mkv", + "category": "series", + "title": "ホリデイラブ Ep 6 「魔性の復讐」 -Doa", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "ホリデイラブ Ep 6 「魔性の復讐」 -Doa" + }, + { + "path": "/mnt/Downloads/series/ホリデイラブ Complete 720p HDTV x264 AAC-DoA/ホリデイラブ ep.8 「新たなる希望」 End 720p HDTV x264 AAC-DoA.mkv", + "filename": "ホリデイラブ ep.8 「新たなる希望」 End 720p HDTV x264 AAC-DoA.mkv", + "category": "series", + "title": "ホリデイラブ Ep 8 「新たなる希望」 End -Doa", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "ホリデイラブ Ep 8 「新たなる希望」 End -Doa" + }, + { + "path": "/mnt/Downloads/series/ホリデイラブ Complete 720p HDTV x264 AAC-DoA/ホリデイラブ ep.7 「夫婦間恋愛」 720p HDTV x264 AAC-DoA.mkv", + "filename": "ホリデイラブ ep.7 「夫婦間恋愛」 720p HDTV x264 AAC-DoA.mkv", + "category": "series", + "title": "ホリデイラブ Ep 7 「夫婦間恋愛」 -Doa", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "ホリデイラブ Ep 7 「夫婦間恋愛」 -Doa" + }, + { + "path": "/mnt/Downloads/series/しずかちゃんとパパ Complete 1080p HDTV x264 AAC/しずかちゃんとパパ 第5回 「パパのいない夜」 1080p HDTV x264 AAC.mkv", + "filename": "しずかちゃんとパパ 第5回 「パパのいない夜」 1080p HDTV x264 AAC.mkv", + "category": "series", + "title": "しずかちゃんとパパ 第5回 「パパのいない夜」", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "しずかちゃんとパパ 第5回 「パパのいない夜」" + }, + { + "path": "/mnt/Downloads/series/しずかちゃんとパパ Complete 1080p HDTV x264 AAC/しずかちゃんとパパ 第7回 「パパの深い海の底」 1080p HDTV x264 AAC.mkv", + "filename": "しずかちゃんとパパ 第7回 「パパの深い海の底」 1080p HDTV x264 AAC.mkv", + "category": "series", + "title": "しずかちゃんとパパ 第7回 「パパの深い海の底」", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "しずかちゃんとパパ 第7回 「パパの深い海の底」" + }, + { + "path": "/mnt/Downloads/series/しずかちゃんとパパ Complete 1080p HDTV x264 AAC/しずかちゃんとパパ 第6回 「この優しい世界」 1080p HDTV x264 AAC.mkv", + "filename": "しずかちゃんとパパ 第6回 「この優しい世界」 1080p HDTV x264 AAC.mkv", + "category": "series", + "title": "しずかちゃんとパパ 第6回 「この優しい世界」", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "しずかちゃんとパパ 第6回 「この優しい世界」" + }, + { + "path": "/mnt/Downloads/series/しずかちゃんとパパ Complete 1080p HDTV x264 AAC/しずかちゃんとパパ 第3回 「空飛ぶ自転車」 1080p HDTV x264 AAC.mkv", + "filename": "しずかちゃんとパパ 第3回 「空飛ぶ自転車」 1080p HDTV x264 AAC.mkv", + "category": "series", + "title": "しずかちゃんとパパ 第3回 「空飛ぶ自転車」", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "しずかちゃんとパパ 第3回 「空飛ぶ自転車」" + }, + { + "path": "/mnt/Downloads/series/しずかちゃんとパパ Complete 1080p HDTV x264 AAC/しずかちゃんとパパ 第2回 「聞こえない音楽会」 1080p HDTV x264 AAC.mkv", + "filename": "しずかちゃんとパパ 第2回 「聞こえない音楽会」 1080p HDTV x264 AAC.mkv", + "category": "series", + "title": "しずかちゃんとパパ 第2回 「聞こえない音楽会」", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "しずかちゃんとパパ 第2回 「聞こえない音楽会」" + }, + { + "path": "/mnt/Downloads/series/しずかちゃんとパパ Complete 1080p HDTV x264 AAC/しずかちゃんとパパ 第8回 「紙吹雪の中で」 End 1080p HDTV x264 AAC.mkv", + "filename": "しずかちゃんとパパ 第8回 「紙吹雪の中で」 End 1080p HDTV x264 AAC.mkv", + "category": "series", + "title": "しずかちゃんとパパ 第8回 「紙吹雪の中で」 End", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "しずかちゃんとパパ 第8回 「紙吹雪の中で」 End" + }, + { + "path": "/mnt/Downloads/series/しずかちゃんとパパ Complete 1080p HDTV x264 AAC/しずかちゃんとパパ 第1回 「ケバブサンドの秘密」 1080p HDTV x264 AAC.mkv", + "filename": "しずかちゃんとパパ 第1回 「ケバブサンドの秘密」 1080p HDTV x264 AAC.mkv", + "category": "series", + "title": "しずかちゃんとパパ 第1回 「ケバブサンドの秘密」", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "しずかちゃんとパパ 第1回 「ケバブサンドの秘密」" + }, + { + "path": "/mnt/Downloads/series/しずかちゃんとパパ Complete 1080p HDTV x264 AAC/しずかちゃんとパパ 第4回 「涙のけんちん汁」 1080p HDTV x264 AAC.mkv", + "filename": "しずかちゃんとパパ 第4回 「涙のけんちん汁」 1080p HDTV x264 AAC.mkv", + "category": "series", + "title": "しずかちゃんとパパ 第4回 「涙のけんちん汁」", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "しずかちゃんとパパ 第4回 「涙のけんちん汁」" + }, + { + "path": "/mnt/Downloads/series/Play.Dirty.2025.2160p.AMZN.WEB-DL.DDP.5.1.H.265-CHDWEB.mkv", + "filename": "Play.Dirty.2025.2160p.AMZN.WEB-DL.DDP.5.1.H.265-CHDWEB.mkv", + "category": "series", + "title": "Play Dirty 2025 Amzn Ddp 5 1 H 265-Chdweb", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Play Dirty 2025 Amzn Ddp 5 1 H 265-Chdweb" + }, + { + "path": "/mnt/Downloads/series/RoOT 第07話 1080p KKTV WEB-DL H264 AAC.mkv", + "filename": "RoOT 第07話 1080p KKTV WEB-DL H264 AAC.mkv", + "category": "series", + "title": "Root 第07話 Kktv", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Root 第07話 Kktv" + }, + { + "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", + "filename": "Logically.Impossible.Detective.Ryoko.Kamizuru.is.on.the.Case.2023.E03.1080p.KKTV.WEB-DL.x264.AAC-PTerWEB.mkv", + "category": "series", + "title": "Logically Impossible Detective Ryoko Kamizuru Is On The Case 2023 E03 Kktv -Pterweb", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Logically Impossible Detective Ryoko Kamizuru Is On The Case 2023 E03 Kktv -Pterweb" + }, + { + "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", + "filename": "Reacher.S02E08.Fly.Boy.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv", + "category": "series", + "title": "Reacher", + "season": 2, + "episodes": [ + 8 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:108978", + "title_zh": "侠探杰克", + "title_en": "Reacher", + "translation_source": "tmdb", + "reputation_score": 8.084, + "reputation_votes": 2645, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"108978\"}" + }, + "display_title": "侠探杰克 Reacher" + }, + { + "path": "/mnt/Downloads/series/Believe-君にかける橋- 第2話 決意の脱獄計画…全ては妻の為に 1080p TVer WEB-DL H264 AAC-Solitude@DoA.mkv", + "filename": "Believe-君にかける橋- 第2話 決意の脱獄計画…全ては妻の為に 1080p TVer WEB-DL H264 AAC-Solitude@DoA.mkv", + "category": "series", + "title": "Believe-君にかける橋- 第2話 決意の脱獄計画…全ては妻の為に Tver -Solitude@Doa", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Believe-君にかける橋- 第2話 決意の脱獄計画…全ては妻の為に Tver -Solitude@Doa" + }, + { + "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", + "filename": "The.Hot.Spot.S01E01.2025.V2.1080p.NF.WEB-DL.x264.AAC-ADWeb.mkv", + "category": "series", + "title": "The Hot Spot", + "season": 1, + "episodes": [ + 1 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:276903", + "title_zh": "热点", + "title_en": "ホットスポット", + "translation_source": "tmdb", + "reputation_score": 8.16, + "reputation_votes": 25, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"276903\"}" + }, + "display_title": "热点 ホットスポット" + }, + { + "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", + "filename": "The.Hot.Spot.S01E02.2025.V2.1080p.NF.WEB-DL.x264.AAC-ADWeb.mkv", + "category": "series", + "title": "The Hot Spot", + "season": 1, + "episodes": [ + 2 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:276903", + "title_zh": "热点", + "title_en": "ホットスポット", + "translation_source": "tmdb", + "reputation_score": 8.16, + "reputation_votes": 25, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"276903\"}" + }, + "display_title": "热点 ホットスポット" + }, + { + "path": "/mnt/Downloads/series/Ludwig.S01/谜探路德维希.Ludwig.S01E03.1080p.炸鱼薯条字幕组.双语字幕.mp4", + "filename": "谜探路德维希.Ludwig.S01E03.1080p.炸鱼薯条字幕组.双语字幕.mp4", + "category": "series", + "title": "谜探路德维希 Ludwig", + "season": 1, + "episodes": [ + 3 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:243360", + "title_zh": "谜探路德维希", + "title_en": "Ludwig", + "translation_source": "tmdb", + "reputation_score": 7.672, + "reputation_votes": 96, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"243360\"}" + }, + "display_title": "谜探路德维希 Ludwig" + }, + { + "path": "/mnt/Downloads/series/Ludwig.S01/谜探路德维希.Ludwig.S01E06.1080p.炸鱼薯条字幕组.双语字幕.mp4", + "filename": "谜探路德维希.Ludwig.S01E06.1080p.炸鱼薯条字幕组.双语字幕.mp4", + "category": "series", + "title": "谜探路德维希 Ludwig", + "season": 1, + "episodes": [ + 6 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:243360", + "title_zh": "谜探路德维希", + "title_en": "Ludwig", + "translation_source": "tmdb", + "reputation_score": 7.672, + "reputation_votes": 96, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"243360\"}" + }, + "display_title": "谜探路德维希 Ludwig" + }, + { + "path": "/mnt/Downloads/series/Ludwig.S01/谜探路德维希.Ludwig.S01E04.1080p.炸鱼薯条字幕组.双语字幕.V2.mp4", + "filename": "谜探路德维希.Ludwig.S01E04.1080p.炸鱼薯条字幕组.双语字幕.V2.mp4", + "category": "series", + "title": "谜探路德维希 Ludwig", + "season": 1, + "episodes": [ + 4 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:243360", + "title_zh": "谜探路德维希", + "title_en": "Ludwig", + "translation_source": "tmdb", + "reputation_score": 7.672, + "reputation_votes": 96, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"243360\"}" + }, + "display_title": "谜探路德维希 Ludwig" + }, + { + "path": "/mnt/Downloads/series/Ludwig.S01/谜探路德维希.Ludwig.S01E02.1080p.炸鱼薯条字幕组.双语字幕.V2.mp4", + "filename": "谜探路德维希.Ludwig.S01E02.1080p.炸鱼薯条字幕组.双语字幕.V2.mp4", + "category": "series", + "title": "谜探路德维希 Ludwig", + "season": 1, + "episodes": [ + 2 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:243360", + "title_zh": "谜探路德维希", + "title_en": "Ludwig", + "translation_source": "tmdb", + "reputation_score": 7.672, + "reputation_votes": 96, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"243360\"}" + }, + "display_title": "谜探路德维希 Ludwig" + }, + { + "path": "/mnt/Downloads/series/Ludwig.S01/谜探路德维希.Ludwig.S01E05.1080p.炸鱼薯条字幕组.双语字幕.mp4", + "filename": "谜探路德维希.Ludwig.S01E05.1080p.炸鱼薯条字幕组.双语字幕.mp4", + "category": "series", + "title": "谜探路德维希 Ludwig", + "season": 1, + "episodes": [ + 5 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:243360", + "title_zh": "谜探路德维希", + "title_en": "Ludwig", + "translation_source": "tmdb", + "reputation_score": 7.672, + "reputation_votes": 96, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"243360\"}" + }, + "display_title": "谜探路德维希 Ludwig" + }, + { + "path": "/mnt/Downloads/series/Ludwig.S01/谜探路德维希.Ludwig.S01E01.1080p.炸鱼薯条字幕组.双语字幕.mp4", + "filename": "谜探路德维希.Ludwig.S01E01.1080p.炸鱼薯条字幕组.双语字幕.mp4", + "category": "series", + "title": "谜探路德维希 Ludwig", + "season": 1, + "episodes": [ + 1 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:243360", + "title_zh": "谜探路德维希", + "title_en": "Ludwig", + "translation_source": "tmdb", + "reputation_score": 7.672, + "reputation_votes": 96, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"243360\"}" + }, + "display_title": "谜探路德维希 Ludwig" + }, + { + "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", + "filename": "Mindhunter.S02E01.1080p.NF.WEB-DL.DDP5.1.x264-MZABI.mkv", + "category": "series", + "title": "Mindhunter", + "season": 2, + "episodes": [ + 1 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:67744", + "title_zh": "心灵猎人", + "title_en": "MINDHUNTER", + "translation_source": "tmdb", + "reputation_score": 8.11, + "reputation_votes": 2826, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"67744\"}" + }, + "display_title": "心灵猎人 MINDHUNTER" + }, + { + "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", + "filename": "Mindhunter.S02E03.1080p.NF.WEB-DL.DDP5.1.x264-MZABI.mkv", + "category": "series", + "title": "Mindhunter", + "season": 2, + "episodes": [ + 3 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:67744", + "title_zh": "心灵猎人", + "title_en": "MINDHUNTER", + "translation_source": "tmdb", + "reputation_score": 8.11, + "reputation_votes": 2826, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"67744\"}" + }, + "display_title": "心灵猎人 MINDHUNTER" + }, + { + "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", + "filename": "Mindhunter.S02E02.1080p.NF.WEB-DL.DDP5.1.x264-MZABI.mkv", + "category": "series", + "title": "Mindhunter", + "season": 2, + "episodes": [ + 2 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:67744", + "title_zh": "心灵猎人", + "title_en": "MINDHUNTER", + "translation_source": "tmdb", + "reputation_score": 8.11, + "reputation_votes": 2826, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"67744\"}" + }, + "display_title": "心灵猎人 MINDHUNTER" + }, + { + "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", + "filename": "Mindhunter.S02E05.1080p.NF.WEB-DL.DDP5.1.x264-MZABI.mkv", + "category": "series", + "title": "Mindhunter", + "season": 2, + "episodes": [ + 5 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:67744", + "title_zh": "心灵猎人", + "title_en": "MINDHUNTER", + "translation_source": "tmdb", + "reputation_score": 8.11, + "reputation_votes": 2826, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"67744\"}" + }, + "display_title": "心灵猎人 MINDHUNTER" + }, + { + "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", + "filename": "Mindhunter.S02E04.1080p.NF.WEB-DL.DDP5.1.x264-MZABI.mkv", + "category": "series", + "title": "Mindhunter", + "season": 2, + "episodes": [ + 4 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:67744", + "title_zh": "心灵猎人", + "title_en": "MINDHUNTER", + "translation_source": "tmdb", + "reputation_score": 8.11, + "reputation_votes": 2826, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"67744\"}" + }, + "display_title": "心灵猎人 MINDHUNTER" + }, + { + "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", + "filename": "Mindhunter.S02E07.1080p.NF.WEB-DL.DDP5.1.x264-MZABI.mkv", + "category": "series", + "title": "Mindhunter", + "season": 2, + "episodes": [ + 7 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:67744", + "title_zh": "心灵猎人", + "title_en": "MINDHUNTER", + "translation_source": "tmdb", + "reputation_score": 8.11, + "reputation_votes": 2826, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"67744\"}" + }, + "display_title": "心灵猎人 MINDHUNTER" + }, + { + "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", + "filename": "Mindhunter.S02E06.1080p.NF.WEB-DL.DDP5.1.x264-MZABI.mkv", + "category": "series", + "title": "Mindhunter", + "season": 2, + "episodes": [ + 6 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:67744", + "title_zh": "心灵猎人", + "title_en": "MINDHUNTER", + "translation_source": "tmdb", + "reputation_score": 8.11, + "reputation_votes": 2826, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"67744\"}" + }, + "display_title": "心灵猎人 MINDHUNTER" + }, + { + "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", + "filename": "Mindhunter.S02E09.1080p.NF.WEB-DL.DDP5.1.x264-MZABI.mkv", + "category": "series", + "title": "Mindhunter", + "season": 2, + "episodes": [ + 9 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:67744", + "title_zh": "心灵猎人", + "title_en": "MINDHUNTER", + "translation_source": "tmdb", + "reputation_score": 8.11, + "reputation_votes": 2826, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"67744\"}" + }, + "display_title": "心灵猎人 MINDHUNTER" + }, + { + "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", + "filename": "Mindhunter.S02E08.1080p.NF.WEB-DL.DDP5.1.x264-MZABI.mkv", + "category": "series", + "title": "Mindhunter", + "season": 2, + "episodes": [ + 8 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:67744", + "title_zh": "心灵猎人", + "title_en": "MINDHUNTER", + "translation_source": "tmdb", + "reputation_score": 8.11, + "reputation_votes": 2826, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"67744\"}" + }, + "display_title": "心灵猎人 MINDHUNTER" + }, + { + "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", + "filename": "The.Wheel.of.Time.S01E03.A.Place.of.Safety.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv", + "category": "series", + "title": "The Wheel Of Time", + "season": 1, + "episodes": [ + 3 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:71914", + "title_zh": "时光之轮", + "title_en": "The Wheel of Time", + "translation_source": "tmdb", + "reputation_score": 7.623, + "reputation_votes": 2338, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"71914\"}" + }, + "display_title": "时光之轮 The Wheel of Time" + }, + { + "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", + "filename": "The.Wheel.of.Time.S01E08.The.Eye.of.the.World.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv", + "category": "series", + "title": "The Wheel Of Time", + "season": 1, + "episodes": [ + 8 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:71914", + "title_zh": "时光之轮", + "title_en": "The Wheel of Time", + "translation_source": "tmdb", + "reputation_score": 7.623, + "reputation_votes": 2338, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"71914\"}" + }, + "display_title": "时光之轮 The Wheel of Time" + }, + { + "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", + "filename": "The.Wheel.of.Time.S01E01.Leavetaking.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv", + "category": "series", + "title": "The Wheel Of Time", + "season": 1, + "episodes": [ + 1 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:71914", + "title_zh": "时光之轮", + "title_en": "The Wheel of Time", + "translation_source": "tmdb", + "reputation_score": 7.623, + "reputation_votes": 2338, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"71914\"}" + }, + "display_title": "时光之轮 The Wheel of Time" + }, + { + "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", + "filename": "The.Wheel.of.Time.S01E04.The.Dragon.Reborn.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv", + "category": "series", + "title": "The Wheel Of Time", + "season": 1, + "episodes": [ + 4 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:71914", + "title_zh": "时光之轮", + "title_en": "The Wheel of Time", + "translation_source": "tmdb", + "reputation_score": 7.623, + "reputation_votes": 2338, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"71914\"}" + }, + "display_title": "时光之轮 The Wheel of Time" + }, + { + "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", + "filename": "The.Wheel.of.Time.S01E07.The.Dark.Along.the.Ways.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv", + "category": "series", + "title": "The Wheel Of Time", + "season": 1, + "episodes": [ + 7 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:71914", + "title_zh": "时光之轮", + "title_en": "The Wheel of Time", + "translation_source": "tmdb", + "reputation_score": 7.623, + "reputation_votes": 2338, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"71914\"}" + }, + "display_title": "时光之轮 The Wheel of Time" + }, + { + "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", + "filename": "The.Wheel.of.Time.S01E05.Blood.Calls.Blood.1080p.AMZN.WEB-DL.DDP5.1.H.265-NTb.mkv", + "category": "series", + "title": "The Wheel Of Time", + "season": 1, + "episodes": [ + 5 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:71914", + "title_zh": "时光之轮", + "title_en": "The Wheel of Time", + "translation_source": "tmdb", + "reputation_score": 7.623, + "reputation_votes": 2338, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"71914\"}" + }, + "display_title": "时光之轮 The Wheel of Time" + }, + { + "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", + "filename": "The.Wheel.of.Time.S01E02.Shadows.Waiting.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv", + "category": "series", + "title": "The Wheel Of Time", + "season": 1, + "episodes": [ + 2 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:71914", + "title_zh": "时光之轮", + "title_en": "The Wheel of Time", + "translation_source": "tmdb", + "reputation_score": 7.623, + "reputation_votes": 2338, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"71914\"}" + }, + "display_title": "时光之轮 The Wheel of Time" + }, + { + "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", + "filename": "The.Wheel.of.Time.S01E06.The.Flame.of.Tar.Valon.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv", + "category": "series", + "title": "The Wheel Of Time", + "season": 1, + "episodes": [ + 6 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:71914", + "title_zh": "时光之轮", + "title_en": "The Wheel of Time", + "translation_source": "tmdb", + "reputation_score": 7.623, + "reputation_votes": 2338, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"71914\"}" + }, + "display_title": "时光之轮 The Wheel of Time" + }, + { + "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", + "filename": "Dark.Matter.2024.S01E01.Are.You.Happy.in.Your.Life.1080p.ATVP.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv", + "category": "series", + "title": "Dark Matter 2024", + "season": 1, + "episodes": [ + 1 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Dark Matter 2024" + }, + { + "path": "/mnt/Downloads/series/RoOT 第04話 1080p KKTV WEB-DL H264 AAC.mkv", + "filename": "RoOT 第04話 1080p KKTV WEB-DL H264 AAC.mkv", + "category": "series", + "title": "Root 第04話 Kktv", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Root 第04話 Kktv" + }, + { + "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", + "filename": "Extremely.Inappropriate.S01E10.Episode.10.1080p.NF.WEB-DL.DDP.2.0.H.264-CHDWEB.mkv", + "category": "series", + "title": "Extremely Inappropriate", + "season": 1, + "episodes": [ + 10 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:241795", + "title_zh": "极度不妥!", + "title_en": "不適切にもほどがある!", + "translation_source": "tmdb", + "reputation_score": 7.8, + "reputation_votes": 17, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"241795\"}" + }, + "display_title": "极度不妥! 不適切にもほどがある!" + }, + { + "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", + "filename": "Extremely.Inappropriate.S01E02.Episode.2.1080p.NF.WEB-DL.DDP.2.0.H.264-CHDWEB.mkv", + "category": "series", + "title": "Extremely Inappropriate", + "season": 1, + "episodes": [ + 2 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:241795", + "title_zh": "极度不妥!", + "title_en": "不適切にもほどがある!", + "translation_source": "tmdb", + "reputation_score": 7.8, + "reputation_votes": 17, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"241795\"}" + }, + "display_title": "极度不妥! 不適切にもほどがある!" + }, + { + "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", + "filename": "Extremely.Inappropriate.S01E01.Episode.1.1080p.NF.WEB-DL.DDP.2.0.H.264-CHDWEB.mkv", + "category": "series", + "title": "Extremely Inappropriate", + "season": 1, + "episodes": [ + 1 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:241795", + "title_zh": "极度不妥!", + "title_en": "不適切にもほどがある!", + "translation_source": "tmdb", + "reputation_score": 7.8, + "reputation_votes": 17, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"241795\"}" + }, + "display_title": "极度不妥! 不適切にもほどがある!" + }, + { + "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", + "filename": "Extremely.Inappropriate.S01E09.Episode.9.1080p.NF.WEB-DL.DDP.2.0.H.264-CHDWEB.mkv", + "category": "series", + "title": "Extremely Inappropriate", + "season": 1, + "episodes": [ + 9 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:241795", + "title_zh": "极度不妥!", + "title_en": "不適切にもほどがある!", + "translation_source": "tmdb", + "reputation_score": 7.8, + "reputation_votes": 17, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"241795\"}" + }, + "display_title": "极度不妥! 不適切にもほどがある!" + }, + { + "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", + "filename": "Extremely.Inappropriate.S01E04.Episode.4.1080p.NF.WEB-DL.DDP.2.0.H.264-CHDWEB.mkv", + "category": "series", + "title": "Extremely Inappropriate", + "season": 1, + "episodes": [ + 4 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:241795", + "title_zh": "极度不妥!", + "title_en": "不適切にもほどがある!", + "translation_source": "tmdb", + "reputation_score": 7.8, + "reputation_votes": 17, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"241795\"}" + }, + "display_title": "极度不妥! 不適切にもほどがある!" + }, + { + "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", + "filename": "Extremely.Inappropriate.S01E07.Episode.7.1080p.NF.WEB-DL.DDP.2.0.H.264-CHDWEB.mkv", + "category": "series", + "title": "Extremely Inappropriate", + "season": 1, + "episodes": [ + 7 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:241795", + "title_zh": "极度不妥!", + "title_en": "不適切にもほどがある!", + "translation_source": "tmdb", + "reputation_score": 7.8, + "reputation_votes": 17, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"241795\"}" + }, + "display_title": "极度不妥! 不適切にもほどがある!" + }, + { + "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", + "filename": "Extremely.Inappropriate.S01E03.Episode.3.1080p.NF.WEB-DL.DDP.2.0.H.264-CHDWEB.mkv", + "category": "series", + "title": "Extremely Inappropriate", + "season": 1, + "episodes": [ + 3 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:241795", + "title_zh": "极度不妥!", + "title_en": "不適切にもほどがある!", + "translation_source": "tmdb", + "reputation_score": 7.8, + "reputation_votes": 17, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"241795\"}" + }, + "display_title": "极度不妥! 不適切にもほどがある!" + }, + { + "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", + "filename": "Extremely.Inappropriate.S01E05.Episode.5.1080p.NF.WEB-DL.DDP.2.0.H.264-CHDWEB.mkv", + "category": "series", + "title": "Extremely Inappropriate", + "season": 1, + "episodes": [ + 5 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:241795", + "title_zh": "极度不妥!", + "title_en": "不適切にもほどがある!", + "translation_source": "tmdb", + "reputation_score": 7.8, + "reputation_votes": 17, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"241795\"}" + }, + "display_title": "极度不妥! 不適切にもほどがある!" + }, + { + "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", + "filename": "Extremely.Inappropriate.S01E08.Episode.8.1080p.NF.WEB-DL.DDP.2.0.H.264-CHDWEB.mkv", + "category": "series", + "title": "Extremely Inappropriate", + "season": 1, + "episodes": [ + 8 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:241795", + "title_zh": "极度不妥!", + "title_en": "不適切にもほどがある!", + "translation_source": "tmdb", + "reputation_score": 7.8, + "reputation_votes": 17, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"241795\"}" + }, + "display_title": "极度不妥! 不適切にもほどがある!" + }, + { + "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", + "filename": "Extremely.Inappropriate.S01E06.Episode.6.1080p.NF.WEB-DL.DDP.2.0.H.264-CHDWEB.mkv", + "category": "series", + "title": "Extremely Inappropriate", + "season": 1, + "episodes": [ + 6 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:241795", + "title_zh": "极度不妥!", + "title_en": "不適切にもほどがある!", + "translation_source": "tmdb", + "reputation_score": 7.8, + "reputation_votes": 17, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"241795\"}" + }, + "display_title": "极度不妥! 不適切にもほどがある!" + }, + { + "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", + "filename": "Hijack.2023.S01E07.Brace.Brace.Brace.1080p.ATVP.WEB-DL.DDP5.1.H.264-NTb.mkv", + "category": "series", + "title": "Hijack 2023", + "season": 1, + "episodes": [ + 7 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Hijack 2023" + }, + { + "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", + "filename": "Severance.S01E05.2022.1080p.WEB-DL.x265.10bit.AC3£cXcY@FRDS.mkv", + "category": "series", + "title": "Severance", + "season": 1, + "episodes": [ + 5 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:95396", + "title_zh": "Severance", + "title_en": "Severance", + "translation_source": "tmdb", + "reputation_score": 8.398, + "reputation_votes": 2437, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"95396\"}" + }, + "display_title": "Severance" + }, + { + "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", + "filename": "Severance.S01E01.2022.1080p.WEB-DL.x265.10bit.AC3£cXcY@FRDS.mkv", + "category": "series", + "title": "Severance", + "season": 1, + "episodes": [ + 1 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:95396", + "title_zh": "Severance", + "title_en": "Severance", + "translation_source": "tmdb", + "reputation_score": 8.398, + "reputation_votes": 2437, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"95396\"}" + }, + "display_title": "Severance" + }, + { + "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", + "filename": "Severance.S01E09.2022.1080p.WEB-DL.x265.10bit.AC3£cXcY@FRDS.mkv", + "category": "series", + "title": "Severance", + "season": 1, + "episodes": [ + 9 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:95396", + "title_zh": "Severance", + "title_en": "Severance", + "translation_source": "tmdb", + "reputation_score": 8.398, + "reputation_votes": 2437, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"95396\"}" + }, + "display_title": "Severance" + }, + { + "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", + "filename": "Severance.S01E06.2022.1080p.WEB-DL.x265.10bit.AC3£cXcY@FRDS.mkv", + "category": "series", + "title": "Severance", + "season": 1, + "episodes": [ + 6 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:95396", + "title_zh": "Severance", + "title_en": "Severance", + "translation_source": "tmdb", + "reputation_score": 8.398, + "reputation_votes": 2437, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"95396\"}" + }, + "display_title": "Severance" + }, + { + "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", + "filename": "Severance.S01E02.2022.1080p.WEB-DL.x265.10bit.AC3£cXcY@FRDS.mkv", + "category": "series", + "title": "Severance", + "season": 1, + "episodes": [ + 2 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:95396", + "title_zh": "Severance", + "title_en": "Severance", + "translation_source": "tmdb", + "reputation_score": 8.398, + "reputation_votes": 2437, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"95396\"}" + }, + "display_title": "Severance" + }, + { + "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", + "filename": "Severance.S01E04.2022.1080p.WEB-DL.x265.10bit.AC3£cXcY@FRDS.mkv", + "category": "series", + "title": "Severance", + "season": 1, + "episodes": [ + 4 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:95396", + "title_zh": "Severance", + "title_en": "Severance", + "translation_source": "tmdb", + "reputation_score": 8.398, + "reputation_votes": 2437, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"95396\"}" + }, + "display_title": "Severance" + }, + { + "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", + "filename": "Severance.S01E08.2022.1080p.WEB-DL.x265.10bit.AC3£cXcY@FRDS.mkv", + "category": "series", + "title": "Severance", + "season": 1, + "episodes": [ + 8 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:95396", + "title_zh": "Severance", + "title_en": "Severance", + "translation_source": "tmdb", + "reputation_score": 8.398, + "reputation_votes": 2437, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"95396\"}" + }, + "display_title": "Severance" + }, + { + "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", + "filename": "Severance.S01E03.2022.1080p.WEB-DL.x265.10bit.AC3£cXcY@FRDS.mkv", + "category": "series", + "title": "Severance", + "season": 1, + "episodes": [ + 3 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:95396", + "title_zh": "Severance", + "title_en": "Severance", + "translation_source": "tmdb", + "reputation_score": 8.398, + "reputation_votes": 2437, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"95396\"}" + }, + "display_title": "Severance" + }, + { + "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", + "filename": "Severance.S01E07.2022.1080p.WEB-DL.x265.10bit.AC3£cXcY@FRDS.mkv", + "category": "series", + "title": "Severance", + "season": 1, + "episodes": [ + 7 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:95396", + "title_zh": "Severance", + "title_en": "Severance", + "translation_source": "tmdb", + "reputation_score": 8.398, + "reputation_votes": 2437, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"95396\"}" + }, + "display_title": "Severance" + }, + { + "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", + "filename": "Chicken.Nugget.S01E10.1080p.NF.WEB-DL.DUAL.DDP5.1.Atmos.H.264-FLUX.mkv", + "category": "series", + "title": "Chicken Nugget", + "season": 1, + "episodes": [ + 10 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:206686", + "title_zh": "炸鸡奇遇记", + "title_en": "닭강정", + "translation_source": "tmdb", + "reputation_score": 6.3, + "reputation_votes": 40, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"206686\"}" + }, + "display_title": "炸鸡奇遇记 닭강정" + }, + { + "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", + "filename": "Chicken.Nugget.S01E08.1080p.NF.WEB-DL.DUAL.DDP5.1.Atmos.H.264-FLUX.mkv", + "category": "series", + "title": "Chicken Nugget", + "season": 1, + "episodes": [ + 8 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:206686", + "title_zh": "炸鸡奇遇记", + "title_en": "닭강정", + "translation_source": "tmdb", + "reputation_score": 6.3, + "reputation_votes": 40, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"206686\"}" + }, + "display_title": "炸鸡奇遇记 닭강정" + }, + { + "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", + "filename": "Chicken.Nugget.S01E04.1080p.NF.WEB-DL.DUAL.DDP5.1.Atmos.H.264-FLUX.mkv", + "category": "series", + "title": "Chicken Nugget", + "season": 1, + "episodes": [ + 4 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:206686", + "title_zh": "炸鸡奇遇记", + "title_en": "닭강정", + "translation_source": "tmdb", + "reputation_score": 6.3, + "reputation_votes": 40, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"206686\"}" + }, + "display_title": "炸鸡奇遇记 닭강정" + }, + { + "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", + "filename": "Chicken.Nugget.S01E07.1080p.NF.WEB-DL.DUAL.DDP5.1.Atmos.H.264-FLUX.mkv", + "category": "series", + "title": "Chicken Nugget", + "season": 1, + "episodes": [ + 7 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:206686", + "title_zh": "炸鸡奇遇记", + "title_en": "닭강정", + "translation_source": "tmdb", + "reputation_score": 6.3, + "reputation_votes": 40, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"206686\"}" + }, + "display_title": "炸鸡奇遇记 닭강정" + }, + { + "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", + "filename": "Chicken.Nugget.S01E03.1080p.NF.WEB-DL.DUAL.DDP5.1.Atmos.H.264-FLUX.mkv", + "category": "series", + "title": "Chicken Nugget", + "season": 1, + "episodes": [ + 3 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:206686", + "title_zh": "炸鸡奇遇记", + "title_en": "닭강정", + "translation_source": "tmdb", + "reputation_score": 6.3, + "reputation_votes": 40, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"206686\"}" + }, + "display_title": "炸鸡奇遇记 닭강정" + }, + { + "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", + "filename": "Chicken.Nugget.S01E09.1080p.NF.WEB-DL.DUAL.DDP5.1.Atmos.H.264-FLUX.mkv", + "category": "series", + "title": "Chicken Nugget", + "season": 1, + "episodes": [ + 9 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:206686", + "title_zh": "炸鸡奇遇记", + "title_en": "닭강정", + "translation_source": "tmdb", + "reputation_score": 6.3, + "reputation_votes": 40, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"206686\"}" + }, + "display_title": "炸鸡奇遇记 닭강정" + }, + { + "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", + "filename": "Chicken.Nugget.S01E01.1080p.NF.WEB-DL.DUAL.DDP5.1.Atmos.H.264-FLUX.mkv", + "category": "series", + "title": "Chicken Nugget", + "season": 1, + "episodes": [ + 1 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:206686", + "title_zh": "炸鸡奇遇记", + "title_en": "닭강정", + "translation_source": "tmdb", + "reputation_score": 6.3, + "reputation_votes": 40, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"206686\"}" + }, + "display_title": "炸鸡奇遇记 닭강정" + }, + { + "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", + "filename": "Chicken.Nugget.S01E05.1080p.NF.WEB-DL.DUAL.DDP5.1.Atmos.H.264-FLUX.mkv", + "category": "series", + "title": "Chicken Nugget", + "season": 1, + "episodes": [ + 5 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:206686", + "title_zh": "炸鸡奇遇记", + "title_en": "닭강정", + "translation_source": "tmdb", + "reputation_score": 6.3, + "reputation_votes": 40, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"206686\"}" + }, + "display_title": "炸鸡奇遇记 닭강정" + }, + { + "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", + "filename": "Chicken.Nugget.S01E02.1080p.NF.WEB-DL.DUAL.DDP5.1.Atmos.H.264-FLUX.mkv", + "category": "series", + "title": "Chicken Nugget", + "season": 1, + "episodes": [ + 2 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:206686", + "title_zh": "炸鸡奇遇记", + "title_en": "닭강정", + "translation_source": "tmdb", + "reputation_score": 6.3, + "reputation_votes": 40, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"206686\"}" + }, + "display_title": "炸鸡奇遇记 닭강정" + }, + { + "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", + "filename": "Chicken.Nugget.S01E06.1080p.NF.WEB-DL.DUAL.DDP5.1.Atmos.H.264-FLUX.mkv", + "category": "series", + "title": "Chicken Nugget", + "season": 1, + "episodes": [ + 6 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:206686", + "title_zh": "炸鸡奇遇记", + "title_en": "닭강정", + "translation_source": "tmdb", + "reputation_score": 6.3, + "reputation_votes": 40, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"206686\"}" + }, + "display_title": "炸鸡奇遇记 닭강정" + }, + { + "path": "/mnt/Downloads/series/オリバーな犬、(Gosh!!)このヤロウ シーズン2 Complete 1080p HDTV x264 AAC/オリバーな犬、(Gosh!!)このヤロウ シーズン2 EP5 1080p HDTV x264 AAC.mkv", + "filename": "オリバーな犬、(Gosh!!)このヤロウ シーズン2 EP5 1080p HDTV x264 AAC.mkv", + "category": "series", + "title": "オリバーな犬、(Gosh!!)このヤロウ シーズン2 Ep5", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "オリバーな犬、(Gosh!!)このヤロウ シーズン2 Ep5" + }, + { + "path": "/mnt/Downloads/series/オリバーな犬、(Gosh!!)このヤロウ シーズン2 Complete 1080p HDTV x264 AAC/オリバーな犬、(Gosh!!)このヤロウ シーズン2 EP4 1080p HDTV x264 AAC.mkv", + "filename": "オリバーな犬、(Gosh!!)このヤロウ シーズン2 EP4 1080p HDTV x264 AAC.mkv", + "category": "series", + "title": "オリバーな犬、(Gosh!!)このヤロウ シーズン2 Ep4", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "オリバーな犬、(Gosh!!)このヤロウ シーズン2 Ep4" + }, + { + "path": "/mnt/Downloads/series/オリバーな犬、(Gosh!!)このヤロウ シーズン2 Complete 1080p HDTV x264 AAC/オリバーな犬、(Gosh!!)このヤロウ シーズン2 EP6 End 1080p HDTV x264 AAC.mkv", + "filename": "オリバーな犬、(Gosh!!)このヤロウ シーズン2 EP6 End 1080p HDTV x264 AAC.mkv", + "category": "series", + "title": "オリバーな犬、(Gosh!!)このヤロウ シーズン2 Ep6 End", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "オリバーな犬、(Gosh!!)このヤロウ シーズン2 Ep6 End" + }, + { + "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", + "filename": "A.House.of.Dynamite.2025.2160p.NF.WEB-DL.DDP5.1.Atmos.H.265-HHWEB.mkv", + "category": "series", + "title": "A House Of Dynamite 2025 Nf Ddp5 1 Atmos H 265-Hhweb", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "A House Of Dynamite 2025 Nf Ddp5 1 Atmos H 265-Hhweb" + }, + { + "path": "/mnt/Downloads/series/Shogun.S01E07.2024.2160p.DSNP.WEB-DL.DDP5.1.DV.HDR.H.265-HHWEB.mkv", + "filename": "Shogun.S01E07.2024.2160p.DSNP.WEB-DL.DDP5.1.DV.HDR.H.265-HHWEB.mkv", + "category": "series", + "title": "Shogun", + "season": 1, + "episodes": [ + 7 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:126308", + "title_zh": "Shōgun", + "title_en": "Shōgun", + "translation_source": "tmdb", + "reputation_score": 8.441, + "reputation_votes": 1614, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"126308\"}" + }, + "display_title": "Shōgun" + }, + { + "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", + "filename": "Adolescence.S01E04.Episode.4.1080p.NF.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv", + "category": "series", + "title": "Adolescence", + "season": 1, + "episodes": [ + 4 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:249042", + "title_zh": "Adolescence", + "title_en": "Adolescence", + "translation_source": "tmdb", + "reputation_score": 7.846, + "reputation_votes": 1393, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"249042\"}" + }, + "display_title": "Adolescence" + }, + { + "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", + "filename": "Adolescence.S01E02.Episode.2.1080p.NF.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv", + "category": "series", + "title": "Adolescence", + "season": 1, + "episodes": [ + 2 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:249042", + "title_zh": "Adolescence", + "title_en": "Adolescence", + "translation_source": "tmdb", + "reputation_score": 7.846, + "reputation_votes": 1393, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"249042\"}" + }, + "display_title": "Adolescence" + }, + { + "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", + "filename": "Adolescence.S01E03.Episode.3.1080p.NF.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv", + "category": "series", + "title": "Adolescence", + "season": 1, + "episodes": [ + 3 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:249042", + "title_zh": "Adolescence", + "title_en": "Adolescence", + "translation_source": "tmdb", + "reputation_score": 7.846, + "reputation_votes": 1393, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"249042\"}" + }, + "display_title": "Adolescence" + }, + { + "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", + "filename": "Adolescence.S01E01.Episode.1.1080p.NF.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv", + "category": "series", + "title": "Adolescence", + "season": 1, + "episodes": [ + 1 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:249042", + "title_zh": "Adolescence", + "title_en": "Adolescence", + "translation_source": "tmdb", + "reputation_score": 7.846, + "reputation_votes": 1393, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"249042\"}" + }, + "display_title": "Adolescence" + }, + { + "path": "/mnt/Downloads/series/(ドラマ) 時をかけるな、恋人たち 第10話 「恋は大デジャブ」 (1440x1080i x264-AAC)-DoA.mkv", + "filename": "(ドラマ) 時をかけるな、恋人たち 第10話 「恋は大デジャブ」 (1440x1080i x264-AAC)-DoA.mkv", + "category": "series", + "title": "(ドラマ) 時をかけるな、恋人たち 第10話 「恋は大デジャブ」 (14", + "season": 40, + "episodes": [ + 10 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "(ドラマ) 時をかけるな、恋人たち 第10話 「恋は大デジャブ」 (14" + }, + { + "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", + "filename": "恶人传记.Evillive.S01E04.2023.2160p.WEB-DL.H265.DDP2.0-OurTV.mp4", + "category": "series", + "title": "恶人传记 Evillive", + "season": 1, + "episodes": [ + 4 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:229955", + "title_zh": "恶人传记", + "title_en": "악인전기", + "translation_source": "tmdb", + "reputation_score": 8.0, + "reputation_votes": 15, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"229955\"}" + }, + "display_title": "恶人传记 악인전기" + }, + { + "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", + "filename": "恶人传记.Evillive.S01E08.2023.2160p.WEB-DL.H265.DDP2.0-OurTV.mp4", + "category": "series", + "title": "恶人传记 Evillive", + "season": 1, + "episodes": [ + 8 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:229955", + "title_zh": "恶人传记", + "title_en": "악인전기", + "translation_source": "tmdb", + "reputation_score": 8.0, + "reputation_votes": 15, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"229955\"}" + }, + "display_title": "恶人传记 악인전기" + }, + { + "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", + "filename": "恶人传记.Evillive.S01E09.2023.2160p.WEB-DL.H265.DDP2.0-OurTV.mp4", + "category": "series", + "title": "恶人传记 Evillive", + "season": 1, + "episodes": [ + 9 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:229955", + "title_zh": "恶人传记", + "title_en": "악인전기", + "translation_source": "tmdb", + "reputation_score": 8.0, + "reputation_votes": 15, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"229955\"}" + }, + "display_title": "恶人传记 악인전기" + }, + { + "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", + "filename": "恶人传记.Evillive.S01E01.2023.2160p.WEB-DL.H265.DDP2.0-OurTV.mp4", + "category": "series", + "title": "恶人传记 Evillive", + "season": 1, + "episodes": [ + 1 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:229955", + "title_zh": "恶人传记", + "title_en": "악인전기", + "translation_source": "tmdb", + "reputation_score": 8.0, + "reputation_votes": 15, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"229955\"}" + }, + "display_title": "恶人传记 악인전기" + }, + { + "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", + "filename": "恶人传记.Evillive.S01E05.2023.2160p.WEB-DL.H265.DDP2.0-OurTV.mp4", + "category": "series", + "title": "恶人传记 Evillive", + "season": 1, + "episodes": [ + 5 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:229955", + "title_zh": "恶人传记", + "title_en": "악인전기", + "translation_source": "tmdb", + "reputation_score": 8.0, + "reputation_votes": 15, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"229955\"}" + }, + "display_title": "恶人传记 악인전기" + }, + { + "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", + "filename": "恶人传记.Evillive.S01E10.2023.2160p.WEB-DL.H265.DDP2.0-OurTV.mp4", + "category": "series", + "title": "恶人传记 Evillive", + "season": 1, + "episodes": [ + 10 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:229955", + "title_zh": "恶人传记", + "title_en": "악인전기", + "translation_source": "tmdb", + "reputation_score": 8.0, + "reputation_votes": 15, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"229955\"}" + }, + "display_title": "恶人传记 악인전기" + }, + { + "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", + "filename": "恶人传记.Evillive.S01E03.2023.2160p.WEB-DL.H265.DDP2.0-OurTV.mp4", + "category": "series", + "title": "恶人传记 Evillive", + "season": 1, + "episodes": [ + 3 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:229955", + "title_zh": "恶人传记", + "title_en": "악인전기", + "translation_source": "tmdb", + "reputation_score": 8.0, + "reputation_votes": 15, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"229955\"}" + }, + "display_title": "恶人传记 악인전기" + }, + { + "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", + "filename": "恶人传记.Evillive.S01E07.2023.2160p.WEB-DL.H265.DDP2.0-OurTV.mp4", + "category": "series", + "title": "恶人传记 Evillive", + "season": 1, + "episodes": [ + 7 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:229955", + "title_zh": "恶人传记", + "title_en": "악인전기", + "translation_source": "tmdb", + "reputation_score": 8.0, + "reputation_votes": 15, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"229955\"}" + }, + "display_title": "恶人传记 악인전기" + }, + { + "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", + "filename": "恶人传记.Evillive.S01E02.2023.2160p.WEB-DL.H265.DDP2.0-OurTV.mp4", + "category": "series", + "title": "恶人传记 Evillive", + "season": 1, + "episodes": [ + 2 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:229955", + "title_zh": "恶人传记", + "title_en": "악인전기", + "translation_source": "tmdb", + "reputation_score": 8.0, + "reputation_votes": 15, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"229955\"}" + }, + "display_title": "恶人传记 악인전기" + }, + { + "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", + "filename": "恶人传记.Evillive.S01E06.2023.2160p.WEB-DL.H265.DDP2.0-OurTV.mp4", + "category": "series", + "title": "恶人传记 Evillive", + "season": 1, + "episodes": [ + 6 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:229955", + "title_zh": "恶人传记", + "title_en": "악인전기", + "translation_source": "tmdb", + "reputation_score": 8.0, + "reputation_votes": 15, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"229955\"}" + }, + "display_title": "恶人传记 악인전기" + }, + { + "path": "/mnt/Downloads/series/花咲舞が黙ってない 2024 第01話 1080p friDay WEB-DL H264 AAC.mkv", + "filename": "花咲舞が黙ってない 2024 第01話 1080p friDay WEB-DL H264 AAC.mkv", + "category": "series", + "title": "花咲舞が黙ってない 2024 第01話 Friday", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "花咲舞が黙ってない 2024 第01話 Friday" + }, + { + "path": "/mnt/Downloads/series/(ドラマ) 時をかけるな、恋人たち 第08話 「サマータイムパトロール・ブルース」 (1440x1080i x264-AAC)-DoA.mkv", + "filename": "(ドラマ) 時をかけるな、恋人たち 第08話 「サマータイムパトロール・ブルース」 (1440x1080i x264-AAC)-DoA.mkv", + "category": "series", + "title": "(ドラマ) 時をかけるな、恋人たち 第08話 「サマータイムパトロール・ブルース」 (14", + "season": 40, + "episodes": [ + 10 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "(ドラマ) 時をかけるな、恋人たち 第08話 「サマータイムパトロール・ブルース」 (14" + }, + { + "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", + "filename": "The.Boys.S02E08.What.I.Know.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv", + "category": "series", + "title": "The Boys", + "season": 2, + "episodes": [ + 8 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:76479", + "title_zh": "黑袍纠察队", + "title_en": "The Boys", + "translation_source": "tmdb", + "reputation_score": 8.441, + "reputation_votes": 11575, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"76479\"}" + }, + "display_title": "黑袍纠察队 The Boys" + }, + { + "path": "/mnt/Downloads/series/Dark.Matter.2024.S01E04.The.Corridor.1080p.ATVP.WEB-DL.DDP5.1.H.264-NTb.mkv", + "filename": "Dark.Matter.2024.S01E04.The.Corridor.1080p.ATVP.WEB-DL.DDP5.1.H.264-NTb.mkv", + "category": "series", + "title": "Dark Matter 2024", + "season": 1, + "episodes": [ + 4 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Dark Matter 2024" + }, + { + "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", + "filename": "The.Glory.S01E04.2160p.NF.WEB-DL.DDP5.1.Atmos.HDR.HEVC-XEBEC.mkv", + "category": "series", + "title": "The Glory", + "season": 1, + "episodes": [ + 4 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:77404", + "title_zh": "The Glory Boys", + "title_en": "The Glory Boys", + "translation_source": "tmdb", + "reputation_score": 5.5, + "reputation_votes": 6, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"77404\"}" + }, + "display_title": "The Glory Boys" + }, + { + "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", + "filename": "The.Glory.S01E02.2160p.NF.WEB-DL.DDP5.1.Atmos.HDR.HEVC-XEBEC.mkv", + "category": "series", + "title": "The Glory", + "season": 1, + "episodes": [ + 2 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:77404", + "title_zh": "The Glory Boys", + "title_en": "The Glory Boys", + "translation_source": "tmdb", + "reputation_score": 5.5, + "reputation_votes": 6, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"77404\"}" + }, + "display_title": "The Glory Boys" + }, + { + "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", + "filename": "The.Glory.S01E08.2160p.NF.WEB-DL.DDP5.1.Atmos.HDR.HEVC-XEBEC.mkv", + "category": "series", + "title": "The Glory", + "season": 1, + "episodes": [ + 8 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:77404", + "title_zh": "The Glory Boys", + "title_en": "The Glory Boys", + "translation_source": "tmdb", + "reputation_score": 5.5, + "reputation_votes": 6, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"77404\"}" + }, + "display_title": "The Glory Boys" + }, + { + "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", + "filename": "The.Glory.S01E05.2160p.NF.WEB-DL.DDP5.1.Atmos.HDR.HEVC-XEBEC.mkv", + "category": "series", + "title": "The Glory", + "season": 1, + "episodes": [ + 5 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:77404", + "title_zh": "The Glory Boys", + "title_en": "The Glory Boys", + "translation_source": "tmdb", + "reputation_score": 5.5, + "reputation_votes": 6, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"77404\"}" + }, + "display_title": "The Glory Boys" + }, + { + "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", + "filename": "The.Glory.S01E03.2160p.NF.WEB-DL.DDP5.1.Atmos.HDR.HEVC-XEBEC.mkv", + "category": "series", + "title": "The Glory", + "season": 1, + "episodes": [ + 3 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:77404", + "title_zh": "The Glory Boys", + "title_en": "The Glory Boys", + "translation_source": "tmdb", + "reputation_score": 5.5, + "reputation_votes": 6, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"77404\"}" + }, + "display_title": "The Glory Boys" + }, + { + "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", + "filename": "The.Glory.S01E06.2160p.NF.WEB-DL.DDP5.1.Atmos.HDR.HEVC-XEBEC.mkv", + "category": "series", + "title": "The Glory", + "season": 1, + "episodes": [ + 6 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:77404", + "title_zh": "The Glory Boys", + "title_en": "The Glory Boys", + "translation_source": "tmdb", + "reputation_score": 5.5, + "reputation_votes": 6, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"77404\"}" + }, + "display_title": "The Glory Boys" + }, + { + "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", + "filename": "The.Glory.S01E07.2160p.NF.WEB-DL.DDP5.1.Atmos.HDR.HEVC-XEBEC.mkv", + "category": "series", + "title": "The Glory", + "season": 1, + "episodes": [ + 7 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:77404", + "title_zh": "The Glory Boys", + "title_en": "The Glory Boys", + "translation_source": "tmdb", + "reputation_score": 5.5, + "reputation_votes": 6, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"77404\"}" + }, + "display_title": "The Glory Boys" + }, + { + "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", + "filename": "The.Glory.S01E01.2160p.NF.WEB-DL.DDP5.1.Atmos.HDR.HEVC-XEBEC.mkv", + "category": "series", + "title": "The Glory", + "season": 1, + "episodes": [ + 1 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:77404", + "title_zh": "The Glory Boys", + "title_en": "The Glory Boys", + "translation_source": "tmdb", + "reputation_score": 5.5, + "reputation_votes": 6, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"77404\"}" + }, + "display_title": "The Glory Boys" + }, + { + "path": "/mnt/Downloads/series/RoOT 第01話 1080p KKTV WEB-DL H264 AAC.mkv", + "filename": "RoOT 第01話 1080p KKTV WEB-DL H264 AAC.mkv", + "category": "series", + "title": "Root 第01話 Kktv", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Root 第01話 Kktv" + }, + { + "path": "/mnt/Downloads/series/(ドラマ) 時をかけるな、恋人たち 第06話 「バック・トゥ・ザ・エイティーズ」 (1440x1080i x264-AAC)-DoA.mkv", + "filename": "(ドラマ) 時をかけるな、恋人たち 第06話 「バック・トゥ・ザ・エイティーズ」 (1440x1080i x264-AAC)-DoA.mkv", + "category": "series", + "title": "(ドラマ) 時をかけるな、恋人たち 第06話 「バック・トゥ・ザ・エイティーズ」 (14", + "season": 40, + "episodes": [ + 10 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "(ドラマ) 時をかけるな、恋人たち 第06話 「バック・トゥ・ザ・エイティーズ」 (14" + }, + { + "path": "/mnt/Downloads/series/(ドラマ) 時をかけるな、恋人たち 第01話 「アバウト・タイムパトロール」 (1440x1080i x264-AAC)-DoA.mkv", + "filename": "(ドラマ) 時をかけるな、恋人たち 第01話 「アバウト・タイムパトロール」 (1440x1080i x264-AAC)-DoA.mkv", + "category": "series", + "title": "(ドラマ) 時をかけるな、恋人たち 第01話 「アバウト・タイムパトロール」 (14", + "season": 40, + "episodes": [ + 10 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "(ドラマ) 時をかけるな、恋人たち 第01話 「アバウト・タイムパトロール」 (14" + }, + { + "path": "/mnt/Downloads/series/Believe-君にかける橋- 第7話 忍び寄る危機!!裏切り者はすぐ側に― 1080p TVer WEB-DL H264 AAC-Solitude@DoA.mkv", + "filename": "Believe-君にかける橋- 第7話 忍び寄る危機!!裏切り者はすぐ側に― 1080p TVer WEB-DL H264 AAC-Solitude@DoA.mkv", + "category": "series", + "title": "Believe-君にかける橋- 第7話 忍び寄る危機!!裏切り者はすぐ側に― Tver -Solitude@Doa", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Believe-君にかける橋- 第7話 忍び寄る危機!!裏切り者はすぐ側に― Tver -Solitude@Doa" + }, + { + "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", + "filename": "Boku.no.Neechan.EP06.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv", + "category": "series", + "title": "Boku No Neechan Ep06 Amzn Ddp2 0 H 264-Magicstar", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Boku No Neechan Ep06 Amzn Ddp2 0 H 264-Magicstar" + }, + { + "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", + "filename": "Boku.no.Neechan.EP02.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv", + "category": "series", + "title": "Boku No Neechan Ep02 Amzn Ddp2 0 H 264-Magicstar", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Boku No Neechan Ep02 Amzn Ddp2 0 H 264-Magicstar" + }, + { + "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", + "filename": "Boku.no.Neechan.EP10.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv", + "category": "series", + "title": "Boku No Neechan Ep10 Amzn Ddp2 0 H 264-Magicstar", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Boku No Neechan Ep10 Amzn Ddp2 0 H 264-Magicstar" + }, + { + "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", + "filename": "Boku.no.Neechan.EP07.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv", + "category": "series", + "title": "Boku No Neechan Ep07 Amzn Ddp2 0 H 264-Magicstar", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Boku No Neechan Ep07 Amzn Ddp2 0 H 264-Magicstar" + }, + { + "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", + "filename": "Boku.no.Neechan.EP03.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv", + "category": "series", + "title": "Boku No Neechan Ep03 Amzn Ddp2 0 H 264-Magicstar", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Boku No Neechan Ep03 Amzn Ddp2 0 H 264-Magicstar" + }, + { + "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", + "filename": "Boku.no.Neechan.EP09.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv", + "category": "series", + "title": "Boku No Neechan Ep09 Amzn Ddp2 0 H 264-Magicstar", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Boku No Neechan Ep09 Amzn Ddp2 0 H 264-Magicstar" + }, + { + "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", + "filename": "Boku.no.Neechan.EP05.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv", + "category": "series", + "title": "Boku No Neechan Ep05 Amzn Ddp2 0 H 264-Magicstar", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Boku No Neechan Ep05 Amzn Ddp2 0 H 264-Magicstar" + }, + { + "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", + "filename": "Boku.no.Neechan.EP01.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv", + "category": "series", + "title": "Boku No Neechan Ep01 Amzn Ddp2 0 H 264-Magicstar", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Boku No Neechan Ep01 Amzn Ddp2 0 H 264-Magicstar" + }, + { + "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", + "filename": "Boku.no.Neechan.EP04.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv", + "category": "series", + "title": "Boku No Neechan Ep04 Amzn Ddp2 0 H 264-Magicstar", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Boku No Neechan Ep04 Amzn Ddp2 0 H 264-Magicstar" + }, + { + "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", + "filename": "Boku.no.Neechan.EP08.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv", + "category": "series", + "title": "Boku No Neechan Ep08 Amzn Ddp2 0 H 264-Magicstar", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Boku No Neechan Ep08 Amzn Ddp2 0 H 264-Magicstar" + }, + { + "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", + "filename": "The.Night.Agent.S01E05.The.Marionette.1080p.NF.WEB-DL.DDP5.1.Atmos.H.264-WDYM.mkv", + "category": "series", + "title": "The Night Agent", + "season": 1, + "episodes": [ + 5 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:129552", + "title_zh": "暗夜情报员", + "title_en": "The Night Agent", + "translation_source": "tmdb", + "reputation_score": 7.7, + "reputation_votes": 1038, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"129552\"}" + }, + "display_title": "暗夜情报员 The Night Agent" + }, + { + "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", + "filename": "The.Night.Agent.S01E01.The.Call.1080p.NF.WEB-DL.DDP5.1.Atmos.H.264-WDYM.mkv", + "category": "series", + "title": "The Night Agent", + "season": 1, + "episodes": [ + 1 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:129552", + "title_zh": "暗夜情报员", + "title_en": "The Night Agent", + "translation_source": "tmdb", + "reputation_score": 7.7, + "reputation_votes": 1038, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"129552\"}" + }, + "display_title": "暗夜情报员 The Night Agent" + }, + { + "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", + "filename": "The.Night.Agent.S01E10.Fathers.1080p.NF.WEB-DL.DDP5.1.Atmos.H.264-WDYM.mkv", + "category": "series", + "title": "The Night Agent", + "season": 1, + "episodes": [ + 10 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:129552", + "title_zh": "暗夜情报员", + "title_en": "The Night Agent", + "translation_source": "tmdb", + "reputation_score": 7.7, + "reputation_votes": 1038, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"129552\"}" + }, + "display_title": "暗夜情报员 The Night Agent" + }, + { + "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", + "filename": "The.Night.Agent.S01E09.The.Devil.We.Know.1080p.NF.WEB-DL.DDP5.1.Atmos.H.264-WDYM.mkv", + "category": "series", + "title": "The Night Agent", + "season": 1, + "episodes": [ + 9 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:129552", + "title_zh": "暗夜情报员", + "title_en": "The Night Agent", + "translation_source": "tmdb", + "reputation_score": 7.7, + "reputation_votes": 1038, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"129552\"}" + }, + "display_title": "暗夜情报员 The Night Agent" + }, + { + "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", + "filename": "The.Night.Agent.S01E07.Best.Served.Cold.REPACK.1080p.NF.WEB-DL.DDP5.1.Atmos.H.264-WDYM.mkv", + "category": "series", + "title": "The Night Agent", + "season": 1, + "episodes": [ + 7 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:129552", + "title_zh": "暗夜情报员", + "title_en": "The Night Agent", + "translation_source": "tmdb", + "reputation_score": 7.7, + "reputation_votes": 1038, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"129552\"}" + }, + "display_title": "暗夜情报员 The Night Agent" + }, + { + "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", + "filename": "The.Night.Agent.S01E06.Fathoms.1080p.NF.WEB-DL.DDP5.1.Atmos.H.264-WDYM.mkv", + "category": "series", + "title": "The Night Agent", + "season": 1, + "episodes": [ + 6 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:129552", + "title_zh": "暗夜情报员", + "title_en": "The Night Agent", + "translation_source": "tmdb", + "reputation_score": 7.7, + "reputation_votes": 1038, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"129552\"}" + }, + "display_title": "暗夜情报员 The Night Agent" + }, + { + "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", + "filename": "The.Night.Agent.S01E04.Eyes.Only.1080p.NF.WEB-DL.DDP5.1.Atmos.H.264-WDYM.mkv", + "category": "series", + "title": "The Night Agent", + "season": 1, + "episodes": [ + 4 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:129552", + "title_zh": "暗夜情报员", + "title_en": "The Night Agent", + "translation_source": "tmdb", + "reputation_score": 7.7, + "reputation_votes": 1038, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"129552\"}" + }, + "display_title": "暗夜情报员 The Night Agent" + }, + { + "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", + "filename": "The.Night.Agent.S01E02.Redial.1080p.NF.WEB-DL.DDP5.1.Atmos.H.264-WDYM.mkv", + "category": "series", + "title": "The Night Agent", + "season": 1, + "episodes": [ + 2 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:129552", + "title_zh": "暗夜情报员", + "title_en": "The Night Agent", + "translation_source": "tmdb", + "reputation_score": 7.7, + "reputation_votes": 1038, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"129552\"}" + }, + "display_title": "暗夜情报员 The Night Agent" + }, + { + "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", + "filename": "The.Night.Agent.S01E03.The.Zookeeper.1080p.NF.WEB-DL.DDP5.1.Atmos.H.264-WDYM.mkv", + "category": "series", + "title": "The Night Agent", + "season": 1, + "episodes": [ + 3 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:129552", + "title_zh": "暗夜情报员", + "title_en": "The Night Agent", + "translation_source": "tmdb", + "reputation_score": 7.7, + "reputation_votes": 1038, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"129552\"}" + }, + "display_title": "暗夜情报员 The Night Agent" + }, + { + "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", + "filename": "The.Night.Agent.S01E08.Redux.1080p.NF.WEB-DL.DDP5.1.Atmos.H.264-WDYM.mkv", + "category": "series", + "title": "The Night Agent", + "season": 1, + "episodes": [ + 8 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:129552", + "title_zh": "暗夜情报员", + "title_en": "The Night Agent", + "translation_source": "tmdb", + "reputation_score": 7.7, + "reputation_votes": 1038, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"129552\"}" + }, + "display_title": "暗夜情报员 The Night Agent" + }, + { + "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", + "filename": "City.Hunter.2024.1080p.NF.WEB-DL.DDP5.1.Atmos.H264-HHWEB.mkv", + "category": "series", + "title": "City Hunter 2024 Nf Ddp5 1 Atmos -Hhweb", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "City Hunter 2024 Nf Ddp5 1 Atmos -Hhweb" + }, + { + "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", + "filename": "The.Green.Planet.E03.2022.2160p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi.mkv", + "category": "series", + "title": "The Green Planet E03 2022 Atmos Truehd7 1-Wiki", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "The Green Planet E03 2022 Atmos Truehd7 1-Wiki" + }, + { + "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", + "filename": "The.Green.Planet.E02.2022.2160p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi.mkv", + "category": "series", + "title": "The Green Planet E02 2022 Atmos Truehd7 1-Wiki", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "The Green Planet E02 2022 Atmos Truehd7 1-Wiki" + }, + { + "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", + "filename": "The.Green.Planet.E05.2022.2160p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi.mkv", + "category": "series", + "title": "The Green Planet E05 2022 Atmos Truehd7 1-Wiki", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "The Green Planet E05 2022 Atmos Truehd7 1-Wiki" + }, + { + "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", + "filename": "The.Green.Planet.E01.2022.2160p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi.mkv", + "category": "series", + "title": "The Green Planet E01 2022 Atmos Truehd7 1-Wiki", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "The Green Planet E01 2022 Atmos Truehd7 1-Wiki" + }, + { + "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", + "filename": "The.Green.Planet.E04.2022.2160p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi.mkv", + "category": "series", + "title": "The Green Planet E04 2022 Atmos Truehd7 1-Wiki", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "The Green Planet E04 2022 Atmos Truehd7 1-Wiki" + }, + { + "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", + "filename": "The.Green.Planet.2022.2160p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi.Sample.mkv", + "category": "series", + "title": "The Green Planet 2022 Atmos Truehd7 1-Wiki Sample", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "The Green Planet 2022 Atmos Truehd7 1-Wiki Sample" + }, + { + "path": "/mnt/Downloads/series/RoOT 第02話 1080p KKTV WEB-DL H264 AAC.mkv", + "filename": "RoOT 第02話 1080p KKTV WEB-DL H264 AAC.mkv", + "category": "series", + "title": "Root 第02話 Kktv", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Root 第02話 Kktv" + }, + { + "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", + "filename": "Shitsuren.Meshi.E07.2022.Amazon.WEB-DL.1080p.H264.DDP-HDCTV.mkv", + "category": "series", + "title": "Shitsuren Meshi E07 2022 Amazon Ddp-Hdctv", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Shitsuren Meshi E07 2022 Amazon Ddp-Hdctv" + }, + { + "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", + "filename": "Shitsuren.Meshi.E01.2022.Amazon.WEB-DL.1080p.H264.DDP-HDCTV.mkv", + "category": "series", + "title": "Shitsuren Meshi E01 2022 Amazon Ddp-Hdctv", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Shitsuren Meshi E01 2022 Amazon Ddp-Hdctv" + }, + { + "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", + "filename": "Shitsuren.Meshi.E10.2022.Amazon.WEB-DL.1080p.H264.DDP-HDCTV.mkv", + "category": "series", + "title": "Shitsuren Meshi E10 2022 Amazon Ddp-Hdctv", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Shitsuren Meshi E10 2022 Amazon Ddp-Hdctv" + }, + { + "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", + "filename": "Shitsuren.Meshi.E06.2022.Amazon.WEB-DL.1080p.H264.DDP-HDCTV.mkv", + "category": "series", + "title": "Shitsuren Meshi E06 2022 Amazon Ddp-Hdctv", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Shitsuren Meshi E06 2022 Amazon Ddp-Hdctv" + }, + { + "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", + "filename": "Shitsuren.Meshi.E09.2022.Amazon.WEB-DL.1080p.H264.DDP-HDCTV.mkv", + "category": "series", + "title": "Shitsuren Meshi E09 2022 Amazon Ddp-Hdctv", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Shitsuren Meshi E09 2022 Amazon Ddp-Hdctv" + }, + { + "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", + "filename": "Shitsuren.Meshi.E03.2022.Amazon.WEB-DL.1080p.H264.DDP-HDCTV.mkv", + "category": "series", + "title": "Shitsuren Meshi E03 2022 Amazon Ddp-Hdctv", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Shitsuren Meshi E03 2022 Amazon Ddp-Hdctv" + }, + { + "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", + "filename": "Shitsuren.Meshi.E05.2022.Amazon.WEB-DL.1080p.H264.DDP-HDCTV.mkv", + "category": "series", + "title": "Shitsuren Meshi E05 2022 Amazon Ddp-Hdctv", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Shitsuren Meshi E05 2022 Amazon Ddp-Hdctv" + }, + { + "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", + "filename": "Shitsuren.Meshi.E08.2022.Amazon.WEB-DL.1080p.H264.DDP-HDCTV.mkv", + "category": "series", + "title": "Shitsuren Meshi E08 2022 Amazon Ddp-Hdctv", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Shitsuren Meshi E08 2022 Amazon Ddp-Hdctv" + }, + { + "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", + "filename": "Shitsuren.Meshi.E02.2022.Amazon.WEB-DL.1080p.H264.DDP-HDCTV.mkv", + "category": "series", + "title": "Shitsuren Meshi E02 2022 Amazon Ddp-Hdctv", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Shitsuren Meshi E02 2022 Amazon Ddp-Hdctv" + }, + { + "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", + "filename": "Shitsuren.Meshi.E04.2022.Amazon.WEB-DL.1080p.H264.DDP-HDCTV.mkv", + "category": "series", + "title": "Shitsuren Meshi E04 2022 Amazon Ddp-Hdctv", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Shitsuren Meshi E04 2022 Amazon Ddp-Hdctv" + }, + { + "path": "/mnt/Downloads/series/家政婦のミタ 全11話+放送直前+特別版/【ドラマ】 家政婦のミタ 第08話 「私の過去、すべてお話します」 (1440x1080i x264-AAC).mp4", + "filename": "【ドラマ】 家政婦のミタ 第08話 「私の過去、すべてお話します」 (1440x1080i x264-AAC).mp4", + "category": "series", + "title": "【ドラマ】 家政婦のミタ 第08話 「私の過去、すべてお話します」 (14", + "season": 40, + "episodes": [ + 10 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "【ドラマ】 家政婦のミタ 第08話 「私の過去、すべてお話します」 (14" + }, + { + "path": "/mnt/Downloads/series/家政婦のミタ 全11話+放送直前+特別版/【ドラマ】 家政婦のミタ 第07話 「死ぬまで二度と笑いません…」 (1440x1080i x264-AAC).mp4", + "filename": "【ドラマ】 家政婦のミタ 第07話 「死ぬまで二度と笑いません…」 (1440x1080i x264-AAC).mp4", + "category": "series", + "title": "【ドラマ】 家政婦のミタ 第07話 「死ぬまで二度と笑いません…」 (14", + "season": 40, + "episodes": [ + 10 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "【ドラマ】 家政婦のミタ 第07話 「死ぬまで二度と笑いません…」 (14" + }, + { + "path": "/mnt/Downloads/series/家政婦のミタ 全11話+放送直前+特別版/【ドラマ】 家政婦のミタ 第05話 「全部脱いで!…承知しました」 (1440x1080i x264-AAC).mp4", + "filename": "【ドラマ】 家政婦のミタ 第05話 「全部脱いで!…承知しました」 (1440x1080i x264-AAC).mp4", + "category": "series", + "title": "【ドラマ】 家政婦のミタ 第05話 「全部脱いで!…承知しました」 (14", + "season": 40, + "episodes": [ + 10 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "【ドラマ】 家政婦のミタ 第05話 「全部脱いで!…承知しました」 (14" + }, + { + "path": "/mnt/Downloads/series/家政婦のミタ 全11話+放送直前+特別版/【ドラマ】 家政婦のミタ 第06話 「王の監禁」 (1440x1080i x264-AAC).mp4", + "filename": "【ドラマ】 家政婦のミタ 第06話 「王の監禁」 (1440x1080i x264-AAC).mp4", + "category": "series", + "title": "【ドラマ】 家政婦のミタ 第06話 「王の監禁」 (14", + "season": 40, + "episodes": [ + 10 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "【ドラマ】 家政婦のミタ 第06話 「王の監禁」 (14" + }, + { + "path": "/mnt/Downloads/series/家政婦のミタ 全11話+放送直前+特別版/【ドラマ】 家政婦のミタ 第09話 「最終章の始まり!一筋の涙…炎の中で私を死なせて」 (1440x1080i x264-AAC).mp4", + "filename": "【ドラマ】 家政婦のミタ 第09話 「最終章の始まり!一筋の涙…炎の中で私を死なせて」 (1440x1080i x264-AAC).mp4", + "category": "series", + "title": "【ドラマ】 家政婦のミタ 第09話 「最終章の始まり!一筋の涙…炎の中で私を死なせて」 (14", + "season": 40, + "episodes": [ + 10 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "【ドラマ】 家政婦のミタ 第09話 「最終章の始まり!一筋の涙…炎の中で私を死なせて」 (14" + }, + { + "path": "/mnt/Downloads/series/家政婦のミタ 全11話+放送直前+特別版/【ドラマ】 家政婦のミタ 第10話 「息子よ、夫よ、お願い…私も天国に連れて行って!」 (1440x1080i x264-AAC).mp4", + "filename": "【ドラマ】 家政婦のミタ 第10話 「息子よ、夫よ、お願い…私も天国に連れて行って!」 (1440x1080i x264-AAC).mp4", + "category": "series", + "title": "【ドラマ】 家政婦のミタ 第10話 「息子よ、夫よ、お願い…私も天国に連れて行って!」 (14", + "season": 40, + "episodes": [ + 10 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "【ドラマ】 家政婦のミタ 第10話 「息子よ、夫よ、お願い…私も天国に連れて行って!」 (14" + }, + { + "path": "/mnt/Downloads/series/家政婦のミタ 全11話+放送直前+特別版/【ドラマ番宣】 家政婦のミタ が見たくなる! 放送直前!みどころ大公開SP!! (1440x1080i x264-AAC).mp4", + "filename": "【ドラマ番宣】 家政婦のミタ が見たくなる! 放送直前!みどころ大公開SP!! (1440x1080i x264-AAC).mp4", + "category": "series", + "title": "【ドラマ番宣】 家政婦のミタ が見たくなる! 放送直前!みどころ大公開Sp!! (14", + "season": 40, + "episodes": [ + 10 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "【ドラマ番宣】 家政婦のミタ が見たくなる! 放送直前!みどころ大公開Sp!! (14" + }, + { + "path": "/mnt/Downloads/series/家政婦のミタ 全11話+放送直前+特別版/【ドラマ】 さよなら 家政婦のミタ 特別版 「最終回への序章…三田灯が亡き最愛の夫と息子に向き合う新撮場面公開!」 (1440x1080i x264-AAC).mp4", + "filename": "【ドラマ】 さよなら 家政婦のミタ 特別版 「最終回への序章…三田灯が亡き最愛の夫と息子に向き合う新撮場面公開!」 (1440x1080i x264-AAC).mp4", + "category": "series", + "title": "【ドラマ】 さよなら 家政婦のミタ 特別版 「最終回への序章…三田灯が亡き最愛の夫と息子に向き合う新撮場面公開!」 (14", + "season": 40, + "episodes": [ + 10 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "【ドラマ】 さよなら 家政婦のミタ 特別版 「最終回への序章…三田灯が亡き最愛の夫と息子に向き合う新撮場面公開!」 (14" + }, + { + "path": "/mnt/Downloads/series/家政婦のミタ 全11話+放送直前+特別版/【ドラマ】 家政婦のミタ 第02話 「僕を裏切ったアイツを殺して」 (1440x1080i x264-AAC).mp4", + "filename": "【ドラマ】 家政婦のミタ 第02話 「僕を裏切ったアイツを殺して」 (1440x1080i x264-AAC).mp4", + "category": "series", + "title": "【ドラマ】 家政婦のミタ 第02話 「僕を裏切ったアイツを殺して」 (14", + "season": 40, + "episodes": [ + 10 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "【ドラマ】 家政婦のミタ 第02話 「僕を裏切ったアイツを殺して」 (14" + }, + { + "path": "/mnt/Downloads/series/家政婦のミタ 全11話+放送直前+特別版/【ドラマ】 家政婦のミタ 第03話 「母を殺した父の正体を暴いて」 (1440x1080i x264-AAC).mp4", + "filename": "【ドラマ】 家政婦のミタ 第03話 「母を殺した父の正体を暴いて」 (1440x1080i x264-AAC).mp4", + "category": "series", + "title": "【ドラマ】 家政婦のミタ 第03話 「母を殺した父の正体を暴いて」 (14", + "season": 40, + "episodes": [ + 10 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "【ドラマ】 家政婦のミタ 第03話 「母を殺した父の正体を暴いて」 (14" + }, + { + "path": "/mnt/Downloads/series/家政婦のミタ 全11話+放送直前+特別版/【ドラマ】 家政婦のミタ 第11話(終) 「最終回への序章…三田灯が亡き最愛の夫と息子に向き合う新撮場面公開!」 (1440x1080i x264-AAC).mp4", + "filename": "【ドラマ】 家政婦のミタ 第11話(終) 「最終回への序章…三田灯が亡き最愛の夫と息子に向き合う新撮場面公開!」 (1440x1080i x264-AAC).mp4", + "category": "series", + "title": "【ドラマ】 家政婦のミタ 第11話(終) 「最終回への序章…三田灯が亡き最愛の夫と息子に向き合う新撮場面公開!」 (14", + "season": 40, + "episodes": [ + 10 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "【ドラマ】 家政婦のミタ 第11話(終) 「最終回への序章…三田灯が亡き最愛の夫と息子に向き合う新撮場面公開!」 (14" + }, + { + "path": "/mnt/Downloads/series/家政婦のミタ 全11話+放送直前+特別版/【ドラマ】 家政婦のミタ 第04話 「あなたの愛娘を誘拐しました」 (1440x1080i x264-AAC).mp4", + "filename": "【ドラマ】 家政婦のミタ 第04話 「あなたの愛娘を誘拐しました」 (1440x1080i x264-AAC).mp4", + "category": "series", + "title": "【ドラマ】 家政婦のミタ 第04話 「あなたの愛娘を誘拐しました」 (14", + "season": 40, + "episodes": [ + 10 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "【ドラマ】 家政婦のミタ 第04話 「あなたの愛娘を誘拐しました」 (14" + }, + { + "path": "/mnt/Downloads/series/家政婦のミタ 全11話+放送直前+特別版/【ドラマ】 家政婦のミタ 第01話 「崩壊寸前の家庭にやって来た笑顔を忘れた氷の女…」 (1440x1080i x264-AAC).mp4", + "filename": "【ドラマ】 家政婦のミタ 第01話 「崩壊寸前の家庭にやって来た笑顔を忘れた氷の女…」 (1440x1080i x264-AAC).mp4", + "category": "series", + "title": "【ドラマ】 家政婦のミタ 第01話 「崩壊寸前の家庭にやって来た笑顔を忘れた氷の女…」 (14", + "season": 40, + "episodes": [ + 10 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "【ドラマ】 家政婦のミタ 第01話 「崩壊寸前の家庭にやって来た笑顔を忘れた氷の女…」 (14" + }, + { + "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", + "filename": "[黑白厨师:料理阶级战争].Culinary.Class.Wars.S02E10.2025.1080p.NF.WEB-DL.x264.DDP.5.1-CMCTV.mkv", + "category": "series", + "title": "[黑白厨师:料理阶级战争] Culinary Class Wars", + "season": 2, + "episodes": [ + 10 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:245684", + "title_zh": "黑白大厨:料理阶级大战", + "title_en": "흑백요리사: 요리 계급 전쟁", + "translation_source": "tmdb", + "reputation_score": 8.5, + "reputation_votes": 61, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"245684\"}" + }, + "display_title": "黑白大厨:料理阶级大战 흑백요리사: 요리 계급 전쟁" + }, + { + "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", + "filename": "[黑白厨师:料理阶级战争].Culinary.Class.Wars.S02E07.2025.1080p.NF.WEB-DL.x264.DDP.5.1-CMCTV.mkv", + "category": "series", + "title": "[黑白厨师:料理阶级战争] Culinary Class Wars", + "season": 2, + "episodes": [ + 7 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:245684", + "title_zh": "黑白大厨:料理阶级大战", + "title_en": "흑백요리사: 요리 계급 전쟁", + "translation_source": "tmdb", + "reputation_score": 8.5, + "reputation_votes": 61, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"245684\"}" + }, + "display_title": "黑白大厨:料理阶级大战 흑백요리사: 요리 계급 전쟁" + }, + { + "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", + "filename": "[黑白厨师:料理阶级战争].Culinary.Class.Wars.S02E01.2025.1080p.NF.WEB-DL.x264.DDP.5.1-CMCTV.mkv", + "category": "series", + "title": "[黑白厨师:料理阶级战争] Culinary Class Wars", + "season": 2, + "episodes": [ + 1 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:245684", + "title_zh": "黑白大厨:料理阶级大战", + "title_en": "흑백요리사: 요리 계급 전쟁", + "translation_source": "tmdb", + "reputation_score": 8.5, + "reputation_votes": 61, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"245684\"}" + }, + "display_title": "黑白大厨:料理阶级大战 흑백요리사: 요리 계급 전쟁" + }, + { + "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", + "filename": "[黑白厨师:料理阶级战争].Culinary.Class.Wars.S02E11.2025.1080p.NF.WEB-DL.x264.DDP.5.1-CMCTV.mkv", + "category": "series", + "title": "[黑白厨师:料理阶级战争] Culinary Class Wars", + "season": 2, + "episodes": [ + 11 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:245684", + "title_zh": "黑白大厨:料理阶级大战", + "title_en": "흑백요리사: 요리 계급 전쟁", + "translation_source": "tmdb", + "reputation_score": 8.5, + "reputation_votes": 61, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"245684\"}" + }, + "display_title": "黑白大厨:料理阶级大战 흑백요리사: 요리 계급 전쟁" + }, + { + "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", + "filename": "[黑白厨师:料理阶级战争].Culinary.Class.Wars.S02E06.2025.1080p.NF.WEB-DL.x264.DDP.5.1-CMCTV.mkv", + "category": "series", + "title": "[黑白厨师:料理阶级战争] Culinary Class Wars", + "season": 2, + "episodes": [ + 6 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:245684", + "title_zh": "黑白大厨:料理阶级大战", + "title_en": "흑백요리사: 요리 계급 전쟁", + "translation_source": "tmdb", + "reputation_score": 8.5, + "reputation_votes": 61, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"245684\"}" + }, + "display_title": "黑白大厨:料理阶级大战 흑백요리사: 요리 계급 전쟁" + }, + { + "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", + "filename": "[黑白厨师:料理阶级战争].Culinary.Class.Wars.S02E12.2025.1080p.NF.WEB-DL.x264.DDP.5.1-CMCTV.mkv", + "category": "series", + "title": "[黑白厨师:料理阶级战争] Culinary Class Wars", + "season": 2, + "episodes": [ + 12 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:245684", + "title_zh": "黑白大厨:料理阶级大战", + "title_en": "흑백요리사: 요리 계급 전쟁", + "translation_source": "tmdb", + "reputation_score": 8.5, + "reputation_votes": 61, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"245684\"}" + }, + "display_title": "黑白大厨:料理阶级大战 흑백요리사: 요리 계급 전쟁" + }, + { + "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", + "filename": "[黑白厨师:料理阶级战争].Culinary.Class.Wars.S02E09.2025.1080p.NF.WEB-DL.x264.DDP.5.1-CMCTV.mkv", + "category": "series", + "title": "[黑白厨师:料理阶级战争] Culinary Class Wars", + "season": 2, + "episodes": [ + 9 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:245684", + "title_zh": "黑白大厨:料理阶级大战", + "title_en": "흑백요리사: 요리 계급 전쟁", + "translation_source": "tmdb", + "reputation_score": 8.5, + "reputation_votes": 61, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"245684\"}" + }, + "display_title": "黑白大厨:料理阶级大战 흑백요리사: 요리 계급 전쟁" + }, + { + "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", + "filename": "[黑白厨师:料理阶级战争].Culinary.Class.Wars.S02E03.2025.1080p.NF.WEB-DL.x264.DDP.5.1-CMCTV.mkv", + "category": "series", + "title": "[黑白厨师:料理阶级战争] Culinary Class Wars", + "season": 2, + "episodes": [ + 3 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:245684", + "title_zh": "黑白大厨:料理阶级大战", + "title_en": "흑백요리사: 요리 계급 전쟁", + "translation_source": "tmdb", + "reputation_score": 8.5, + "reputation_votes": 61, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"245684\"}" + }, + "display_title": "黑白大厨:料理阶级大战 흑백요리사: 요리 계급 전쟁" + }, + { + "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", + "filename": "[黑白厨师:料理阶级战争].Culinary.Class.Wars.S02E05.2025.1080p.NF.WEB-DL.x264.DDP.5.1-CMCTV.mkv", + "category": "series", + "title": "[黑白厨师:料理阶级战争] Culinary Class Wars", + "season": 2, + "episodes": [ + 5 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:245684", + "title_zh": "黑白大厨:料理阶级大战", + "title_en": "흑백요리사: 요리 계급 전쟁", + "translation_source": "tmdb", + "reputation_score": 8.5, + "reputation_votes": 61, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"245684\"}" + }, + "display_title": "黑白大厨:料理阶级大战 흑백요리사: 요리 계급 전쟁" + }, + { + "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", + "filename": "[黑白厨师:料理阶级战争].Culinary.Class.Wars.S02E13.2025.1080p.NF.WEB-DL.x264.DDP.5.1-CMCTV.mkv", + "category": "series", + "title": "[黑白厨师:料理阶级战争] Culinary Class Wars", + "season": 2, + "episodes": [ + 13 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:245684", + "title_zh": "黑白大厨:料理阶级大战", + "title_en": "흑백요리사: 요리 계급 전쟁", + "translation_source": "tmdb", + "reputation_score": 8.5, + "reputation_votes": 61, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"245684\"}" + }, + "display_title": "黑白大厨:料理阶级大战 흑백요리사: 요리 계급 전쟁" + }, + { + "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", + "filename": "[黑白厨师:料理阶级战争].Culinary.Class.Wars.S02E08.2025.1080p.NF.WEB-DL.x264.DDP.5.1-CMCTV.mkv", + "category": "series", + "title": "[黑白厨师:料理阶级战争] Culinary Class Wars", + "season": 2, + "episodes": [ + 8 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:245684", + "title_zh": "黑白大厨:料理阶级大战", + "title_en": "흑백요리사: 요리 계급 전쟁", + "translation_source": "tmdb", + "reputation_score": 8.5, + "reputation_votes": 61, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"245684\"}" + }, + "display_title": "黑白大厨:料理阶级大战 흑백요리사: 요리 계급 전쟁" + }, + { + "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", + "filename": "[黑白厨师:料理阶级战争].Culinary.Class.Wars.S02E02.2025.1080p.NF.WEB-DL.x264.DDP.5.1-CMCTV.mkv", + "category": "series", + "title": "[黑白厨师:料理阶级战争] Culinary Class Wars", + "season": 2, + "episodes": [ + 2 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:245684", + "title_zh": "黑白大厨:料理阶级大战", + "title_en": "흑백요리사: 요리 계급 전쟁", + "translation_source": "tmdb", + "reputation_score": 8.5, + "reputation_votes": 61, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"245684\"}" + }, + "display_title": "黑白大厨:料理阶级大战 흑백요리사: 요리 계급 전쟁" + }, + { + "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", + "filename": "[黑白厨师:料理阶级战争].Culinary.Class.Wars.S02E04.2025.1080p.NF.WEB-DL.x264.DDP.5.1-CMCTV.mkv", + "category": "series", + "title": "[黑白厨师:料理阶级战争] Culinary Class Wars", + "season": 2, + "episodes": [ + 4 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:245684", + "title_zh": "黑白大厨:料理阶级大战", + "title_en": "흑백요리사: 요리 계급 전쟁", + "translation_source": "tmdb", + "reputation_score": 8.5, + "reputation_votes": 61, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"245684\"}" + }, + "display_title": "黑白大厨:料理阶级大战 흑백요리사: 요리 계급 전쟁" + }, + { + "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", + "filename": "Last.Samurai.Standing.S01E01.2025.1080p.NF.WEB-DL.DDP5.1.H264-HHWEB.mkv", + "category": "series", + "title": "Last Samurai Standing", + "season": 1, + "episodes": [ + 1 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:252193", + "title_zh": "武士生死斗", + "title_en": "イクサガミ", + "translation_source": "tmdb", + "reputation_score": 7.818, + "reputation_votes": 176, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"252193\"}" + }, + "display_title": "武士生死斗 イクサガミ" + }, + { + "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", + "filename": "Last.Samurai.Standing.S01E02.2025.1080p.NF.WEB-DL.DDP5.1.H264-HHWEB.mkv", + "category": "series", + "title": "Last Samurai Standing", + "season": 1, + "episodes": [ + 2 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:252193", + "title_zh": "武士生死斗", + "title_en": "イクサガミ", + "translation_source": "tmdb", + "reputation_score": 7.818, + "reputation_votes": 176, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"252193\"}" + }, + "display_title": "武士生死斗 イクサガミ" + }, + { + "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", + "filename": "Last.Samurai.Standing.S01E03.2025.1080p.NF.WEB-DL.DDP5.1.H264-HHWEB.mkv", + "category": "series", + "title": "Last Samurai Standing", + "season": 1, + "episodes": [ + 3 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:252193", + "title_zh": "武士生死斗", + "title_en": "イクサガミ", + "translation_source": "tmdb", + "reputation_score": 7.818, + "reputation_votes": 176, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"252193\"}" + }, + "display_title": "武士生死斗 イクサガミ" + }, + { + "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", + "filename": "Last.Samurai.Standing.S01E04.2025.1080p.NF.WEB-DL.DDP5.1.H264-HHWEB.mkv", + "category": "series", + "title": "Last Samurai Standing", + "season": 1, + "episodes": [ + 4 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:252193", + "title_zh": "武士生死斗", + "title_en": "イクサガミ", + "translation_source": "tmdb", + "reputation_score": 7.818, + "reputation_votes": 176, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"252193\"}" + }, + "display_title": "武士生死斗 イクサガミ" + }, + { + "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", + "filename": "Last.Samurai.Standing.S01E05.2025.1080p.NF.WEB-DL.DDP5.1.H264-HHWEB.mkv", + "category": "series", + "title": "Last Samurai Standing", + "season": 1, + "episodes": [ + 5 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:252193", + "title_zh": "武士生死斗", + "title_en": "イクサガミ", + "translation_source": "tmdb", + "reputation_score": 7.818, + "reputation_votes": 176, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"252193\"}" + }, + "display_title": "武士生死斗 イクサガミ" + }, + { + "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", + "filename": "Last.Samurai.Standing.S01E06.2025.1080p.NF.WEB-DL.DDP5.1.H264-HHWEB.mkv", + "category": "series", + "title": "Last Samurai Standing", + "season": 1, + "episodes": [ + 6 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:252193", + "title_zh": "武士生死斗", + "title_en": "イクサガミ", + "translation_source": "tmdb", + "reputation_score": 7.818, + "reputation_votes": 176, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"252193\"}" + }, + "display_title": "武士生死斗 イクサガミ" + }, + { + "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", + "filename": "Vigilante.S01E07.Episode.7.2160p.Disney+.WEB-DL.DDP.5.1.HDR10.H.265-CHDWEB.mkv", + "category": "series", + "title": "Vigilante", + "season": 1, + "episodes": [ + 7 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:137328", + "title_zh": "Vigilante", + "title_en": "Vigilante", + "translation_source": "tmdb", + "reputation_score": 0.0, + "reputation_votes": 1, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"137328\"}" + }, + "display_title": "Vigilante" + }, + { + "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", + "filename": "Vigilante.S01E03.Episode.3.2160p.Disney+.WEB-DL.DDP.5.1.HDR10.H.265-CHDWEB.mkv", + "category": "series", + "title": "Vigilante", + "season": 1, + "episodes": [ + 3 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:137328", + "title_zh": "Vigilante", + "title_en": "Vigilante", + "translation_source": "tmdb", + "reputation_score": 0.0, + "reputation_votes": 1, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"137328\"}" + }, + "display_title": "Vigilante" + }, + { + "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", + "filename": "Vigilante.S01E02.Episode.2.2160p.Disney+.WEB-DL.DDP.5.1.HDR10.H.265-CHDWEB.mkv", + "category": "series", + "title": "Vigilante", + "season": 1, + "episodes": [ + 2 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:137328", + "title_zh": "Vigilante", + "title_en": "Vigilante", + "translation_source": "tmdb", + "reputation_score": 0.0, + "reputation_votes": 1, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"137328\"}" + }, + "display_title": "Vigilante" + }, + { + "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", + "filename": "Vigilante.S01E06.Episode.6.2160p.Disney+.WEB-DL.DDP.5.1.HDR10.H.265-CHDWEB.mkv", + "category": "series", + "title": "Vigilante", + "season": 1, + "episodes": [ + 6 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:137328", + "title_zh": "Vigilante", + "title_en": "Vigilante", + "translation_source": "tmdb", + "reputation_score": 0.0, + "reputation_votes": 1, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"137328\"}" + }, + "display_title": "Vigilante" + }, + { + "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", + "filename": "Vigilante.S01E04.Episode.4.2160p.Disney+.WEB-DL.DDP.5.1.HDR10.H.265-CHDWEB.mkv", + "category": "series", + "title": "Vigilante", + "season": 1, + "episodes": [ + 4 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:137328", + "title_zh": "Vigilante", + "title_en": "Vigilante", + "translation_source": "tmdb", + "reputation_score": 0.0, + "reputation_votes": 1, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"137328\"}" + }, + "display_title": "Vigilante" + }, + { + "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", + "filename": "Vigilante.S01E05.Episode.5.2160p.Disney+.WEB-DL.DDP.5.1.HDR10.H.265-CHDWEB.mkv", + "category": "series", + "title": "Vigilante", + "season": 1, + "episodes": [ + 5 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:137328", + "title_zh": "Vigilante", + "title_en": "Vigilante", + "translation_source": "tmdb", + "reputation_score": 0.0, + "reputation_votes": 1, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"137328\"}" + }, + "display_title": "Vigilante" + }, + { + "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", + "filename": "Vigilante.S01E08.Episode.8.2160p.Disney+.WEB-DL.DDP.5.1.HDR10.H.265-CHDWEB.mkv", + "category": "series", + "title": "Vigilante", + "season": 1, + "episodes": [ + 8 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:137328", + "title_zh": "Vigilante", + "title_en": "Vigilante", + "translation_source": "tmdb", + "reputation_score": 0.0, + "reputation_votes": 1, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"137328\"}" + }, + "display_title": "Vigilante" + }, + { + "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", + "filename": "Vigilante.S01E01.Episode.1.2160p.Disney+.WEB-DL.DDP.5.1.HDR10.H.265-CHDWEB.mkv", + "category": "series", + "title": "Vigilante", + "season": 1, + "episodes": [ + 1 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:137328", + "title_zh": "Vigilante", + "title_en": "Vigilante", + "translation_source": "tmdb", + "reputation_score": 0.0, + "reputation_votes": 1, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"137328\"}" + }, + "display_title": "Vigilante" + }, + { + "path": "/mnt/Downloads/series/連続ドラマW 湊かなえ「落日」 Complete 1080p HDTV x264 AAC/連続ドラマW 湊かなえ「落日」 第3話 1080p HDTV x264 AAC.mkv", + "filename": "連続ドラマW 湊かなえ「落日」 第3話 1080p HDTV x264 AAC.mkv", + "category": "series", + "title": "連続ドラマW 湊かなえ「落日」 第3話", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "連続ドラマW 湊かなえ「落日」 第3話" + }, + { + "path": "/mnt/Downloads/series/連続ドラマW 湊かなえ「落日」 Complete 1080p HDTV x264 AAC/連続ドラマW 湊かなえ「落日」 第2話 1080p HDTV x264 AAC.mkv", + "filename": "連続ドラマW 湊かなえ「落日」 第2話 1080p HDTV x264 AAC.mkv", + "category": "series", + "title": "連続ドラマW 湊かなえ「落日」 第2話", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "連続ドラマW 湊かなえ「落日」 第2話" + }, + { + "path": "/mnt/Downloads/series/連続ドラマW 湊かなえ「落日」 Complete 1080p HDTV x264 AAC/連続ドラマW 湊かなえ「落日」 第1話 1080p HDTV x264 AAC.mkv", + "filename": "連続ドラマW 湊かなえ「落日」 第1話 1080p HDTV x264 AAC.mkv", + "category": "series", + "title": "連続ドラマW 湊かなえ「落日」 第1話", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "連続ドラマW 湊かなえ「落日」 第1話" + }, + { + "path": "/mnt/Downloads/series/連続ドラマW 湊かなえ「落日」 Complete 1080p HDTV x264 AAC/連続ドラマW 湊かなえ「落日」 第4話 End 1080p HDTV x264 AAC.mkv", + "filename": "連続ドラマW 湊かなえ「落日」 第4話 End 1080p HDTV x264 AAC.mkv", + "category": "series", + "title": "連続ドラマW 湊かなえ「落日」 第4話 End", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "連続ドラマW 湊かなえ「落日」 第4話 End" + }, + { + "path": "/mnt/Downloads/series/教場Ⅱ SP 720p HDTV x264 AAC-DoA/教場Ⅱ 前編 SP 720p HDTV x264 AAC-DoA.mkv", + "filename": "教場Ⅱ 前編 SP 720p HDTV x264 AAC-DoA.mkv", + "category": "series", + "title": "教場Ⅱ 前編 Sp -Doa", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "教場Ⅱ 前編 Sp -Doa" + }, + { + "path": "/mnt/Downloads/series/教場Ⅱ SP 720p HDTV x264 AAC-DoA/教場Ⅱ 後編 SP 720p HDTV x264 AAC-DoA.mkv", + "filename": "教場Ⅱ 後編 SP 720p HDTV x264 AAC-DoA.mkv", + "category": "series", + "title": "教場Ⅱ 後編 Sp -Doa", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "教場Ⅱ 後編 Sp -Doa" + }, + { + "path": "/mnt/Downloads/series/(ドラマ) 時をかけるな、恋人たち 第02話 「10年先の彼女」 (1440x1080i x264-AAC)-DoA.mkv", + "filename": "(ドラマ) 時をかけるな、恋人たち 第02話 「10年先の彼女」 (1440x1080i x264-AAC)-DoA.mkv", + "category": "series", + "title": "(ドラマ) 時をかけるな、恋人たち 第02話 「10年先の彼女」 (14", + "season": 40, + "episodes": [ + 10 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "(ドラマ) 時をかけるな、恋人たち 第02話 「10年先の彼女」 (14" + }, + { + "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", + "filename": "Zero.Day.S01E02.1080p.NF.WEB-DL.H.264-EniaHD.mkv", + "category": "series", + "title": "Zero Day", + "season": 1, + "episodes": [ + 2 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:216082", + "title_zh": "零日风暴", + "title_en": "Zero Day", + "translation_source": "tmdb", + "reputation_score": 6.968, + "reputation_votes": 406, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"216082\"}" + }, + "display_title": "零日风暴 Zero Day" + }, + { + "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", + "filename": "Zero.Day.S01E06.1080p.NF.WEB-DL.H.264-EniaHD.mkv", + "category": "series", + "title": "Zero Day", + "season": 1, + "episodes": [ + 6 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:216082", + "title_zh": "零日风暴", + "title_en": "Zero Day", + "translation_source": "tmdb", + "reputation_score": 6.968, + "reputation_votes": 406, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"216082\"}" + }, + "display_title": "零日风暴 Zero Day" + }, + { + "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", + "filename": "Zero.Day.S01E03.1080p.NF.WEB-DL.H.264-EniaHD.mkv", + "category": "series", + "title": "Zero Day", + "season": 1, + "episodes": [ + 3 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:216082", + "title_zh": "零日风暴", + "title_en": "Zero Day", + "translation_source": "tmdb", + "reputation_score": 6.968, + "reputation_votes": 406, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"216082\"}" + }, + "display_title": "零日风暴 Zero Day" + }, + { + "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", + "filename": "Zero.Day.S01E05.1080p.NF.WEB-DL.H.264-EniaHD.mkv", + "category": "series", + "title": "Zero Day", + "season": 1, + "episodes": [ + 5 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:216082", + "title_zh": "零日风暴", + "title_en": "Zero Day", + "translation_source": "tmdb", + "reputation_score": 6.968, + "reputation_votes": 406, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"216082\"}" + }, + "display_title": "零日风暴 Zero Day" + }, + { + "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", + "filename": "Zero.Day.S01E01.1080p.NF.WEB-DL.H.264-EniaHD.mkv", + "category": "series", + "title": "Zero Day", + "season": 1, + "episodes": [ + 1 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:216082", + "title_zh": "零日风暴", + "title_en": "Zero Day", + "translation_source": "tmdb", + "reputation_score": 6.968, + "reputation_votes": 406, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"216082\"}" + }, + "display_title": "零日风暴 Zero Day" + }, + { + "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", + "filename": "Zero.Day.S01E04.1080p.NF.WEB-DL.H.264-EniaHD.mkv", + "category": "series", + "title": "Zero Day", + "season": 1, + "episodes": [ + 4 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:216082", + "title_zh": "零日风暴", + "title_en": "Zero Day", + "translation_source": "tmdb", + "reputation_score": 6.968, + "reputation_votes": 406, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"216082\"}" + }, + "display_title": "零日风暴 Zero Day" + }, + { + "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", + "filename": "Signal (2016) - S01E09 - Hongwon Dong Case (1080p BluRay x265 Silence).mkv", + "category": "series", + "title": "Signal (2016) -", + "season": 1, + "episodes": [ + 9 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Signal (2016) -" + }, + { + "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", + "filename": "Signal (2016) - S01E03 - We Can Prevent the Killings (1080p BluRay x265 Silence).mkv", + "category": "series", + "title": "Signal (2016) -", + "season": 1, + "episodes": [ + 3 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Signal (2016) -" + }, + { + "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", + "filename": "Signal (2016) - S01E10 - Someone Has to Stop the Bad Guys (1080p BluRay x265 Silence).mkv", + "category": "series", + "title": "Signal (2016) -", + "season": 1, + "episodes": [ + 10 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Signal (2016) -" + }, + { + "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", + "filename": "Signal (2016) - S01E01 - You're Doomed (1080p BluRay x265 Silence).mkv", + "category": "series", + "title": "Signal (2016) -", + "season": 1, + "episodes": [ + 1 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Signal (2016) -" + }, + { + "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", + "filename": "Signal (2016) - S01E12 - The Case Was Manipulated (1080p BluRay x265 Silence).mkv", + "category": "series", + "title": "Signal (2016) -", + "season": 1, + "episodes": [ + 12 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Signal (2016) -" + }, + { + "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", + "filename": "Signal (2016) - S01E15 - Is It Really You (1080p BluRay x265 Silence).mkv", + "category": "series", + "title": "Signal (2016) -", + "season": 1, + "episodes": [ + 15 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Signal (2016) -" + }, + { + "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", + "filename": "Signal (2016) - S01E02 - We Still Have a Chance (1080p BluRay x265 Silence).mkv", + "category": "series", + "title": "Signal (2016) -", + "season": 1, + "episodes": [ + 2 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Signal (2016) -" + }, + { + "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", + "filename": "Signal (2016) - S01E05 - Changing the Past Alters the Present (1080p BluRay x265 Silence).mkv", + "category": "series", + "title": "Signal (2016) -", + "season": 1, + "episodes": [ + 5 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Signal (2016) -" + }, + { + "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", + "filename": "Signal (2016) - S01E08 - How Are You Alive (1080p BluRay x265 Silence).mkv", + "category": "series", + "title": "Signal (2016) -", + "season": 1, + "episodes": [ + 8 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Signal (2016) -" + }, + { + "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", + "filename": "Signal (2016) - S01E14 - Not Now, But Maybe In The Past (1080p BluRay x265 Silence).mkv", + "category": "series", + "title": "Signal (2016) -", + "season": 1, + "episodes": [ + 14 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Signal (2016) -" + }, + { + "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", + "filename": "Signal (2016) - S01E06 - Catch Him by All Means (1080p BluRay x265 Silence).mkv", + "category": "series", + "title": "Signal (2016) -", + "season": 1, + "episodes": [ + 6 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Signal (2016) -" + }, + { + "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", + "filename": "Signal (2016) - S01E13 - The Real Assailant (1080p BluRay x265 Silence).mkv", + "category": "series", + "title": "Signal (2016) -", + "season": 1, + "episodes": [ + 13 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Signal (2016) -" + }, + { + "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", + "filename": "Signal (2016) - S01E11 - The One Last Case (1080p BluRay x265 Silence).mkv", + "category": "series", + "title": "Signal (2016) -", + "season": 1, + "episodes": [ + 11 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Signal (2016) -" + }, + { + "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", + "filename": "Signal (2016) - S01E16 - If You Don't Give Up (1080p BluRay x265 Silence).mkv", + "category": "series", + "title": "Signal (2016) -", + "season": 1, + "episodes": [ + 16 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Signal (2016) -" + }, + { + "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", + "filename": "Signal (2016) - S01E04 - We Found the Killer (1080p BluRay x265 Silence).mkv", + "category": "series", + "title": "Signal (2016) -", + "season": 1, + "episodes": [ + 4 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Signal (2016) -" + }, + { + "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", + "filename": "Signal (2016) - S01E07 - We Must Dig Deeper (1080p BluRay x265 Silence).mkv", + "category": "series", + "title": "Signal (2016) -", + "season": 1, + "episodes": [ + 7 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Signal (2016) -" + }, + { + "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", + "filename": "The.Wheel.of.Time.S02E02.Strangers.and.Friends.1080p.AMZN.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv", + "category": "series", + "title": "The Wheel Of Time", + "season": 2, + "episodes": [ + 2 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:71914", + "title_zh": "时光之轮", + "title_en": "The Wheel of Time", + "translation_source": "tmdb", + "reputation_score": 7.623, + "reputation_votes": 2338, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"71914\"}" + }, + "display_title": "时光之轮 The Wheel of Time" + }, + { + "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", + "filename": "The.Wheel.of.Time.S02E01.A.Taste.of.Solitude.1080p.AMZN.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv", + "category": "series", + "title": "The Wheel Of Time", + "season": 2, + "episodes": [ + 1 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:71914", + "title_zh": "时光之轮", + "title_en": "The Wheel of Time", + "translation_source": "tmdb", + "reputation_score": 7.623, + "reputation_votes": 2338, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"71914\"}" + }, + "display_title": "时光之轮 The Wheel of Time" + }, + { + "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", + "filename": "The.Wheel.of.Time.S02E03.What.Might.Be.1080p.AMZN.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv", + "category": "series", + "title": "The Wheel Of Time", + "season": 2, + "episodes": [ + 3 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:71914", + "title_zh": "时光之轮", + "title_en": "The Wheel of Time", + "translation_source": "tmdb", + "reputation_score": 7.623, + "reputation_votes": 2338, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"71914\"}" + }, + "display_title": "时光之轮 The Wheel of Time" + }, + { + "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", + "filename": "The.Bear.S02E10.The.Bear.1080p.HULU.WEB-DL.DDP5.1.H.264-FLUX.mkv", + "category": "series", + "title": "The Bear", + "season": 2, + "episodes": [ + 10 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:136315", + "title_zh": "熊家餐馆", + "title_en": "The Bear", + "translation_source": "tmdb", + "reputation_score": 8.173, + "reputation_votes": 1602, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"136315\"}" + }, + "display_title": "熊家餐馆 The Bear" + }, + { + "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", + "filename": "The.Bear.S02E07.Forks.1080p.HULU.WEB-DL.DDP5.1.H.264-FLUX.mkv", + "category": "series", + "title": "The Bear", + "season": 2, + "episodes": [ + 7 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:136315", + "title_zh": "熊家餐馆", + "title_en": "The Bear", + "translation_source": "tmdb", + "reputation_score": 8.173, + "reputation_votes": 1602, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"136315\"}" + }, + "display_title": "熊家餐馆 The Bear" + }, + { + "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", + "filename": "The.Bear.S02E05.Pop.1080p.HULU.WEB-DL.DDP5.1.H.264-FLUX.mkv", + "category": "series", + "title": "The Bear", + "season": 2, + "episodes": [ + 5 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:136315", + "title_zh": "熊家餐馆", + "title_en": "The Bear", + "translation_source": "tmdb", + "reputation_score": 8.173, + "reputation_votes": 1602, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"136315\"}" + }, + "display_title": "熊家餐馆 The Bear" + }, + { + "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", + "filename": "The.Bear.S02E06.Fishes.1080p.HULU.WEB-DL.DDP5.1.H.264-FLUX.mkv", + "category": "series", + "title": "The Bear", + "season": 2, + "episodes": [ + 6 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:136315", + "title_zh": "熊家餐馆", + "title_en": "The Bear", + "translation_source": "tmdb", + "reputation_score": 8.173, + "reputation_votes": 1602, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"136315\"}" + }, + "display_title": "熊家餐馆 The Bear" + }, + { + "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", + "filename": "The.Bear.S02E09.Omelette.1080p.HULU.WEB-DL.DDP5.1.H.264-FLUX.mkv", + "category": "series", + "title": "The Bear", + "season": 2, + "episodes": [ + 9 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:136315", + "title_zh": "熊家餐馆", + "title_en": "The Bear", + "translation_source": "tmdb", + "reputation_score": 8.173, + "reputation_votes": 1602, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"136315\"}" + }, + "display_title": "熊家餐馆 The Bear" + }, + { + "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", + "filename": "The.Bear.S02E08.Bolognese.1080p.HULU.WEB-DL.DDP5.1.H.264-FLUX.mkv", + "category": "series", + "title": "The Bear", + "season": 2, + "episodes": [ + 8 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:136315", + "title_zh": "熊家餐馆", + "title_en": "The Bear", + "translation_source": "tmdb", + "reputation_score": 8.173, + "reputation_votes": 1602, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"136315\"}" + }, + "display_title": "熊家餐馆 The Bear" + }, + { + "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", + "filename": "The.Bear.S02E02.Pasta.1080p.HULU.WEB-DL.DDP5.1.H.264-FLUX.mkv", + "category": "series", + "title": "The Bear", + "season": 2, + "episodes": [ + 2 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:136315", + "title_zh": "熊家餐馆", + "title_en": "The Bear", + "translation_source": "tmdb", + "reputation_score": 8.173, + "reputation_votes": 1602, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"136315\"}" + }, + "display_title": "熊家餐馆 The Bear" + }, + { + "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", + "filename": "The.Bear.S02E03.Sundae.1080p.HULU.WEB-DL.DDP5.1.H.264-FLUX.mkv", + "category": "series", + "title": "The Bear", + "season": 2, + "episodes": [ + 3 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:136315", + "title_zh": "熊家餐馆", + "title_en": "The Bear", + "translation_source": "tmdb", + "reputation_score": 8.173, + "reputation_votes": 1602, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"136315\"}" + }, + "display_title": "熊家餐馆 The Bear" + }, + { + "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", + "filename": "The.Bear.S02E04.Honeydew.1080p.HULU.WEB-DL.DDP5.1.H.264-FLUX.mkv", + "category": "series", + "title": "The Bear", + "season": 2, + "episodes": [ + 4 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:136315", + "title_zh": "熊家餐馆", + "title_en": "The Bear", + "translation_source": "tmdb", + "reputation_score": 8.173, + "reputation_votes": 1602, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"136315\"}" + }, + "display_title": "熊家餐馆 The Bear" + }, + { + "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", + "filename": "The.Bear.S02E01.Beef.1080p.HULU.WEB-DL.DDP5.1.H.264-FLUX.mkv", + "category": "series", + "title": "The Bear", + "season": 2, + "episodes": [ + 1 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:136315", + "title_zh": "熊家餐馆", + "title_en": "The Bear", + "translation_source": "tmdb", + "reputation_score": 8.173, + "reputation_votes": 1602, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"136315\"}" + }, + "display_title": "熊家餐馆 The Bear" + }, + { + "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", + "filename": "有益的欺诈.Delightfully.Deceitful.S01E11.2023.1080p.friDay.WEB-DL.H264.AAC-OurTV.mkv", + "category": "series", + "title": "有益的欺诈 Delightfully Deceitful", + "season": 1, + "episodes": [ + 11 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:210218", + "title_zh": "有益的欺诈", + "title_en": "이로운 사기", + "translation_source": "tmdb", + "reputation_score": 5.9, + "reputation_votes": 25, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"210218\"}" + }, + "display_title": "有益的欺诈 이로운 사기" + }, + { + "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", + "filename": "有益的欺诈.Delightfully.Deceitful.S01E06.2023.1080p.friDay.WEB-DL.H264.AAC-OurTV.mkv", + "category": "series", + "title": "有益的欺诈 Delightfully Deceitful", + "season": 1, + "episodes": [ + 6 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:210218", + "title_zh": "有益的欺诈", + "title_en": "이로운 사기", + "translation_source": "tmdb", + "reputation_score": 5.9, + "reputation_votes": 25, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"210218\"}" + }, + "display_title": "有益的欺诈 이로운 사기" + }, + { + "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", + "filename": "有益的欺诈.Delightfully.Deceitful.S01E16.2023.1080p.friDay.WEB-DL.H264.AAC-OurTV.mkv", + "category": "series", + "title": "有益的欺诈 Delightfully Deceitful", + "season": 1, + "episodes": [ + 16 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:210218", + "title_zh": "有益的欺诈", + "title_en": "이로운 사기", + "translation_source": "tmdb", + "reputation_score": 5.9, + "reputation_votes": 25, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"210218\"}" + }, + "display_title": "有益的欺诈 이로운 사기" + }, + { + "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", + "filename": "有益的欺诈.Delightfully.Deceitful.S01E10.2023.1080p.friDay.WEB-DL.H264.AAC-OurTV.mkv", + "category": "series", + "title": "有益的欺诈 Delightfully Deceitful", + "season": 1, + "episodes": [ + 10 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:210218", + "title_zh": "有益的欺诈", + "title_en": "이로운 사기", + "translation_source": "tmdb", + "reputation_score": 5.9, + "reputation_votes": 25, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"210218\"}" + }, + "display_title": "有益的欺诈 이로운 사기" + }, + { + "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", + "filename": "有益的欺诈.Delightfully.Deceitful.S01E07.2023.1080p.friDay.WEB-DL.H264.AAC-OurTV.mkv", + "category": "series", + "title": "有益的欺诈 Delightfully Deceitful", + "season": 1, + "episodes": [ + 7 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:210218", + "title_zh": "有益的欺诈", + "title_en": "이로운 사기", + "translation_source": "tmdb", + "reputation_score": 5.9, + "reputation_votes": 25, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"210218\"}" + }, + "display_title": "有益的欺诈 이로운 사기" + }, + { + "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", + "filename": "有益的欺诈.Delightfully.Deceitful.S01E01.2023.1080p.friDay.WEB-DL.H264.AAC-OurTV.mkv", + "category": "series", + "title": "有益的欺诈 Delightfully Deceitful", + "season": 1, + "episodes": [ + 1 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:210218", + "title_zh": "有益的欺诈", + "title_en": "이로운 사기", + "translation_source": "tmdb", + "reputation_score": 5.9, + "reputation_votes": 25, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"210218\"}" + }, + "display_title": "有益的欺诈 이로운 사기" + }, + { + "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", + "filename": "有益的欺诈.Delightfully.Deceitful.S01E13.2023.1080p.friDay.WEB-DL.H264.AAC-OurTV.mkv", + "category": "series", + "title": "有益的欺诈 Delightfully Deceitful", + "season": 1, + "episodes": [ + 13 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:210218", + "title_zh": "有益的欺诈", + "title_en": "이로운 사기", + "translation_source": "tmdb", + "reputation_score": 5.9, + "reputation_votes": 25, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"210218\"}" + }, + "display_title": "有益的欺诈 이로운 사기" + }, + { + "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", + "filename": "有益的欺诈.Delightfully.Deceitful.S01E15.2023.1080p.friDay.WEB-DL.H264.AAC-OurTV.mkv", + "category": "series", + "title": "有益的欺诈 Delightfully Deceitful", + "season": 1, + "episodes": [ + 15 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:210218", + "title_zh": "有益的欺诈", + "title_en": "이로운 사기", + "translation_source": "tmdb", + "reputation_score": 5.9, + "reputation_votes": 25, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"210218\"}" + }, + "display_title": "有益的欺诈 이로운 사기" + }, + { + "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", + "filename": "有益的欺诈.Delightfully.Deceitful.S01E08.2023.1080p.friDay.WEB-DL.H264.AAC-OurTV.mkv", + "category": "series", + "title": "有益的欺诈 Delightfully Deceitful", + "season": 1, + "episodes": [ + 8 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:210218", + "title_zh": "有益的欺诈", + "title_en": "이로운 사기", + "translation_source": "tmdb", + "reputation_score": 5.9, + "reputation_votes": 25, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"210218\"}" + }, + "display_title": "有益的欺诈 이로운 사기" + }, + { + "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", + "filename": "有益的欺诈.Delightfully.Deceitful.S01E02.2023.1080p.friDay.WEB-DL.H264.AAC-OurTV.mkv", + "category": "series", + "title": "有益的欺诈 Delightfully Deceitful", + "season": 1, + "episodes": [ + 2 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:210218", + "title_zh": "有益的欺诈", + "title_en": "이로운 사기", + "translation_source": "tmdb", + "reputation_score": 5.9, + "reputation_votes": 25, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"210218\"}" + }, + "display_title": "有益的欺诈 이로운 사기" + }, + { + "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", + "filename": "有益的欺诈.Delightfully.Deceitful.S01E04.2023.1080p.friDay.WEB-DL.H264.AAC-OurTV.mkv", + "category": "series", + "title": "有益的欺诈 Delightfully Deceitful", + "season": 1, + "episodes": [ + 4 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:210218", + "title_zh": "有益的欺诈", + "title_en": "이로운 사기", + "translation_source": "tmdb", + "reputation_score": 5.9, + "reputation_votes": 25, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"210218\"}" + }, + "display_title": "有益的欺诈 이로운 사기" + }, + { + "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", + "filename": "有益的欺诈.Delightfully.Deceitful.S01E12.2023.1080p.friDay.WEB-DL.H264.AAC-OurTV.mkv", + "category": "series", + "title": "有益的欺诈 Delightfully Deceitful", + "season": 1, + "episodes": [ + 12 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:210218", + "title_zh": "有益的欺诈", + "title_en": "이로운 사기", + "translation_source": "tmdb", + "reputation_score": 5.9, + "reputation_votes": 25, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"210218\"}" + }, + "display_title": "有益的欺诈 이로운 사기" + }, + { + "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", + "filename": "有益的欺诈.Delightfully.Deceitful.S01E14.2023.1080p.friDay.WEB-DL.H264.AAC-OurTV.mkv", + "category": "series", + "title": "有益的欺诈 Delightfully Deceitful", + "season": 1, + "episodes": [ + 14 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:210218", + "title_zh": "有益的欺诈", + "title_en": "이로운 사기", + "translation_source": "tmdb", + "reputation_score": 5.9, + "reputation_votes": 25, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"210218\"}" + }, + "display_title": "有益的欺诈 이로운 사기" + }, + { + "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", + "filename": "有益的欺诈.Delightfully.Deceitful.S01E09.2023.1080p.friDay.WEB-DL.H264.AAC-OurTV.mkv", + "category": "series", + "title": "有益的欺诈 Delightfully Deceitful", + "season": 1, + "episodes": [ + 9 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:210218", + "title_zh": "有益的欺诈", + "title_en": "이로운 사기", + "translation_source": "tmdb", + "reputation_score": 5.9, + "reputation_votes": 25, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"210218\"}" + }, + "display_title": "有益的欺诈 이로운 사기" + }, + { + "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", + "filename": "有益的欺诈.Delightfully.Deceitful.S01E03.2023.1080p.friDay.WEB-DL.H264.AAC-OurTV.mkv", + "category": "series", + "title": "有益的欺诈 Delightfully Deceitful", + "season": 1, + "episodes": [ + 3 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:210218", + "title_zh": "有益的欺诈", + "title_en": "이로운 사기", + "translation_source": "tmdb", + "reputation_score": 5.9, + "reputation_votes": 25, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"210218\"}" + }, + "display_title": "有益的欺诈 이로운 사기" + }, + { + "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", + "filename": "有益的欺诈.Delightfully.Deceitful.S01E05.2023.1080p.friDay.WEB-DL.H264.AAC-OurTV.mkv", + "category": "series", + "title": "有益的欺诈 Delightfully Deceitful", + "season": 1, + "episodes": [ + 5 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:210218", + "title_zh": "有益的欺诈", + "title_en": "이로운 사기", + "translation_source": "tmdb", + "reputation_score": 5.9, + "reputation_votes": 25, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"210218\"}" + }, + "display_title": "有益的欺诈 이로운 사기" + }, + { + "path": "/mnt/Downloads/series/RoOT 第08話 1080p KKTV WEB-DL H264 AAC.mkv", + "filename": "RoOT 第08話 1080p KKTV WEB-DL H264 AAC.mkv", + "category": "series", + "title": "Root 第08話 Kktv", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Root 第08話 Kktv" + }, + { + "path": "/mnt/Downloads/series/Shogun.S01E08.2024.2160p.DSNP.WEB-DL.H265.HDR.DDP5.1.mkv", + "filename": "Shogun.S01E08.2024.2160p.DSNP.WEB-DL.H265.HDR.DDP5.1.mkv", + "category": "series", + "title": "Shogun", + "season": 1, + "episodes": [ + 8 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:126308", + "title_zh": "Shōgun", + "title_en": "Shōgun", + "translation_source": "tmdb", + "reputation_score": 8.441, + "reputation_votes": 1614, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"126308\"}" + }, + "display_title": "Shōgun" + }, + { + "path": "/mnt/Downloads/series/こっち向いてよ向井くん EP03 v2 720p HDTV x264 AAC-DoA.mkv", + "filename": "こっち向いてよ向井くん EP03 v2 720p HDTV x264 AAC-DoA.mkv", + "category": "series", + "title": "こっち向いてよ向井くん Ep03 V2 -Doa", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "こっち向いてよ向井くん Ep03 V2 -Doa" + }, + { + "path": "/mnt/Downloads/series/(ドラマ) 完全無罪 第02話 「針穴と駱駝」 (1920x1080 x264-AAC)-DoA.mkv", + "filename": "(ドラマ) 完全無罪 第02話 「針穴と駱駝」 (1920x1080 x264-AAC)-DoA.mkv", + "category": "series", + "title": "(ドラマ) 完全無罪 第02話 「針穴と駱駝」 (19", + "season": 20, + "episodes": [ + 10 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "(ドラマ) 完全無罪 第02話 「針穴と駱駝」 (19" + }, + { + "path": "/mnt/Downloads/series/True.Detective.S04E02.Night.Country.Part.2.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv", + "filename": "True.Detective.S04E02.Night.Country.Part.2.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv", + "category": "series", + "title": "True Detective", + "season": 4, + "episodes": [ + 2 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:46648", + "title_zh": "真探", + "title_en": "True Detective", + "translation_source": "tmdb", + "reputation_score": 8.282, + "reputation_votes": 3932, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"46648\"}" + }, + "display_title": "真探 True Detective" + }, + { + "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", + "filename": "Once.Upon.A.Bite.S04E04.2022.WEB-DL.4K.HEVC.DV.DDP-HDCTV.mp4", + "category": "series", + "title": "Once Upon A Bite", + "season": 4, + "episodes": [ + 4 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:119784", + "title_zh": "风味实验室·新春特辑", + "title_en": "风味实验室·新春特辑", + "translation_source": "tmdb", + "reputation_score": 0.0, + "reputation_votes": 1, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"119784\"}" + }, + "display_title": "风味实验室·新春特辑" + }, + { + "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", + "filename": "Once.Upon.A.Bite.S04E05.2022.WEB-DL.4K.HEVC.DV.DDP-HDCTV.mp4", + "category": "series", + "title": "Once Upon A Bite", + "season": 4, + "episodes": [ + 5 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:119784", + "title_zh": "风味实验室·新春特辑", + "title_en": "风味实验室·新春特辑", + "translation_source": "tmdb", + "reputation_score": 0.0, + "reputation_votes": 1, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"119784\"}" + }, + "display_title": "风味实验室·新春特辑" + }, + { + "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", + "filename": "Once.Upon.A.Bite.S04E06.2022.WEB-DL.4K.HEVC.DV.DDP-HDCTV.mp4", + "category": "series", + "title": "Once Upon A Bite", + "season": 4, + "episodes": [ + 6 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:119784", + "title_zh": "风味实验室·新春特辑", + "title_en": "风味实验室·新春特辑", + "translation_source": "tmdb", + "reputation_score": 0.0, + "reputation_votes": 1, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"119784\"}" + }, + "display_title": "风味实验室·新春特辑" + }, + { + "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", + "filename": "Once.Upon.A.Bite.S04E01.2022.WEB-DL.4K.HEVC.DV.DDP-HDCTV.mp4", + "category": "series", + "title": "Once Upon A Bite", + "season": 4, + "episodes": [ + 1 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:119784", + "title_zh": "风味实验室·新春特辑", + "title_en": "风味实验室·新春特辑", + "translation_source": "tmdb", + "reputation_score": 0.0, + "reputation_votes": 1, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"119784\"}" + }, + "display_title": "风味实验室·新春特辑" + }, + { + "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", + "filename": "Once.Upon.A.Bite.S04E03.2022.WEB-DL.4K.HEVC.DV.DDP-HDCTV.mp4", + "category": "series", + "title": "Once Upon A Bite", + "season": 4, + "episodes": [ + 3 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:119784", + "title_zh": "风味实验室·新春特辑", + "title_en": "风味实验室·新春特辑", + "translation_source": "tmdb", + "reputation_score": 0.0, + "reputation_votes": 1, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"119784\"}" + }, + "display_title": "风味实验室·新春特辑" + }, + { + "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", + "filename": "Once.Upon.A.Bite.S04E02.2022.WEB-DL.4K.HEVC.DV.DDP-HDCTV.mp4", + "category": "series", + "title": "Once Upon A Bite", + "season": 4, + "episodes": [ + 2 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:119784", + "title_zh": "风味实验室·新春特辑", + "title_en": "风味实验室·新春特辑", + "translation_source": "tmdb", + "reputation_score": 0.0, + "reputation_votes": 1, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"119784\"}" + }, + "display_title": "风味实验室·新春特辑" + }, + { + "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", + "filename": "Anne.Rices.Mayfair.Witches.S01E02.The.Dark.Place.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv", + "category": "series", + "title": "Anne Rices Mayfair Witches", + "season": 1, + "episodes": [ + 2 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:207863", + "title_zh": "梅菲尔女巫", + "title_en": "Mayfair Witches", + "translation_source": "tmdb", + "reputation_score": 7.3, + "reputation_votes": 314, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"207863\"}" + }, + "display_title": "梅菲尔女巫 Mayfair Witches" + }, + { + "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", + "filename": "Anne.Rices.Mayfair.Witches.S01E08.What.Rough.Beast.REPACK.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv", + "category": "series", + "title": "Anne Rices Mayfair Witches", + "season": 1, + "episodes": [ + 8 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:207863", + "title_zh": "梅菲尔女巫", + "title_en": "Mayfair Witches", + "translation_source": "tmdb", + "reputation_score": 7.3, + "reputation_votes": 314, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"207863\"}" + }, + "display_title": "梅菲尔女巫 Mayfair Witches" + }, + { + "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", + "filename": "Anne.Rices.Mayfair.Witches.S01E04.Curiouser.and.Curiouser.REPACK.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv", + "category": "series", + "title": "Anne Rices Mayfair Witches", + "season": 1, + "episodes": [ + 4 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:207863", + "title_zh": "梅菲尔女巫", + "title_en": "Mayfair Witches", + "translation_source": "tmdb", + "reputation_score": 7.3, + "reputation_votes": 314, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"207863\"}" + }, + "display_title": "梅菲尔女巫 Mayfair Witches" + }, + { + "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", + "filename": "Anne.Rices.Mayfair.Witches.S01E07.Tessa.REPACK.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv", + "category": "series", + "title": "Anne Rices Mayfair Witches", + "season": 1, + "episodes": [ + 7 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:207863", + "title_zh": "梅菲尔女巫", + "title_en": "Mayfair Witches", + "translation_source": "tmdb", + "reputation_score": 7.3, + "reputation_votes": 314, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"207863\"}" + }, + "display_title": "梅菲尔女巫 Mayfair Witches" + }, + { + "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", + "filename": "Anne.Rices.Mayfair.Witches.S01E05.The.Thrall.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv", + "category": "series", + "title": "Anne Rices Mayfair Witches", + "season": 1, + "episodes": [ + 5 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:207863", + "title_zh": "梅菲尔女巫", + "title_en": "Mayfair Witches", + "translation_source": "tmdb", + "reputation_score": 7.3, + "reputation_votes": 314, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"207863\"}" + }, + "display_title": "梅菲尔女巫 Mayfair Witches" + }, + { + "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", + "filename": "Anne.Rices.Mayfair.Witches.S01E03.Second.Line.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv", + "category": "series", + "title": "Anne Rices Mayfair Witches", + "season": 1, + "episodes": [ + 3 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:207863", + "title_zh": "梅菲尔女巫", + "title_en": "Mayfair Witches", + "translation_source": "tmdb", + "reputation_score": 7.3, + "reputation_votes": 314, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"207863\"}" + }, + "display_title": "梅菲尔女巫 Mayfair Witches" + }, + { + "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", + "filename": "Anne.Rices.Mayfair.Witches.S01E01.The.Witching.Hour.REPACK.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv", + "category": "series", + "title": "Anne Rices Mayfair Witches", + "season": 1, + "episodes": [ + 1 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:207863", + "title_zh": "梅菲尔女巫", + "title_en": "Mayfair Witches", + "translation_source": "tmdb", + "reputation_score": 7.3, + "reputation_votes": 314, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"207863\"}" + }, + "display_title": "梅菲尔女巫 Mayfair Witches" + }, + { + "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", + "filename": "Anne.Rices.Mayfair.Witches.S01E06.Transference.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv", + "category": "series", + "title": "Anne Rices Mayfair Witches", + "season": 1, + "episodes": [ + 6 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:207863", + "title_zh": "梅菲尔女巫", + "title_en": "Mayfair Witches", + "translation_source": "tmdb", + "reputation_score": 7.3, + "reputation_votes": 314, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"207863\"}" + }, + "display_title": "梅菲尔女巫 Mayfair Witches" + }, + { + "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", + "filename": "Furikaereba.yatsu.ga.iru.S01E06.1080p.AMZN.WEB-DL.DD+2.0.H.264-ARiN.mkv", + "category": "series", + "title": "Furikaereba Yatsu Ga Iru", + "season": 1, + "episodes": [ + 6 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:35418", + "title_zh": "回首又见他", + "title_en": "振り返れば奴がいる", + "translation_source": "tmdb", + "reputation_score": 7.857, + "reputation_votes": 7, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"35418\"}" + }, + "display_title": "回首又见他 振り返れば奴がいる" + }, + { + "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", + "filename": "Furikaereba.yatsu.ga.iru.S01E02.1080p.AMZN.WEB-DL.DD+2.0.H.264-ARiN.mkv", + "category": "series", + "title": "Furikaereba Yatsu Ga Iru", + "season": 1, + "episodes": [ + 2 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:35418", + "title_zh": "回首又见他", + "title_en": "振り返れば奴がいる", + "translation_source": "tmdb", + "reputation_score": 7.857, + "reputation_votes": 7, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"35418\"}" + }, + "display_title": "回首又见他 振り返れば奴がいる" + }, + { + "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", + "filename": "Furikaereba.yatsu.ga.iru.S01E11.1080p.AMZN.WEB-DL.DD+2.0.H.264-ARiN.mkv", + "category": "series", + "title": "Furikaereba Yatsu Ga Iru", + "season": 1, + "episodes": [ + 11 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:35418", + "title_zh": "回首又见他", + "title_en": "振り返れば奴がいる", + "translation_source": "tmdb", + "reputation_score": 7.857, + "reputation_votes": 7, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"35418\"}" + }, + "display_title": "回首又见他 振り返れば奴がいる" + }, + { + "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", + "filename": "Furikaereba.yatsu.ga.iru.S01E10.1080p.AMZN.WEB-DL.DD+2.0.H.264-ARiN.mkv", + "category": "series", + "title": "Furikaereba Yatsu Ga Iru", + "season": 1, + "episodes": [ + 10 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:35418", + "title_zh": "回首又见他", + "title_en": "振り返れば奴がいる", + "translation_source": "tmdb", + "reputation_score": 7.857, + "reputation_votes": 7, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"35418\"}" + }, + "display_title": "回首又见他 振り返れば奴がいる" + }, + { + "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", + "filename": "Furikaereba.yatsu.ga.iru.S01E07.1080p.AMZN.WEB-DL.DD+2.0.H.264-ARiN.mkv", + "category": "series", + "title": "Furikaereba Yatsu Ga Iru", + "season": 1, + "episodes": [ + 7 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:35418", + "title_zh": "回首又见他", + "title_en": "振り返れば奴がいる", + "translation_source": "tmdb", + "reputation_score": 7.857, + "reputation_votes": 7, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"35418\"}" + }, + "display_title": "回首又见他 振り返れば奴がいる" + }, + { + "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", + "filename": "Furikaereba.yatsu.ga.iru.S01E03.1080p.AMZN.WEB-DL.DD+2.0.H.264-ARiN.mkv", + "category": "series", + "title": "Furikaereba Yatsu Ga Iru", + "season": 1, + "episodes": [ + 3 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:35418", + "title_zh": "回首又见他", + "title_en": "振り返れば奴がいる", + "translation_source": "tmdb", + "reputation_score": 7.857, + "reputation_votes": 7, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"35418\"}" + }, + "display_title": "回首又见他 振り返れば奴がいる" + }, + { + "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", + "filename": "Furikaereba.yatsu.ga.iru.S01E09.1080p.AMZN.WEB-DL.DD+2.0.H.264-ARiN.mkv", + "category": "series", + "title": "Furikaereba Yatsu Ga Iru", + "season": 1, + "episodes": [ + 9 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:35418", + "title_zh": "回首又见他", + "title_en": "振り返れば奴がいる", + "translation_source": "tmdb", + "reputation_score": 7.857, + "reputation_votes": 7, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"35418\"}" + }, + "display_title": "回首又见他 振り返れば奴がいる" + }, + { + "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", + "filename": "Furikaereba.yatsu.ga.iru.S01E12.1080p.AMZN.WEB-DL.DD+2.0.H.264-ARiN.mkv", + "category": "series", + "title": "Furikaereba Yatsu Ga Iru", + "season": 1, + "episodes": [ + 12 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:35418", + "title_zh": "回首又见他", + "title_en": "振り返れば奴がいる", + "translation_source": "tmdb", + "reputation_score": 7.857, + "reputation_votes": 7, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"35418\"}" + }, + "display_title": "回首又见他 振り返れば奴がいる" + }, + { + "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", + "filename": "Furikaereba.yatsu.ga.iru.S01E05.1080p.AMZN.WEB-DL.DD+2.0.H.264-ARiN.mkv", + "category": "series", + "title": "Furikaereba Yatsu Ga Iru", + "season": 1, + "episodes": [ + 5 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:35418", + "title_zh": "回首又见他", + "title_en": "振り返れば奴がいる", + "translation_source": "tmdb", + "reputation_score": 7.857, + "reputation_votes": 7, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"35418\"}" + }, + "display_title": "回首又见他 振り返れば奴がいる" + }, + { + "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", + "filename": "Furikaereba.yatsu.ga.iru.S01E01.1080p.AMZN.WEB-DL.DD+2.0.H.264-ARiN.mkv", + "category": "series", + "title": "Furikaereba Yatsu Ga Iru", + "season": 1, + "episodes": [ + 1 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:35418", + "title_zh": "回首又见他", + "title_en": "振り返れば奴がいる", + "translation_source": "tmdb", + "reputation_score": 7.857, + "reputation_votes": 7, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"35418\"}" + }, + "display_title": "回首又见他 振り返れば奴がいる" + }, + { + "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", + "filename": "Furikaereba.yatsu.ga.iru.S01E04.1080p.AMZN.WEB-DL.DD+2.0.H.264-ARiN.mkv", + "category": "series", + "title": "Furikaereba Yatsu Ga Iru", + "season": 1, + "episodes": [ + 4 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:35418", + "title_zh": "回首又见他", + "title_en": "振り返れば奴がいる", + "translation_source": "tmdb", + "reputation_score": 7.857, + "reputation_votes": 7, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"35418\"}" + }, + "display_title": "回首又见他 振り返れば奴がいる" + }, + { + "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", + "filename": "Furikaereba.yatsu.ga.iru.S01E08.1080p.AMZN.WEB-DL.DD+2.0.H.264-ARiN.mkv", + "category": "series", + "title": "Furikaereba Yatsu Ga Iru", + "season": 1, + "episodes": [ + 8 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:35418", + "title_zh": "回首又见他", + "title_en": "振り返れば奴がいる", + "translation_source": "tmdb", + "reputation_score": 7.857, + "reputation_votes": 7, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"35418\"}" + }, + "display_title": "回首又见他 振り返れば奴がいる" + }, + { + "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", + "filename": "Presumed.Innocent.S01E05.Pregame.1080p.ATVP.WEB-DL.DDP5.1.H.264-NTb.mkv", + "category": "series", + "title": "Presumed Innocent", + "season": 1, + "episodes": [ + 5 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:156933", + "title_zh": "Presumed Innocent", + "title_en": "Presumed Innocent", + "translation_source": "tmdb", + "reputation_score": 7.863, + "reputation_votes": 554, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"156933\"}" + }, + "display_title": "Presumed Innocent" + }, + { + "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", + "filename": "Presumed.Innocent.S01E07.The.Witness.1080p.ATVP.WEB-DL.DDP5.1.H.264-NTb.mkv", + "category": "series", + "title": "Presumed Innocent", + "season": 1, + "episodes": [ + 7 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:156933", + "title_zh": "Presumed Innocent", + "title_en": "Presumed Innocent", + "translation_source": "tmdb", + "reputation_score": 7.863, + "reputation_votes": 554, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"156933\"}" + }, + "display_title": "Presumed Innocent" + }, + { + "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", + "filename": "Presumed.Innocent.S01E04.The.Burden.1080p.ATVP.WEB-DL.DDP5.1.H.264-NTb.mkv", + "category": "series", + "title": "Presumed Innocent", + "season": 1, + "episodes": [ + 4 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:156933", + "title_zh": "Presumed Innocent", + "title_en": "Presumed Innocent", + "translation_source": "tmdb", + "reputation_score": 7.863, + "reputation_votes": 554, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"156933\"}" + }, + "display_title": "Presumed Innocent" + }, + { + "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", + "filename": "Presumed.Innocent.S01E03.Discovery.1080p.ATVP.WEB-DL.DDP5.1.H.264-NTb.mkv", + "category": "series", + "title": "Presumed Innocent", + "season": 1, + "episodes": [ + 3 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:156933", + "title_zh": "Presumed Innocent", + "title_en": "Presumed Innocent", + "translation_source": "tmdb", + "reputation_score": 7.863, + "reputation_votes": 554, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"156933\"}" + }, + "display_title": "Presumed Innocent" + }, + { + "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", + "filename": "Presumed.Innocent.S01E06.The.Elements.1080p.ATVP.WEB-DL.DDP5.1.H.264-NTb.mkv", + "category": "series", + "title": "Presumed Innocent", + "season": 1, + "episodes": [ + 6 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:156933", + "title_zh": "Presumed Innocent", + "title_en": "Presumed Innocent", + "translation_source": "tmdb", + "reputation_score": 7.863, + "reputation_votes": 554, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"156933\"}" + }, + "display_title": "Presumed Innocent" + }, + { + "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", + "filename": "Presumed.Innocent.S01E08.The.Verdict.1080p.ATVP.WEB-DL.DDP5.1.H.264-NTb.mkv", + "category": "series", + "title": "Presumed Innocent", + "season": 1, + "episodes": [ + 8 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:156933", + "title_zh": "Presumed Innocent", + "title_en": "Presumed Innocent", + "translation_source": "tmdb", + "reputation_score": 7.863, + "reputation_votes": 554, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"156933\"}" + }, + "display_title": "Presumed Innocent" + }, + { + "path": "/mnt/Downloads/series/Believe-君にかける橋- 第1話 生きるため、俺は誰を信じるのか 1080p TVer WEB-DL H264 AAC-Solitude@DoA.mkv", + "filename": "Believe-君にかける橋- 第1話 生きるため、俺は誰を信じるのか 1080p TVer WEB-DL H264 AAC-Solitude@DoA.mkv", + "category": "series", + "title": "Believe-君にかける橋- 第1話 生きるため、俺は誰を信じるのか Tver -Solitude@Doa", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Believe-君にかける橋- 第1話 生きるため、俺は誰を信じるのか Tver -Solitude@Doa" + }, + { + "path": "/mnt/Downloads/series/亚森·罗宾.Arsene Lupin.2021.1080p.WEB-DL.H264.AC3-HDHWEB/[第 1 部.Ep1] 怪盜羅蘋 - 第 1 章.mkv", + "filename": "[第 1 部.Ep1] 怪盜羅蘋 - 第 1 章.mkv", + "category": "series", + "title": "怪盜羅蘋 - 第 1 章", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "怪盜羅蘋 - 第 1 章" + }, + { + "path": "/mnt/Downloads/series/亚森·罗宾.Arsene Lupin.2021.1080p.WEB-DL.H264.AC3-HDHWEB/[第 1 部.Ep2] 怪盜羅蘋 - 第 2 章.mkv", + "filename": "[第 1 部.Ep2] 怪盜羅蘋 - 第 2 章.mkv", + "category": "series", + "title": "怪盜羅蘋 - 第 2 章", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "怪盜羅蘋 - 第 2 章" + }, + { + "path": "/mnt/Downloads/series/亚森·罗宾.Arsene Lupin.2021.1080p.WEB-DL.H264.AC3-HDHWEB/[第 1 部.Ep3] 怪盜羅蘋 - 第 3 章.mkv", + "filename": "[第 1 部.Ep3] 怪盜羅蘋 - 第 3 章.mkv", + "category": "series", + "title": "怪盜羅蘋 - 第 3 章", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "怪盜羅蘋 - 第 3 章" + }, + { + "path": "/mnt/Downloads/series/亚森·罗宾.Arsene Lupin.2021.1080p.WEB-DL.H264.AC3-HDHWEB/[第 1 部.Ep4] 怪盜羅蘋 - 第 4 章.mkv", + "filename": "[第 1 部.Ep4] 怪盜羅蘋 - 第 4 章.mkv", + "category": "series", + "title": "怪盜羅蘋 - 第 4 章", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "怪盜羅蘋 - 第 4 章" + }, + { + "path": "/mnt/Downloads/series/亚森·罗宾.Arsene Lupin.2021.1080p.WEB-DL.H264.AC3-HDHWEB/[第 1 部.Ep5] 怪盜羅蘋 - 第 5 章.mkv", + "filename": "[第 1 部.Ep5] 怪盜羅蘋 - 第 5 章.mkv", + "category": "series", + "title": "怪盜羅蘋 - 第 5 章", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "怪盜羅蘋 - 第 5 章" + }, + { + "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", + "filename": "Dragon.Zakura.2021.EP09.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv", + "category": "series", + "title": "Dragon Zakura 2021 Ep09 Flac Mnhd-Frds", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Dragon Zakura 2021 Ep09 Flac Mnhd-Frds" + }, + { + "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", + "filename": "Dragon.Zakura.2021.EP08.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv", + "category": "series", + "title": "Dragon Zakura 2021 Ep08 Flac Mnhd-Frds", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Dragon Zakura 2021 Ep08 Flac Mnhd-Frds" + }, + { + "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", + "filename": "Dragon.Zakura.2021.EP07.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv", + "category": "series", + "title": "Dragon Zakura 2021 Ep07 Flac Mnhd-Frds", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Dragon Zakura 2021 Ep07 Flac Mnhd-Frds" + }, + { + "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", + "filename": "Dragon.Zakura.2021.EP06.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv", + "category": "series", + "title": "Dragon Zakura 2021 Ep06 Flac Mnhd-Frds", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Dragon Zakura 2021 Ep06 Flac Mnhd-Frds" + }, + { + "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", + "filename": "Dragon.Zakura.2021.EP05.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv", + "category": "series", + "title": "Dragon Zakura 2021 Ep05 Flac Mnhd-Frds", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Dragon Zakura 2021 Ep05 Flac Mnhd-Frds" + }, + { + "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", + "filename": "Dragon.Zakura.2021.EP04.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv", + "category": "series", + "title": "Dragon Zakura 2021 Ep04 Flac Mnhd-Frds", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Dragon Zakura 2021 Ep04 Flac Mnhd-Frds" + }, + { + "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", + "filename": "Dragon.Zakura.2021.EP10.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv", + "category": "series", + "title": "Dragon Zakura 2021 Ep10 Flac Mnhd-Frds", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Dragon Zakura 2021 Ep10 Flac Mnhd-Frds" + }, + { + "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", + "filename": "Dragon.Zakura.2021.EP03.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv", + "category": "series", + "title": "Dragon Zakura 2021 Ep03 Flac Mnhd-Frds", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Dragon Zakura 2021 Ep03 Flac Mnhd-Frds" + }, + { + "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", + "filename": "Dragon.Zakura.2021.EP02.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv", + "category": "series", + "title": "Dragon Zakura 2021 Ep02 Flac Mnhd-Frds", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Dragon Zakura 2021 Ep02 Flac Mnhd-Frds" + }, + { + "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", + "filename": "Dragon.Zakura.2021.EP01.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv", + "category": "series", + "title": "Dragon Zakura 2021 Ep01 Flac Mnhd-Frds", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Dragon Zakura 2021 Ep01 Flac Mnhd-Frds" + }, + { + "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", + "filename": "Dragon.Zakura.2021.Bonus.Disc.SP4.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv", + "category": "series", + "title": "Dragon Zakura 2021 Bonus Disc Sp4 Flac Mnhd-Frds", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Dragon Zakura 2021 Bonus Disc Sp4 Flac Mnhd-Frds" + }, + { + "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", + "filename": "Dragon.Zakura.2021.Bonus.Disc.SP5.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv", + "category": "series", + "title": "Dragon Zakura 2021 Bonus Disc Sp5 Flac Mnhd-Frds", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Dragon Zakura 2021 Bonus Disc Sp5 Flac Mnhd-Frds" + }, + { + "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", + "filename": "Dragon.Zakura.2021.Bonus.Disc.SP1.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv", + "category": "series", + "title": "Dragon Zakura 2021 Bonus Disc Sp1 Flac Mnhd-Frds", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Dragon Zakura 2021 Bonus Disc Sp1 Flac Mnhd-Frds" + }, + { + "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", + "filename": "Dragon.Zakura.2021.Bonus.Disc.SP2.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv", + "category": "series", + "title": "Dragon Zakura 2021 Bonus Disc Sp2 Flac Mnhd-Frds", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Dragon Zakura 2021 Bonus Disc Sp2 Flac Mnhd-Frds" + }, + { + "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", + "filename": "Dragon.Zakura.2021.Bonus.Disc.SP3.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv", + "category": "series", + "title": "Dragon Zakura 2021 Bonus Disc Sp3 Flac Mnhd-Frds", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Dragon Zakura 2021 Bonus Disc Sp3 Flac Mnhd-Frds" + }, + { + "path": "/mnt/Downloads/series/こっち向いてよ向井くん EP02 720p HDTV x264 AAC-DoA.mkv", + "filename": "こっち向いてよ向井くん EP02 720p HDTV x264 AAC-DoA.mkv", + "category": "series", + "title": "こっち向いてよ向井くん Ep02 -Doa", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "こっち向いてよ向井くん Ep02 -Doa" + }, + { + "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", + "filename": "【更多电视剧集下载请访问 www.BPHDTV.com】【更多剧集打包下载请访问 www.BPHDTV.com】.MKV", + "category": "series", + "title": "【更多电视剧集下载请访问 Www Bphdtv Com】【更多剧集打包下载请访问 Www Bphdtv Com】", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "【更多电视剧集下载请访问 Www Bphdtv Com】【更多剧集打包下载请访问 Www Bphdtv Com】" + }, + { + "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", + "filename": "【更多高清剧集下载请访问 www.BPHDTV.com】【更多剧集打包下载请访问 www.BPHDTV.com】.mkv", + "category": "series", + "title": "【更多高清剧集下载请访问 Www Bphdtv Com】【更多剧集打包下载请访问 Www Bphdtv Com】", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "【更多高清剧集下载请访问 Www Bphdtv Com】【更多剧集打包下载请访问 Www Bphdtv Com】" + }, + { + "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", + "filename": "Our.Unwritten.Seoul.S01E08.An.Unconventional.Whole.1080p.NF.WEB-DL.AAC.2.0.H.264-BlackTV.mkv", + "category": "series", + "title": "Our Unwritten Seoul", + "season": 1, + "episodes": [ + 8 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:261980", + "title_zh": "未知的首尔", + "title_en": "미지의 서울", + "translation_source": "tmdb", + "reputation_score": 8.377, + "reputation_votes": 73, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"261980\"}" + }, + "display_title": "未知的首尔 미지의 서울" + }, + { + "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", + "filename": "Deaths.Game.S01E01.2023.1080p.AMZN.WEB-DL.DDP2.0.H264-HHWEB.mkv", + "category": "series", + "title": "Deaths Game", + "season": 1, + "episodes": [ + 1 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:218230", + "title_zh": "死期将至", + "title_en": "이재, 곧 죽습니다", + "translation_source": "tmdb", + "reputation_score": 8.4, + "reputation_votes": 595, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"218230\"}" + }, + "display_title": "死期将至 이재, 곧 죽습니다" + }, + { + "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", + "filename": "Deaths.Game.S01E04.2023.1080p.AMZN.WEB-DL.DDP2.0.H264-HHWEB.mkv", + "category": "series", + "title": "Deaths Game", + "season": 1, + "episodes": [ + 4 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:218230", + "title_zh": "死期将至", + "title_en": "이재, 곧 죽습니다", + "translation_source": "tmdb", + "reputation_score": 8.4, + "reputation_votes": 595, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"218230\"}" + }, + "display_title": "死期将至 이재, 곧 죽습니다" + }, + { + "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", + "filename": "Deaths.Game.S01E02.2023.1080p.AMZN.WEB-DL.DDP2.0.H264-HHWEB.mkv", + "category": "series", + "title": "Deaths Game", + "season": 1, + "episodes": [ + 2 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:218230", + "title_zh": "死期将至", + "title_en": "이재, 곧 죽습니다", + "translation_source": "tmdb", + "reputation_score": 8.4, + "reputation_votes": 595, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"218230\"}" + }, + "display_title": "死期将至 이재, 곧 죽습니다" + }, + { + "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", + "filename": "Deaths.Game.S01E03.2023.1080p.AMZN.WEB-DL.DDP2.0.H264-HHWEB.mkv", + "category": "series", + "title": "Deaths Game", + "season": 1, + "episodes": [ + 3 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:218230", + "title_zh": "死期将至", + "title_en": "이재, 곧 죽습니다", + "translation_source": "tmdb", + "reputation_score": 8.4, + "reputation_votes": 595, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"218230\"}" + }, + "display_title": "死期将至 이재, 곧 죽습니다" + }, + { + "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", + "filename": "Kazama.Kimichika.Kyoujou.Zero.EP10.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv", + "category": "series", + "title": "Kazama Kimichika Kyoujou Zero Ep10 Amzn Ddp2 0 H 264-Magicstar", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Kazama Kimichika Kyoujou Zero Ep10 Amzn Ddp2 0 H 264-Magicstar" + }, + { + "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", + "filename": "Kazama.Kimichika.Kyoujou.Zero.EP07.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv", + "category": "series", + "title": "Kazama Kimichika Kyoujou Zero Ep07 Amzn Ddp2 0 H 264-Magicstar", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Kazama Kimichika Kyoujou Zero Ep07 Amzn Ddp2 0 H 264-Magicstar" + }, + { + "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", + "filename": "Kazama.Kimichika.Kyoujou.Zero.EP03.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv", + "category": "series", + "title": "Kazama Kimichika Kyoujou Zero Ep03 Amzn Ddp2 0 H 264-Magicstar", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Kazama Kimichika Kyoujou Zero Ep03 Amzn Ddp2 0 H 264-Magicstar" + }, + { + "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", + "filename": "Kazama.Kimichika.Kyoujou.Zero.EP06.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv", + "category": "series", + "title": "Kazama Kimichika Kyoujou Zero Ep06 Amzn Ddp2 0 H 264-Magicstar", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Kazama Kimichika Kyoujou Zero Ep06 Amzn Ddp2 0 H 264-Magicstar" + }, + { + "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", + "filename": "Kazama.Kimichika.Kyoujou.Zero.EP02.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv", + "category": "series", + "title": "Kazama Kimichika Kyoujou Zero Ep02 Amzn Ddp2 0 H 264-Magicstar", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Kazama Kimichika Kyoujou Zero Ep02 Amzn Ddp2 0 H 264-Magicstar" + }, + { + "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", + "filename": "Kazama.Kimichika.Kyoujou.Zero.EP11.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv", + "category": "series", + "title": "Kazama Kimichika Kyoujou Zero Ep11 Amzn Ddp2 0 H 264-Magicstar", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Kazama Kimichika Kyoujou Zero Ep11 Amzn Ddp2 0 H 264-Magicstar" + }, + { + "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", + "filename": "Kazama.Kimichika.Kyoujou.Zero.EP04.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv", + "category": "series", + "title": "Kazama Kimichika Kyoujou Zero Ep04 Amzn Ddp2 0 H 264-Magicstar", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Kazama Kimichika Kyoujou Zero Ep04 Amzn Ddp2 0 H 264-Magicstar" + }, + { + "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", + "filename": "Kazama.Kimichika.Kyoujou.Zero.EP08.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv", + "category": "series", + "title": "Kazama Kimichika Kyoujou Zero Ep08 Amzn Ddp2 0 H 264-Magicstar", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Kazama Kimichika Kyoujou Zero Ep08 Amzn Ddp2 0 H 264-Magicstar" + }, + { + "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", + "filename": "Kazama.Kimichika.Kyoujou.Zero.EP09.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv", + "category": "series", + "title": "Kazama Kimichika Kyoujou Zero Ep09 Amzn Ddp2 0 H 264-Magicstar", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Kazama Kimichika Kyoujou Zero Ep09 Amzn Ddp2 0 H 264-Magicstar" + }, + { + "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", + "filename": "Kazama.Kimichika.Kyoujou.Zero.EP05.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv", + "category": "series", + "title": "Kazama Kimichika Kyoujou Zero Ep05 Amzn Ddp2 0 H 264-Magicstar", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Kazama Kimichika Kyoujou Zero Ep05 Amzn Ddp2 0 H 264-Magicstar" + }, + { + "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", + "filename": "Kazama.Kimichika.Kyoujou.Zero.EP01.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv", + "category": "series", + "title": "Kazama Kimichika Kyoujou Zero Ep01 Amzn Ddp2 0 H 264-Magicstar", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Kazama Kimichika Kyoujou Zero Ep01 Amzn Ddp2 0 H 264-Magicstar" + }, + { + "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", + "filename": "Foundation.S01E01.2021.AppleTV+.WEB-DL.1080p.H264.DDP-AREY.mkv", + "category": "series", + "title": "Foundation", + "season": 1, + "episodes": [ + 1 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:93740", + "title_zh": "Foundation", + "title_en": "Foundation", + "translation_source": "tmdb", + "reputation_score": 7.713, + "reputation_votes": 1627, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"93740\"}" + }, + "display_title": "Foundation" + }, + { + "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", + "filename": "Foundation.S01E02.2021.AppleTV+.WEB-DL.1080p.H264.DDP-AREY.mkv", + "category": "series", + "title": "Foundation", + "season": 1, + "episodes": [ + 2 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:93740", + "title_zh": "Foundation", + "title_en": "Foundation", + "translation_source": "tmdb", + "reputation_score": 7.713, + "reputation_votes": 1627, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"93740\"}" + }, + "display_title": "Foundation" + }, + { + "path": "/mnt/Downloads/series/Dark.Matter.2024.S01E06.Superposition.1080p.ATVP.WEB-DL.DDP5.1.H.264-NTb.mkv", + "filename": "Dark.Matter.2024.S01E06.Superposition.1080p.ATVP.WEB-DL.DDP5.1.H.264-NTb.mkv", + "category": "series", + "title": "Dark Matter 2024", + "season": 1, + "episodes": [ + 6 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Dark Matter 2024" + }, + { + "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", + "filename": "The.Trauma.Code.Heroes.on.Call.S01E05.2025.1080p.NF.WEB-DL.x264.DDP5.1-ADWeb.mkv", + "category": "series", + "title": "The Trauma Code Heroes On Call", + "season": 1, + "episodes": [ + 5 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:217553", + "title_zh": "外伤重症中心", + "title_en": "중증외상센터", + "translation_source": "tmdb", + "reputation_score": 8.531, + "reputation_votes": 128, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"217553\"}" + }, + "display_title": "外伤重症中心 중증외상센터" + }, + { + "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", + "filename": "The.Trauma.Code.Heroes.on.Call.S01E04.2025.1080p.NF.WEB-DL.x264.DDP5.1-ADWeb.mkv", + "category": "series", + "title": "The Trauma Code Heroes On Call", + "season": 1, + "episodes": [ + 4 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:217553", + "title_zh": "外伤重症中心", + "title_en": "중증외상센터", + "translation_source": "tmdb", + "reputation_score": 8.531, + "reputation_votes": 128, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"217553\"}" + }, + "display_title": "外伤重症中心 중증외상센터" + }, + { + "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", + "filename": "The.Trauma.Code.Heroes.on.Call.S01E07.2025.1080p.NF.WEB-DL.x264.DDP5.1-ADWeb.mkv", + "category": "series", + "title": "The Trauma Code Heroes On Call", + "season": 1, + "episodes": [ + 7 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:217553", + "title_zh": "外伤重症中心", + "title_en": "중증외상센터", + "translation_source": "tmdb", + "reputation_score": 8.531, + "reputation_votes": 128, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"217553\"}" + }, + "display_title": "外伤重症中心 중증외상센터" + }, + { + "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", + "filename": "The.Trauma.Code.Heroes.on.Call.S01E06.2025.1080p.NF.WEB-DL.x264.DDP5.1-ADWeb.mkv", + "category": "series", + "title": "The Trauma Code Heroes On Call", + "season": 1, + "episodes": [ + 6 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:217553", + "title_zh": "外伤重症中心", + "title_en": "중증외상센터", + "translation_source": "tmdb", + "reputation_score": 8.531, + "reputation_votes": 128, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"217553\"}" + }, + "display_title": "外伤重症中心 중증외상센터" + }, + { + "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", + "filename": "The.Trauma.Code.Heroes.on.Call.S01E01.2025.1080p.NF.WEB-DL.x264.DDP5.1-ADWeb.mkv", + "category": "series", + "title": "The Trauma Code Heroes On Call", + "season": 1, + "episodes": [ + 1 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:217553", + "title_zh": "外伤重症中心", + "title_en": "중증외상센터", + "translation_source": "tmdb", + "reputation_score": 8.531, + "reputation_votes": 128, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"217553\"}" + }, + "display_title": "外伤重症中心 중증외상센터" + }, + { + "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", + "filename": "The.Trauma.Code.Heroes.on.Call.S01E03.2025.1080p.NF.WEB-DL.x264.DDP5.1-ADWeb.mkv", + "category": "series", + "title": "The Trauma Code Heroes On Call", + "season": 1, + "episodes": [ + 3 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:217553", + "title_zh": "外伤重症中心", + "title_en": "중증외상센터", + "translation_source": "tmdb", + "reputation_score": 8.531, + "reputation_votes": 128, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"217553\"}" + }, + "display_title": "外伤重症中心 중증외상센터" + }, + { + "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", + "filename": "The.Trauma.Code.Heroes.on.Call.S01E02.2025.1080p.NF.WEB-DL.x264.DDP5.1-ADWeb.mkv", + "category": "series", + "title": "The Trauma Code Heroes On Call", + "season": 1, + "episodes": [ + 2 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:217553", + "title_zh": "外伤重症中心", + "title_en": "중증외상센터", + "translation_source": "tmdb", + "reputation_score": 8.531, + "reputation_votes": 128, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"217553\"}" + }, + "display_title": "外伤重症中心 중증외상센터" + }, + { + "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", + "filename": "The.Trauma.Code.Heroes.on.Call.S01E08.2025.1080p.NF.WEB-DL.x264.DDP5.1-ADWeb.mkv", + "category": "series", + "title": "The Trauma Code Heroes On Call", + "season": 1, + "episodes": [ + 8 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:217553", + "title_zh": "外伤重症中心", + "title_en": "중증외상센터", + "translation_source": "tmdb", + "reputation_score": 8.531, + "reputation_votes": 128, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"217553\"}" + }, + "display_title": "外伤重症中心 중증외상센터" + }, + { + "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", + "filename": "The.Copenhagen.Test.S01E08.The.Orphanage.2160p.AMZN.WEB-DL.DDP5.1.H.265-RAWR.mkv", + "category": "series", + "title": "The Copenhagen Test", + "season": 1, + "episodes": [ + 8 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:246412", + "title_zh": "哥本哈根测试", + "title_en": "The Copenhagen Test", + "translation_source": "tmdb", + "reputation_score": 6.415, + "reputation_votes": 65, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"246412\"}" + }, + "display_title": "哥本哈根测试 The Copenhagen Test" + }, + { + "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", + "filename": "The.Copenhagen.Test.S01E01.Copenhagen.2160p.AMZN.WEB-DL.DDP5.1.H.265-RAWR.mkv", + "category": "series", + "title": "The Copenhagen Test", + "season": 1, + "episodes": [ + 1 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:246412", + "title_zh": "哥本哈根测试", + "title_en": "The Copenhagen Test", + "translation_source": "tmdb", + "reputation_score": 6.415, + "reputation_votes": 65, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"246412\"}" + }, + "display_title": "哥本哈根测试 The Copenhagen Test" + }, + { + "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", + "filename": "The.Copenhagen.Test.S01E03.False.Flag.2160p.AMZN.WEB-DL.DDP5.1.H.265-RAWR.mkv", + "category": "series", + "title": "The Copenhagen Test", + "season": 1, + "episodes": [ + 3 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:246412", + "title_zh": "哥本哈根测试", + "title_en": "The Copenhagen Test", + "translation_source": "tmdb", + "reputation_score": 6.415, + "reputation_votes": 65, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"246412\"}" + }, + "display_title": "哥本哈根测试 The Copenhagen Test" + }, + { + "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", + "filename": "The.Copenhagen.Test.S01E06.Allegiance.2160p.AMZN.WEB-DL.DDP5.1.H.265-RAWR.mkv", + "category": "series", + "title": "The Copenhagen Test", + "season": 1, + "episodes": [ + 6 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:246412", + "title_zh": "哥本哈根测试", + "title_en": "The Copenhagen Test", + "translation_source": "tmdb", + "reputation_score": 6.415, + "reputation_votes": 65, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"246412\"}" + }, + "display_title": "哥本哈根测试 The Copenhagen Test" + }, + { + "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", + "filename": "The.Copenhagen.Test.S01E05.Looking.Glass.2160p.AMZN.WEB-DL.DDP5.1.H.265-RAWR.mkv", + "category": "series", + "title": "The Copenhagen Test", + "season": 1, + "episodes": [ + 5 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:246412", + "title_zh": "哥本哈根测试", + "title_en": "The Copenhagen Test", + "translation_source": "tmdb", + "reputation_score": 6.415, + "reputation_votes": 65, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"246412\"}" + }, + "display_title": "哥本哈根测试 The Copenhagen Test" + }, + { + "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", + "filename": "The.Copenhagen.Test.S01E04.Obsidian.2160p.AMZN.WEB-DL.DDP5.1.H.265-RAWR.mkv", + "category": "series", + "title": "The Copenhagen Test", + "season": 1, + "episodes": [ + 4 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:246412", + "title_zh": "哥本哈根测试", + "title_en": "The Copenhagen Test", + "translation_source": "tmdb", + "reputation_score": 6.415, + "reputation_votes": 65, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"246412\"}" + }, + "display_title": "哥本哈根测试 The Copenhagen Test" + }, + { + "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", + "filename": "The.Copenhagen.Test.S01E07.Not.the.World.of.Men.2160p.AMZN.WEB-DL.DDP5.1.H.265-RAWR.mkv", + "category": "series", + "title": "The Copenhagen Test", + "season": 1, + "episodes": [ + 7 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:246412", + "title_zh": "哥本哈根测试", + "title_en": "The Copenhagen Test", + "translation_source": "tmdb", + "reputation_score": 6.415, + "reputation_votes": 65, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"246412\"}" + }, + "display_title": "哥本哈根测试 The Copenhagen Test" + }, + { + "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", + "filename": "The.Copenhagen.Test.S01E02.Glass.House.2160p.AMZN.WEB-DL.DDP5.1.H.265-RAWR.mkv", + "category": "series", + "title": "The Copenhagen Test", + "season": 1, + "episodes": [ + 2 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:246412", + "title_zh": "哥本哈根测试", + "title_en": "The Copenhagen Test", + "translation_source": "tmdb", + "reputation_score": 6.415, + "reputation_votes": 65, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"246412\"}" + }, + "display_title": "哥本哈根测试 The Copenhagen Test" + }, + { + "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", + "filename": "The.Gentlemen.S01E08.The.Gospel.According.to.Bobby.Glass.1080p.NF.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv", + "category": "series", + "title": "The Gentlemen", + "season": 1, + "episodes": [ + 8 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:236235", + "title_zh": "绅士们", + "title_en": "The Gentlemen", + "translation_source": "tmdb", + "reputation_score": 7.855, + "reputation_votes": 706, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"236235\"}" + }, + "display_title": "绅士们 The Gentlemen" + }, + { + "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", + "filename": "The.Gentlemen.S01E06.All.Eventualities.1080p.NF.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv", + "category": "series", + "title": "The Gentlemen", + "season": 1, + "episodes": [ + 6 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:236235", + "title_zh": "绅士们", + "title_en": "The Gentlemen", + "translation_source": "tmdb", + "reputation_score": 7.855, + "reputation_votes": 706, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"236235\"}" + }, + "display_title": "绅士们 The Gentlemen" + }, + { + "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", + "filename": "The.Gentlemen.S01E04.An.Unsympathetic.Gentleman.1080p.NF.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv", + "category": "series", + "title": "The Gentlemen", + "season": 1, + "episodes": [ + 4 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:236235", + "title_zh": "绅士们", + "title_en": "The Gentlemen", + "translation_source": "tmdb", + "reputation_score": 7.855, + "reputation_votes": 706, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"236235\"}" + }, + "display_title": "绅士们 The Gentlemen" + }, + { + "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", + "filename": "The.Gentlemen.S01E07.Not.Without.Danger.1080p.NF.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv", + "category": "series", + "title": "The Gentlemen", + "season": 1, + "episodes": [ + 7 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:236235", + "title_zh": "绅士们", + "title_en": "The Gentlemen", + "translation_source": "tmdb", + "reputation_score": 7.855, + "reputation_votes": 706, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"236235\"}" + }, + "display_title": "绅士们 The Gentlemen" + }, + { + "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", + "filename": "The.Gentlemen.S01E01.Refined.Aggression.1080p.NF.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv", + "category": "series", + "title": "The Gentlemen", + "season": 1, + "episodes": [ + 1 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:236235", + "title_zh": "绅士们", + "title_en": "The Gentlemen", + "translation_source": "tmdb", + "reputation_score": 7.855, + "reputation_votes": 706, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"236235\"}" + }, + "display_title": "绅士们 The Gentlemen" + }, + { + "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", + "filename": "The.Gentlemen.S01E05.Ive.Hundreds.of.Cousins.1080p.NF.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv", + "category": "series", + "title": "The Gentlemen", + "season": 1, + "episodes": [ + 5 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:236235", + "title_zh": "绅士们", + "title_en": "The Gentlemen", + "translation_source": "tmdb", + "reputation_score": 7.855, + "reputation_votes": 706, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"236235\"}" + }, + "display_title": "绅士们 The Gentlemen" + }, + { + "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", + "filename": "The.Gentlemen.S01E03.Wheres.My.Weed.At.1080p.NF.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv", + "category": "series", + "title": "The Gentlemen", + "season": 1, + "episodes": [ + 3 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:236235", + "title_zh": "绅士们", + "title_en": "The Gentlemen", + "translation_source": "tmdb", + "reputation_score": 7.855, + "reputation_votes": 706, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"236235\"}" + }, + "display_title": "绅士们 The Gentlemen" + }, + { + "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", + "filename": "The.Gentlemen.S01E02.Tackle.Tommy.Woo.Woo.1080p.NF.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv", + "category": "series", + "title": "The Gentlemen", + "season": 1, + "episodes": [ + 2 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:236235", + "title_zh": "绅士们", + "title_en": "The Gentlemen", + "translation_source": "tmdb", + "reputation_score": 7.855, + "reputation_votes": 706, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"236235\"}" + }, + "display_title": "绅士们 The Gentlemen" + }, + { + "path": "/mnt/Downloads/series/【东京不够热】破解不在场证明 EP01_07/TNHSub_alibaikutsushi EP01.mkv", + "filename": "TNHSub_alibaikutsushi EP01.mkv", + "category": "series", + "title": "Tnhsub Alibaikutsushi Ep01", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Tnhsub Alibaikutsushi Ep01" + }, + { + "path": "/mnt/Downloads/series/【东京不够热】破解不在场证明 EP01_07/TNHSub_alibaikutsushi EP06.mkv", + "filename": "TNHSub_alibaikutsushi EP06.mkv", + "category": "series", + "title": "Tnhsub Alibaikutsushi Ep06", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Tnhsub Alibaikutsushi Ep06" + }, + { + "path": "/mnt/Downloads/series/【东京不够热】破解不在场证明 EP01_07/TNHSub_alibaikutsushi EP07 END.mkv", + "filename": "TNHSub_alibaikutsushi EP07 END.mkv", + "category": "series", + "title": "Tnhsub Alibaikutsushi Ep07 End", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Tnhsub Alibaikutsushi Ep07 End" + }, + { + "path": "/mnt/Downloads/series/【东京不够热】破解不在场证明 EP01_07/TNHSub_alibaikutsushi EP03.mkv", + "filename": "TNHSub_alibaikutsushi EP03.mkv", + "category": "series", + "title": "Tnhsub Alibaikutsushi Ep03", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Tnhsub Alibaikutsushi Ep03" + }, + { + "path": "/mnt/Downloads/series/【东京不够热】破解不在场证明 EP01_07/TNHSub_alibaikutsushi EP04.mkv", + "filename": "TNHSub_alibaikutsushi EP04.mkv", + "category": "series", + "title": "Tnhsub Alibaikutsushi Ep04", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Tnhsub Alibaikutsushi Ep04" + }, + { + "path": "/mnt/Downloads/series/【东京不够热】破解不在场证明 EP01_07/TNHSub_alibaikutsushi EP05.mkv", + "filename": "TNHSub_alibaikutsushi EP05.mkv", + "category": "series", + "title": "Tnhsub Alibaikutsushi Ep05", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Tnhsub Alibaikutsushi Ep05" + }, + { + "path": "/mnt/Downloads/series/【东京不够热】破解不在场证明 EP01_07/TNHSub_alibaikutsushi EP02.mkv", + "filename": "TNHSub_alibaikutsushi EP02.mkv", + "category": "series", + "title": "Tnhsub Alibaikutsushi Ep02", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Tnhsub Alibaikutsushi Ep02" + }, + { + "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", + "filename": "Squid.Game.S01E03.2021.Netflix.WEB-DL.1080p.HEVC.DDP-AREY.mkv", + "category": "series", + "title": "Squid Game", + "season": 1, + "episodes": [ + 3 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:204082", + "title_zh": "鱿鱼游戏:真人挑战赛", + "title_en": "Squid Game: The Challenge", + "translation_source": "tmdb", + "reputation_score": 6.453, + "reputation_votes": 611, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"204082\"}" + }, + "display_title": "鱿鱼游戏:真人挑战赛 Squid Game: The Challenge" + }, + { + "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", + "filename": "Squid.Game.S01E05.2021.Netflix.WEB-DL.1080p.HEVC.DDP-AREY.mkv", + "category": "series", + "title": "Squid Game", + "season": 1, + "episodes": [ + 5 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:204082", + "title_zh": "鱿鱼游戏:真人挑战赛", + "title_en": "Squid Game: The Challenge", + "translation_source": "tmdb", + "reputation_score": 6.453, + "reputation_votes": 611, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"204082\"}" + }, + "display_title": "鱿鱼游戏:真人挑战赛 Squid Game: The Challenge" + }, + { + "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", + "filename": "Squid.Game.S01E09.2021.Netflix.WEB-DL.1080p.HEVC.DDP-AREY.mkv", + "category": "series", + "title": "Squid Game", + "season": 1, + "episodes": [ + 9 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:204082", + "title_zh": "鱿鱼游戏:真人挑战赛", + "title_en": "Squid Game: The Challenge", + "translation_source": "tmdb", + "reputation_score": 6.453, + "reputation_votes": 611, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"204082\"}" + }, + "display_title": "鱿鱼游戏:真人挑战赛 Squid Game: The Challenge" + }, + { + "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", + "filename": "Squid.Game.S01E02.2021.Netflix.WEB-DL.1080p.HEVC.DDP-AREY.mkv", + "category": "series", + "title": "Squid Game", + "season": 1, + "episodes": [ + 2 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:204082", + "title_zh": "鱿鱼游戏:真人挑战赛", + "title_en": "Squid Game: The Challenge", + "translation_source": "tmdb", + "reputation_score": 6.453, + "reputation_votes": 611, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"204082\"}" + }, + "display_title": "鱿鱼游戏:真人挑战赛 Squid Game: The Challenge" + }, + { + "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", + "filename": "Squid.Game.S01E04.2021.Netflix.WEB-DL.1080p.HEVC.DDP-AREY.mkv", + "category": "series", + "title": "Squid Game", + "season": 1, + "episodes": [ + 4 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:204082", + "title_zh": "鱿鱼游戏:真人挑战赛", + "title_en": "Squid Game: The Challenge", + "translation_source": "tmdb", + "reputation_score": 6.453, + "reputation_votes": 611, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"204082\"}" + }, + "display_title": "鱿鱼游戏:真人挑战赛 Squid Game: The Challenge" + }, + { + "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", + "filename": "Squid.Game.S01E08.2021.Netflix.WEB-DL.1080p.HEVC.DDP-AREY.mkv", + "category": "series", + "title": "Squid Game", + "season": 1, + "episodes": [ + 8 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:204082", + "title_zh": "鱿鱼游戏:真人挑战赛", + "title_en": "Squid Game: The Challenge", + "translation_source": "tmdb", + "reputation_score": 6.453, + "reputation_votes": 611, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"204082\"}" + }, + "display_title": "鱿鱼游戏:真人挑战赛 Squid Game: The Challenge" + }, + { + "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", + "filename": "Squid.Game.S01E07.2021.Netflix.WEB-DL.1080p.HEVC.DDP-AREY.mkv", + "category": "series", + "title": "Squid Game", + "season": 1, + "episodes": [ + 7 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:204082", + "title_zh": "鱿鱼游戏:真人挑战赛", + "title_en": "Squid Game: The Challenge", + "translation_source": "tmdb", + "reputation_score": 6.453, + "reputation_votes": 611, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"204082\"}" + }, + "display_title": "鱿鱼游戏:真人挑战赛 Squid Game: The Challenge" + }, + { + "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", + "filename": "Squid.Game.S01E01.2021.Netflix.WEB-DL.1080p.HEVC.DDP-AREY.mkv", + "category": "series", + "title": "Squid Game", + "season": 1, + "episodes": [ + 1 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:204082", + "title_zh": "鱿鱼游戏:真人挑战赛", + "title_en": "Squid Game: The Challenge", + "translation_source": "tmdb", + "reputation_score": 6.453, + "reputation_votes": 611, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"204082\"}" + }, + "display_title": "鱿鱼游戏:真人挑战赛 Squid Game: The Challenge" + }, + { + "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", + "filename": "Squid.Game.S01E06.2021.Netflix.WEB-DL.1080p.HEVC.DDP-AREY.mkv", + "category": "series", + "title": "Squid Game", + "season": 1, + "episodes": [ + 6 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:204082", + "title_zh": "鱿鱼游戏:真人挑战赛", + "title_en": "Squid Game: The Challenge", + "translation_source": "tmdb", + "reputation_score": 6.453, + "reputation_votes": 611, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"204082\"}" + }, + "display_title": "鱿鱼游戏:真人挑战赛 Squid Game: The Challenge" + }, + { + "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", + "filename": "Star.Wars.Andor.S01E05.The.Axe.Forgets.1080p.DSNP.WEB-DL.DDP5.1.H.264-NTb.mkv", + "category": "series", + "title": "Star Wars Andor", + "season": 1, + "episodes": [ + 5 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:83867", + "title_zh": "Andor", + "title_en": "Andor", + "translation_source": "tmdb", + "reputation_score": 8.273, + "reputation_votes": 1848, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"83867\"}" + }, + "display_title": "Andor" + }, + { + "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", + "filename": "Star.Wars.Andor.S01E09.Nobodys.Listening.1080p.DSNP.WEB-DL.DDP5.1.H.264-NTb.mkv", + "category": "series", + "title": "Star Wars Andor", + "season": 1, + "episodes": [ + 9 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:83867", + "title_zh": "Andor", + "title_en": "Andor", + "translation_source": "tmdb", + "reputation_score": 8.273, + "reputation_votes": 1848, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"83867\"}" + }, + "display_title": "Andor" + }, + { + "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", + "filename": "Star.Wars.Andor.S01E11.Daughter.of.Ferrix.1080p.DSNP.WEB-DL.DDP5.1.H.264-NTb.mkv", + "category": "series", + "title": "Star Wars Andor", + "season": 1, + "episodes": [ + 11 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:83867", + "title_zh": "Andor", + "title_en": "Andor", + "translation_source": "tmdb", + "reputation_score": 8.273, + "reputation_votes": 1848, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"83867\"}" + }, + "display_title": "Andor" + }, + { + "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", + "filename": "Star.Wars.Andor.S01E10.One.Way.Out.1080p.DSNP.WEB-DL.DDP5.1.H.264-NTb.mkv", + "category": "series", + "title": "Star Wars Andor", + "season": 1, + "episodes": [ + 10 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:83867", + "title_zh": "Andor", + "title_en": "Andor", + "translation_source": "tmdb", + "reputation_score": 8.273, + "reputation_votes": 1848, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"83867\"}" + }, + "display_title": "Andor" + }, + { + "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", + "filename": "Star.Wars.Andor.S01E08.Narkina.5.1080p.DSNP.WEB-DL.DDP5.1.H.264-NTb.mkv", + "category": "series", + "title": "Star Wars Andor", + "season": 1, + "episodes": [ + 8 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:83867", + "title_zh": "Andor", + "title_en": "Andor", + "translation_source": "tmdb", + "reputation_score": 8.273, + "reputation_votes": 1848, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"83867\"}" + }, + "display_title": "Andor" + }, + { + "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", + "filename": "Star.Wars.Andor.S01E04.Aldhani.1080p.DSNP.WEB-DL.DDP5.1.H.264-NTb.mkv", + "category": "series", + "title": "Star Wars Andor", + "season": 1, + "episodes": [ + 4 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:83867", + "title_zh": "Andor", + "title_en": "Andor", + "translation_source": "tmdb", + "reputation_score": 8.273, + "reputation_votes": 1848, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"83867\"}" + }, + "display_title": "Andor" + }, + { + "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", + "filename": "Star.Wars.Andor.S01E07.Announcement.1080p.DSNP.WEB-DL.DDP5.1.H.264-NTb.mkv", + "category": "series", + "title": "Star Wars Andor", + "season": 1, + "episodes": [ + 7 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:83867", + "title_zh": "Andor", + "title_en": "Andor", + "translation_source": "tmdb", + "reputation_score": 8.273, + "reputation_votes": 1848, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"83867\"}" + }, + "display_title": "Andor" + }, + { + "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", + "filename": "Star.Wars.Andor.S01E12.Rix.Road.1080p.DSNP.WEB-DL.DDP5.1.H.264-NTb.mkv", + "category": "series", + "title": "Star Wars Andor", + "season": 1, + "episodes": [ + 12 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:83867", + "title_zh": "Andor", + "title_en": "Andor", + "translation_source": "tmdb", + "reputation_score": 8.273, + "reputation_votes": 1848, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"83867\"}" + }, + "display_title": "Andor" + }, + { + "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", + "filename": "Star.Wars.Andor.S01E03.Reckoning.1080p.DSNP.WEB-DL.DDP5.1.H.264-NTb.mkv", + "category": "series", + "title": "Star Wars Andor", + "season": 1, + "episodes": [ + 3 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:83867", + "title_zh": "Andor", + "title_en": "Andor", + "translation_source": "tmdb", + "reputation_score": 8.273, + "reputation_votes": 1848, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"83867\"}" + }, + "display_title": "Andor" + }, + { + "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", + "filename": "Star.Wars.Andor.S01E06.The.Eye.1080p.DSNP.WEB-DL.DDP5.1.H.264-NTb.mkv", + "category": "series", + "title": "Star Wars Andor", + "season": 1, + "episodes": [ + 6 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:83867", + "title_zh": "Andor", + "title_en": "Andor", + "translation_source": "tmdb", + "reputation_score": 8.273, + "reputation_votes": 1848, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"83867\"}" + }, + "display_title": "Andor" + }, + { + "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", + "filename": "Star.Wars.Andor.S01E01.Kassa.1080p.DSNP.WEB-DL.DDP5.1.H.264-NTb.mkv", + "category": "series", + "title": "Star Wars Andor", + "season": 1, + "episodes": [ + 1 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:83867", + "title_zh": "Andor", + "title_en": "Andor", + "translation_source": "tmdb", + "reputation_score": 8.273, + "reputation_votes": 1848, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"83867\"}" + }, + "display_title": "Andor" + }, + { + "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", + "filename": "Star.Wars.Andor.S01E02.That.Would.Be.Me.1080p.DSNP.WEB-DL.DDP5.1.H.264-NTb.mkv", + "category": "series", + "title": "Star Wars Andor", + "season": 1, + "episodes": [ + 2 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:83867", + "title_zh": "Andor", + "title_en": "Andor", + "translation_source": "tmdb", + "reputation_score": 8.273, + "reputation_votes": 1848, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"83867\"}" + }, + "display_title": "Andor" + }, + { + "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", + "filename": "那你来做做看啊.Then.You.Try.Making.It.2025.S01E06.1080p.friDay.WEB-DL.H.264.AAC-AilMWeb.mp4", + "category": "series", + "title": "那你来做做看啊 Then You Try Making It 2025", + "season": 1, + "episodes": [ + 6 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "那你来做做看啊 Then You Try Making It 2025" + }, + { + "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", + "filename": "那你来做做看啊.Then.You.Try.Making.It.2025.S01E01.1080p.friDay.WEB-DL.H.264.AAC-AilMWeb.mp4", + "category": "series", + "title": "那你来做做看啊 Then You Try Making It 2025", + "season": 1, + "episodes": [ + 1 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "那你来做做看啊 Then You Try Making It 2025" + }, + { + "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", + "filename": "那你来做做看啊.Then.You.Try.Making.It.2025.S01E09.1080p.friDay.WEB-DL.H.264.AAC-AilMWeb.mp4", + "category": "series", + "title": "那你来做做看啊 Then You Try Making It 2025", + "season": 1, + "episodes": [ + 9 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "那你来做做看啊 Then You Try Making It 2025" + }, + { + "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", + "filename": "那你来做做看啊.Then.You.Try.Making.It.2025.S01E07.1080p.friDay.WEB-DL.H.264.AAC-AilMWeb.mp4", + "category": "series", + "title": "那你来做做看啊 Then You Try Making It 2025", + "season": 1, + "episodes": [ + 7 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "那你来做做看啊 Then You Try Making It 2025" + }, + { + "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", + "filename": "那你来做做看啊.Then.You.Try.Making.It.2025.S01E10.1080p.friDay.WEB-DL.H.264.AAC-AilMWeb.mp4", + "category": "series", + "title": "那你来做做看啊 Then You Try Making It 2025", + "season": 1, + "episodes": [ + 10 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "那你来做做看啊 Then You Try Making It 2025" + }, + { + "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", + "filename": "那你来做做看啊.Then.You.Try.Making.It.2025.S01E08.1080p.friDay.WEB-DL.H.264.AAC-AilMWeb.mp4", + "category": "series", + "title": "那你来做做看啊 Then You Try Making It 2025", + "season": 1, + "episodes": [ + 8 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "那你来做做看啊 Then You Try Making It 2025" + }, + { + "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", + "filename": "那你来做做看啊.Then.You.Try.Making.It.2025.S01E03.1080p.friDay.WEB-DL.H.264.AAC-AilMWeb.mp4", + "category": "series", + "title": "那你来做做看啊 Then You Try Making It 2025", + "season": 1, + "episodes": [ + 3 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "那你来做做看啊 Then You Try Making It 2025" + }, + { + "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", + "filename": "那你来做做看啊.Then.You.Try.Making.It.2025.S01E04.1080p.friDay.WEB-DL.H.264.AAC-AilMWeb.mp4", + "category": "series", + "title": "那你来做做看啊 Then You Try Making It 2025", + "season": 1, + "episodes": [ + 4 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "那你来做做看啊 Then You Try Making It 2025" + }, + { + "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", + "filename": "那你来做做看啊.Then.You.Try.Making.It.2025.S01E02.1080p.friDay.WEB-DL.H.264.AAC-AilMWeb.mp4", + "category": "series", + "title": "那你来做做看啊 Then You Try Making It 2025", + "season": 1, + "episodes": [ + 2 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "那你来做做看啊 Then You Try Making It 2025" + }, + { + "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", + "filename": "那你来做做看啊.Then.You.Try.Making.It.2025.S01E05.1080p.friDay.WEB-DL.H.264.AAC-AilMWeb.mp4", + "category": "series", + "title": "那你来做做看啊 Then You Try Making It 2025", + "season": 1, + "episodes": [ + 5 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "那你来做做看啊 Then You Try Making It 2025" + }, + { + "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", + "filename": "[苦尽柑来遇见你].When.Life.Gives.You.Tangerines.2025.S01E04.1080p.NF.WEB-DL.H264.DDP5.1.Atmos-UBWEB.mkv", + "category": "series", + "title": "When Life Gives You Tangerines 2025", + "season": 1, + "episodes": [ + 4 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "When Life Gives You Tangerines 2025" + }, + { + "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", + "filename": "[苦尽柑来遇见你].When.Life.Gives.You.Tangerines.2025.S01E02.1080p.NF.WEB-DL.H264.DDP5.1.Atmos-UBWEB.mkv", + "category": "series", + "title": "When Life Gives You Tangerines 2025", + "season": 1, + "episodes": [ + 2 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "When Life Gives You Tangerines 2025" + }, + { + "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", + "filename": "[苦尽柑来遇见你].When.Life.Gives.You.Tangerines.2025.S01E03.1080p.NF.WEB-DL.H264.DDP5.1.Atmos-UBWEB.mkv", + "category": "series", + "title": "When Life Gives You Tangerines 2025", + "season": 1, + "episodes": [ + 3 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "When Life Gives You Tangerines 2025" + }, + { + "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", + "filename": "[苦尽柑来遇见你].When.Life.Gives.You.Tangerines.2025.S01E01.1080p.NF.WEB-DL.H264.DDP5.1.Atmos-UBWEB.mkv", + "category": "series", + "title": "When Life Gives You Tangerines 2025", + "season": 1, + "episodes": [ + 1 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "When Life Gives You Tangerines 2025" + }, + { + "path": "/mnt/Downloads/series/(ドラマ) 完全無罪 第03話 「正義という名の罪」 (1920x1080 x264-AAC)-DoA.mkv", + "filename": "(ドラマ) 完全無罪 第03話 「正義という名の罪」 (1920x1080 x264-AAC)-DoA.mkv", + "category": "series", + "title": "(ドラマ) 完全無罪 第03話 「正義という名の罪」 (19", + "season": 20, + "episodes": [ + 10 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "(ドラマ) 完全無罪 第03話 「正義という名の罪」 (19" + }, + { + "path": "/mnt/Downloads/series/Reacher.S03E02.Truckin.1080p.AMZN.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv", + "filename": "Reacher.S03E02.Truckin.1080p.AMZN.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv", + "category": "series", + "title": "Reacher", + "season": 3, + "episodes": [ + 2 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": "tmdb:tv:108978", + "title_zh": "侠探杰克", + "title_en": "Reacher", + "translation_source": "tmdb", + "reputation_score": 8.084, + "reputation_votes": 2645, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"108978\"}" + }, + "display_title": "侠探杰克 Reacher" + }, + { + "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リバイバル (14", + "season": 40, + "episodes": [ + 10 + ], + "confidence": 0.9, + "needs_review": true, + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "(ドラマSp) Gtoリバイバル (14" + } + ], + "anime": [ + { + "path": "/mnt/Downloads/anime/[Nekomoe kissaten][ZENSHU][01][1080p][CHS].mp4", + "filename": "[Nekomoe kissaten][ZENSHU][01][1080p][CHS].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Nekomoe Kissaten][Zenshu][01][1080P][Chs]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Nekomoe Kissaten][Zenshu][01][1080P][Chs]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Tensei Kizoku, Kantei Skill de Nariagaru - 13 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "filename": "[LoliHouse] Tensei Kizoku, Kantei Skill de Nariagaru - 13 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Tensei Kizoku, Kantei Skill De Nariagaru - 13 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Tensei Kizoku, Kantei Skill De Nariagaru - 13 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 最近的偵探真沒用 - 08 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 最近的偵探真沒用 - 08 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 最近的偵探真沒用 - 08 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 最近的偵探真沒用 - 08 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 膽大黨 - 08 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 膽大黨 - 08 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 膽大黨 - 08 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 膽大黨 - 08 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Beheneko - 02 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "filename": "[LoliHouse] Beheneko - 02 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Beheneko - 02 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Beheneko - 02 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "needs_review": true + }, + { + "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", + "title": "[Ani] 靠廢柴技能【狀態異常】成為最強的我將蹂躪一切 - 07 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 靠廢柴技能【狀態異常】成為最強的我將蹂躪一切 - 07 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Shangri-La Frontier - 35 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "filename": "[LoliHouse] Shangri-La Frontier - 35 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Shangri-La Frontier - 35 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Shangri-La Frontier - 35 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 轉生貴族憑鑑定技能扭轉人生 第二季 - 19 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 轉生貴族憑鑑定技能扭轉人生 第二季 - 19 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 轉生貴族憑鑑定技能扭轉人生 第二季 - 19 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 轉生貴族憑鑑定技能扭轉人生 第二季 - 19 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 膽大黨 第二季 - 21 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 膽大黨 第二季 - 21 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 膽大黨 第二季 - 21 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 膽大黨 第二季 - 21 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Tensei Kizoku, Kantei Skill de Nariagaru - 08 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "filename": "[LoliHouse] Tensei Kizoku, Kantei Skill de Nariagaru - 08 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Tensei Kizoku, Kantei Skill De Nariagaru - 08 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Tensei Kizoku, Kantei Skill De Nariagaru - 08 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] SI-VIS:英雄之聲 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] SI-VIS:英雄之聲 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] Si-Vis:英雄之聲 - 01 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] Si-Vis:英雄之聲 - 01 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] GNOSIA - 06 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] GNOSIA - 06 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] Gnosia - 06 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] Gnosia - 06 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Lilith-Raws] Date A Live S05 - 02 [Baha][WebDL 1080p AVC AAC][CHT].mp4", + "filename": "[Lilith-Raws] Date A Live S05 - 02 [Baha][WebDL 1080p AVC AAC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lilith-Raws] Date A Live S05 - 02 [Baha][Webdl 1080P Avc Aac][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lilith-Raws] Date A Live S05 - 02 [Baha][Webdl 1080P Avc Aac][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] Acro Trip 頂尖惡路 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] Acro Trip 頂尖惡路 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] Acro Trip 頂尖惡路 - 01 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] Acro Trip 頂尖惡路 - 01 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 我要【招架】一切~反誤解的世界最強想成為冒險家~ - 08 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 我要【招架】一切~反誤解的世界最強想成為冒險家~ - 08 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 我要【招架】一切~反誤解的世界最強想成為冒險家~ - 08 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 我要【招架】一切~反誤解的世界最強想成為冒險家~ - 08 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[HYSUB]Dungeon Meshi[11][BIG5_MP4][1920X1080].mp4", + "filename": "[HYSUB]Dungeon Meshi[11][BIG5_MP4][1920X1080].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Hysub]Dungeon Meshi[11][Big5 Mp4][1920X1080]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Hysub]Dungeon Meshi[11][Big5 Mp4][1920X1080]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Nekomoe kissaten&LoliHouse] Pon no Michi - 01 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "filename": "[Nekomoe kissaten&LoliHouse] Pon no Michi - 01 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Nekomoe Kissaten&Lolihouse] Pon No Michi - 01 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Nekomoe Kissaten&Lolihouse] Pon No Michi - 01 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Nekomoe kissaten][Ninja Kamui][08][1080p][CHS].mp4", + "filename": "[Nekomoe kissaten][Ninja Kamui][08][1080p][CHS].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Nekomoe Kissaten][Ninja Kamui][08][1080P][Chs]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Nekomoe Kissaten][Ninja Kamui][08][1080P][Chs]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Izure Saikyou no Renkinjutsushi - 03 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "filename": "[LoliHouse] Izure Saikyou no Renkinjutsushi - 03 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Izure Saikyou No Renkinjutsushi - 03 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Izure Saikyou No Renkinjutsushi - 03 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[orion origin] Boukyaku Battery [02] [1080p] [H265 AAC] [CHT&JPN].mp4", + "filename": "[orion origin] Boukyaku Battery [02] [1080p] [H265 AAC] [CHT&JPN].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Orion Origin] Boukyaku Battery [02] [1080P] [H265 Aac] [Cht&Jpn]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Orion Origin] Boukyaku Battery [02] [1080P] [H265 Aac] [Cht&Jpn]", + "needs_review": true + }, + { + "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", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 判處勇者刑 - 05 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 判處勇者刑 - 05 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Skymoon-Raws] Shangri-La Frontier 2nd Season - 23 [ViuTV][WEB-DL][CHT][SRT][1080p][AVC AAC].mkv", + "filename": "[Skymoon-Raws] Shangri-La Frontier 2nd Season - 23 [ViuTV][WEB-DL][CHT][SRT][1080p][AVC AAC].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Skymoon-Raws] Shangri-La Frontier 2Nd Season - 23 [Viutv][Web-Dl][Cht][Srt][1080P][Avc Aac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Skymoon-Raws] Shangri-La Frontier 2Nd Season - 23 [Viutv][Web-Dl][Cht][Srt][1080P][Avc Aac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] DDDD 惡魔的破壞 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] DDDD 惡魔的破壞 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] Dddd 惡魔的破壞 - 01 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] Dddd 惡魔的破壞 - 01 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 身為暗殺者的我明顯比勇者還強 - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 身為暗殺者的我明顯比勇者還強 - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 身為暗殺者的我明顯比勇者還強 - 02 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 身為暗殺者的我明顯比勇者還強 - 02 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 新人大叔冒險者,被最強隊伍操到死成無敵 - 11 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 新人大叔冒險者,被最強隊伍操到死成無敵 - 11 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 新人大叔冒險者,被最強隊伍操到死成無敵 - 11 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 新人大叔冒險者,被最強隊伍操到死成無敵 - 11 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[HYSUB]Magic Maker ~Isekai Mahou no Tsukurikata~[04][BIG5_MP4][1920X1080].mp4", + "filename": "[HYSUB]Magic Maker ~Isekai Mahou no Tsukurikata~[04][BIG5_MP4][1920X1080].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Hysub]Magic Maker ~Isekai Mahou No Tsukurikata~[04][Big5 Mp4][1920X1080]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Hysub]Magic Maker ~Isekai Mahou No Tsukurikata~[04][Big5 Mp4][1920X1080]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 無職轉生~到了異世界就拿出真本事 第二季 - 20 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 無職轉生~到了異世界就拿出真本事 第二季 - 20 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 無職轉生~到了異世界就拿出真本事 第二季 - 20 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 無職轉生~到了異世界就拿出真本事 第二季 - 20 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 治癒魔法的錯誤使用法 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 治癒魔法的錯誤使用法 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 治癒魔法的錯誤使用法 - 01 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 治癒魔法的錯誤使用法 - 01 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Grand Blue S2 - 04 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "filename": "[LoliHouse] Grand Blue S2 - 04 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Grand Blue S2 - 04 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Grand Blue S2 - 04 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 最強肉盾的迷宮攻略~擁有稀少技能體力 9999 的肉盾,被勇者隊伍辭退了~ - 11 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 最強肉盾的迷宮攻略~擁有稀少技能體力 9999 的肉盾,被勇者隊伍辭退了~ - 11 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 最強肉盾的迷宮攻略~擁有稀少技能體力 9999 的肉盾,被勇者隊伍辭退了~ - 11 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 最強肉盾的迷宮攻略~擁有稀少技能體力 9999 的肉盾,被勇者隊伍辭退了~ - 11 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 香格里拉・開拓異境~糞作獵手挑戰神作~ 第二季 - 09 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 香格里拉・開拓異境~糞作獵手挑戰神作~ 第二季 - 09 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 香格里拉・開拓異境~糞作獵手挑戰神作~ 第二季 - 09 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 香格里拉・開拓異境~糞作獵手挑戰神作~ 第二季 - 09 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/《BLEACH 死神 千年血戰篇-訣別譚-》#19/《BLEACH 死神 千年血戰篇-訣別譚-》#19 (日語原聲)【Ani-One Asia ULTRA】.mp4", + "filename": "《BLEACH 死神 千年血戰篇-訣別譚-》#19 (日語原聲)【Ani-One Asia ULTRA】.mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "《Bleach 死神 千年血戰篇-訣別譚-》#19 (日語原聲)【Ani-One Asia Ultra】", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "《Bleach 死神 千年血戰篇-訣別譚-》#19 (日語原聲)【Ani-One Asia Ultra】", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Nekomoe kissaten&LoliHouse] Hibi wa Sugiredo Meshi Umashi - 07 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "filename": "[Nekomoe kissaten&LoliHouse] Hibi wa Sugiredo Meshi Umashi - 07 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Nekomoe Kissaten&Lolihouse] Hibi Wa Sugiredo Meshi Umashi - 07 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Nekomoe Kissaten&Lolihouse] Hibi Wa Sugiredo Meshi Umashi - 07 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 水屬性的魔法師 - 11 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 水屬性的魔法師 - 11 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 水屬性的魔法師 - 11 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 水屬性的魔法師 - 11 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 結緣甘神神社 - 10 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 結緣甘神神社 - 10 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 結緣甘神神社 - 10 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 結緣甘神神社 - 10 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 一拳超人(第三季) - 34 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 一拳超人(第三季) - 34 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 一拳超人(第三季) - 34 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 一拳超人(第三季) - 34 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 異世界悠閒紀行~邊養娃邊當冒險者~ - 06 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 異世界悠閒紀行~邊養娃邊當冒險者~ - 06 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 異世界悠閒紀行~邊養娃邊當冒險者~ - 06 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 異世界悠閒紀行~邊養娃邊當冒險者~ - 06 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 葬送的芙莉蓮 - 23 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 葬送的芙莉蓮 - 23 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 葬送的芙莉蓮 - 23 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 葬送的芙莉蓮 - 23 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "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", + "title": "[Ani] 九龍大眾浪漫 - 07 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 九龍大眾浪漫 - 07 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 現在的是哪一個多聞!? - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 現在的是哪一個多聞!? - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 現在的是哪一個多聞!? - 01 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 現在的是哪一個多聞!? - 01 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 怪獸 8 號 第二季 - 23 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 怪獸 8 號 第二季 - 23 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 怪獸 8 號 第二季 - 23 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 怪獸 8 號 第二季 - 23 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 香格里拉・開拓異境~糞作獵手挑戰神作~ 第二季 - 12 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 香格里拉・開拓異境~糞作獵手挑戰神作~ 第二季 - 12 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 香格里拉・開拓異境~糞作獵手挑戰神作~ 第二季 - 12 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 香格里拉・開拓異境~糞作獵手挑戰神作~ 第二季 - 12 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 香格里拉・開拓異境~糞作獵手挑戰神作~ - 23 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 香格里拉・開拓異境~糞作獵手挑戰神作~ - 23 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 香格里拉・開拓異境~糞作獵手挑戰神作~ - 23 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 香格里拉・開拓異境~糞作獵手挑戰神作~ - 23 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Katainaka no Ossan, Kensei ni Naru - 07 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "filename": "[LoliHouse] Katainaka no Ossan, Kensei ni Naru - 07 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Katainaka No Ossan, Kensei Ni Naru - 07 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Katainaka No Ossan, Kensei Ni Naru - 07 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 刀劍神域外傳 Gun Gale Online II - 10 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 刀劍神域外傳 Gun Gale Online II - 10 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 刀劍神域外傳 Gun Gale Online Ii - 10 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 刀劍神域外傳 Gun Gale Online Ii - 10 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 擁有超常技能的異世界流浪美食家 S2 - 17 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 擁有超常技能的異世界流浪美食家 S2 - 17 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 擁有超常技能的異世界流浪美食家 S2 - 17 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 擁有超常技能的異世界流浪美食家 S2 - 17 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] Re:從零開始的異世界生活 第三季 - 04 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] Re:從零開始的異世界生活 第三季 - 04 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] Re:從零開始的異世界生活 第三季 - 04 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] Re:從零開始的異世界生活 第三季 - 04 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Haite Kudasai, Takamine-san - 02 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "filename": "[LoliHouse] Haite Kudasai, Takamine-san - 02 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Haite Kudasai, Takamine-San - 02 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Haite Kudasai, Takamine-San - 02 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 鬼人幻燈抄 - 09 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 鬼人幻燈抄 - 09 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 鬼人幻燈抄 - 09 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 鬼人幻燈抄 - 09 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Nekomoe kissaten][Tower of God S2][05][1080p][CHT].mp4", + "filename": "[Nekomoe kissaten][Tower of God S2][05][1080p][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Nekomoe Kissaten][Tower Of God S2][05][1080P][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Nekomoe Kissaten][Tower Of God S2][05][1080P][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 杖與劍的魔劍譚 - 06 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 杖與劍的魔劍譚 - 06 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 杖與劍的魔劍譚 - 06 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 杖與劍的魔劍譚 - 06 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Kowloon Generic Romance - 01 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "filename": "[LoliHouse] Kowloon Generic Romance - 01 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Kowloon Generic Romance - 01 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Kowloon Generic Romance - 01 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Tensei Shitara Slime Datta Ken 3rd Season - 49 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "filename": "[LoliHouse] Tensei Shitara Slime Datta Ken 3rd Season - 49 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Tensei Shitara Slime Datta Ken 3Rd Season - 49 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Tensei Shitara Slime Datta Ken 3Rd Season - 49 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "needs_review": true + }, + { + "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", + "title": "[Ani] 異世界自殺突擊隊 - 07 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 異世界自殺突擊隊 - 07 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 勇氣爆發 BANG BRAVERN - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 勇氣爆發 BANG BRAVERN - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 勇氣爆發 Bang Bravern - 02 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 勇氣爆發 Bang Bravern - 02 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[orion origin] Boukyaku Battery [06] [1080p] [H265 AAC] [CHT&JPN].mp4", + "filename": "[orion origin] Boukyaku Battery [06] [1080p] [H265 AAC] [CHT&JPN].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Orion Origin] Boukyaku Battery [06] [1080P] [H265 Aac] [Cht&Jpn]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Orion Origin] Boukyaku Battery [06] [1080P] [H265 Aac] [Cht&Jpn]", + "needs_review": true + }, + { + "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", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 轉生貴族憑鑑定技能扭轉人生 - 05 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 轉生貴族憑鑑定技能扭轉人生 - 05 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Kaijuu 8-gou - 17 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "filename": "[LoliHouse] Kaijuu 8-gou - 17 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Kaijuu 8-Gou - 17 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Kaijuu 8-Gou - 17 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Tensei Shitara Slime Datta Ken 3rd Season - 52 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "filename": "[LoliHouse] Tensei Shitara Slime Datta Ken 3rd Season - 52 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Tensei Shitara Slime Datta Ken 3Rd Season - 52 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Tensei Shitara Slime Datta Ken 3Rd Season - 52 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 永遠的黃昏 - 10 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 永遠的黃昏 - 10 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 永遠的黃昏 - 10 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 永遠的黃昏 - 10 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Nekomoe kissaten][Boku no Kokoro no Yabai Yatsu][21][1080p][JPSC].mp4", + "filename": "[Nekomoe kissaten][Boku no Kokoro no Yabai Yatsu][21][1080p][JPSC].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Nekomoe Kissaten][Boku No Kokoro No Yabai Yatsu][21][1080P][Jpsc]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Nekomoe Kissaten][Boku No Kokoro No Yabai Yatsu][21][1080P][Jpsc]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Feibanyama] Fate-strange Fake -Whispers of Dawn- [CR WebRip 1080p HEVC OPUS Multi-Subs].mkv", + "filename": "[Feibanyama] Fate-strange Fake -Whispers of Dawn- [CR WebRip 1080p HEVC OPUS Multi-Subs].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Feibanyama] Fate-Strange Fake -Whispers Of Dawn- [Cr Webrip 1080P Hevc Opus Multi-Subs]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Feibanyama] Fate-Strange Fake -Whispers Of Dawn- [Cr Webrip 1080P Hevc Opus Multi-Subs]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 地下城中的人 - 06 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 地下城中的人 - 06 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 地下城中的人 - 06 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 地下城中的人 - 06 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Amagami-san Chi no Enmusubi - 02 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "filename": "[LoliHouse] Amagami-san Chi no Enmusubi - 02 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Amagami-San Chi No Enmusubi - 02 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Amagami-San Chi No Enmusubi - 02 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[MMSUB][Goblin Slayer Goblin's Crown][Movie][BDRip 1080p HEVC-10bit FLAC]/[MMSUB][Goblin Slayer Goblin's Crown][Movie][BDRip 1080p HEVC-10bit FLAC].mkv", + "filename": "[MMSUB][Goblin Slayer Goblin's Crown][Movie][BDRip 1080p HEVC-10bit FLAC].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Mmsub][Goblin Slayer Goblin'S Crown][Movie][Bdrip 1080P Hevc-10Bit Flac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Mmsub][Goblin Slayer Goblin'S Crown][Movie][Bdrip 1080P Hevc-10Bit Flac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[BeanSub][Ao no Exorcist _Yosuga Hen][01][GB][1080P][x264_AAC].mp4", + "filename": "[BeanSub][Ao no Exorcist _Yosuga Hen][01][GB][1080P][x264_AAC].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Beansub][Ao No Exorcist Yosuga Hen][01][Gb][1080P][X264 Aac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Beansub][Ao No Exorcist Yosuga Hen][01][Gb][1080P][X264 Aac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 孤單一人的異世界攻略 - 08 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 孤單一人的異世界攻略 - 08 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 孤單一人的異世界攻略 - 08 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 孤單一人的異世界攻略 - 08 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 瞬間治癒卻被當成廢物踢出隊伍的天才治療師,改當無照治療師快樂過活 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 瞬間治癒卻被當成廢物踢出隊伍的天才治療師,改當無照治療師快樂過活 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 瞬間治癒卻被當成廢物踢出隊伍的天才治療師,改當無照治療師快樂過活 - 01 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 瞬間治癒卻被當成廢物踢出隊伍的天才治療師,改當無照治療師快樂過活 - 01 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Shinmai Ossan - 06 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "filename": "[LoliHouse] Shinmai Ossan - 06 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Shinmai Ossan - 06 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Shinmai Ossan - 06 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[KyokuSai] Adam's Sweet Agony [01][1080P][WEBRip][HEVC 10bit].mkv", + "filename": "[KyokuSai] Adam's Sweet Agony [01][1080P][WEBRip][HEVC 10bit].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Kyokusai] Adam'S Sweet Agony [01][1080P][Webrip][Hevc 10Bit]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Kyokusai] Adam'S Sweet Agony [01][1080P][Webrip][Hevc 10Bit]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 中禪寺老師妖怪講義錄 解謎就交給老師 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 中禪寺老師妖怪講義錄 解謎就交給老師 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 中禪寺老師妖怪講義錄 解謎就交給老師 - 01 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 中禪寺老師妖怪講義錄 解謎就交給老師 - 01 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/《BLEACH 死神 千年血戰篇》#13/《BLEACH 死神 千年血戰篇》#13 (日語原聲)【Ani-One Asia ULTRA】.mp4", + "filename": "《BLEACH 死神 千年血戰篇》#13 (日語原聲)【Ani-One Asia ULTRA】.mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "《Bleach 死神 千年血戰篇》#13 (日語原聲)【Ani-One Asia Ultra】", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "《Bleach 死神 千年血戰篇》#13 (日語原聲)【Ani-One Asia Ultra】", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 遲早是最強的鍊金術師? - 09 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 遲早是最強的鍊金術師? - 09 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 遲早是最強的鍊金術師? - 09 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 遲早是最強的鍊金術師? - 09 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 一拳超人(第三季) - 30 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 一拳超人(第三季) - 30 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 一拳超人(第三季) - 30 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 一拳超人(第三季) - 30 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 在地下城尋求邂逅是否搞錯了什麼 第五季 - 13 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 在地下城尋求邂逅是否搞錯了什麼 第五季 - 13 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 在地下城尋求邂逅是否搞錯了什麼 第五季 - 13 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 在地下城尋求邂逅是否搞錯了什麼 第五季 - 13 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 異世界悠閒紀行~邊養娃邊當冒險者~ - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 異世界悠閒紀行~邊養娃邊當冒險者~ - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 異世界悠閒紀行~邊養娃邊當冒險者~ - 02 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 異世界悠閒紀行~邊養娃邊當冒險者~ - 02 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 被逐出隊伍的治癒師,其實是最強 - 04 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 被逐出隊伍的治癒師,其實是最強 - 04 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 被逐出隊伍的治癒師,其實是最強 - 04 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 被逐出隊伍的治癒師,其實是最強 - 04 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 魔女與野獸 - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 魔女與野獸 - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 魔女與野獸 - 02 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 魔女與野獸 - 02 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] Fate/strange Fake - 04 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] Fate/strange Fake - 04 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] Fate/Strange Fake - 04 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] Fate/Strange Fake - 04 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Lilith-Raws] Mushoku Tensei S02 - 21 [Baha][WebDL 1080p AVC AAC][CHT].mp4", + "filename": "[Lilith-Raws] Mushoku Tensei S02 - 21 [Baha][WebDL 1080p AVC AAC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lilith-Raws] Mushoku Tensei S02 - 21 [Baha][Webdl 1080P Avc Aac][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lilith-Raws] Mushoku Tensei S02 - 21 [Baha][Webdl 1080P Avc Aac][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Skymoon-Raws] SPY×FAMILY - 14 [ViuTV][WEB-DL][CHT][1080p][AVC AAC][MP4+ASS]/[Skymoon-Raws] SPY×FAMILY - 14 [ViuTV][WEB-DL][1080p][AVC AAC].mp4", + "filename": "[Skymoon-Raws] SPY×FAMILY - 14 [ViuTV][WEB-DL][1080p][AVC AAC].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Skymoon-Raws] Spy×Family - 14 [Viutv][Web-Dl][1080P][Avc Aac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Skymoon-Raws] Spy×Family - 14 [Viutv][Web-Dl][1080P][Avc Aac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 29 歲單身中堅冒險家的日常 - 03 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 29 歲單身中堅冒險家的日常 - 03 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 29 歲單身中堅冒險家的日常 - 03 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 29 歲單身中堅冒險家的日常 - 03 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 葬送的芙莉蓮 - 27 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 葬送的芙莉蓮 - 27 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 葬送的芙莉蓮 - 27 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 葬送的芙莉蓮 - 27 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 九龍大眾浪漫 - 03 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 九龍大眾浪漫 - 03 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 九龍大眾浪漫 - 03 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 九龍大眾浪漫 - 03 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 擁有超常技能的異世界流浪美食家 S2 - 13 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 擁有超常技能的異世界流浪美食家 S2 - 13 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 擁有超常技能的異世界流浪美食家 S2 - 13 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 擁有超常技能的異世界流浪美食家 S2 - 13 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 在地下城尋求邂逅是否搞錯了什麼 第五季 - 08 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 在地下城尋求邂逅是否搞錯了什麼 第五季 - 08 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 在地下城尋求邂逅是否搞錯了什麼 第五季 - 08 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 在地下城尋求邂逅是否搞錯了什麼 第五季 - 08 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 怪獸 8 號 - 06 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 怪獸 8 號 - 06 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 怪獸 8 號 - 06 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 怪獸 8 號 - 06 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 終末起點 - 08 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 終末起點 - 08 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 終末起點 - 08 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 終末起點 - 08 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Katainaka no Ossan, Kensei ni Naru - 03 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "filename": "[LoliHouse] Katainaka no Ossan, Kensei ni Naru - 03 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Katainaka No Ossan, Kensei Ni Naru - 03 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Katainaka No Ossan, Kensei Ni Naru - 03 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Nekomoe kissaten][Kusuriya no Hitorigoto][15][1080p][JPSC].mp4", + "filename": "[Nekomoe kissaten][Kusuriya no Hitorigoto][15][1080p][JPSC].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Nekomoe Kissaten][Kusuriya No Hitorigoto][15][1080P][Jpsc]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Nekomoe Kissaten][Kusuriya No Hitorigoto][15][1080P][Jpsc]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/阿基拉 Akira(1988)[BDRIP][1920x1080][movie][x264_m4a][10bit]加刘景长压制/阿基拉 Akira(1988)1080P.mkv", + "filename": "阿基拉 Akira(1988)1080P.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "阿基拉 Akira(1988)1080P", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "阿基拉 Akira(1988)1080P", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 杖與劍的魔劍譚 - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 杖與劍的魔劍譚 - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 杖與劍的魔劍譚 - 02 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 杖與劍的魔劍譚 - 02 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Kowloon Generic Romance - 05 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "filename": "[LoliHouse] Kowloon Generic Romance - 05 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Kowloon Generic Romance - 05 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Kowloon Generic Romance - 05 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Mirai.2018.1080p.BluRay.x264.DTS-WiKi/Sample/Mirai.2018.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", + "filename": "Mirai.2018.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Mirai 2018 1080P Bluray X264 Dts-Wiki Sample", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Mirai 2018 1080P Bluray X264 Dts-Wiki Sample", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Mirai.2018.1080p.BluRay.x264.DTS-WiKi/Mirai.2018.1080p.BluRay.x264.DTS-WiKi.mkv", + "filename": "Mirai.2018.1080p.BluRay.x264.DTS-WiKi.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Mirai 2018 1080P Bluray X264 Dts-Wiki", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Mirai 2018 1080P Bluray X264 Dts-Wiki", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 異國日記 - 04 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 異國日記 - 04 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 異國日記 - 04 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 異國日記 - 04 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[DMG&LoliHouse] Isekai Ojisan [01-13][WebRip 1080p HEVC-10bit AAC]/[DMG&LoliHouse] Isekai Ojisan - 04 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "filename": "[DMG&LoliHouse] Isekai Ojisan - 04 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Dmg&Lolihouse] Isekai Ojisan - 04 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Dmg&Lolihouse] Isekai Ojisan - 04 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[DMG&LoliHouse] Isekai Ojisan [01-13][WebRip 1080p HEVC-10bit AAC]/[DMG&LoliHouse] Isekai Ojisan - 13 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "filename": "[DMG&LoliHouse] Isekai Ojisan - 13 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Dmg&Lolihouse] Isekai Ojisan - 13 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Dmg&Lolihouse] Isekai Ojisan - 13 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[DMG&LoliHouse] Isekai Ojisan [01-13][WebRip 1080p HEVC-10bit AAC]/[DMG&LoliHouse] Isekai Ojisan - 08 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "filename": "[DMG&LoliHouse] Isekai Ojisan - 08 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Dmg&Lolihouse] Isekai Ojisan - 08 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Dmg&Lolihouse] Isekai Ojisan - 08 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[DMG&LoliHouse] Isekai Ojisan [01-13][WebRip 1080p HEVC-10bit AAC]/[DMG&LoliHouse] Isekai Ojisan - 09 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "filename": "[DMG&LoliHouse] Isekai Ojisan - 09 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Dmg&Lolihouse] Isekai Ojisan - 09 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Dmg&Lolihouse] Isekai Ojisan - 09 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[DMG&LoliHouse] Isekai Ojisan [01-13][WebRip 1080p HEVC-10bit AAC]/[DMG&LoliHouse] Isekai Ojisan - 12 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "filename": "[DMG&LoliHouse] Isekai Ojisan - 12 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Dmg&Lolihouse] Isekai Ojisan - 12 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Dmg&Lolihouse] Isekai Ojisan - 12 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[DMG&LoliHouse] Isekai Ojisan [01-13][WebRip 1080p HEVC-10bit AAC]/[DMG&LoliHouse] Isekai Ojisan - 05 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "filename": "[DMG&LoliHouse] Isekai Ojisan - 05 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Dmg&Lolihouse] Isekai Ojisan - 05 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Dmg&Lolihouse] Isekai Ojisan - 05 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[DMG&LoliHouse] Isekai Ojisan [01-13][WebRip 1080p HEVC-10bit AAC]/[DMG&LoliHouse] Isekai Ojisan - 01 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "filename": "[DMG&LoliHouse] Isekai Ojisan - 01 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Dmg&Lolihouse] Isekai Ojisan - 01 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Dmg&Lolihouse] Isekai Ojisan - 01 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[DMG&LoliHouse] Isekai Ojisan [01-13][WebRip 1080p HEVC-10bit AAC]/[DMG&LoliHouse] Isekai Ojisan - 10 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "filename": "[DMG&LoliHouse] Isekai Ojisan - 10 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Dmg&Lolihouse] Isekai Ojisan - 10 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Dmg&Lolihouse] Isekai Ojisan - 10 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[DMG&LoliHouse] Isekai Ojisan [01-13][WebRip 1080p HEVC-10bit AAC]/[DMG&LoliHouse] Isekai Ojisan - 07 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "filename": "[DMG&LoliHouse] Isekai Ojisan - 07 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Dmg&Lolihouse] Isekai Ojisan - 07 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Dmg&Lolihouse] Isekai Ojisan - 07 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[DMG&LoliHouse] Isekai Ojisan [01-13][WebRip 1080p HEVC-10bit AAC]/[DMG&LoliHouse] Isekai Ojisan - 03 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "filename": "[DMG&LoliHouse] Isekai Ojisan - 03 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Dmg&Lolihouse] Isekai Ojisan - 03 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Dmg&Lolihouse] Isekai Ojisan - 03 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[DMG&LoliHouse] Isekai Ojisan [01-13][WebRip 1080p HEVC-10bit AAC]/[DMG&LoliHouse] Isekai Ojisan - 06 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "filename": "[DMG&LoliHouse] Isekai Ojisan - 06 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Dmg&Lolihouse] Isekai Ojisan - 06 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Dmg&Lolihouse] Isekai Ojisan - 06 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[DMG&LoliHouse] Isekai Ojisan [01-13][WebRip 1080p HEVC-10bit AAC]/[DMG&LoliHouse] Isekai Ojisan - 02 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "filename": "[DMG&LoliHouse] Isekai Ojisan - 02 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Dmg&Lolihouse] Isekai Ojisan - 02 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Dmg&Lolihouse] Isekai Ojisan - 02 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[DMG&LoliHouse] Isekai Ojisan [01-13][WebRip 1080p HEVC-10bit AAC]/[DMG&LoliHouse] Isekai Ojisan - 11 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "filename": "[DMG&LoliHouse] Isekai Ojisan - 11 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Dmg&Lolihouse] Isekai Ojisan - 11 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Dmg&Lolihouse] Isekai Ojisan - 11 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 異世界自殺突擊隊 - 03 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 異世界自殺突擊隊 - 03 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 異世界自殺突擊隊 - 03 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 異世界自殺突擊隊 - 03 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[BeanSub&FZSD&LoliHouse] Jujutsu Kaisen - 49v2 [WebRip 1080p HEVC-10bit AAC ASSx2]/[BeanSub&FZSD&LoliHouse] Jujutsu Kaisen - 49v2 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "filename": "[BeanSub&FZSD&LoliHouse] Jujutsu Kaisen - 49v2 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Beansub&Fzsd&Lolihouse] Jujutsu Kaisen - 49V2 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Beansub&Fzsd&Lolihouse] Jujutsu Kaisen - 49V2 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 記憶縫線 YOUR FORMA - 09 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 記憶縫線 YOUR FORMA - 09 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 記憶縫線 Your Forma - 09 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 記憶縫線 Your Forma - 09 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Psycho-Pass.Providence.2023.1080p.BluRay.x265.10bit.DTS-ADE/Psycho-Pass.Providence.2023.1080p.BluRay.x265.10bit.DTS-ADE.mkv", + "filename": "Psycho-Pass.Providence.2023.1080p.BluRay.x265.10bit.DTS-ADE.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Psycho-Pass Providence 2023 1080P Bluray X265 10Bit Dts-Ade", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Psycho-Pass Providence 2023 1080P Bluray X265 10Bit Dts-Ade", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[HYSUB]Violet Evergarden The Movie[BDrip][BIG5_MP4][1920X1080]/[HYSUB]Violet Evergarden The Movie[BDrip][BIG5_MP4][1920X1080].mp4", + "filename": "[HYSUB]Violet Evergarden The Movie[BDrip][BIG5_MP4][1920X1080].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Hysub]Violet Evergarden The Movie[Bdrip][Big5 Mp4][1920X1080]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Hysub]Violet Evergarden The Movie[Bdrip][Big5 Mp4][1920X1080]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[HYSUB]Violet Evergarden The Movie[BDrip][BIG5_MP4][1920X1080]/EXTRA/[HYSUB]Violet Evergarden The Movie[Theatre Greeting][BDrip][MP4][1920X1080].mp4", + "filename": "[HYSUB]Violet Evergarden The Movie[Theatre Greeting][BDrip][MP4][1920X1080].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Hysub]Violet Evergarden The Movie[Theatre Greeting][Bdrip][Mp4][1920X1080]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Hysub]Violet Evergarden The Movie[Theatre Greeting][Bdrip][Mp4][1920X1080]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[HYSUB]Violet Evergarden The Movie[BDrip][BIG5_MP4][1920X1080]/EXTRA/[HYSUB]Violet Evergarden The Movie[PV2][BDrip][MP4][1920X1080].mp4", + "filename": "[HYSUB]Violet Evergarden The Movie[PV2][BDrip][MP4][1920X1080].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Hysub]Violet Evergarden The Movie[Pv2][Bdrip][Mp4][1920X1080]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Hysub]Violet Evergarden The Movie[Pv2][Bdrip][Mp4][1920X1080]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[HYSUB]Violet Evergarden The Movie[BDrip][BIG5_MP4][1920X1080]/EXTRA/[HYSUB]Violet Evergarden The Movie[Trailer2][BDrip][MP4][1920X1080].mp4", + "filename": "[HYSUB]Violet Evergarden The Movie[Trailer2][BDrip][MP4][1920X1080].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Hysub]Violet Evergarden The Movie[Trailer2][Bdrip][Mp4][1920X1080]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Hysub]Violet Evergarden The Movie[Trailer2][Bdrip][Mp4][1920X1080]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[HYSUB]Violet Evergarden The Movie[BDrip][BIG5_MP4][1920X1080]/EXTRA/[HYSUB]Violet Evergarden The Movie[Trailer1][BDrip][MP4][1920X1080].mp4", + "filename": "[HYSUB]Violet Evergarden The Movie[Trailer1][BDrip][MP4][1920X1080].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Hysub]Violet Evergarden The Movie[Trailer1][Bdrip][Mp4][1920X1080]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Hysub]Violet Evergarden The Movie[Trailer1][Bdrip][Mp4][1920X1080]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[HYSUB]Violet Evergarden The Movie[BDrip][BIG5_MP4][1920X1080]/EXTRA/[HYSUB]Violet Evergarden The Movie[PV3][BDrip][MP4][1920X1080].mp4", + "filename": "[HYSUB]Violet Evergarden The Movie[PV3][BDrip][MP4][1920X1080].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Hysub]Violet Evergarden The Movie[Pv3][Bdrip][Mp4][1920X1080]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Hysub]Violet Evergarden The Movie[Pv3][Bdrip][Mp4][1920X1080]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[HYSUB]Violet Evergarden The Movie[BDrip][BIG5_MP4][1920X1080]/EXTRA/[HYSUB]Violet Evergarden The Movie[PV1][BDrip][MP4][1920X1080].mp4", + "filename": "[HYSUB]Violet Evergarden The Movie[PV1][BDrip][MP4][1920X1080].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Hysub]Violet Evergarden The Movie[Pv1][Bdrip][Mp4][1920X1080]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Hysub]Violet Evergarden The Movie[Pv1][Bdrip][Mp4][1920X1080]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[HYSUB]Violet Evergarden The Movie[BDrip][BIG5_MP4][1920X1080]/EXTRA/[HYSUB]Violet Evergarden The Movie[CM][BDrip][MP4][1920X1080].mp4", + "filename": "[HYSUB]Violet Evergarden The Movie[CM][BDrip][MP4][1920X1080].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Hysub]Violet Evergarden The Movie[Cm][Bdrip][Mp4][1920X1080]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Hysub]Violet Evergarden The Movie[Cm][Bdrip][Mp4][1920X1080]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] LAZARUS 拉撒路 - 11 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] LAZARUS 拉撒路 - 11 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] Lazarus 拉撒路 - 11 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] Lazarus 拉撒路 - 11 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Nekomoe kissaten][Ishura][12][1080p][JPSC].mp4", + "filename": "[Nekomoe kissaten][Ishura][12][1080p][JPSC].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Nekomoe Kissaten][Ishura][12][1080P][Jpsc]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Nekomoe Kissaten][Ishura][12][1080P][Jpsc]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 地獄模式 ~喜歡挑戰特殊成就的玩家在廢設定的異世界成為無雙~ - 04 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 地獄模式 ~喜歡挑戰特殊成就的玩家在廢設定的異世界成為無雙~ - 04 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 地獄模式 ~喜歡挑戰特殊成就的玩家在廢設定的異世界成為無雙~ - 04 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 地獄模式 ~喜歡挑戰特殊成就的玩家在廢設定的異世界成為無雙~ - 04 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Shin Samurai-den YAIBA - 05 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "filename": "[LoliHouse] Shin Samurai-den YAIBA - 05 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Shin Samurai-Den Yaiba - 05 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Shin Samurai-Den Yaiba - 05 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 01~22 [ViuTV]/[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 08 [ViuTV][WEB-DL][CHT][1080p][AVC AAC][MP4+ASS]/[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 08 [ViuTV][WEB-DL][1080p][AVC AAC].mp4", + "filename": "[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 08 [ViuTV][WEB-DL][1080p][AVC AAC].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Skymoon-Raws] Dungeon Ni Deai Wo Motomeru No Wa Machigatteiru Darou Ka S04 - 08 [Viutv][Web-Dl][1080P][Avc Aac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Skymoon-Raws] Dungeon Ni Deai Wo Motomeru No Wa Machigatteiru Darou Ka S04 - 08 [Viutv][Web-Dl][1080P][Avc Aac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 01~22 [ViuTV]/[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 02 [ViuTV][WEB-DL][CHT][1080p][AVC AAC][MP4+ASS]/[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 02 [ViuTV][WEB-DL][1080p][AVC AAC].mp4", + "filename": "[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 02 [ViuTV][WEB-DL][1080p][AVC AAC].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Skymoon-Raws] Dungeon Ni Deai Wo Motomeru No Wa Machigatteiru Darou Ka S04 - 02 [Viutv][Web-Dl][1080P][Avc Aac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Skymoon-Raws] Dungeon Ni Deai Wo Motomeru No Wa Machigatteiru Darou Ka S04 - 02 [Viutv][Web-Dl][1080P][Avc Aac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 01~22 [ViuTV]/[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 01 [ViuTV][WEB-DL][CHT][1080p][AVC AAC][MP4+ASS]/[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 01 [ViuTV][WEB-DL][1080p][AVC AAC].mp4", + "filename": "[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 01 [ViuTV][WEB-DL][1080p][AVC AAC].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Skymoon-Raws] Dungeon Ni Deai Wo Motomeru No Wa Machigatteiru Darou Ka S04 - 01 [Viutv][Web-Dl][1080P][Avc Aac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Skymoon-Raws] Dungeon Ni Deai Wo Motomeru No Wa Machigatteiru Darou Ka S04 - 01 [Viutv][Web-Dl][1080P][Avc Aac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 01~22 [ViuTV]/[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 07 [ViuTV][WEB-DL][CHT][1080p][AVC AAC][MP4+ASS]/[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 07 [ViuTV][WEB-DL][1080p][AVC AAC].mp4", + "filename": "[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 07 [ViuTV][WEB-DL][1080p][AVC AAC].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Skymoon-Raws] Dungeon Ni Deai Wo Motomeru No Wa Machigatteiru Darou Ka S04 - 07 [Viutv][Web-Dl][1080P][Avc Aac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Skymoon-Raws] Dungeon Ni Deai Wo Motomeru No Wa Machigatteiru Darou Ka S04 - 07 [Viutv][Web-Dl][1080P][Avc Aac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 01~22 [ViuTV]/[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 04 [ViuTV][WEB-DL][CHT][1080p][AVC AAC][MP4+ASS]/[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 04 [ViuTV][WEB-DL][1080p][AVC AAC].mp4", + "filename": "[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 04 [ViuTV][WEB-DL][1080p][AVC AAC].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Skymoon-Raws] Dungeon Ni Deai Wo Motomeru No Wa Machigatteiru Darou Ka S04 - 04 [Viutv][Web-Dl][1080P][Avc Aac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Skymoon-Raws] Dungeon Ni Deai Wo Motomeru No Wa Machigatteiru Darou Ka S04 - 04 [Viutv][Web-Dl][1080P][Avc Aac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 01~22 [ViuTV]/[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 10 [ViuTV][WEB-DL][CHT][1080p][AVC AAC][MP4+ASS]/[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 10 [ViuTV][WEB-DL][1080p][AVC AAC].mp4", + "filename": "[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 10 [ViuTV][WEB-DL][1080p][AVC AAC].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Skymoon-Raws] Dungeon Ni Deai Wo Motomeru No Wa Machigatteiru Darou Ka S04 - 10 [Viutv][Web-Dl][1080P][Avc Aac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Skymoon-Raws] Dungeon Ni Deai Wo Motomeru No Wa Machigatteiru Darou Ka S04 - 10 [Viutv][Web-Dl][1080P][Avc Aac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 01~22 [ViuTV]/[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 13 [ViuTV][WEB-DL][CHT][1080p][AVC AAC][MP4+ASS]/[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 13 [ViuTV][WEB-DL][1080p][AVC AAC].mp4", + "filename": "[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 13 [ViuTV][WEB-DL][1080p][AVC AAC].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Skymoon-Raws] Dungeon Ni Deai Wo Motomeru No Wa Machigatteiru Darou Ka S04 - 13 [Viutv][Web-Dl][1080P][Avc Aac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Skymoon-Raws] Dungeon Ni Deai Wo Motomeru No Wa Machigatteiru Darou Ka S04 - 13 [Viutv][Web-Dl][1080P][Avc Aac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 01~22 [ViuTV]/[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 15 [ViuTV][WEB-DL][CHT][1080p][AVC AAC][MP4+ASS]/[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 15 [ViuTV][WEB-DL][1080p][AVC AAC].mp4", + "filename": "[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 15 [ViuTV][WEB-DL][1080p][AVC AAC].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Skymoon-Raws] Dungeon Ni Deai Wo Motomeru No Wa Machigatteiru Darou Ka S04 - 15 [Viutv][Web-Dl][1080P][Avc Aac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Skymoon-Raws] Dungeon Ni Deai Wo Motomeru No Wa Machigatteiru Darou Ka S04 - 15 [Viutv][Web-Dl][1080P][Avc Aac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 01~22 [ViuTV]/[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 16 [ViuTV][WEB-DL][CHT][1080p][AVC AAC][MP4+ASS]/[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 16 [ViuTV][WEB-DL][1080p][AVC AAC].mp4", + "filename": "[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 16 [ViuTV][WEB-DL][1080p][AVC AAC].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Skymoon-Raws] Dungeon Ni Deai Wo Motomeru No Wa Machigatteiru Darou Ka S04 - 16 [Viutv][Web-Dl][1080P][Avc Aac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Skymoon-Raws] Dungeon Ni Deai Wo Motomeru No Wa Machigatteiru Darou Ka S04 - 16 [Viutv][Web-Dl][1080P][Avc Aac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 01~22 [ViuTV]/[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 19 [ViuTV][WEB-DL][CHT][1080p][AVC AAC][MP4+ASS]/[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 19 [ViuTV][WEB-DL][1080p][AVC AAC].mp4", + "filename": "[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 19 [ViuTV][WEB-DL][1080p][AVC AAC].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Skymoon-Raws] Dungeon Ni Deai Wo Motomeru No Wa Machigatteiru Darou Ka S04 - 19 [Viutv][Web-Dl][1080P][Avc Aac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Skymoon-Raws] Dungeon Ni Deai Wo Motomeru No Wa Machigatteiru Darou Ka S04 - 19 [Viutv][Web-Dl][1080P][Avc Aac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 01~22 [ViuTV]/[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 20 [ViuTV][WEB-DL][CHT][1080p][AVC AAC][MP4+ASS]/[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 20 [ViuTV][WEB-DL][1080p][AVC AAC].mp4", + "filename": "[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 20 [ViuTV][WEB-DL][1080p][AVC AAC].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Skymoon-Raws] Dungeon Ni Deai Wo Motomeru No Wa Machigatteiru Darou Ka S04 - 20 [Viutv][Web-Dl][1080P][Avc Aac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Skymoon-Raws] Dungeon Ni Deai Wo Motomeru No Wa Machigatteiru Darou Ka S04 - 20 [Viutv][Web-Dl][1080P][Avc Aac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 01~22 [ViuTV]/[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 05 [ViuTV][WEB-DL][CHT][1080p][AVC AAC][MP4+ASS]/[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 05 [ViuTV][WEB-DL][1080p][AVC AAC].mp4", + "filename": "[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 05 [ViuTV][WEB-DL][1080p][AVC AAC].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Skymoon-Raws] Dungeon Ni Deai Wo Motomeru No Wa Machigatteiru Darou Ka S04 - 05 [Viutv][Web-Dl][1080P][Avc Aac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Skymoon-Raws] Dungeon Ni Deai Wo Motomeru No Wa Machigatteiru Darou Ka S04 - 05 [Viutv][Web-Dl][1080P][Avc Aac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 01~22 [ViuTV]/[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 06 [ViuTV][WEB-DL][CHT][1080p][AVC AAC][MP4+ASS]/[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 06 [ViuTV][WEB-DL][1080p][AVC AAC].mp4", + "filename": "[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 06 [ViuTV][WEB-DL][1080p][AVC AAC].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Skymoon-Raws] Dungeon Ni Deai Wo Motomeru No Wa Machigatteiru Darou Ka S04 - 06 [Viutv][Web-Dl][1080P][Avc Aac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Skymoon-Raws] Dungeon Ni Deai Wo Motomeru No Wa Machigatteiru Darou Ka S04 - 06 [Viutv][Web-Dl][1080P][Avc Aac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 01~22 [ViuTV]/[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 03 [ViuTV][WEB-DL][CHT][1080p][AVC AAC][MP4+ASS]/[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 03 [ViuTV][WEB-DL][1080p][AVC AAC].mp4", + "filename": "[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 03 [ViuTV][WEB-DL][1080p][AVC AAC].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Skymoon-Raws] Dungeon Ni Deai Wo Motomeru No Wa Machigatteiru Darou Ka S04 - 03 [Viutv][Web-Dl][1080P][Avc Aac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Skymoon-Raws] Dungeon Ni Deai Wo Motomeru No Wa Machigatteiru Darou Ka S04 - 03 [Viutv][Web-Dl][1080P][Avc Aac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 01~22 [ViuTV]/[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 09 [ViuTV][WEB-DL][CHT][1080p][AVC AAC][MP4+ASS]/[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 09 [ViuTV][WEB-DL][1080p][AVC AAC].mp4", + "filename": "[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 09 [ViuTV][WEB-DL][1080p][AVC AAC].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Skymoon-Raws] Dungeon Ni Deai Wo Motomeru No Wa Machigatteiru Darou Ka S04 - 09 [Viutv][Web-Dl][1080P][Avc Aac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Skymoon-Raws] Dungeon Ni Deai Wo Motomeru No Wa Machigatteiru Darou Ka S04 - 09 [Viutv][Web-Dl][1080P][Avc Aac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 01~22 [ViuTV]/[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 18 [ViuTV][WEB-DL][CHT][1080p][AVC AAC][MP4+ASS]/[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 18 [ViuTV][WEB-DL][1080p][AVC AAC].mp4", + "filename": "[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 18 [ViuTV][WEB-DL][1080p][AVC AAC].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Skymoon-Raws] Dungeon Ni Deai Wo Motomeru No Wa Machigatteiru Darou Ka S04 - 18 [Viutv][Web-Dl][1080P][Avc Aac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Skymoon-Raws] Dungeon Ni Deai Wo Motomeru No Wa Machigatteiru Darou Ka S04 - 18 [Viutv][Web-Dl][1080P][Avc Aac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 01~22 [ViuTV]/[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 17 [ViuTV][WEB-DL][CHT][1080p][AVC AAC][MP4+ASS]/[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 17 [ViuTV][WEB-DL][1080p][AVC AAC].mp4", + "filename": "[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 17 [ViuTV][WEB-DL][1080p][AVC AAC].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Skymoon-Raws] Dungeon Ni Deai Wo Motomeru No Wa Machigatteiru Darou Ka S04 - 17 [Viutv][Web-Dl][1080P][Avc Aac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Skymoon-Raws] Dungeon Ni Deai Wo Motomeru No Wa Machigatteiru Darou Ka S04 - 17 [Viutv][Web-Dl][1080P][Avc Aac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 01~22 [ViuTV]/[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 14 [ViuTV][WEB-DL][CHT][1080p][AVC AAC][MP4+ASS]/[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 14 [ViuTV][WEB-DL][1080p][AVC AAC].mp4", + "filename": "[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 14 [ViuTV][WEB-DL][1080p][AVC AAC].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Skymoon-Raws] Dungeon Ni Deai Wo Motomeru No Wa Machigatteiru Darou Ka S04 - 14 [Viutv][Web-Dl][1080P][Avc Aac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Skymoon-Raws] Dungeon Ni Deai Wo Motomeru No Wa Machigatteiru Darou Ka S04 - 14 [Viutv][Web-Dl][1080P][Avc Aac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 01~22 [ViuTV]/[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 12 [ViuTV][WEB-DL][CHT][1080p][AVC AAC][MP4+ASS]/[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 12 [ViuTV][WEB-DL][1080p][AVC AAC].mp4", + "filename": "[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 12 [ViuTV][WEB-DL][1080p][AVC AAC].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Skymoon-Raws] Dungeon Ni Deai Wo Motomeru No Wa Machigatteiru Darou Ka S04 - 12 [Viutv][Web-Dl][1080P][Avc Aac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Skymoon-Raws] Dungeon Ni Deai Wo Motomeru No Wa Machigatteiru Darou Ka S04 - 12 [Viutv][Web-Dl][1080P][Avc Aac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 01~22 [ViuTV]/[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 11 [ViuTV][WEB-DL][CHT][1080p][AVC AAC][MP4+ASS]/[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 11 [ViuTV][WEB-DL][1080p][AVC AAC].mp4", + "filename": "[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 11 [ViuTV][WEB-DL][1080p][AVC AAC].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Skymoon-Raws] Dungeon Ni Deai Wo Motomeru No Wa Machigatteiru Darou Ka S04 - 11 [Viutv][Web-Dl][1080P][Avc Aac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Skymoon-Raws] Dungeon Ni Deai Wo Motomeru No Wa Machigatteiru Darou Ka S04 - 11 [Viutv][Web-Dl][1080P][Avc Aac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 01~22 [ViuTV]/[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 22 [ViuTV][WEB-DL][CHT][1080p][AVC AAC][MP4+ASS]/[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 22 [ViuTV][WEB-DL][1080p][AVC AAC].mp4", + "filename": "[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 22 [ViuTV][WEB-DL][1080p][AVC AAC].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Skymoon-Raws] Dungeon Ni Deai Wo Motomeru No Wa Machigatteiru Darou Ka S04 - 22 [Viutv][Web-Dl][1080P][Avc Aac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Skymoon-Raws] Dungeon Ni Deai Wo Motomeru No Wa Machigatteiru Darou Ka S04 - 22 [Viutv][Web-Dl][1080P][Avc Aac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 01~22 [ViuTV]/[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 21 [ViuTV][WEB-DL][CHT][1080p][AVC AAC][MP4+ASS]/[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 21 [ViuTV][WEB-DL][1080p][AVC AAC].mp4", + "filename": "[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 21 [ViuTV][WEB-DL][1080p][AVC AAC].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Skymoon-Raws] Dungeon Ni Deai Wo Motomeru No Wa Machigatteiru Darou Ka S04 - 21 [Viutv][Web-Dl][1080P][Avc Aac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Skymoon-Raws] Dungeon Ni Deai Wo Motomeru No Wa Machigatteiru Darou Ka S04 - 21 [Viutv][Web-Dl][1080P][Avc Aac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 無職轉生~到了異世界就拿出真本事 第二季 - 18 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 無職轉生~到了異世界就拿出真本事 第二季 - 18 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 無職轉生~到了異世界就拿出真本事 第二季 - 18 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 無職轉生~到了異世界就拿出真本事 第二季 - 18 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Around 40 Otoko no Isekai Tsuuhan - 04 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "filename": "[LoliHouse] Around 40 Otoko no Isekai Tsuuhan - 04 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Around 40 Otoko No Isekai Tsuuhan - 04 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Around 40 Otoko No Isekai Tsuuhan - 04 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 勇氣爆發 BANG BRAVERN - 06 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 勇氣爆發 BANG BRAVERN - 06 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 勇氣爆發 Bang Bravern - 06 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 勇氣爆發 Bang Bravern - 06 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Nekomoe kissaten][Tower of God S2][11][1080p][CHT].mp4", + "filename": "[Nekomoe kissaten][Tower of God S2][11][1080p][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Nekomoe Kissaten][Tower Of God S2][11][1080P][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Nekomoe Kissaten][Tower Of God S2][11][1080P][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Nekomoe kissaten][Ishura][07][1080p][JPSC].mp4", + "filename": "[Nekomoe kissaten][Ishura][07][1080p][JPSC].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Nekomoe Kissaten][Ishura][07][1080P][Jpsc]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Nekomoe Kissaten][Ishura][07][1080P][Jpsc]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 記憶縫線 YOUR FORMA - 12 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 記憶縫線 YOUR FORMA - 12 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 記憶縫線 Your Forma - 12 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 記憶縫線 Your Forma - 12 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Nekomoe kissaten][Mayonaka Punch][01][1080p][JPTC].mp4", + "filename": "[Nekomoe kissaten][Mayonaka Punch][01][1080p][JPTC].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Nekomoe Kissaten][Mayonaka Punch][01][1080P][Jptc]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Nekomoe Kissaten][Mayonaka Punch][01][1080P][Jptc]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[KitaujiSub] Ao no Hako [09][WebRip][HEVC_AAC][CHS_JP].mp4", + "filename": "[KitaujiSub] Ao no Hako [09][WebRip][HEVC_AAC][CHS_JP].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Kitaujisub] Ao No Hako [09][Webrip][Hevc Aac][Chs Jp]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Kitaujisub] Ao No Hako [09][Webrip][Hevc Aac][Chs Jp]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 忍者與殺手的兩人生活 - 04 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 忍者與殺手的兩人生活 - 04 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 忍者與殺手的兩人生活 - 04 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 忍者與殺手的兩人生活 - 04 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Tensei Shitara Slime Datta Ken 3rd Season - 56 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "filename": "[LoliHouse] Tensei Shitara Slime Datta Ken 3rd Season - 56 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Tensei Shitara Slime Datta Ken 3Rd Season - 56 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Tensei Shitara Slime Datta Ken 3Rd Season - 56 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 地下城中的人 - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 地下城中的人 - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 地下城中的人 - 02 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 地下城中的人 - 02 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] WIND BREAKER—防風少年— Season 2 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] WIND BREAKER—防風少年— Season 2 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] Wind Breaker—防風少年— Season 2 - 01 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] Wind Breaker—防風少年— Season 2 - 01 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Tensei Kizoku, Kantei Skill de Nariagaru - 17 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "filename": "[LoliHouse] Tensei Kizoku, Kantei Skill de Nariagaru - 17 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Tensei Kizoku, Kantei Skill De Nariagaru - 17 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Tensei Kizoku, Kantei Skill De Nariagaru - 17 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Nekomoe kissaten&LoliHouse] Girumasu - 01 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "filename": "[Nekomoe kissaten&LoliHouse] Girumasu - 01 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Nekomoe Kissaten&Lolihouse] Girumasu - 01 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Nekomoe Kissaten&Lolihouse] Girumasu - 01 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 聽說你們要結婚!? - 10 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 聽說你們要結婚!? - 10 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 聽說你們要結婚!? - 10 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 聽說你們要結婚!? - 10 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 戀上換裝娃娃 Season 2 - 23 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 戀上換裝娃娃 Season 2 - 23 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 戀上換裝娃娃 Season 2 - 23 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 戀上換裝娃娃 Season 2 - 23 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] Silent Witch 沉默魔女的祕密 - 05 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] Silent Witch 沉默魔女的祕密 - 05 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] Silent Witch 沉默魔女的祕密 - 05 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] Silent Witch 沉默魔女的祕密 - 05 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Nageki no Bourei wa Intai shitai - 14 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "filename": "[LoliHouse] Nageki no Bourei wa Intai shitai - 14 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Nageki No Bourei Wa Intai Shitai - 14 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Nageki No Bourei Wa Intai Shitai - 14 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Party kara Tsuihou sareta Sono Chiyushi, Jitsu wa Saikyou ni Tsuki - 03 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "filename": "[LoliHouse] Party kara Tsuihou sareta Sono Chiyushi, Jitsu wa Saikyou ni Tsuki - 03 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Party Kara Tsuihou Sareta Sono Chiyushi, Jitsu Wa Saikyou Ni Tsuki - 03 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Party Kara Tsuihou Sareta Sono Chiyushi, Jitsu Wa Saikyou Ni Tsuki - 03 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 安逸領主的愉快領地防衛~用生產系魔術將無名村改造成最強要塞都市~ - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 安逸領主的愉快領地防衛~用生產系魔術將無名村改造成最強要塞都市~ - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 安逸領主的愉快領地防衛~用生產系魔術將無名村改造成最強要塞都市~ - 01 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 安逸領主的愉快領地防衛~用生產系魔術將無名村改造成最強要塞都市~ - 01 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Nekomoe kissaten][Tower of God S2][04][1080p][CHT].mp4", + "filename": "[Nekomoe kissaten][Tower of God S2][04][1080p][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Nekomoe Kissaten][Tower Of God S2][04][1080P][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Nekomoe Kissaten][Tower Of God S2][04][1080P][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 我獨自升級 - 12 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 我獨自升級 - 12 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 我獨自升級 - 12 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 我獨自升級 - 12 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Nekomoe kissaten][Ishura][09][1080p][JPTC].mp4", + "filename": "[Nekomoe kissaten][Ishura][09][1080p][JPTC].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Nekomoe Kissaten][Ishura][09][1080P][Jptc]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Nekomoe Kissaten][Ishura][09][1080P][Jptc]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 差點在迷宮深處被信任的夥伴殺掉,但靠著天賜技能「無限扭蛋」獲得等級 9999 的夥伴,我要向前隊友和世界展開復仇&「給他們好看!」 - 09 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 差點在迷宮深處被信任的夥伴殺掉,但靠著天賜技能「無限扭蛋」獲得等級 9999 的夥伴,我要向前隊友和世界展開復仇&「給他們好看!」 - 09 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 差點在迷宮深處被信任的夥伴殺掉,但靠著天賜技能「無限扭蛋」獲得等級 9999 的夥伴,我要向前隊友和世界展開復仇&「給他們好看!」 - 09 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 差點在迷宮深處被信任的夥伴殺掉,但靠著天賜技能「無限扭蛋」獲得等級 9999 的夥伴,我要向前隊友和世界展開復仇&「給他們好看!」 - 09 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 愚蠢天使與惡魔共舞 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 愚蠢天使與惡魔共舞 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 愚蠢天使與惡魔共舞 - 01 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 愚蠢天使與惡魔共舞 - 01 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 靠廢柴技能【狀態異常】成為最強的我將蹂躪一切 - 03 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 靠廢柴技能【狀態異常】成為最強的我將蹂躪一切 - 03 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 靠廢柴技能【狀態異常】成為最強的我將蹂躪一切 - 03 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 靠廢柴技能【狀態異常】成為最強的我將蹂躪一切 - 03 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] GNOSIA - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] GNOSIA - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] Gnosia - 02 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] Gnosia - 02 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 歲月流逝飯菜依舊美味 - 10 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 歲月流逝飯菜依舊美味 - 10 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 歲月流逝飯菜依舊美味 - 10 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 歲月流逝飯菜依舊美味 - 10 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Mobile Suit Gundam the Witch from Mercury - 『PROLOGUE』/Mobile Suit Gundam the Witch from Mercury - 『PROLOGUE』.mp4", + "filename": "Mobile Suit Gundam the Witch from Mercury - 『PROLOGUE』.mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Mobile Suit Gundam The Witch From Mercury - 『Prologue』", + "canonical_id": "tmdb:tv:196400", + "title_zh": "机动战士高达:水星的魔女", + "title_en": "機動戦士ガンダム 水星の魔女", + "translation_source": "tmdb", + "reputation_score": 7.479, + "reputation_votes": 95, + "reputation_source": "tmdb", + "review_status": "pending", + "enrichment_confidence": 1.0, + "provider_metadata": { + "tmdb": "{\"media_type\": \"tv\", \"id\": \"196400\"}" + }, + "display_title": "机动战士高达:水星的魔女 機動戦士ガンダム 水星の魔女", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 我獨自升級 - 09 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 我獨自升級 - 09 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 我獨自升級 - 09 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 我獨自升級 - 09 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[KTXP][Violet_Evergarden][01-13][BIG5][1080p][BDrip]/[KTXP][Violet_Evergarden][12][BIG5][1080p][BDrip].mp4", + "filename": "[KTXP][Violet_Evergarden][12][BIG5][1080p][BDrip].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ktxp][Violet Evergarden][12][Big5][1080P][Bdrip]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ktxp][Violet Evergarden][12][Big5][1080P][Bdrip]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[KTXP][Violet_Evergarden][01-13][BIG5][1080p][BDrip]/[KTXP][Violet_Evergarden][NCOP][1080p][BDrip].mp4", + "filename": "[KTXP][Violet_Evergarden][NCOP][1080p][BDrip].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ktxp][Violet Evergarden][Ncop][1080P][Bdrip]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ktxp][Violet Evergarden][Ncop][1080P][Bdrip]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[KTXP][Violet_Evergarden][01-13][BIG5][1080p][BDrip]/[KTXP][Violet_Evergarden][13][BIG5][1080p][BDrip].mp4", + "filename": "[KTXP][Violet_Evergarden][13][BIG5][1080p][BDrip].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ktxp][Violet Evergarden][13][Big5][1080P][Bdrip]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ktxp][Violet Evergarden][13][Big5][1080P][Bdrip]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[KTXP][Violet_Evergarden][01-13][BIG5][1080p][BDrip]/[KTXP][Violet_Evergarden][11][BIG5][1080p][BDrip].mp4", + "filename": "[KTXP][Violet_Evergarden][11][BIG5][1080p][BDrip].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ktxp][Violet Evergarden][11][Big5][1080P][Bdrip]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ktxp][Violet Evergarden][11][Big5][1080P][Bdrip]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[KTXP][Violet_Evergarden][01-13][BIG5][1080p][BDrip]/[KTXP][Violet_Evergarden][10][BIG5][1080p][BDrip].mp4", + "filename": "[KTXP][Violet_Evergarden][10][BIG5][1080p][BDrip].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ktxp][Violet Evergarden][10][Big5][1080P][Bdrip]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ktxp][Violet Evergarden][10][Big5][1080P][Bdrip]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[KTXP][Violet_Evergarden][01-13][BIG5][1080p][BDrip]/[KTXP][Violet_Evergarden][NCED][1080p][BDrip].mp4", + "filename": "[KTXP][Violet_Evergarden][NCED][1080p][BDrip].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ktxp][Violet Evergarden][Nced][1080P][Bdrip]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ktxp][Violet Evergarden][Nced][1080P][Bdrip]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[KTXP][Violet_Evergarden][01-13][BIG5][1080p][BDrip]/[KTXP][Violet_Evergarden][02][BIG5][1080p][BDrip].mp4", + "filename": "[KTXP][Violet_Evergarden][02][BIG5][1080p][BDrip].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ktxp][Violet Evergarden][02][Big5][1080P][Bdrip]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ktxp][Violet Evergarden][02][Big5][1080P][Bdrip]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[KTXP][Violet_Evergarden][01-13][BIG5][1080p][BDrip]/[KTXP][Violet_Evergarden][03][BIG5][1080p][BDrip].mp4", + "filename": "[KTXP][Violet_Evergarden][03][BIG5][1080p][BDrip].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ktxp][Violet Evergarden][03][Big5][1080P][Bdrip]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ktxp][Violet Evergarden][03][Big5][1080P][Bdrip]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[KTXP][Violet_Evergarden][01-13][BIG5][1080p][BDrip]/[KTXP][Violet_Evergarden][01][BIG5][1080p][BDrip].mp4", + "filename": "[KTXP][Violet_Evergarden][01][BIG5][1080p][BDrip].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ktxp][Violet Evergarden][01][Big5][1080P][Bdrip]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ktxp][Violet Evergarden][01][Big5][1080P][Bdrip]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[KTXP][Violet_Evergarden][01-13][BIG5][1080p][BDrip]/[KTXP][Violet_Evergarden][05][BIG5][1080p][BDrip].mp4", + "filename": "[KTXP][Violet_Evergarden][05][BIG5][1080p][BDrip].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ktxp][Violet Evergarden][05][Big5][1080P][Bdrip]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ktxp][Violet Evergarden][05][Big5][1080P][Bdrip]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[KTXP][Violet_Evergarden][01-13][BIG5][1080p][BDrip]/[KTXP][Violet_Evergarden][04][BIG5][1080p][BDrip].mp4", + "filename": "[KTXP][Violet_Evergarden][04][BIG5][1080p][BDrip].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ktxp][Violet Evergarden][04][Big5][1080P][Bdrip]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ktxp][Violet Evergarden][04][Big5][1080P][Bdrip]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[KTXP][Violet_Evergarden][01-13][BIG5][1080p][BDrip]/[KTXP][Violet_Evergarden][06][BIG5][1080p][BDrip].mp4", + "filename": "[KTXP][Violet_Evergarden][06][BIG5][1080p][BDrip].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ktxp][Violet Evergarden][06][Big5][1080P][Bdrip]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ktxp][Violet Evergarden][06][Big5][1080P][Bdrip]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[KTXP][Violet_Evergarden][01-13][BIG5][1080p][BDrip]/[KTXP][Violet_Evergarden][07][BIG5][1080p][BDrip].mp4", + "filename": "[KTXP][Violet_Evergarden][07][BIG5][1080p][BDrip].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ktxp][Violet Evergarden][07][Big5][1080P][Bdrip]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ktxp][Violet Evergarden][07][Big5][1080P][Bdrip]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[KTXP][Violet_Evergarden][01-13][BIG5][1080p][BDrip]/[KTXP][Violet_Evergarden][09][BIG5][1080p][BDrip].mp4", + "filename": "[KTXP][Violet_Evergarden][09][BIG5][1080p][BDrip].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ktxp][Violet Evergarden][09][Big5][1080P][Bdrip]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ktxp][Violet Evergarden][09][Big5][1080P][Bdrip]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[KTXP][Violet_Evergarden][01-13][BIG5][1080p][BDrip]/[KTXP][Violet_Evergarden][08][BIG5][1080p][BDrip].mp4", + "filename": "[KTXP][Violet_Evergarden][08][BIG5][1080p][BDrip].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ktxp][Violet Evergarden][08][Big5][1080P][Bdrip]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ktxp][Violet Evergarden][08][Big5][1080P][Bdrip]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 轉生貴族憑鑑定技能扭轉人生 第二季 - 21 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 轉生貴族憑鑑定技能扭轉人生 第二季 - 21 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 轉生貴族憑鑑定技能扭轉人生 第二季 - 21 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 轉生貴族憑鑑定技能扭轉人生 第二季 - 21 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Nekomoe kissaten][Your Forma][04][1080p][JPSC].mp4", + "filename": "[Nekomoe kissaten][Your Forma][04][1080p][JPSC].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Nekomoe Kissaten][Your Forma][04][1080P][Jpsc]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Nekomoe Kissaten][Your Forma][04][1080P][Jpsc]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Skymoon-Raws] DAN DA DAN - 14 [ViuTV][WEB-DL][CHT][SRT][1080p][AVC AAC].mkv", + "filename": "[Skymoon-Raws] DAN DA DAN - 14 [ViuTV][WEB-DL][CHT][SRT][1080p][AVC AAC].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Skymoon-Raws] Dan Da Dan - 14 [Viutv][Web-Dl][Cht][Srt][1080P][Avc Aac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Skymoon-Raws] Dan Da Dan - 14 [Viutv][Web-Dl][Cht][Srt][1080P][Avc Aac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 膽大黨 第二季 - 19 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 膽大黨 第二季 - 19 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 膽大黨 第二季 - 19 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 膽大黨 第二季 - 19 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] FARMAGIA 魔農傳記 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] FARMAGIA 魔農傳記 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] Farmagia 魔農傳記 - 01 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] Farmagia 魔農傳記 - 01 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "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", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 從路人角色開始的探索英雄譚 - 05 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 從路人角色開始的探索英雄譚 - 05 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Nekomoe kissaten][Dosanko Gal wa Namara Menkoi][11][1080p][JPTC].mp4", + "filename": "[Nekomoe kissaten][Dosanko Gal wa Namara Menkoi][11][1080p][JPTC].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Nekomoe Kissaten][Dosanko Gal Wa Namara Menkoi][11][1080P][Jptc]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Nekomoe Kissaten][Dosanko Gal Wa Namara Menkoi][11][1080P][Jptc]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Tate no Yuusha no Nariagari S4 - 05 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "filename": "[LoliHouse] Tate no Yuusha no Nariagari S4 - 05 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Tate No Yuusha No Nariagari S4 - 05 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Tate No Yuusha No Nariagari S4 - 05 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 素材採集家的異世界旅行記 - 04 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 素材採集家的異世界旅行記 - 04 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 素材採集家的異世界旅行記 - 04 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 素材採集家的異世界旅行記 - 04 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 盾之勇者成名錄 Season 4 - 12 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 盾之勇者成名錄 Season 4 - 12 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 盾之勇者成名錄 Season 4 - 12 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 盾之勇者成名錄 Season 4 - 12 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 身為暗殺者的我明顯比勇者還強 - 06 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 身為暗殺者的我明顯比勇者還強 - 06 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 身為暗殺者的我明顯比勇者還強 - 06 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 身為暗殺者的我明顯比勇者還強 - 06 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Nekomoe kissaten&LoliHouse] Dandadan - 01 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "filename": "[Nekomoe kissaten&LoliHouse] Dandadan - 01 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Nekomoe Kissaten&Lolihouse] Dandadan - 01 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Nekomoe Kissaten&Lolihouse] Dandadan - 01 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 遲早是最強的鍊金術師? - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 遲早是最強的鍊金術師? - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 遲早是最強的鍊金術師? - 01 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 遲早是最強的鍊金術師? - 01 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Tensei Shitara Slime Datta Ken 3rd Season - 62 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "filename": "[LoliHouse] Tensei Shitara Slime Datta Ken 3rd Season - 62 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Tensei Shitara Slime Datta Ken 3Rd Season - 62 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Tensei Shitara Slime Datta Ken 3Rd Season - 62 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] Re:從零開始的異世界生活 第三季 - 13 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] Re:從零開始的異世界生活 第三季 - 13 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] Re:從零開始的異世界生活 第三季 - 13 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] Re:從零開始的異世界生活 第三季 - 13 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 葬送的芙莉蓮 第二季 - 29 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 葬送的芙莉蓮 第二季 - 29 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 葬送的芙莉蓮 第二季 - 29 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 葬送的芙莉蓮 第二季 - 29 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Katainaka no Ossan, Kensei ni Naru - 10 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "filename": "[LoliHouse] Katainaka no Ossan, Kensei ni Naru - 10 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Katainaka No Ossan, Kensei Ni Naru - 10 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Katainaka No Ossan, Kensei Ni Naru - 10 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Nekomoe kissaten][Ninja Kamui][03][1080p][CHT].mp4", + "filename": "[Nekomoe kissaten][Ninja Kamui][03][1080p][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Nekomoe Kissaten][Ninja Kamui][03][1080P][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Nekomoe Kissaten][Ninja Kamui][03][1080P][Cht]", + "needs_review": true + }, + { + "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", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 香格里拉・開拓異境~糞作獵手挑戰神作~ 第二季 - 05 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 香格里拉・開拓異境~糞作獵手挑戰神作~ 第二季 - 05 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[HYSUB]Dungeon Meshi[02][BIG5_MP4][1920X1080].mp4", + "filename": "[HYSUB]Dungeon Meshi[02][BIG5_MP4][1920X1080].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Hysub]Dungeon Meshi[02][Big5 Mp4][1920X1080]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Hysub]Dungeon Meshi[02][Big5 Mp4][1920X1080]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 這個世界漏洞百出 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 這個世界漏洞百出 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 這個世界漏洞百出 - 01 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 這個世界漏洞百出 - 01 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 九龍大眾浪漫 - 10 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 九龍大眾浪漫 - 10 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 九龍大眾浪漫 - 10 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 九龍大眾浪漫 - 10 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Nekomoe kissaten][Your Forma][02][1080p][JPSC].mp4", + "filename": "[Nekomoe kissaten][Your Forma][02][1080p][JPSC].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Nekomoe Kissaten][Your Forma][02][1080P][Jpsc]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Nekomoe Kissaten][Your Forma][02][1080P][Jpsc]", + "needs_review": true + }, + { + "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", + "title": "[Ani] 結緣甘神神社 - 07 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 結緣甘神神社 - 07 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[DragsterPS] Kengan Ashura S01 [720p] [Multi-Audio] [Multi-Subs]/[DragsterPS] Kengan Ashura S01E09 [720p] [Multi-Audio] [Multi-Subs] [2A8CE00A].mkv", + "filename": "[DragsterPS] Kengan Ashura S01E09 [720p] [Multi-Audio] [Multi-Subs] [2A8CE00A].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Dragsterps] Kengan Ashura S01E09 [720P] [Multi-Audio] [Multi-Subs] [2A8Ce00A]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Dragsterps] Kengan Ashura S01E09 [720P] [Multi-Audio] [Multi-Subs] [2A8Ce00A]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[DragsterPS] Kengan Ashura S01 [720p] [Multi-Audio] [Multi-Subs]/[DragsterPS] Kengan Ashura S01E05 [720p] [Multi-Audio] [Multi-Subs] [2129990F].mkv", + "filename": "[DragsterPS] Kengan Ashura S01E05 [720p] [Multi-Audio] [Multi-Subs] [2129990F].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Dragsterps] Kengan Ashura S01E05 [720P] [Multi-Audio] [Multi-Subs] [2129990F]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Dragsterps] Kengan Ashura S01E05 [720P] [Multi-Audio] [Multi-Subs] [2129990F]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[DragsterPS] Kengan Ashura S01 [720p] [Multi-Audio] [Multi-Subs]/[DragsterPS] Kengan Ashura S01E11 [720p] [Multi-Audio] [Multi-Subs] [7EFF4030].mkv", + "filename": "[DragsterPS] Kengan Ashura S01E11 [720p] [Multi-Audio] [Multi-Subs] [7EFF4030].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Dragsterps] Kengan Ashura S01E11 [720P] [Multi-Audio] [Multi-Subs] [7Eff4030]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Dragsterps] Kengan Ashura S01E11 [720P] [Multi-Audio] [Multi-Subs] [7Eff4030]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[DragsterPS] Kengan Ashura S01 [720p] [Multi-Audio] [Multi-Subs]/[DragsterPS] Kengan Ashura S01E07 [720p] [Multi-Audio] [Multi-Subs] [732DED05].mkv", + "filename": "[DragsterPS] Kengan Ashura S01E07 [720p] [Multi-Audio] [Multi-Subs] [732DED05].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Dragsterps] Kengan Ashura S01E07 [720P] [Multi-Audio] [Multi-Subs] [732Ded05]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Dragsterps] Kengan Ashura S01E07 [720P] [Multi-Audio] [Multi-Subs] [732Ded05]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[DragsterPS] Kengan Ashura S01 [720p] [Multi-Audio] [Multi-Subs]/[DragsterPS] Kengan Ashura S01E12 [720p] [Multi-Audio] [Multi-Subs] [8242AFF3].mkv", + "filename": "[DragsterPS] Kengan Ashura S01E12 [720p] [Multi-Audio] [Multi-Subs] [8242AFF3].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Dragsterps] Kengan Ashura S01E12 [720P] [Multi-Audio] [Multi-Subs] [8242Aff3]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Dragsterps] Kengan Ashura S01E12 [720P] [Multi-Audio] [Multi-Subs] [8242Aff3]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[DragsterPS] Kengan Ashura S01 [720p] [Multi-Audio] [Multi-Subs]/[DragsterPS] Kengan Ashura S01E01 [720p] [Multi-Audio] [Multi-Subs] [5CFDFC8D].mkv", + "filename": "[DragsterPS] Kengan Ashura S01E01 [720p] [Multi-Audio] [Multi-Subs] [5CFDFC8D].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Dragsterps] Kengan Ashura S01E01 [720P] [Multi-Audio] [Multi-Subs] [5Cfdfc8D]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Dragsterps] Kengan Ashura S01E01 [720P] [Multi-Audio] [Multi-Subs] [5Cfdfc8D]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[DragsterPS] Kengan Ashura S01 [720p] [Multi-Audio] [Multi-Subs]/[DragsterPS] Kengan Ashura S01E10 [720p] [Multi-Audio] [Multi-Subs] [D2EB50E7].mkv", + "filename": "[DragsterPS] Kengan Ashura S01E10 [720p] [Multi-Audio] [Multi-Subs] [D2EB50E7].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Dragsterps] Kengan Ashura S01E10 [720P] [Multi-Audio] [Multi-Subs] [D2Eb50E7]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Dragsterps] Kengan Ashura S01E10 [720P] [Multi-Audio] [Multi-Subs] [D2Eb50E7]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[DragsterPS] Kengan Ashura S01 [720p] [Multi-Audio] [Multi-Subs]/[DragsterPS] Kengan Ashura S01E08 [720p] [Multi-Audio] [Multi-Subs] [60C56D1C].mkv", + "filename": "[DragsterPS] Kengan Ashura S01E08 [720p] [Multi-Audio] [Multi-Subs] [60C56D1C].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Dragsterps] Kengan Ashura S01E08 [720P] [Multi-Audio] [Multi-Subs] [60C56D1C]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Dragsterps] Kengan Ashura S01E08 [720P] [Multi-Audio] [Multi-Subs] [60C56D1C]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[DragsterPS] Kengan Ashura S01 [720p] [Multi-Audio] [Multi-Subs]/[DragsterPS] Kengan Ashura S01E03 [720p] [Multi-Audio] [Multi-Subs] [D46187C5].mkv", + "filename": "[DragsterPS] Kengan Ashura S01E03 [720p] [Multi-Audio] [Multi-Subs] [D46187C5].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Dragsterps] Kengan Ashura S01E03 [720P] [Multi-Audio] [Multi-Subs] [D46187C5]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Dragsterps] Kengan Ashura S01E03 [720P] [Multi-Audio] [Multi-Subs] [D46187C5]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[DragsterPS] Kengan Ashura S01 [720p] [Multi-Audio] [Multi-Subs]/[DragsterPS] Kengan Ashura S01E06 [720p] [Multi-Audio] [Multi-Subs] [383F22E1].mkv", + "filename": "[DragsterPS] Kengan Ashura S01E06 [720p] [Multi-Audio] [Multi-Subs] [383F22E1].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Dragsterps] Kengan Ashura S01E06 [720P] [Multi-Audio] [Multi-Subs] [383F22E1]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Dragsterps] Kengan Ashura S01E06 [720P] [Multi-Audio] [Multi-Subs] [383F22E1]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[DragsterPS] Kengan Ashura S01 [720p] [Multi-Audio] [Multi-Subs]/[DragsterPS] Kengan Ashura S01E04 [720p] [Multi-Audio] [Multi-Subs] [8D939D02].mkv", + "filename": "[DragsterPS] Kengan Ashura S01E04 [720p] [Multi-Audio] [Multi-Subs] [8D939D02].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Dragsterps] Kengan Ashura S01E04 [720P] [Multi-Audio] [Multi-Subs] [8D939D02]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Dragsterps] Kengan Ashura S01E04 [720P] [Multi-Audio] [Multi-Subs] [8D939D02]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[DragsterPS] Kengan Ashura S01 [720p] [Multi-Audio] [Multi-Subs]/[DragsterPS] Kengan Ashura S01E02 [720p] [Multi-Audio] [Multi-Subs] [80409C50].mkv", + "filename": "[DragsterPS] Kengan Ashura S01E02 [720p] [Multi-Audio] [Multi-Subs] [80409C50].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Dragsterps] Kengan Ashura S01E02 [720P] [Multi-Audio] [Multi-Subs] [80409C50]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Dragsterps] Kengan Ashura S01E02 [720P] [Multi-Audio] [Multi-Subs] [80409C50]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] SPY×FAMILY 間諜家家酒 Season 3 - 38 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] SPY×FAMILY 間諜家家酒 Season 3 - 38 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] Spy×Family 間諜家家酒 Season 3 - 38 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] Spy×Family 間諜家家酒 Season 3 - 38 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] Re:從零開始的異世界生活 第三季 - 08 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] Re:從零開始的異世界生活 第三季 - 08 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] Re:從零開始的異世界生活 第三季 - 08 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] Re:從零開始的異世界生活 第三季 - 08 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Shin no Nakama 2nd - 07 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "filename": "[LoliHouse] Shin no Nakama 2nd - 07 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Shin No Nakama 2Nd - 07 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Shin No Nakama 2Nd - 07 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 葬送的芙莉蓮 第二季 - 32 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 葬送的芙莉蓮 第二季 - 32 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 葬送的芙莉蓮 第二季 - 32 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 葬送的芙莉蓮 第二季 - 32 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 關於我轉生變成史萊姆這檔事 第三季 - 69 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 關於我轉生變成史萊姆這檔事 第三季 - 69 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 關於我轉生變成史萊姆這檔事 第三季 - 69 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 關於我轉生變成史萊姆這檔事 第三季 - 69 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Nekomoe kissaten][Dosanko Gal wa Namara Menkoi][02][1080p][JPTC].mp4", + "filename": "[Nekomoe kissaten][Dosanko Gal wa Namara Menkoi][02][1080p][JPTC].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Nekomoe Kissaten][Dosanko Gal Wa Namara Menkoi][02][1080P][Jptc]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Nekomoe Kissaten][Dosanko Gal Wa Namara Menkoi][02][1080P][Jptc]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 水屬性的魔法師 - 06 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 水屬性的魔法師 - 06 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 水屬性的魔法師 - 06 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 水屬性的魔法師 - 06 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Skymoon-Raws] Mob Psycho 100 S03 - 06 [ViuTV][WEB-DL][CHT][1080p][AVC AAC][MP4+ASS]/[Skymoon-Raws] Mob Psycho 100 S03 - 06 [ViuTV][WEB-DL][1080p][AVC AAC].mp4", + "filename": "[Skymoon-Raws] Mob Psycho 100 S03 - 06 [ViuTV][WEB-DL][1080p][AVC AAC].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Skymoon-Raws] Mob Psycho 100 S03 - 06 [Viutv][Web-Dl][1080P][Avc Aac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Skymoon-Raws] Mob Psycho 100 S03 - 06 [Viutv][Web-Dl][1080P][Avc Aac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Tekken Bloodline [WebRip 1080p HEVC-10bit AAC SRTx3]/[LoliHouse] Tekken Bloodline - 02 [WebRip 1080p HEVC-10bit AAC SRTx3].mkv", + "filename": "[LoliHouse] Tekken Bloodline - 02 [WebRip 1080p HEVC-10bit AAC SRTx3].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Tekken Bloodline - 02 [Webrip 1080P Hevc-10Bit Aac Srtx3]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Tekken Bloodline - 02 [Webrip 1080P Hevc-10Bit Aac Srtx3]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Tekken Bloodline [WebRip 1080p HEVC-10bit AAC SRTx3]/[LoliHouse] Tekken Bloodline - 06 [WebRip 1080p HEVC-10bit AAC SRTx3].mkv", + "filename": "[LoliHouse] Tekken Bloodline - 06 [WebRip 1080p HEVC-10bit AAC SRTx3].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Tekken Bloodline - 06 [Webrip 1080P Hevc-10Bit Aac Srtx3]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Tekken Bloodline - 06 [Webrip 1080P Hevc-10Bit Aac Srtx3]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Tekken Bloodline [WebRip 1080p HEVC-10bit AAC SRTx3]/[LoliHouse] Tekken Bloodline - 03 [WebRip 1080p HEVC-10bit AAC SRTx3].mkv", + "filename": "[LoliHouse] Tekken Bloodline - 03 [WebRip 1080p HEVC-10bit AAC SRTx3].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Tekken Bloodline - 03 [Webrip 1080P Hevc-10Bit Aac Srtx3]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Tekken Bloodline - 03 [Webrip 1080P Hevc-10Bit Aac Srtx3]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Tekken Bloodline [WebRip 1080p HEVC-10bit AAC SRTx3]/[LoliHouse] Tekken Bloodline - 01 [WebRip 1080p HEVC-10bit AAC SRTx3].mkv", + "filename": "[LoliHouse] Tekken Bloodline - 01 [WebRip 1080p HEVC-10bit AAC SRTx3].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Tekken Bloodline - 01 [Webrip 1080P Hevc-10Bit Aac Srtx3]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Tekken Bloodline - 01 [Webrip 1080P Hevc-10Bit Aac Srtx3]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Tekken Bloodline [WebRip 1080p HEVC-10bit AAC SRTx3]/[LoliHouse] Tekken Bloodline - 05 [WebRip 1080p HEVC-10bit AAC SRTx3].mkv", + "filename": "[LoliHouse] Tekken Bloodline - 05 [WebRip 1080p HEVC-10bit AAC SRTx3].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Tekken Bloodline - 05 [Webrip 1080P Hevc-10Bit Aac Srtx3]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Tekken Bloodline - 05 [Webrip 1080P Hevc-10Bit Aac Srtx3]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Tekken Bloodline [WebRip 1080p HEVC-10bit AAC SRTx3]/[LoliHouse] Tekken Bloodline - 04 [WebRip 1080p HEVC-10bit AAC SRTx3].mkv", + "filename": "[LoliHouse] Tekken Bloodline - 04 [WebRip 1080p HEVC-10bit AAC SRTx3].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Tekken Bloodline - 04 [Webrip 1080P Hevc-10Bit Aac Srtx3]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Tekken Bloodline - 04 [Webrip 1080P Hevc-10Bit Aac Srtx3]", + "needs_review": true + }, + { + "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", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 魔都精兵的奴隸 第二季 - 05 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 魔都精兵的奴隸 第二季 - 05 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 記憶縫線 YOUR FORMA - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 記憶縫線 YOUR FORMA - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 記憶縫線 Your Forma - 01 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 記憶縫線 Your Forma - 01 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "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", + "title": "[Ani] 永遠的黃昏 - 07 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 永遠的黃昏 - 07 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 地下城中的人 - 11 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 地下城中的人 - 11 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 地下城中的人 - 11 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 地下城中的人 - 11 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[DMG&VCB-Studio] Isekai Ojisan [1080p][chs]/[DMG&VCB-Studio] Isekai Ojisan [12][1080p][x264_aac][chs].mp4", + "filename": "[DMG&VCB-Studio] Isekai Ojisan [12][1080p][x264_aac][chs].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Dmg&Vcb-Studio] Isekai Ojisan [12][1080P][X264 Aac][Chs]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Dmg&Vcb-Studio] Isekai Ojisan [12][1080P][X264 Aac][Chs]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[DMG&VCB-Studio] Isekai Ojisan [1080p][chs]/[DMG&VCB-Studio] Isekai Ojisan [06][1080p][x264_aac][chs].mp4", + "filename": "[DMG&VCB-Studio] Isekai Ojisan [06][1080p][x264_aac][chs].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Dmg&Vcb-Studio] Isekai Ojisan [06][1080P][X264 Aac][Chs]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Dmg&Vcb-Studio] Isekai Ojisan [06][1080P][X264 Aac][Chs]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[DMG&VCB-Studio] Isekai Ojisan [1080p][chs]/[DMG&VCB-Studio] Isekai Ojisan [13][1080p][x264_aac][chs].mp4", + "filename": "[DMG&VCB-Studio] Isekai Ojisan [13][1080p][x264_aac][chs].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Dmg&Vcb-Studio] Isekai Ojisan [13][1080P][X264 Aac][Chs]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Dmg&Vcb-Studio] Isekai Ojisan [13][1080P][X264 Aac][Chs]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[DMG&VCB-Studio] Isekai Ojisan [1080p][chs]/[DMG&VCB-Studio] Isekai Ojisan [07][1080p][x264_aac][chs].mp4", + "filename": "[DMG&VCB-Studio] Isekai Ojisan [07][1080p][x264_aac][chs].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Dmg&Vcb-Studio] Isekai Ojisan [07][1080P][X264 Aac][Chs]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Dmg&Vcb-Studio] Isekai Ojisan [07][1080P][X264 Aac][Chs]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[DMG&VCB-Studio] Isekai Ojisan [1080p][chs]/[DMG&VCB-Studio] Isekai Ojisan [11][1080p][x264_aac][chs].mp4", + "filename": "[DMG&VCB-Studio] Isekai Ojisan [11][1080p][x264_aac][chs].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Dmg&Vcb-Studio] Isekai Ojisan [11][1080P][X264 Aac][Chs]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Dmg&Vcb-Studio] Isekai Ojisan [11][1080P][X264 Aac][Chs]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[DMG&VCB-Studio] Isekai Ojisan [1080p][chs]/[DMG&VCB-Studio] Isekai Ojisan [05][1080p][x264_aac][chs].mp4", + "filename": "[DMG&VCB-Studio] Isekai Ojisan [05][1080p][x264_aac][chs].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Dmg&Vcb-Studio] Isekai Ojisan [05][1080P][X264 Aac][Chs]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Dmg&Vcb-Studio] Isekai Ojisan [05][1080P][X264 Aac][Chs]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[DMG&VCB-Studio] Isekai Ojisan [1080p][chs]/[DMG&VCB-Studio] Isekai Ojisan [10][1080p][x264_aac][chs].mp4", + "filename": "[DMG&VCB-Studio] Isekai Ojisan [10][1080p][x264_aac][chs].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Dmg&Vcb-Studio] Isekai Ojisan [10][1080P][X264 Aac][Chs]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Dmg&Vcb-Studio] Isekai Ojisan [10][1080P][X264 Aac][Chs]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[DMG&VCB-Studio] Isekai Ojisan [1080p][chs]/[DMG&VCB-Studio] Isekai Ojisan [04][1080p][x264_aac][chs].mp4", + "filename": "[DMG&VCB-Studio] Isekai Ojisan [04][1080p][x264_aac][chs].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Dmg&Vcb-Studio] Isekai Ojisan [04][1080P][X264 Aac][Chs]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Dmg&Vcb-Studio] Isekai Ojisan [04][1080P][X264 Aac][Chs]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[DMG&VCB-Studio] Isekai Ojisan [1080p][chs]/[DMG&VCB-Studio] Isekai Ojisan [09][1080p][x264_aac][chs].mp4", + "filename": "[DMG&VCB-Studio] Isekai Ojisan [09][1080p][x264_aac][chs].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Dmg&Vcb-Studio] Isekai Ojisan [09][1080P][X264 Aac][Chs]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Dmg&Vcb-Studio] Isekai Ojisan [09][1080P][X264 Aac][Chs]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[DMG&VCB-Studio] Isekai Ojisan [1080p][chs]/[DMG&VCB-Studio] Isekai Ojisan [01][1080p][x264_aac][chs].mp4", + "filename": "[DMG&VCB-Studio] Isekai Ojisan [01][1080p][x264_aac][chs].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Dmg&Vcb-Studio] Isekai Ojisan [01][1080P][X264 Aac][Chs]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Dmg&Vcb-Studio] Isekai Ojisan [01][1080P][X264 Aac][Chs]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[DMG&VCB-Studio] Isekai Ojisan [1080p][chs]/[DMG&VCB-Studio] Isekai Ojisan [08][1080p][x264_aac][chs].mp4", + "filename": "[DMG&VCB-Studio] Isekai Ojisan [08][1080p][x264_aac][chs].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Dmg&Vcb-Studio] Isekai Ojisan [08][1080P][X264 Aac][Chs]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Dmg&Vcb-Studio] Isekai Ojisan [08][1080P][X264 Aac][Chs]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[DMG&VCB-Studio] Isekai Ojisan [1080p][chs]/[DMG&VCB-Studio] Isekai Ojisan [02][1080p][x264_aac][chs].mp4", + "filename": "[DMG&VCB-Studio] Isekai Ojisan [02][1080p][x264_aac][chs].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Dmg&Vcb-Studio] Isekai Ojisan [02][1080P][X264 Aac][Chs]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Dmg&Vcb-Studio] Isekai Ojisan [02][1080P][X264 Aac][Chs]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[DMG&VCB-Studio] Isekai Ojisan [1080p][chs]/[DMG&VCB-Studio] Isekai Ojisan [03][1080p][x264_aac][chs].mp4", + "filename": "[DMG&VCB-Studio] Isekai Ojisan [03][1080p][x264_aac][chs].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Dmg&Vcb-Studio] Isekai Ojisan [03][1080P][X264 Aac][Chs]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Dmg&Vcb-Studio] Isekai Ojisan [03][1080P][X264 Aac][Chs]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] NUKITASHI 住在拔作島上的我該如何是好? [年齡限制版] - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] NUKITASHI 住在拔作島上的我該如何是好? [年齡限制版] - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] Nukitashi 住在拔作島上的我該如何是好? [年齡限制版] - 01 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] Nukitashi 住在拔作島上的我該如何是好? [年齡限制版] - 01 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "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", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 貫徹輔助魔法支援弱小隊友的宮廷魔法師,慘遭驅逐後目標成為最強冒險者 - 05 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 貫徹輔助魔法支援弱小隊友的宮廷魔法師,慘遭驅逐後目標成為最強冒險者 - 05 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 轉生貴族憑鑑定技能扭轉人生 - 12 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 轉生貴族憑鑑定技能扭轉人生 - 12 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 轉生貴族憑鑑定技能扭轉人生 - 12 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 轉生貴族憑鑑定技能扭轉人生 - 12 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 我的妻子不具感情 - 12 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 我的妻子不具感情 - 12 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 我的妻子不具感情 - 12 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 我的妻子不具感情 - 12 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 怪獸 8 號 第二季 - 13 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 怪獸 8 號 第二季 - 13 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 怪獸 8 號 第二季 - 13 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 怪獸 8 號 第二季 - 13 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 香格里拉・開拓異境~糞作獵手挑戰神作~ 第二季 - 22 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 香格里拉・開拓異境~糞作獵手挑戰神作~ 第二季 - 22 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 香格里拉・開拓異境~糞作獵手挑戰神作~ 第二季 - 22 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 香格里拉・開拓異境~糞作獵手挑戰神作~ 第二季 - 22 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 異世界自殺突擊隊 - 10 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 異世界自殺突擊隊 - 10 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 異世界自殺突擊隊 - 10 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 異世界自殺突擊隊 - 10 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Flow.2024.1080p.BluRay.x265.10bit.DTS-WiKi/Flow.2024.1080p.BluRay.x265.10bit.DTS-WiKi.mkv", + "filename": "Flow.2024.1080p.BluRay.x265.10bit.DTS-WiKi.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Flow 2024 1080P Bluray X265 10Bit Dts-Wiki", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Flow 2024 1080P Bluray X265 10Bit Dts-Wiki", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 結緣甘神神社 - 20 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 結緣甘神神社 - 20 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 結緣甘神神社 - 20 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 結緣甘神神社 - 20 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 孤單一人的異世界攻略 - 04 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 孤單一人的異世界攻略 - 04 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 孤單一人的異世界攻略 - 04 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 孤單一人的異世界攻略 - 04 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] LAZARUS 拉撒路 - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] LAZARUS 拉撒路 - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] Lazarus 拉撒路 - 02 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] Lazarus 拉撒路 - 02 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[HYSUB]Sono Bisque Doll wa Koi wo Suru[21][GB_MP4][1920X1080].mp4", + "filename": "[HYSUB]Sono Bisque Doll wa Koi wo Suru[21][GB_MP4][1920X1080].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Hysub]Sono Bisque Doll Wa Koi Wo Suru[21][Gb Mp4][1920X1080]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Hysub]Sono Bisque Doll Wa Koi Wo Suru[21][Gb Mp4][1920X1080]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 杖與劍的魔劍譚 - 11 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 杖與劍的魔劍譚 - 11 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 杖與劍的魔劍譚 - 11 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 杖與劍的魔劍譚 - 11 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Nekomoe kissaten][Tower of God S2][07][1080p][CHT].mp4", + "filename": "[Nekomoe kissaten][Tower of God S2][07][1080p][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Nekomoe Kissaten][Tower Of God S2][07][1080P][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Nekomoe Kissaten][Tower Of God S2][07][1080P][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Skymoon-Raws] Kaguya-sama wa Kokurasetai S03 - 05 [ViuTV][WEB-DL][CHT][1080p][AVC AAC][MP4+ASS]/[Skymoon-Raws] Kaguya-sama wa Kokurasetai S03 - 05 [ViuTV][WEB-DL][1080p][AVC AAC].mp4", + "filename": "[Skymoon-Raws] Kaguya-sama wa Kokurasetai S03 - 05 [ViuTV][WEB-DL][1080p][AVC AAC].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Skymoon-Raws] Kaguya-Sama Wa Kokurasetai S03 - 05 [Viutv][Web-Dl][1080P][Avc Aac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Skymoon-Raws] Kaguya-Sama Wa Kokurasetai S03 - 05 [Viutv][Web-Dl][1080P][Avc Aac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Skymoon-Raws] Boushoku no Berserk - 01 [ViuTV][WEB-DL][CHT][1080p][AVC AAC][MP4+ASS]/[Skymoon-Raws] Boushoku no Berserk - 01 [ViuTV][WEB-DL][1080p][AVC AAC].mp4", + "filename": "[Skymoon-Raws] Boushoku no Berserk - 01 [ViuTV][WEB-DL][1080p][AVC AAC].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Skymoon-Raws] Boushoku No Berserk - 01 [Viutv][Web-Dl][1080P][Avc Aac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Skymoon-Raws] Boushoku No Berserk - 01 [Viutv][Web-Dl][1080P][Avc Aac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Nekomoe kissaten&LoliHouse] Ao no Hako - 03 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "filename": "[Nekomoe kissaten&LoliHouse] Ao no Hako - 03 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Nekomoe Kissaten&Lolihouse] Ao No Hako - 03 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Nekomoe Kissaten&Lolihouse] Ao No Hako - 03 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 膽大黨 - 04 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 膽大黨 - 04 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 膽大黨 - 04 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 膽大黨 - 04 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 最近的偵探真沒用 - 04 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 最近的偵探真沒用 - 04 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 最近的偵探真沒用 - 04 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 最近的偵探真沒用 - 04 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[BeanSub&FZSD][BLEACH_Sennen_Kessen-hen][29][GB][1080P][x264_AAC].mp4", + "filename": "[BeanSub&FZSD][BLEACH_Sennen_Kessen-hen][29][GB][1080P][x264_AAC].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Beansub&Fzsd][Bleach Sennen Kessen-Hen][29][Gb][1080P][X264 Aac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Beansub&Fzsd][Bleach Sennen Kessen-Hen][29][Gb][1080P][X264 Aac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Lilith-Raws] Date A Live S05 - 03 [Baha][WebDL 1080p AVC AAC][CHT].mp4", + "filename": "[Lilith-Raws] Date A Live S05 - 03 [Baha][WebDL 1080p AVC AAC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lilith-Raws] Date A Live S05 - 03 [Baha][Webdl 1080P Avc Aac][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lilith-Raws] Date A Live S05 - 03 [Baha][Webdl 1080P Avc Aac][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Skymoon-Raws] Kaguya-sama wa Kokurasetai S03 - 09 [ViuTV][WEB-DL][CHT][1080p][AVC AAC][MP4+ASS]/[Skymoon-Raws] Kaguya-sama wa Kokurasetai S03 - 09 [ViuTV][WEB-DL][1080p][AVC AAC].mp4", + "filename": "[Skymoon-Raws] Kaguya-sama wa Kokurasetai S03 - 09 [ViuTV][WEB-DL][1080p][AVC AAC].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Skymoon-Raws] Kaguya-Sama Wa Kokurasetai S03 - 09 [Viutv][Web-Dl][1080P][Avc Aac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Skymoon-Raws] Kaguya-Sama Wa Kokurasetai S03 - 09 [Viutv][Web-Dl][1080P][Avc Aac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 靠廢柴技能【狀態異常】成為最強的我將蹂躪一切 - 10 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 靠廢柴技能【狀態異常】成為最強的我將蹂躪一切 - 10 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 靠廢柴技能【狀態異常】成為最強的我將蹂躪一切 - 10 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 靠廢柴技能【狀態異常】成為最強的我將蹂躪一切 - 10 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Nekomoe kissaten][Dungeon Meshi][09][1080p][JPTC].mp4", + "filename": "[Nekomoe kissaten][Dungeon Meshi][09][1080p][JPTC].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Nekomoe Kissaten][Dungeon Meshi][09][1080P][Jptc]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Nekomoe Kissaten][Dungeon Meshi][09][1080P][Jptc]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Nekomoe kissaten][Ishura][01][1080p][JPSC].mp4", + "filename": "[Nekomoe kissaten][Ishura][01][1080p][JPSC].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Nekomoe Kissaten][Ishura][01][1080P][Jpsc]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Nekomoe Kissaten][Ishura][01][1080P][Jpsc]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Re Monster - 04 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "filename": "[LoliHouse] Re Monster - 04 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Re Monster - 04 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Re Monster - 04 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 我獨自升級 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 我獨自升級 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 我獨自升級 - 01 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 我獨自升級 - 01 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Tensei Kizoku, Kantei Skill de Nariagaru - 04 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "filename": "[LoliHouse] Tensei Kizoku, Kantei Skill de Nariagaru - 04 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Tensei Kizoku, Kantei Skill De Nariagaru - 04 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Tensei Kizoku, Kantei Skill De Nariagaru - 04 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] NEET Kunoichi to Nazeka Dousei Hajimemashita - 12 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "filename": "[LoliHouse] NEET Kunoichi to Nazeka Dousei Hajimemashita - 12 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Neet Kunoichi To Nazeka Dousei Hajimemashita - 12 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Neet Kunoichi To Nazeka Dousei Hajimemashita - 12 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 聽說你們要結婚!? - 03 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 聽說你們要結婚!? - 03 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 聽說你們要結婚!? - 03 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 聽說你們要結婚!? - 03 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 轉生貴族憑鑑定技能扭轉人生 第二季 - 15 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 轉生貴族憑鑑定技能扭轉人生 第二季 - 15 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 轉生貴族憑鑑定技能扭轉人生 第二季 - 15 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 轉生貴族憑鑑定技能扭轉人生 第二季 - 15 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] WIND BREAKER—防風少年— - 09 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] WIND BREAKER—防風少年— - 09 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] Wind Breaker—防風少年— - 09 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] Wind Breaker—防風少年— - 09 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Hitoribocchi no Isekai Kouryaku - 02 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "filename": "[LoliHouse] Hitoribocchi no Isekai Kouryaku - 02 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Hitoribocchi No Isekai Kouryaku - 02 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Hitoribocchi No Isekai Kouryaku - 02 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Nekomoe kissaten][Ishura][04][1080p][JPTC].mp4", + "filename": "[Nekomoe kissaten][Ishura][04][1080p][JPTC].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Nekomoe Kissaten][Ishura][04][1080P][Jptc]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Nekomoe Kissaten][Ishura][04][1080P][Jptc]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Sword Art Online Alternative - Gun Gale Online II - 06 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "filename": "[LoliHouse] Sword Art Online Alternative - Gun Gale Online II - 06 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Sword Art Online Alternative - Gun Gale Online Ii - 06 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Sword Art Online Alternative - Gun Gale Online Ii - 06 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Chotto dake Ai ga Omoi Dark Elf ga Isekai kara Oikakete Kita - 06 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "filename": "[LoliHouse] Chotto dake Ai ga Omoi Dark Elf ga Isekai kara Oikakete Kita - 06 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Chotto Dake Ai Ga Omoi Dark Elf Ga Isekai Kara Oikakete Kita - 06 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Chotto Dake Ai Ga Omoi Dark Elf Ga Isekai Kara Oikakete Kita - 06 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/The.Animatrix.2003.RERiP.1080p.BluRay.x264.DTS-WiKi/The.Animatrix.2003.RERiP.1080p.BluRay.x264.DTS-WiKi.mkv", + "filename": "The.Animatrix.2003.RERiP.1080p.BluRay.x264.DTS-WiKi.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "The Animatrix 2003 Rerip 1080P Bluray X264 Dts-Wiki", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "The Animatrix 2003 Rerip 1080P Bluray X264 Dts-Wiki", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/The.Animatrix.2003.RERiP.1080p.BluRay.x264.DTS-WiKi/Sample/The.Animatrix.2003.RERiP.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", + "filename": "The.Animatrix.2003.RERiP.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "The Animatrix 2003 Rerip 1080P Bluray X264 Dts-Wiki Sample", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "The Animatrix 2003 Rerip 1080P Bluray X264 Dts-Wiki Sample", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 盾之勇者成名錄 Season 4 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 盾之勇者成名錄 Season 4 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 盾之勇者成名錄 Season 4 - 01 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 盾之勇者成名錄 Season 4 - 01 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] 29-sai Dokushin Chuuken Boukensha no Nichijou - 02 [WebRip 1080p HEVC-10bit AAC ASS].mkv", + "filename": "[LoliHouse] 29-sai Dokushin Chuuken Boukensha no Nichijou - 02 [WebRip 1080p HEVC-10bit AAC ASS].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] 29-Sai Dokushin Chuuken Boukensha No Nichijou - 02 [Webrip 1080P Hevc-10Bit Aac Ass]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] 29-Sai Dokushin Chuuken Boukensha No Nichijou - 02 [Webrip 1080P Hevc-10Bit Aac Ass]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[FZSD][Hime-sama Goumon no Jikan Desu][14][BIG5][1080P][x264_AAC].mp4", + "filename": "[FZSD][Hime-sama Goumon no Jikan Desu][14][BIG5][1080P][x264_AAC].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Fzsd][Hime-Sama Goumon No Jikan Desu][14][Big5][1080P][X264 Aac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Fzsd][Hime-Sama Goumon No Jikan Desu][14][Big5][1080P][X264 Aac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 身為魔族的我 想向勇者小隊的可愛女孩告白 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 身為魔族的我 想向勇者小隊的可愛女孩告白 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 身為魔族的我 想向勇者小隊的可愛女孩告白 - 01 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 身為魔族的我 想向勇者小隊的可愛女孩告白 - 01 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] WIND BREAKER—防風少年— - 12 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] WIND BREAKER—防風少年— - 12 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] Wind Breaker—防風少年— - 12 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] Wind Breaker—防風少年— - 12 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 我內心的糟糕念頭 第二季 - 15 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 我內心的糟糕念頭 第二季 - 15 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 我內心的糟糕念頭 第二季 - 15 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 我內心的糟糕念頭 第二季 - 15 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/《不要欺負我,長瀞同學 2nd Attack》#3/《不要欺負我,長瀞同學 2nd Attack》#3 (日語原聲)【Ani-One Asia】.mp4", + "filename": "《不要欺負我,長瀞同學 2nd Attack》#3 (日語原聲)【Ani-One Asia】.mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "《不要欺負我,長瀞同學 2Nd Attack》#3 (日語原聲)【Ani-One Asia】", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "《不要欺負我,長瀞同學 2Nd Attack》#3 (日語原聲)【Ani-One Asia】", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Lilith-Raws] Kantei Skill - 07 [Baha][WebDL 1080p AVC AAC][CHT].mp4", + "filename": "[Lilith-Raws] Kantei Skill - 07 [Baha][WebDL 1080p AVC AAC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lilith-Raws] Kantei Skill - 07 [Baha][Webdl 1080P Avc Aac][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lilith-Raws] Kantei Skill - 07 [Baha][Webdl 1080P Avc Aac][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 使人誤解的工房主~關於原英雄隊伍的雜役人員,實際上除了戰鬥能力外全是SSS的故事~ - 12 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 使人誤解的工房主~關於原英雄隊伍的雜役人員,實際上除了戰鬥能力外全是SSS的故事~ - 12 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 使人誤解的工房主~關於原英雄隊伍的雜役人員,實際上除了戰鬥能力外全是Sss的故事~ - 12 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 使人誤解的工房主~關於原英雄隊伍的雜役人員,實際上除了戰鬥能力外全是Sss的故事~ - 12 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 「憑妳也想討伐魔王?」被勇者小隊逐出隊伍,只好在王都自在過活 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 「憑妳也想討伐魔王?」被勇者小隊逐出隊伍,只好在王都自在過活 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 「憑妳也想討伐魔王?」被勇者小隊逐出隊伍,只好在王都自在過活 - 01 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 「憑妳也想討伐魔王?」被勇者小隊逐出隊伍,只好在王都自在過活 - 01 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Tensei Kizoku, Kantei Skill de Nariagaru - 23 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "filename": "[LoliHouse] Tensei Kizoku, Kantei Skill de Nariagaru - 23 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Tensei Kizoku, Kantei Skill De Nariagaru - 23 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Tensei Kizoku, Kantei Skill De Nariagaru - 23 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Girls.und.Panzer.das.Finale.Part.IV.2023.1080p.BluRay.x265.10bit.DTS-WiKi/Girls.und.Panzer.das.Finale.Part.IV.2023.1080p.BluRay.x265.10bit.DTS-WiKi.mkv", + "filename": "Girls.und.Panzer.das.Finale.Part.IV.2023.1080p.BluRay.x265.10bit.DTS-WiKi.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Girls Und Panzer Das Finale Part Iv 2023 1080P Bluray X265 10Bit Dts-Wiki", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Girls Und Panzer Das Finale Part Iv 2023 1080P Bluray X265 10Bit Dts-Wiki", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Sakurato] Modaete yo, Adam-kun [03][AVC-8bit 1080p AAC][CHT].mp4", + "filename": "[Sakurato] Modaete yo, Adam-kun [03][AVC-8bit 1080p AAC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Sakurato] Modaete Yo, Adam-Kun [03][Avc-8Bit 1080P Aac][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Sakurato] Modaete Yo, Adam-Kun [03][Avc-8Bit 1080P Aac][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Up to 21°C] Kami no Tou - Ouji no Kikan - 04 (ABEMA 1920x1080 AVC AAC MP4) [2548E81E].mp4", + "filename": "[Up to 21°C] Kami no Tou - Ouji no Kikan - 04 (ABEMA 1920x1080 AVC AAC MP4) [2548E81E].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Up To 21°C] Kami No Tou - Ouji No Kikan - 04 (Abema 1920X1080 Avc Aac Mp4) [2548E81E]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Up To 21°C] Kami No Tou - Ouji No Kikan - 04 (Abema 1920X1080 Avc Aac Mp4) [2548E81E]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 最後可以再拜託您一件事嗎? - 04 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 最後可以再拜託您一件事嗎? - 04 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 最後可以再拜託您一件事嗎? - 04 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 最後可以再拜託您一件事嗎? - 04 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Nekomoe kissaten&LoliHouse] Ao no Hako - 07 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "filename": "[Nekomoe kissaten&LoliHouse] Ao no Hako - 07 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Nekomoe Kissaten&Lolihouse] Ao No Hako - 07 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Nekomoe Kissaten&Lolihouse] Ao No Hako - 07 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[HYSUB]Sono Bisque Doll wa Koi wo Suru[17][BIG5_MP4][1920X1080].mp4", + "filename": "[HYSUB]Sono Bisque Doll wa Koi wo Suru[17][BIG5_MP4][1920X1080].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Hysub]Sono Bisque Doll Wa Koi Wo Suru[17][Big5 Mp4][1920X1080]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Hysub]Sono Bisque Doll Wa Koi Wo Suru[17][Big5 Mp4][1920X1080]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[BeanSub&FZSD][Kimetsu_no_Yaiba][63][GB][1080P][x264_AAC].mp4", + "filename": "[BeanSub&FZSD][Kimetsu_no_Yaiba][63][GB][1080P][x264_AAC].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Beansub&Fzsd][Kimetsu No Yaiba][63][Gb][1080P][X264 Aac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Beansub&Fzsd][Kimetsu No Yaiba][63][Gb][1080P][X264 Aac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[BeanSub&FZSD][Jujutsu_Kaisen][48-49][BIG5][1080P][MP4]/[BeanSub&FZSD][Jujutsu_Kaisen][48][BIG5][1080P][x264_AAC].mp4", + "filename": "[BeanSub&FZSD][Jujutsu_Kaisen][48][BIG5][1080P][x264_AAC].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Beansub&Fzsd][Jujutsu Kaisen][48][Big5][1080P][X264 Aac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Beansub&Fzsd][Jujutsu Kaisen][48][Big5][1080P][X264 Aac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[BeanSub&FZSD][Jujutsu_Kaisen][48-49][BIG5][1080P][MP4]/[BeanSub&FZSD][Jujutsu_Kaisen][49][BIG5][1080P][x264_AAC].mp4", + "filename": "[BeanSub&FZSD][Jujutsu_Kaisen][49][BIG5][1080P][x264_AAC].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Beansub&Fzsd][Jujutsu Kaisen][49][Big5][1080P][X264 Aac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Beansub&Fzsd][Jujutsu Kaisen][49][Big5][1080P][X264 Aac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Pantheon.S01.1080p.AMZN.WEB-DL.DD+5.1.H.264-NTb/Pantheon.S01E01.Pantheon.1080p.AMZN.WEB-DL.DD+5.1.H.264-NTb.mkv", + "filename": "Pantheon.S01E01.Pantheon.1080p.AMZN.WEB-DL.DD+5.1.H.264-NTb.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Pantheon S01E01 Pantheon 1080P Amzn Web-Dl Dd+5 1 H 264-Ntb", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Pantheon S01E01 Pantheon 1080P Amzn Web-Dl Dd+5 1 H 264-Ntb", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Pantheon.S01.1080p.AMZN.WEB-DL.DD+5.1.H.264-NTb/Pantheon.S01E02.Cycles.1080p.AMZN.WEB-DL.DD+5.1.H.264-NTb.mkv", + "filename": "Pantheon.S01E02.Cycles.1080p.AMZN.WEB-DL.DD+5.1.H.264-NTb.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Pantheon S01E02 Cycles 1080P Amzn Web-Dl Dd+5 1 H 264-Ntb", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Pantheon S01E02 Cycles 1080P Amzn Web-Dl Dd+5 1 H 264-Ntb", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Pantheon.S01.1080p.AMZN.WEB-DL.DD+5.1.H.264-NTb/Pantheon.S01E05.Zero.Daze.1080p.AMZN.WEB-DL.DD+5.1.H.264-NTb.mkv", + "filename": "Pantheon.S01E05.Zero.Daze.1080p.AMZN.WEB-DL.DD+5.1.H.264-NTb.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Pantheon S01E05 Zero Daze 1080P Amzn Web-Dl Dd+5 1 H 264-Ntb", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Pantheon S01E05 Zero Daze 1080P Amzn Web-Dl Dd+5 1 H 264-Ntb", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Pantheon.S01.1080p.AMZN.WEB-DL.DD+5.1.H.264-NTb/Pantheon.S01E06.You.Must.Be.Caspian.1080p.AMZN.WEB-DL.DD+5.1.H.264-NTb.mkv", + "filename": "Pantheon.S01E06.You.Must.Be.Caspian.1080p.AMZN.WEB-DL.DD+5.1.H.264-NTb.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Pantheon S01E06 You Must Be Caspian 1080P Amzn Web-Dl Dd+5 1 H 264-Ntb", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Pantheon S01E06 You Must Be Caspian 1080P Amzn Web-Dl Dd+5 1 H 264-Ntb", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Pantheon.S01.1080p.AMZN.WEB-DL.DD+5.1.H.264-NTb/Pantheon.S01E04.The.Gods.Will.Not.Be.Chained.1080p.AMZN.WEB-DL.DD+5.1.H.264-NTb.mkv", + "filename": "Pantheon.S01E04.The.Gods.Will.Not.Be.Chained.1080p.AMZN.WEB-DL.DD+5.1.H.264-NTb.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Pantheon S01E04 The Gods Will Not Be Chained 1080P Amzn Web-Dl Dd+5 1 H 264-Ntb", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Pantheon S01E04 The Gods Will Not Be Chained 1080P Amzn Web-Dl Dd+5 1 H 264-Ntb", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Pantheon.S01.1080p.AMZN.WEB-DL.DD+5.1.H.264-NTb/Pantheon.S01E03.Reign.of.Winter.1080p.AMZN.WEB-DL.DD+5.1.H.264-NTb.mkv", + "filename": "Pantheon.S01E03.Reign.of.Winter.1080p.AMZN.WEB-DL.DD+5.1.H.264-NTb.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Pantheon S01E03 Reign Of Winter 1080P Amzn Web-Dl Dd+5 1 H 264-Ntb", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Pantheon S01E03 Reign Of Winter 1080P Amzn Web-Dl Dd+5 1 H 264-Ntb", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Pantheon.S01.1080p.AMZN.WEB-DL.DD+5.1.H.264-NTb/Pantheon.S01E08.The.Gods.Will.Not.Be.Slain.1080p.AMZN.WEB-DL.DD+5.1.H.264-NTb.mkv", + "filename": "Pantheon.S01E08.The.Gods.Will.Not.Be.Slain.1080p.AMZN.WEB-DL.DD+5.1.H.264-NTb.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Pantheon S01E08 The Gods Will Not Be Slain 1080P Amzn Web-Dl Dd+5 1 H 264-Ntb", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Pantheon S01E08 The Gods Will Not Be Slain 1080P Amzn Web-Dl Dd+5 1 H 264-Ntb", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Pantheon.S01.1080p.AMZN.WEB-DL.DD+5.1.H.264-NTb/Pantheon.S01E07.We.Are.You.1080p.AMZN.WEB-DL.DD+5.1.H.264-NTb.mkv", + "filename": "Pantheon.S01E07.We.Are.You.1080p.AMZN.WEB-DL.DD+5.1.H.264-NTb.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Pantheon S01E07 We Are You 1080P Amzn Web-Dl Dd+5 1 H 264-Ntb", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Pantheon S01E07 We Are You 1080P Amzn Web-Dl Dd+5 1 H 264-Ntb", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] BLEACH 死神 千年血戰篇-相剋譚- - 30 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] BLEACH 死神 千年血戰篇-相剋譚- - 30 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] Bleach 死神 千年血戰篇-相剋譚- - 30 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] Bleach 死神 千年血戰篇-相剋譚- - 30 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 和雨.和你 - 09 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 和雨.和你 - 09 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 和雨.和你 - 09 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 和雨.和你 - 09 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] Silent Witch 沉默魔女的祕密 - 09 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] Silent Witch 沉默魔女的祕密 - 09 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] Silent Witch 沉默魔女的祕密 - 09 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] Silent Witch 沉默魔女的祕密 - 09 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Lilith-Raws] Kantei Skill - 09 [Baha][WebDL 1080p AVC AAC][CHT].mp4", + "filename": "[Lilith-Raws] Kantei Skill - 09 [Baha][WebDL 1080p AVC AAC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lilith-Raws] Kantei Skill - 09 [Baha][Webdl 1080P Avc Aac][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lilith-Raws] Kantei Skill - 09 [Baha][Webdl 1080P Avc Aac][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 我獨自升級 第二季 -起於闇影- - 22 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 我獨自升級 第二季 -起於闇影- - 22 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 我獨自升級 第二季 -起於闇影- - 22 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 我獨自升級 第二季 -起於闇影- - 22 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 拉麵赤貓 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 拉麵赤貓 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 拉麵赤貓 - 01 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 拉麵赤貓 - 01 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Nekomoe kissaten][Ao no Hako][20][1080p][JPSC].mp4", + "filename": "[Nekomoe kissaten][Ao no Hako][20][1080p][JPSC].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Nekomoe Kissaten][Ao No Hako][20][1080P][Jpsc]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Nekomoe Kissaten][Ao No Hako][20][1080P][Jpsc]", + "needs_review": true + }, + { + "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", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 我獨自升級 - 05 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 我獨自升級 - 05 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 和雨.和你 - 12 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 和雨.和你 - 12 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 和雨.和你 - 12 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 和雨.和你 - 12 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/《繼母的拖油瓶是我的前女友》#2/《繼母的拖油瓶是我的前女友》#2 (日語原聲)【Ani-One Asia】.mp4", + "filename": "《繼母的拖油瓶是我的前女友》#2 (日語原聲)【Ani-One Asia】.mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "《繼母的拖油瓶是我的前女友》#2 (日語原聲)【Ani-One Asia】", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "《繼母的拖油瓶是我的前女友》#2 (日語原聲)【Ani-One Asia】", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Cyberpunk.Edgerunners.S01.1080p.NF.WEB-DL.DUAL.DDP5.1.H.264-SMURF/Cyberpunk.Edgerunners.S01E02.Like.A.Boy.1080p.NF.WEB-DL.DUAL.DDP5.1.H.264-SMURF.mkv", + "filename": "Cyberpunk.Edgerunners.S01E02.Like.A.Boy.1080p.NF.WEB-DL.DUAL.DDP5.1.H.264-SMURF.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Cyberpunk Edgerunners S01E02 Like A Boy 1080P Nf Web-Dl Dual Ddp5 1 H 264-Smurf", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Cyberpunk Edgerunners S01E02 Like A Boy 1080P Nf Web-Dl Dual Ddp5 1 H 264-Smurf", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Cyberpunk.Edgerunners.S01.1080p.NF.WEB-DL.DUAL.DDP5.1.H.264-SMURF/Cyberpunk.Edgerunners.S01E04.Lucky.You.1080p.NF.WEB-DL.DUAL.DDP5.1.H.264-SMURF.mkv", + "filename": "Cyberpunk.Edgerunners.S01E04.Lucky.You.1080p.NF.WEB-DL.DUAL.DDP5.1.H.264-SMURF.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Cyberpunk Edgerunners S01E04 Lucky You 1080P Nf Web-Dl Dual Ddp5 1 H 264-Smurf", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Cyberpunk Edgerunners S01E04 Lucky You 1080P Nf Web-Dl Dual Ddp5 1 H 264-Smurf", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Cyberpunk.Edgerunners.S01.1080p.NF.WEB-DL.DUAL.DDP5.1.H.264-SMURF/Cyberpunk.Edgerunners.S01E10.My.Moon.My.Man.1080p.NF.WEB-DL.DUAL.DDP5.1.H.264-SMURF.mkv", + "filename": "Cyberpunk.Edgerunners.S01E10.My.Moon.My.Man.1080p.NF.WEB-DL.DUAL.DDP5.1.H.264-SMURF.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Cyberpunk Edgerunners S01E10 My Moon My Man 1080P Nf Web-Dl Dual Ddp5 1 H 264-Smurf", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Cyberpunk Edgerunners S01E10 My Moon My Man 1080P Nf Web-Dl Dual Ddp5 1 H 264-Smurf", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Cyberpunk.Edgerunners.S01.1080p.NF.WEB-DL.DUAL.DDP5.1.H.264-SMURF/Cyberpunk.Edgerunners.S01E05.All.Eyez.On.Me.1080p.NF.WEB-DL.DUAL.DDP5.1.H.264-SMURF.mkv", + "filename": "Cyberpunk.Edgerunners.S01E05.All.Eyez.On.Me.1080p.NF.WEB-DL.DUAL.DDP5.1.H.264-SMURF.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Cyberpunk Edgerunners S01E05 All Eyez On Me 1080P Nf Web-Dl Dual Ddp5 1 H 264-Smurf", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Cyberpunk Edgerunners S01E05 All Eyez On Me 1080P Nf Web-Dl Dual Ddp5 1 H 264-Smurf", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Cyberpunk.Edgerunners.S01.1080p.NF.WEB-DL.DUAL.DDP5.1.H.264-SMURF/Cyberpunk.Edgerunners.S01E08.Stay.1080p.NF.WEB-DL.DUAL.DDP5.1.H.264-SMURF.mkv", + "filename": "Cyberpunk.Edgerunners.S01E08.Stay.1080p.NF.WEB-DL.DUAL.DDP5.1.H.264-SMURF.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Cyberpunk Edgerunners S01E08 Stay 1080P Nf Web-Dl Dual Ddp5 1 H 264-Smurf", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Cyberpunk Edgerunners S01E08 Stay 1080P Nf Web-Dl Dual Ddp5 1 H 264-Smurf", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Cyberpunk.Edgerunners.S01.1080p.NF.WEB-DL.DUAL.DDP5.1.H.264-SMURF/Cyberpunk.Edgerunners.S01E07.Stronger.1080p.NF.WEB-DL.DUAL.DDP5.1.H.264-SMURF.mkv", + "filename": "Cyberpunk.Edgerunners.S01E07.Stronger.1080p.NF.WEB-DL.DUAL.DDP5.1.H.264-SMURF.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Cyberpunk Edgerunners S01E07 Stronger 1080P Nf Web-Dl Dual Ddp5 1 H 264-Smurf", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Cyberpunk Edgerunners S01E07 Stronger 1080P Nf Web-Dl Dual Ddp5 1 H 264-Smurf", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Cyberpunk.Edgerunners.S01.1080p.NF.WEB-DL.DUAL.DDP5.1.H.264-SMURF/Cyberpunk.Edgerunners.S01E09.Humanity.1080p.NF.WEB-DL.DUAL.DDP5.1.H.264-SMURF.mkv", + "filename": "Cyberpunk.Edgerunners.S01E09.Humanity.1080p.NF.WEB-DL.DUAL.DDP5.1.H.264-SMURF.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Cyberpunk Edgerunners S01E09 Humanity 1080P Nf Web-Dl Dual Ddp5 1 H 264-Smurf", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Cyberpunk Edgerunners S01E09 Humanity 1080P Nf Web-Dl Dual Ddp5 1 H 264-Smurf", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Cyberpunk.Edgerunners.S01.1080p.NF.WEB-DL.DUAL.DDP5.1.H.264-SMURF/Cyberpunk.Edgerunners.S01E03.Smooth.Criminal.1080p.NF.WEB-DL.DUAL.DDP5.1.H.264-SMURF.mkv", + "filename": "Cyberpunk.Edgerunners.S01E03.Smooth.Criminal.1080p.NF.WEB-DL.DUAL.DDP5.1.H.264-SMURF.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Cyberpunk Edgerunners S01E03 Smooth Criminal 1080P Nf Web-Dl Dual Ddp5 1 H 264-Smurf", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Cyberpunk Edgerunners S01E03 Smooth Criminal 1080P Nf Web-Dl Dual Ddp5 1 H 264-Smurf", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Cyberpunk.Edgerunners.S01.1080p.NF.WEB-DL.DUAL.DDP5.1.H.264-SMURF/Cyberpunk.Edgerunners.S01E06.Girl.on.Fire.1080p.NF.WEB-DL.DUAL.DDP5.1.H.264-SMURF.mkv", + "filename": "Cyberpunk.Edgerunners.S01E06.Girl.on.Fire.1080p.NF.WEB-DL.DUAL.DDP5.1.H.264-SMURF.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Cyberpunk Edgerunners S01E06 Girl On Fire 1080P Nf Web-Dl Dual Ddp5 1 H 264-Smurf", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Cyberpunk Edgerunners S01E06 Girl On Fire 1080P Nf Web-Dl Dual Ddp5 1 H 264-Smurf", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Cyberpunk.Edgerunners.S01.1080p.NF.WEB-DL.DUAL.DDP5.1.H.264-SMURF/Cyberpunk.Edgerunners.S01E01.Let.You.Down.1080p.NF.WEB-DL.DUAL.DDP5.1.H.264-SMURF.mkv", + "filename": "Cyberpunk.Edgerunners.S01E01.Let.You.Down.1080p.NF.WEB-DL.DUAL.DDP5.1.H.264-SMURF.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Cyberpunk Edgerunners S01E01 Let You Down 1080P Nf Web-Dl Dual Ddp5 1 H 264-Smurf", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Cyberpunk Edgerunners S01E01 Let You Down 1080P Nf Web-Dl Dual Ddp5 1 H 264-Smurf", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] RINKAI!女子競輪 - 12 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] RINKAI!女子競輪 - 12 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] Rinkai!女子競輪 - 12 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] Rinkai!女子競輪 - 12 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Nekomoe kissaten][Tower of God S2][06][1080p][CHT].mp4", + "filename": "[Nekomoe kissaten][Tower of God S2][06][1080p][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Nekomoe Kissaten][Tower Of God S2][06][1080P][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Nekomoe Kissaten][Tower Of God S2][06][1080P][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Tsuki ga Michibiku Isekai Douchuu S2 - 18 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "filename": "[LoliHouse] Tsuki ga Michibiku Isekai Douchuu S2 - 18 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Tsuki Ga Michibiku Isekai Douchuu S2 - 18 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Tsuki Ga Michibiku Isekai Douchuu S2 - 18 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/《BLEACH 死神 千年血戰篇》#4/《BLEACH 死神 千年血戰篇》#4 (日語原聲)【Ani-One Asia ULTRA】.mp4", + "filename": "《BLEACH 死神 千年血戰篇》#4 (日語原聲)【Ani-One Asia ULTRA】.mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "《Bleach 死神 千年血戰篇》#4 (日語原聲)【Ani-One Asia Ultra】", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "《Bleach 死神 千年血戰篇》#4 (日語原聲)【Ani-One Asia Ultra】", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/I.Am.Groot.S01.1080p.WEB.h264-KOGi/I.Am.Groot.S01E03.1080p.WEB.h264-KOGi.mkv", + "filename": "I.Am.Groot.S01E03.1080p.WEB.h264-KOGi.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "I Am Groot S01E03 1080P Web H264-Kogi", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "I Am Groot S01E03 1080P Web H264-Kogi", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/I.Am.Groot.S01.1080p.WEB.h264-KOGi/I.Am.Groot.S01E04.1080p.WEB.h264-KOGi.mkv", + "filename": "I.Am.Groot.S01E04.1080p.WEB.h264-KOGi.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "I Am Groot S01E04 1080P Web H264-Kogi", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "I Am Groot S01E04 1080P Web H264-Kogi", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/I.Am.Groot.S01.1080p.WEB.h264-KOGi/I.Am.Groot.S01E02.1080p.WEB.h264-KOGi.mkv", + "filename": "I.Am.Groot.S01E02.1080p.WEB.h264-KOGi.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "I Am Groot S01E02 1080P Web H264-Kogi", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "I Am Groot S01E02 1080P Web H264-Kogi", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/I.Am.Groot.S01.1080p.WEB.h264-KOGi/I.Am.Groot.S01E05.1080p.WEB.h264-KOGi.mkv", + "filename": "I.Am.Groot.S01E05.1080p.WEB.h264-KOGi.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "I Am Groot S01E05 1080P Web H264-Kogi", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "I Am Groot S01E05 1080P Web H264-Kogi", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/I.Am.Groot.S01.1080p.WEB.h264-KOGi/I.Am.Groot.S01E01.1080p.WEB.h264-KOGi.mkv", + "filename": "I.Am.Groot.S01E01.1080p.WEB.h264-KOGi.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "I Am Groot S01E01 1080P Web H264-Kogi", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "I Am Groot S01E01 1080P Web H264-Kogi", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Sword Art Online Alternative - Gun Gale Online II - 02 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "filename": "[LoliHouse] Sword Art Online Alternative - Gun Gale Online II - 02 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Sword Art Online Alternative - Gun Gale Online Ii - 02 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Sword Art Online Alternative - Gun Gale Online Ii - 02 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Evacuate.from.the.21st.Century.2024.1080p.BluRay.x265.10bit.DTS-WiKi/Evacuate.from.the.21st.Century.2024.1080p.BluRay.x265.10bit.DTS-WiKi.mkv", + "filename": "Evacuate.from.the.21st.Century.2024.1080p.BluRay.x265.10bit.DTS-WiKi.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Evacuate From The 21St Century 2024 1080P Bluray X265 10Bit Dts-Wiki", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Evacuate From The 21St Century 2024 1080P Bluray X265 10Bit Dts-Wiki", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 身為暗殺者的我明顯比勇者還強 - 11 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 身為暗殺者的我明顯比勇者還強 - 11 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 身為暗殺者的我明顯比勇者還強 - 11 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 身為暗殺者的我明顯比勇者還強 - 11 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Nekomoe kissaten][Ninja Kamui][02][1080p][CHT].mp4", + "filename": "[Nekomoe kissaten][Ninja Kamui][02][1080p][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Nekomoe Kissaten][Ninja Kamui][02][1080P][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Nekomoe Kissaten][Ninja Kamui][02][1080P][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Nekomoe kissaten][Ao no Hako][25][1080p][JPTC].mp4", + "filename": "[Nekomoe kissaten][Ao no Hako][25][1080p][JPTC].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Nekomoe Kissaten][Ao No Hako][25][1080P][Jptc]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Nekomoe Kissaten][Ao No Hako][25][1080P][Jptc]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[orion origin] Wind Breaker [03] [1080p] [H265 AAC] [CHT&JPN].mp4", + "filename": "[orion origin] Wind Breaker [03] [1080p] [H265 AAC] [CHT&JPN].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Orion Origin] Wind Breaker [03] [1080P] [H265 Aac] [Cht&Jpn]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Orion Origin] Wind Breaker [03] [1080P] [H265 Aac] [Cht&Jpn]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 新人大叔冒險者,被最強隊伍操到死成無敵 - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 新人大叔冒險者,被最強隊伍操到死成無敵 - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 新人大叔冒險者,被最強隊伍操到死成無敵 - 02 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 新人大叔冒險者,被最強隊伍操到死成無敵 - 02 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 膽大黨 第二季 - 15 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 膽大黨 第二季 - 15 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 膽大黨 第二季 - 15 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 膽大黨 第二季 - 15 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[HYSUB]Dungeon Meshi[01][BIG5_MP4][1920X1080].mp4", + "filename": "[HYSUB]Dungeon Meshi[01][BIG5_MP4][1920X1080].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Hysub]Dungeon Meshi[01][Big5 Mp4][1920X1080]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Hysub]Dungeon Meshi[01][Big5 Mp4][1920X1080]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Nekomoe kissaten&LoliHouse] Pon no Michi - 12 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "filename": "[Nekomoe kissaten&LoliHouse] Pon no Michi - 12 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Nekomoe Kissaten&Lolihouse] Pon No Michi - 12 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Nekomoe Kissaten&Lolihouse] Pon No Michi - 12 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Izure Saikyou no Renkinjutsushi - 10 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "filename": "[LoliHouse] Izure Saikyou no Renkinjutsushi - 10 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Izure Saikyou No Renkinjutsushi - 10 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Izure Saikyou No Renkinjutsushi - 10 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] Re:Monster - 08 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] Re:Monster - 08 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] Re:Monster - 08 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] Re:Monster - 08 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Demon.Slayer.S02.2021.1080p.BluRay.x265.10bit-WiKi/Demon.Slayer.S02E05.2021.1080p.BluRay.x265.10bit-WiKi.mkv", + "filename": "Demon.Slayer.S02E05.2021.1080p.BluRay.x265.10bit-WiKi.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Demon Slayer S02E05 2021 1080P Bluray X265 10Bit-Wiki", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Demon Slayer S02E05 2021 1080P Bluray X265 10Bit-Wiki", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Demon.Slayer.S02.2021.1080p.BluRay.x265.10bit-WiKi/Demon.Slayer.S02E04.2021.1080p.BluRay.x265.10bit-WiKi.mkv", + "filename": "Demon.Slayer.S02E04.2021.1080p.BluRay.x265.10bit-WiKi.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Demon Slayer S02E04 2021 1080P Bluray X265 10Bit-Wiki", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Demon Slayer S02E04 2021 1080P Bluray X265 10Bit-Wiki", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Demon.Slayer.S02.2021.1080p.BluRay.x265.10bit-WiKi/Demon.Slayer.S02E11.2021.1080p.BluRay.x265.10bit-WiKi.mkv", + "filename": "Demon.Slayer.S02E11.2021.1080p.BluRay.x265.10bit-WiKi.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Demon Slayer S02E11 2021 1080P Bluray X265 10Bit-Wiki", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Demon Slayer S02E11 2021 1080P Bluray X265 10Bit-Wiki", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Demon.Slayer.S02.2021.1080p.BluRay.x265.10bit-WiKi/Demon.Slayer.S02E07.2021.1080p.BluRay.x265.10bit-WiKi.mkv", + "filename": "Demon.Slayer.S02E07.2021.1080p.BluRay.x265.10bit-WiKi.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Demon Slayer S02E07 2021 1080P Bluray X265 10Bit-Wiki", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Demon Slayer S02E07 2021 1080P Bluray X265 10Bit-Wiki", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Demon.Slayer.S02.2021.1080p.BluRay.x265.10bit-WiKi/Demon.Slayer.S02E10.2021.1080p.BluRay.x265.10bit-WiKi.mkv", + "filename": "Demon.Slayer.S02E10.2021.1080p.BluRay.x265.10bit-WiKi.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Demon Slayer S02E10 2021 1080P Bluray X265 10Bit-Wiki", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Demon Slayer S02E10 2021 1080P Bluray X265 10Bit-Wiki", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Demon.Slayer.S02.2021.1080p.BluRay.x265.10bit-WiKi/Demon.Slayer.S02E06.2021.1080p.BluRay.x265.10bit-WiKi.mkv", + "filename": "Demon.Slayer.S02E06.2021.1080p.BluRay.x265.10bit-WiKi.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Demon Slayer S02E06 2021 1080P Bluray X265 10Bit-Wiki", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Demon Slayer S02E06 2021 1080P Bluray X265 10Bit-Wiki", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Demon.Slayer.S02.2021.1080p.BluRay.x265.10bit-WiKi/Demon.Slayer.S02E01.2021.1080p.BluRay.x265.10bit-WiKi.mkv", + "filename": "Demon.Slayer.S02E01.2021.1080p.BluRay.x265.10bit-WiKi.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Demon Slayer S02E01 2021 1080P Bluray X265 10Bit-Wiki", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Demon Slayer S02E01 2021 1080P Bluray X265 10Bit-Wiki", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Demon.Slayer.S02.2021.1080p.BluRay.x265.10bit-WiKi/Demon.Slayer.S02E03.2021.1080p.BluRay.x265.10bit-WiKi.mkv", + "filename": "Demon.Slayer.S02E03.2021.1080p.BluRay.x265.10bit-WiKi.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Demon Slayer S02E03 2021 1080P Bluray X265 10Bit-Wiki", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Demon Slayer S02E03 2021 1080P Bluray X265 10Bit-Wiki", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Demon.Slayer.S02.2021.1080p.BluRay.x265.10bit-WiKi/Demon.Slayer.S02E02.2021.1080p.BluRay.x265.10bit-WiKi.mkv", + "filename": "Demon.Slayer.S02E02.2021.1080p.BluRay.x265.10bit-WiKi.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Demon Slayer S02E02 2021 1080P Bluray X265 10Bit-Wiki", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Demon Slayer S02E02 2021 1080P Bluray X265 10Bit-Wiki", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Demon.Slayer.S02.2021.1080p.BluRay.x265.10bit-WiKi/Demon.Slayer.S02E09.2021.1080p.BluRay.x265.10bit-WiKi.mkv", + "filename": "Demon.Slayer.S02E09.2021.1080p.BluRay.x265.10bit-WiKi.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Demon Slayer S02E09 2021 1080P Bluray X265 10Bit-Wiki", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Demon Slayer S02E09 2021 1080P Bluray X265 10Bit-Wiki", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Demon.Slayer.S02.2021.1080p.BluRay.x265.10bit-WiKi/Demon.Slayer.S02E08.2021.1080p.BluRay.x265.10bit-WiKi.mkv", + "filename": "Demon.Slayer.S02E08.2021.1080p.BluRay.x265.10bit-WiKi.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Demon Slayer S02E08 2021 1080P Bluray X265 10Bit-Wiki", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Demon Slayer S02E08 2021 1080P Bluray X265 10Bit-Wiki", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 我和班上最討厭的女生結婚了。 - 08 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 我和班上最討厭的女生結婚了。 - 08 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 我和班上最討厭的女生結婚了。 - 08 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 我和班上最討厭的女生結婚了。 - 08 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[BeanSub][Ao no Exorcist _Yuki no Hate Hen][03][GB][1080P][x264_AAC].mp4", + "filename": "[BeanSub][Ao no Exorcist _Yuki no Hate Hen][03][GB][1080P][x264_AAC].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Beansub][Ao No Exorcist Yuki No Hate Hen][03][Gb][1080P][X264 Aac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Beansub][Ao No Exorcist Yuki No Hate Hen][03][Gb][1080P][X264 Aac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Tate no Yuusha no Nariagari S4 - 09 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "filename": "[LoliHouse] Tate no Yuusha no Nariagari S4 - 09 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Tate No Yuusha No Nariagari S4 - 09 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Tate No Yuusha No Nariagari S4 - 09 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 素材採集家的異世界旅行記 - 08 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 素材採集家的異世界旅行記 - 08 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 素材採集家的異世界旅行記 - 08 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 素材採集家的異世界旅行記 - 08 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 怪獸 8 號 - 11 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 怪獸 8 號 - 11 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 怪獸 8 號 - 11 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 怪獸 8 號 - 11 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 被逐出隊伍的治癒師,其實是最強 - 08 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 被逐出隊伍的治癒師,其實是最強 - 08 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 被逐出隊伍的治癒師,其實是最強 - 08 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 被逐出隊伍的治癒師,其實是最強 - 08 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 治癒魔法的錯誤使用法 - 09 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 治癒魔法的錯誤使用法 - 09 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 治癒魔法的錯誤使用法 - 09 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 治癒魔法的錯誤使用法 - 09 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 轉生為第七王子,隨心所欲的魔法學習之路 - 10 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 轉生為第七王子,隨心所欲的魔法學習之路 - 10 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 轉生為第七王子,隨心所欲的魔法學習之路 - 10 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 轉生為第七王子,隨心所欲的魔法學習之路 - 10 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 香格里拉・開拓異境~糞作獵手挑戰神作~ 第二季 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 香格里拉・開拓異境~糞作獵手挑戰神作~ 第二季 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 香格里拉・開拓異境~糞作獵手挑戰神作~ 第二季 - 01 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 香格里拉・開拓異境~糞作獵手挑戰神作~ 第二季 - 01 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[orion origin] Sentai Red Isekai de Boukensha ni Naru [05] [1080p] [H265 AAC] [CHT&JPN].mp4", + "filename": "[orion origin] Sentai Red Isekai de Boukensha ni Naru [05] [1080p] [H265 AAC] [CHT&JPN].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Orion Origin] Sentai Red Isekai De Boukensha Ni Naru [05] [1080P] [H265 Aac] [Cht&Jpn]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Orion Origin] Sentai Red Isekai De Boukensha Ni Naru [05] [1080P] [H265 Aac] [Cht&Jpn]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Shin no Nakama 2nd - 03 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "filename": "[LoliHouse] Shin no Nakama 2nd - 03 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Shin No Nakama 2Nd - 03 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Shin No Nakama 2Nd - 03 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 終末起點 - 04 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 終末起點 - 04 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 終末起點 - 04 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 終末起點 - 04 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Baki.Hanma.S02.2023.1080p.NF.WEB-DL.x264.DDP5.1-ADWeb/Baki.Hanma.S02E08.2023.1080p.NF.WEB-DL.x264.DDP5.1-ADWeb.mkv", + "filename": "Baki.Hanma.S02E08.2023.1080p.NF.WEB-DL.x264.DDP5.1-ADWeb.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Baki Hanma S02E08 2023 1080P Nf Web-Dl X264 Ddp5 1-Adweb", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Baki Hanma S02E08 2023 1080P Nf Web-Dl X264 Ddp5 1-Adweb", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Baki.Hanma.S02.2023.1080p.NF.WEB-DL.x264.DDP5.1-ADWeb/Baki.Hanma.S02E09.2023.1080p.NF.WEB-DL.x264.DDP5.1-ADWeb.mkv", + "filename": "Baki.Hanma.S02E09.2023.1080p.NF.WEB-DL.x264.DDP5.1-ADWeb.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Baki Hanma S02E09 2023 1080P Nf Web-Dl X264 Ddp5 1-Adweb", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Baki Hanma S02E09 2023 1080P Nf Web-Dl X264 Ddp5 1-Adweb", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Baki.Hanma.S02.2023.1080p.NF.WEB-DL.x264.DDP5.1-ADWeb/Baki.Hanma.S02E12.2023.1080p.NF.WEB-DL.x264.DDP5.1-ADWeb.mkv", + "filename": "Baki.Hanma.S02E12.2023.1080p.NF.WEB-DL.x264.DDP5.1-ADWeb.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Baki Hanma S02E12 2023 1080P Nf Web-Dl X264 Ddp5 1-Adweb", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Baki Hanma S02E12 2023 1080P Nf Web-Dl X264 Ddp5 1-Adweb", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Baki.Hanma.S02.2023.1080p.NF.WEB-DL.x264.DDP5.1-ADWeb/Baki.Hanma.S02E06.2023.1080p.NF.WEB-DL.x264.DDP5.1-ADWeb.mkv", + "filename": "Baki.Hanma.S02E06.2023.1080p.NF.WEB-DL.x264.DDP5.1-ADWeb.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Baki Hanma S02E06 2023 1080P Nf Web-Dl X264 Ddp5 1-Adweb", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Baki Hanma S02E06 2023 1080P Nf Web-Dl X264 Ddp5 1-Adweb", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Baki.Hanma.S02.2023.1080p.NF.WEB-DL.x264.DDP5.1-ADWeb/Baki.Hanma.S02E13.2023.1080p.NF.WEB-DL.x264.DDP5.1-ADWeb.mkv", + "filename": "Baki.Hanma.S02E13.2023.1080p.NF.WEB-DL.x264.DDP5.1-ADWeb.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Baki Hanma S02E13 2023 1080P Nf Web-Dl X264 Ddp5 1-Adweb", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Baki Hanma S02E13 2023 1080P Nf Web-Dl X264 Ddp5 1-Adweb", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Baki.Hanma.S02.2023.1080p.NF.WEB-DL.x264.DDP5.1-ADWeb/Baki.Hanma.S02E07.2023.1080p.NF.WEB-DL.x264.DDP5.1-ADWeb.mkv", + "filename": "Baki.Hanma.S02E07.2023.1080p.NF.WEB-DL.x264.DDP5.1-ADWeb.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Baki Hanma S02E07 2023 1080P Nf Web-Dl X264 Ddp5 1-Adweb", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Baki Hanma S02E07 2023 1080P Nf Web-Dl X264 Ddp5 1-Adweb", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Baki.Hanma.S02.2023.1080p.NF.WEB-DL.x264.DDP5.1-ADWeb/Baki.Hanma.S02E10.2023.1080p.NF.WEB-DL.x264.DDP5.1-ADWeb.mkv", + "filename": "Baki.Hanma.S02E10.2023.1080p.NF.WEB-DL.x264.DDP5.1-ADWeb.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Baki Hanma S02E10 2023 1080P Nf Web-Dl X264 Ddp5 1-Adweb", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Baki Hanma S02E10 2023 1080P Nf Web-Dl X264 Ddp5 1-Adweb", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Baki.Hanma.S02.2023.1080p.NF.WEB-DL.x264.DDP5.1-ADWeb/Baki.Hanma.S02E04.2023.1080p.NF.WEB-DL.x264.DDP5.1-ADWeb.mkv", + "filename": "Baki.Hanma.S02E04.2023.1080p.NF.WEB-DL.x264.DDP5.1-ADWeb.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Baki Hanma S02E04 2023 1080P Nf Web-Dl X264 Ddp5 1-Adweb", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Baki Hanma S02E04 2023 1080P Nf Web-Dl X264 Ddp5 1-Adweb", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Baki.Hanma.S02.2023.1080p.NF.WEB-DL.x264.DDP5.1-ADWeb/Baki.Hanma.S02E11.2023.1080p.NF.WEB-DL.x264.DDP5.1-ADWeb.mkv", + "filename": "Baki.Hanma.S02E11.2023.1080p.NF.WEB-DL.x264.DDP5.1-ADWeb.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Baki Hanma S02E11 2023 1080P Nf Web-Dl X264 Ddp5 1-Adweb", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Baki Hanma S02E11 2023 1080P Nf Web-Dl X264 Ddp5 1-Adweb", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Baki.Hanma.S02.2023.1080p.NF.WEB-DL.x264.DDP5.1-ADWeb/Baki.Hanma.S02E05.2023.1080p.NF.WEB-DL.x264.DDP5.1-ADWeb.mkv", + "filename": "Baki.Hanma.S02E05.2023.1080p.NF.WEB-DL.x264.DDP5.1-ADWeb.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Baki Hanma S02E05 2023 1080P Nf Web-Dl X264 Ddp5 1-Adweb", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Baki Hanma S02E05 2023 1080P Nf Web-Dl X264 Ddp5 1-Adweb", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Baki.Hanma.S02.2023.1080p.NF.WEB-DL.x264.DDP5.1-ADWeb/Baki.Hanma.S02E02.2023.1080p.NF.WEB-DL.x264.DDP5.1-ADWeb.mkv", + "filename": "Baki.Hanma.S02E02.2023.1080p.NF.WEB-DL.x264.DDP5.1-ADWeb.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Baki Hanma S02E02 2023 1080P Nf Web-Dl X264 Ddp5 1-Adweb", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Baki Hanma S02E02 2023 1080P Nf Web-Dl X264 Ddp5 1-Adweb", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Baki.Hanma.S02.2023.1080p.NF.WEB-DL.x264.DDP5.1-ADWeb/Baki.Hanma.S02E03.2023.1080p.NF.WEB-DL.x264.DDP5.1-ADWeb.mkv", + "filename": "Baki.Hanma.S02E03.2023.1080p.NF.WEB-DL.x264.DDP5.1-ADWeb.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Baki Hanma S02E03 2023 1080P Nf Web-Dl X264 Ddp5 1-Adweb", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Baki Hanma S02E03 2023 1080P Nf Web-Dl X264 Ddp5 1-Adweb", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Baki.Hanma.S02.2023.1080p.NF.WEB-DL.x264.DDP5.1-ADWeb/Baki.Hanma.S02E01.2023.1080p.NF.WEB-DL.x264.DDP5.1-ADWeb.mkv", + "filename": "Baki.Hanma.S02E01.2023.1080p.NF.WEB-DL.x264.DDP5.1-ADWeb.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Baki Hanma S02E01 2023 1080P Nf Web-Dl X264 Ddp5 1-Adweb", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Baki Hanma S02E01 2023 1080P Nf Web-Dl X264 Ddp5 1-Adweb", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 水屬性的魔法師 - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 水屬性的魔法師 - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 水屬性的魔法師 - 02 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 水屬性的魔法師 - 02 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Laid-Back.Camp.The.Movie.2022.1080p.BluRay.x265.10bit-WiKi/Laid-Back.Camp.The.Movie.2022.1080p.BluRay.x265.10bit-WiKi.mkv", + "filename": "Laid-Back.Camp.The.Movie.2022.1080p.BluRay.x265.10bit-WiKi.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Laid-Back Camp The Movie 2022 1080P Bluray X265 10Bit-Wiki", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Laid-Back Camp The Movie 2022 1080P Bluray X265 10Bit-Wiki", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 一拳超人(第三季) - 27 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 一拳超人(第三季) - 27 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 一拳超人(第三季) - 27 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 一拳超人(第三季) - 27 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 在地下城尋求邂逅是否搞錯了什麼 第五季 - 04 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 在地下城尋求邂逅是否搞錯了什麼 第五季 - 04 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 在地下城尋求邂逅是否搞錯了什麼 第五季 - 04 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 在地下城尋求邂逅是否搞錯了什麼 第五季 - 04 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 治癒魔法的錯誤使用法 - 12 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 治癒魔法的錯誤使用法 - 12 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 治癒魔法的錯誤使用法 - 12 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 治癒魔法的錯誤使用法 - 12 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 機械臂 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 機械臂 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 機械臂 - 01 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 機械臂 - 01 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Love.Death.and.Robots.S01.1080p.NF.WEB-DL.DDP5.1.x264-NTG/Love.Death.and.Robots.S01E12.Fish.Night.1080p.NF.WEB-DL.DDP5.1.x264-NTG.mkv", + "filename": "Love.Death.and.Robots.S01E12.Fish.Night.1080p.NF.WEB-DL.DDP5.1.x264-NTG.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Love Death And Robots S01E12 Fish Night 1080P Nf Web-Dl Ddp5 1 X264-Ntg", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Love Death And Robots S01E12 Fish Night 1080P Nf Web-Dl Ddp5 1 X264-Ntg", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Love.Death.and.Robots.S01.1080p.NF.WEB-DL.DDP5.1.x264-NTG/Love.Death.and.Robots.S01E14.Zima.Blue.1080p.NF.WEB-DL.DDP5.1.x264-NTG.mkv", + "filename": "Love.Death.and.Robots.S01E14.Zima.Blue.1080p.NF.WEB-DL.DDP5.1.x264-NTG.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Love Death And Robots S01E14 Zima Blue 1080P Nf Web-Dl Ddp5 1 X264-Ntg", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Love Death And Robots S01E14 Zima Blue 1080P Nf Web-Dl Ddp5 1 X264-Ntg", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Love.Death.and.Robots.S01.1080p.NF.WEB-DL.DDP5.1.x264-NTG/Love.Death.and.Robots.S01E17.Alternate.Histories.1080p.NF.WEB-DL.DDP5.1.x264-NTG.mkv", + "filename": "Love.Death.and.Robots.S01E17.Alternate.Histories.1080p.NF.WEB-DL.DDP5.1.x264-NTG.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Love Death And Robots S01E17 Alternate Histories 1080P Nf Web-Dl Ddp5 1 X264-Ntg", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Love Death And Robots S01E17 Alternate Histories 1080P Nf Web-Dl Ddp5 1 X264-Ntg", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Love.Death.and.Robots.S01.1080p.NF.WEB-DL.DDP5.1.x264-NTG/Love.Death.and.Robots.S01E15.Blindspot.1080p.NF.WEB-DL.DDP5.1.x264-NTG.mkv", + "filename": "Love.Death.and.Robots.S01E15.Blindspot.1080p.NF.WEB-DL.DDP5.1.x264-NTG.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Love Death And Robots S01E15 Blindspot 1080P Nf Web-Dl Ddp5 1 X264-Ntg", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Love Death And Robots S01E15 Blindspot 1080P Nf Web-Dl Ddp5 1 X264-Ntg", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Love.Death.and.Robots.S01.1080p.NF.WEB-DL.DDP5.1.x264-NTG/Love.Death.and.Robots.S01E10.Shape-Shifters.1080p.NF.WEB-DL.DDP5.1.x264-NTG.mkv", + "filename": "Love.Death.and.Robots.S01E10.Shape-Shifters.1080p.NF.WEB-DL.DDP5.1.x264-NTG.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Love Death And Robots S01E10 Shape-Shifters 1080P Nf Web-Dl Ddp5 1 X264-Ntg", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Love Death And Robots S01E10 Shape-Shifters 1080P Nf Web-Dl Ddp5 1 X264-Ntg", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Love.Death.and.Robots.S01.1080p.NF.WEB-DL.DDP5.1.x264-NTG/Love.Death.and.Robots.S01E16.Ice.Age.1080p.NF.WEB-DL.DDP5.1.x264-NTG.mkv", + "filename": "Love.Death.and.Robots.S01E16.Ice.Age.1080p.NF.WEB-DL.DDP5.1.x264-NTG.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Love Death And Robots S01E16 Ice Age 1080P Nf Web-Dl Ddp5 1 X264-Ntg", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Love Death And Robots S01E16 Ice Age 1080P Nf Web-Dl Ddp5 1 X264-Ntg", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Love.Death.and.Robots.S01.1080p.NF.WEB-DL.DDP5.1.x264-NTG/Love.Death.and.Robots.S01E02.Three.Robots.1080p.NF.WEB-DL.DDP5.1.x264-NTG.mkv", + "filename": "Love.Death.and.Robots.S01E02.Three.Robots.1080p.NF.WEB-DL.DDP5.1.x264-NTG.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Love Death And Robots S01E02 Three Robots 1080P Nf Web-Dl Ddp5 1 X264-Ntg", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Love Death And Robots S01E02 Three Robots 1080P Nf Web-Dl Ddp5 1 X264-Ntg", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Love.Death.and.Robots.S01.1080p.NF.WEB-DL.DDP5.1.x264-NTG/Love.Death.and.Robots.S01E08.Good.Hunting.1080p.NF.WEB-DL.DDP5.1.x264-NTG.mkv", + "filename": "Love.Death.and.Robots.S01E08.Good.Hunting.1080p.NF.WEB-DL.DDP5.1.x264-NTG.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Love Death And Robots S01E08 Good Hunting 1080P Nf Web-Dl Ddp5 1 X264-Ntg", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Love Death And Robots S01E08 Good Hunting 1080P Nf Web-Dl Ddp5 1 X264-Ntg", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Love.Death.and.Robots.S01.1080p.NF.WEB-DL.DDP5.1.x264-NTG/Love.Death.and.Robots.S01E07.Beyond.the.Aquila.Rift.1080p.NF.WEB-DL.DDP5.1.x264-NTG.mkv", + "filename": "Love.Death.and.Robots.S01E07.Beyond.the.Aquila.Rift.1080p.NF.WEB-DL.DDP5.1.x264-NTG.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Love Death And Robots S01E07 Beyond The Aquila Rift 1080P Nf Web-Dl Ddp5 1 X264-Ntg", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Love Death And Robots S01E07 Beyond The Aquila Rift 1080P Nf Web-Dl Ddp5 1 X264-Ntg", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Love.Death.and.Robots.S01.1080p.NF.WEB-DL.DDP5.1.x264-NTG/Love.Death.and.Robots.S01E04.Suits.1080p.NF.WEB-DL.DDP5.1.x264-NTG.mkv", + "filename": "Love.Death.and.Robots.S01E04.Suits.1080p.NF.WEB-DL.DDP5.1.x264-NTG.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Love Death And Robots S01E04 Suits 1080P Nf Web-Dl Ddp5 1 X264-Ntg", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Love Death And Robots S01E04 Suits 1080P Nf Web-Dl Ddp5 1 X264-Ntg", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Love.Death.and.Robots.S01.1080p.NF.WEB-DL.DDP5.1.x264-NTG/Love.Death.and.Robots.S01E13.Lucky.13.1080p.NF.WEB-DL.DDP5.1.x264-NTG.mkv", + "filename": "Love.Death.and.Robots.S01E13.Lucky.13.1080p.NF.WEB-DL.DDP5.1.x264-NTG.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Love Death And Robots S01E13 Lucky 13 1080P Nf Web-Dl Ddp5 1 X264-Ntg", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Love Death And Robots S01E13 Lucky 13 1080P Nf Web-Dl Ddp5 1 X264-Ntg", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Love.Death.and.Robots.S01.1080p.NF.WEB-DL.DDP5.1.x264-NTG/Love.Death.and.Robots.S01E05.Sucker.of.Souls.1080p.NF.WEB-DL.DDP5.1.x264-NTG.mkv", + "filename": "Love.Death.and.Robots.S01E05.Sucker.of.Souls.1080p.NF.WEB-DL.DDP5.1.x264-NTG.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Love Death And Robots S01E05 Sucker Of Souls 1080P Nf Web-Dl Ddp5 1 X264-Ntg", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Love Death And Robots S01E05 Sucker Of Souls 1080P Nf Web-Dl Ddp5 1 X264-Ntg", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Love.Death.and.Robots.S01.1080p.NF.WEB-DL.DDP5.1.x264-NTG/Love.Death.and.Robots.S01E18.The.Secret.War.1080p.NF.WEB-DL.DDP5.1.x264-NTG.mkv", + "filename": "Love.Death.and.Robots.S01E18.The.Secret.War.1080p.NF.WEB-DL.DDP5.1.x264-NTG.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Love Death And Robots S01E18 The Secret War 1080P Nf Web-Dl Ddp5 1 X264-Ntg", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Love Death And Robots S01E18 The Secret War 1080P Nf Web-Dl Ddp5 1 X264-Ntg", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Love.Death.and.Robots.S01.1080p.NF.WEB-DL.DDP5.1.x264-NTG/Love.Death.and.Robots.S01E06.When.the.Yogurt.Took.Over.1080p.NF.WEB-DL.DDP5.1.x264-NTG.mkv", + "filename": "Love.Death.and.Robots.S01E06.When.the.Yogurt.Took.Over.1080p.NF.WEB-DL.DDP5.1.x264-NTG.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Love Death And Robots S01E06 When The Yogurt Took Over 1080P Nf Web-Dl Ddp5 1 X264-Ntg", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Love Death And Robots S01E06 When The Yogurt Took Over 1080P Nf Web-Dl Ddp5 1 X264-Ntg", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Love.Death.and.Robots.S01.1080p.NF.WEB-DL.DDP5.1.x264-NTG/Love.Death.and.Robots.S01E09.The.Dump.1080p.NF.WEB-DL.DDP5.1.x264-NTG.mkv", + "filename": "Love.Death.and.Robots.S01E09.The.Dump.1080p.NF.WEB-DL.DDP5.1.x264-NTG.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Love Death And Robots S01E09 The Dump 1080P Nf Web-Dl Ddp5 1 X264-Ntg", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Love Death And Robots S01E09 The Dump 1080P Nf Web-Dl Ddp5 1 X264-Ntg", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Love.Death.and.Robots.S01.1080p.NF.WEB-DL.DDP5.1.x264-NTG/Love.Death.and.Robots.S01E03.The.Witness.1080p.NF.WEB-DL.DDP5.1.x264-NTG.mkv", + "filename": "Love.Death.and.Robots.S01E03.The.Witness.1080p.NF.WEB-DL.DDP5.1.x264-NTG.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Love Death And Robots S01E03 The Witness 1080P Nf Web-Dl Ddp5 1 X264-Ntg", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Love Death And Robots S01E03 The Witness 1080P Nf Web-Dl Ddp5 1 X264-Ntg", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Love.Death.and.Robots.S01.1080p.NF.WEB-DL.DDP5.1.x264-NTG/Love.Death.and.Robots.S01E01.Sonnies.Edge.1080p.NF.WEB-DL.DDP5.1.x264-NTG.mkv", + "filename": "Love.Death.and.Robots.S01E01.Sonnies.Edge.1080p.NF.WEB-DL.DDP5.1.x264-NTG.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Love Death And Robots S01E01 Sonnies Edge 1080P Nf Web-Dl Ddp5 1 X264-Ntg", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Love Death And Robots S01E01 Sonnies Edge 1080P Nf Web-Dl Ddp5 1 X264-Ntg", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Love.Death.and.Robots.S01.1080p.NF.WEB-DL.DDP5.1.x264-NTG/Love.Death.and.Robots.S01E11.Helping.Hand.1080p.NF.WEB-DL.DDP5.1.x264-NTG.mkv", + "filename": "Love.Death.and.Robots.S01E11.Helping.Hand.1080p.NF.WEB-DL.DDP5.1.x264-NTG.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Love Death And Robots S01E11 Helping Hand 1080P Nf Web-Dl Ddp5 1 X264-Ntg", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Love Death And Robots S01E11 Helping Hand 1080P Nf Web-Dl Ddp5 1 X264-Ntg", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 最強肉盾的迷宮攻略~擁有稀少技能體力 9999 的肉盾,被勇者隊伍辭退了~ - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 最強肉盾的迷宮攻略~擁有稀少技能體力 9999 的肉盾,被勇者隊伍辭退了~ - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 最強肉盾的迷宮攻略~擁有稀少技能體力 9999 的肉盾,被勇者隊伍辭退了~ - 02 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 最強肉盾的迷宮攻略~擁有稀少技能體力 9999 的肉盾,被勇者隊伍辭退了~ - 02 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[orion origin] Isekai Meikyuu de Harem o [01-12] [WebRip] [1080p] [H265 AAC] [GB]/[orion origin] Isekai Meikyuu de Harem o [10] [1080p] [H265 AAC] [GB] .mp4", + "filename": "[orion origin] Isekai Meikyuu de Harem o [10] [1080p] [H265 AAC] [GB] .mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Orion Origin] Isekai Meikyuu De Harem O [10] [1080P] [H265 Aac] [Gb]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Orion Origin] Isekai Meikyuu De Harem O [10] [1080P] [H265 Aac] [Gb]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[orion origin] Isekai Meikyuu de Harem o [01-12] [WebRip] [1080p] [H265 AAC] [GB]/[orion origin] Isekai Meikyuu de Harem o [09v3] [1080p] [H265 AAC] [GB] .mp4", + "filename": "[orion origin] Isekai Meikyuu de Harem o [09v3] [1080p] [H265 AAC] [GB] .mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Orion Origin] Isekai Meikyuu De Harem O [09V3] [1080P] [H265 Aac] [Gb]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Orion Origin] Isekai Meikyuu De Harem O [09V3] [1080P] [H265 Aac] [Gb]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[orion origin] Isekai Meikyuu de Harem o [01-12] [WebRip] [1080p] [H265 AAC] [GB]/[orion origin] Isekai Meikyuu de Harem o [11] [1080p] [H265 AAC] [GB] .mp4", + "filename": "[orion origin] Isekai Meikyuu de Harem o [11] [1080p] [H265 AAC] [GB] .mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Orion Origin] Isekai Meikyuu De Harem O [11] [1080P] [H265 Aac] [Gb]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Orion Origin] Isekai Meikyuu De Harem O [11] [1080P] [H265 Aac] [Gb]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[orion origin] Isekai Meikyuu de Harem o [01-12] [WebRip] [1080p] [H265 AAC] [GB]/[orion origin] Isekai Meikyuu de Harem o [12] [END] [1080p] [H265 AAC] [GB] .mp4", + "filename": "[orion origin] Isekai Meikyuu de Harem o [12] [END] [1080p] [H265 AAC] [GB] .mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Orion Origin] Isekai Meikyuu De Harem O [12] [End] [1080P] [H265 Aac] [Gb]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Orion Origin] Isekai Meikyuu De Harem O [12] [End] [1080P] [H265 Aac] [Gb]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[orion origin] Isekai Meikyuu de Harem o [01-12] [WebRip] [1080p] [H265 AAC] [GB]/[orion origin] Isekai Meikyuu de Harem o [02v2] [1080p] [H265 AAC] [GB] .mp4", + "filename": "[orion origin] Isekai Meikyuu de Harem o [02v2] [1080p] [H265 AAC] [GB] .mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Orion Origin] Isekai Meikyuu De Harem O [02V2] [1080P] [H265 Aac] [Gb]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Orion Origin] Isekai Meikyuu De Harem O [02V2] [1080P] [H265 Aac] [Gb]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[orion origin] Isekai Meikyuu de Harem o [01-12] [WebRip] [1080p] [H265 AAC] [GB]/[orion origin] Isekai Meikyuu de Harem o [01v2] [1080p] [H265 AAC] [GB] .mp4", + "filename": "[orion origin] Isekai Meikyuu de Harem o [01v2] [1080p] [H265 AAC] [GB] .mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Orion Origin] Isekai Meikyuu De Harem O [01V2] [1080P] [H265 Aac] [Gb]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Orion Origin] Isekai Meikyuu De Harem O [01V2] [1080P] [H265 Aac] [Gb]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[orion origin] Isekai Meikyuu de Harem o [01-12] [WebRip] [1080p] [H265 AAC] [GB]/[orion origin] Isekai Meikyuu de Harem o [08] [1080p] [H265 AAC] [GB] .mp4", + "filename": "[orion origin] Isekai Meikyuu de Harem o [08] [1080p] [H265 AAC] [GB] .mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Orion Origin] Isekai Meikyuu De Harem O [08] [1080P] [H265 Aac] [Gb]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Orion Origin] Isekai Meikyuu De Harem O [08] [1080P] [H265 Aac] [Gb]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[orion origin] Isekai Meikyuu de Harem o [01-12] [WebRip] [1080p] [H265 AAC] [GB]/[orion origin] Isekai Meikyuu de Harem o [05v2] [1080p] [H265 AAC] [GB] .mp4", + "filename": "[orion origin] Isekai Meikyuu de Harem o [05v2] [1080p] [H265 AAC] [GB] .mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Orion Origin] Isekai Meikyuu De Harem O [05V2] [1080P] [H265 Aac] [Gb]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Orion Origin] Isekai Meikyuu De Harem O [05V2] [1080P] [H265 Aac] [Gb]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[orion origin] Isekai Meikyuu de Harem o [01-12] [WebRip] [1080p] [H265 AAC] [GB]/[orion origin] Isekai Meikyuu de Harem o [03v3] [1080p] [H265 AAC] [GB] .mp4", + "filename": "[orion origin] Isekai Meikyuu de Harem o [03v3] [1080p] [H265 AAC] [GB] .mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Orion Origin] Isekai Meikyuu De Harem O [03V3] [1080P] [H265 Aac] [Gb]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Orion Origin] Isekai Meikyuu De Harem O [03V3] [1080P] [H265 Aac] [Gb]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[orion origin] Isekai Meikyuu de Harem o [01-12] [WebRip] [1080p] [H265 AAC] [GB]/[orion origin] Isekai Meikyuu de Harem o [04v2] [1080p] [H265 AAC] [GB] .mp4", + "filename": "[orion origin] Isekai Meikyuu de Harem o [04v2] [1080p] [H265 AAC] [GB] .mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Orion Origin] Isekai Meikyuu De Harem O [04V2] [1080P] [H265 Aac] [Gb]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Orion Origin] Isekai Meikyuu De Harem O [04V2] [1080P] [H265 Aac] [Gb]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[orion origin] Isekai Meikyuu de Harem o [01-12] [WebRip] [1080p] [H265 AAC] [GB]/[orion origin] Isekai Meikyuu de Harem o [06v2] [1080p] [H265 AAC] [GB] .mp4", + "filename": "[orion origin] Isekai Meikyuu de Harem o [06v2] [1080p] [H265 AAC] [GB] .mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Orion Origin] Isekai Meikyuu De Harem O [06V2] [1080P] [H265 Aac] [Gb]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Orion Origin] Isekai Meikyuu De Harem O [06V2] [1080P] [H265 Aac] [Gb]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[orion origin] Isekai Meikyuu de Harem o [01-12] [WebRip] [1080p] [H265 AAC] [GB]/[orion origin] Isekai Meikyuu de Harem o [07v2] [1080p] [H265 AAC] [GB] .mp4", + "filename": "[orion origin] Isekai Meikyuu de Harem o [07v2] [1080p] [H265 AAC] [GB] .mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Orion Origin] Isekai Meikyuu De Harem O [07V2] [1080P] [H265 Aac] [Gb]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Orion Origin] Isekai Meikyuu De Harem O [07V2] [1080P] [H265 Aac] [Gb]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 擁有超常技能的異世界流浪美食家 S2 - 23 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 擁有超常技能的異世界流浪美食家 S2 - 23 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 擁有超常技能的異世界流浪美食家 S2 - 23 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 擁有超常技能的異世界流浪美食家 S2 - 23 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 永遠的黃昏 - 03 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 永遠的黃昏 - 03 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 永遠的黃昏 - 03 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 永遠的黃昏 - 03 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 貫徹輔助魔法支援弱小隊友的宮廷魔法師,慘遭驅逐後目標成為最強冒險者 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 貫徹輔助魔法支援弱小隊友的宮廷魔法師,慘遭驅逐後目標成為最強冒險者 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 貫徹輔助魔法支援弱小隊友的宮廷魔法師,慘遭驅逐後目標成為最強冒險者 - 01 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 貫徹輔助魔法支援弱小隊友的宮廷魔法師,慘遭驅逐後目標成為最強冒險者 - 01 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] NUKITASHI 住在拔作島上的我該如何是好? [年齡限制版] - 05 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] NUKITASHI 住在拔作島上的我該如何是好? [年齡限制版] - 05 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] Nukitashi 住在拔作島上的我該如何是好? [年齡限制版] - 05 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] Nukitashi 住在拔作島上的我該如何是好? [年齡限制版] - 05 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 瞬間治癒卻被當成廢物踢出隊伍的天才治療師,改當無照治療師快樂過活 - 12 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 瞬間治癒卻被當成廢物踢出隊伍的天才治療師,改當無照治療師快樂過活 - 12 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 瞬間治癒卻被當成廢物踢出隊伍的天才治療師,改當無照治療師快樂過活 - 12 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 瞬間治癒卻被當成廢物踢出隊伍的天才治療師,改當無照治療師快樂過活 - 12 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 當不成魔法師的女孩 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 當不成魔法師的女孩 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 當不成魔法師的女孩 - 01 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 當不成魔法師的女孩 - 01 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Yami Healer - 02 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "filename": "[LoliHouse] Yami Healer - 02 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Yami Healer - 02 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Yami Healer - 02 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 記憶縫線 YOUR FORMA - 05 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 記憶縫線 YOUR FORMA - 05 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 記憶縫線 Your Forma - 05 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 記憶縫線 Your Forma - 05 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 勇氣爆發 BANG BRAVERN - 11 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 勇氣爆發 BANG BRAVERN - 11 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 勇氣爆發 Bang Bravern - 11 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 勇氣爆發 Bang Bravern - 11 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 鬼人幻燈抄 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 鬼人幻燈抄 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 鬼人幻燈抄 - 01 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 鬼人幻燈抄 - 01 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 香格里拉・開拓異境~糞作獵手挑戰神作~ - 17 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 香格里拉・開拓異境~糞作獵手挑戰神作~ - 17 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 香格里拉・開拓異境~糞作獵手挑戰神作~ - 17 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 香格里拉・開拓異境~糞作獵手挑戰神作~ - 17 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Eternal][Modaete yo, Adam-kun][07][GB][720P][Premium].mp4", + "filename": "[Eternal][Modaete yo, Adam-kun][07][GB][720P][Premium].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Eternal][Modaete Yo, Adam-Kun][07][Gb][720P][Premium]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Eternal][Modaete Yo, Adam-Kun][07][Gb][720P][Premium]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 葬送的芙莉蓮 - 17 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 葬送的芙莉蓮 - 17 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 葬送的芙莉蓮 - 17 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 葬送的芙莉蓮 - 17 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Kowloon Generic Romance - 09 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "filename": "[LoliHouse] Kowloon Generic Romance - 09 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Kowloon Generic Romance - 09 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Kowloon Generic Romance - 09 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 忍者與殺手的兩人生活 - 08 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 忍者與殺手的兩人生活 - 08 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 忍者與殺手的兩人生活 - 08 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 忍者與殺手的兩人生活 - 08 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 一拳超人(第三季) - 00 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 一拳超人(第三季) - 00 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 一拳超人(第三季) - 00 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 一拳超人(第三季) - 00 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Nekomoe kissaten&LoliHouse] Sousou no Frieren - 17 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "filename": "[Nekomoe kissaten&LoliHouse] Sousou no Frieren - 17 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Nekomoe Kissaten&Lolihouse] Sousou No Frieren - 17 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Nekomoe Kissaten&Lolihouse] Sousou No Frieren - 17 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 結緣甘神神社 - 24 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 結緣甘神神社 - 24 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 結緣甘神神社 - 24 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 結緣甘神神社 - 24 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] LAZARUS 拉撒路 - 06 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] LAZARUS 拉撒路 - 06 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] Lazarus 拉撒路 - 06 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] Lazarus 拉撒路 - 06 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 瞬間治癒卻被當成廢物踢出隊伍的天才治療師,改當無照治療師快樂過活 - 09 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 瞬間治癒卻被當成廢物踢出隊伍的天才治療師,改當無照治療師快樂過活 - 09 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 瞬間治癒卻被當成廢物踢出隊伍的天才治療師,改當無照治療師快樂過活 - 09 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 瞬間治癒卻被當成廢物踢出隊伍的天才治療師,改當無照治療師快樂過活 - 09 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Nekomoe kissaten&LoliHouse] Kaii to Otome to Kamikakushi - 01 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "filename": "[Nekomoe kissaten&LoliHouse] Kaii to Otome to Kamikakushi - 01 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Nekomoe Kissaten&Lolihouse] Kaii To Otome To Kamikakushi - 01 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Nekomoe Kissaten&Lolihouse] Kaii To Otome To Kamikakushi - 01 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Around 40 Otoko no Isekai Tsuuhan - 08 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "filename": "[LoliHouse] Around 40 Otoko no Isekai Tsuuhan - 08 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Around 40 Otoko No Isekai Tsuuhan - 08 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Around 40 Otoko No Isekai Tsuuhan - 08 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 妻子變成小學生。 - 04 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 妻子變成小學生。 - 04 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 妻子變成小學生。 - 04 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 妻子變成小學生。 - 04 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Shin Samurai-den YAIBA - 09 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "filename": "[LoliHouse] Shin Samurai-den YAIBA - 09 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Shin Samurai-Den Yaiba - 09 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Shin Samurai-Den Yaiba - 09 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Shin no Nakama 2nd - 06 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "filename": "[LoliHouse] Shin no Nakama 2nd - 06 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Shin No Nakama 2Nd - 06 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Shin No Nakama 2Nd - 06 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 關於我轉生變成史萊姆這檔事 第三季 - 68 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 關於我轉生變成史萊姆這檔事 第三季 - 68 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 關於我轉生變成史萊姆這檔事 第三季 - 68 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 關於我轉生變成史萊姆這檔事 第三季 - 68 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 終末起點 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 終末起點 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 終末起點 - 01 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 終末起點 - 01 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "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", + "title": "[Ani] 水屬性的魔法師 - 07 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 水屬性的魔法師 - 07 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 結緣甘神神社 - 06 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 結緣甘神神社 - 06 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 結緣甘神神社 - 06 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 結緣甘神神社 - 06 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[SAIO-Raws] Gekijouban Goblin Slayer Goblin's Crown [BD 1920x1080 HEVC-10bit OPUS]/[SAIO-Raws] Gekijouban Goblin Slayer Goblin's Crown [BD 1920x1080 HEVC-10bit OPUS].mkv", + "filename": "[SAIO-Raws] Gekijouban Goblin Slayer Goblin's Crown [BD 1920x1080 HEVC-10bit OPUS].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Saio-Raws] Gekijouban Goblin Slayer Goblin'S Crown [Bd 1920X1080 Hevc-10Bit Opus]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Saio-Raws] Gekijouban Goblin Slayer Goblin'S Crown [Bd 1920X1080 Hevc-10Bit Opus]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] Re:從零開始的異世界生活 第三季 - 09 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] Re:從零開始的異世界生活 第三季 - 09 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] Re:從零開始的異世界生活 第三季 - 09 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] Re:從零開始的異世界生活 第三季 - 09 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 在地下城尋求邂逅是否搞錯了什麼 第五季 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 在地下城尋求邂逅是否搞錯了什麼 第五季 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 在地下城尋求邂逅是否搞錯了什麼 第五季 - 01 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 在地下城尋求邂逅是否搞錯了什麼 第五季 - 01 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 異世界悠閒紀行~邊養娃邊當冒險者~ - 10 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 異世界悠閒紀行~邊養娃邊當冒險者~ - 10 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 異世界悠閒紀行~邊養娃邊當冒險者~ - 10 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 異世界悠閒紀行~邊養娃邊當冒險者~ - 10 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Skymoon-Raws] Kimetsu no Yaiba - Yuukaku-Hen - 08 [ViuTV][WEB-DL][CHT][1080p][AVC AAC][MP4+ASS]/[Skymoon-Raws] Kimetsu no Yaiba - Yuukaku-Hen - 08 [ViuTV][WEB-DL][1080p][AVC AAC].mp4", + "filename": "[Skymoon-Raws] Kimetsu no Yaiba - Yuukaku-Hen - 08 [ViuTV][WEB-DL][1080p][AVC AAC].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Skymoon-Raws] Kimetsu No Yaiba - Yuukaku-Hen - 08 [Viutv][Web-Dl][1080P][Avc Aac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Skymoon-Raws] Kimetsu No Yaiba - Yuukaku-Hen - 08 [Viutv][Web-Dl][1080P][Avc Aac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Nekomoe kissaten][Tower of God S2][15][1080p][CHT].mp4", + "filename": "[Nekomoe kissaten][Tower of God S2][15][1080p][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Nekomoe Kissaten][Tower Of God S2][15][1080P][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Nekomoe Kissaten][Tower Of God S2][15][1080P][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Nekomoe kissaten][Ao no Hako][08][1080p][JPTC].mp4", + "filename": "[Nekomoe kissaten][Ao no Hako][08][1080p][JPTC].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Nekomoe Kissaten][Ao No Hako][08][1080P][Jptc]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Nekomoe Kissaten][Ao No Hako][08][1080P][Jptc]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Tsue to Tsurugi no Wistoria - 07 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "filename": "[LoliHouse] Tsue to Tsurugi no Wistoria - 07 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Tsue To Tsurugi No Wistoria - 07 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Tsue To Tsurugi No Wistoria - 07 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 咒術迴戰 死滅迴游 前篇 - 53 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 咒術迴戰 死滅迴游 前篇 - 53 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 咒術迴戰 死滅迴游 前篇 - 53 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 咒術迴戰 死滅迴游 前篇 - 53 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Strange-Raw] Sentai Red Isekai de Boukensha ni Naru S01 [03] [Bilibili] [WEB-DL] [1080P AVC-8Bits AAC 2.0] [CHS_JPN].mp4", + "filename": "[Strange-Raw] Sentai Red Isekai de Boukensha ni Naru S01 [03] [Bilibili] [WEB-DL] [1080P AVC-8Bits AAC 2.0] [CHS_JPN].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Strange-Raw] Sentai Red Isekai De Boukensha Ni Naru S01 [03] [Bilibili] [Web-Dl] [1080P Avc-8Bits Aac 2 0] [Chs Jpn]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Strange-Raw] Sentai Red Isekai De Boukensha Ni Naru S01 [03] [Bilibili] [Web-Dl] [1080P Avc-8Bits Aac 2 0] [Chs Jpn]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 因為不是真正的夥伴而被逐出勇者隊伍,流落到邊境展開慢活人生 第二季(僅限港澳台地區) - 02 [1080P][Bilibili][WEB-DL][AAC AVC][CHT CHS].mp4", + "filename": "[ANi] 因為不是真正的夥伴而被逐出勇者隊伍,流落到邊境展開慢活人生 第二季(僅限港澳台地區) - 02 [1080P][Bilibili][WEB-DL][AAC AVC][CHT CHS].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 因為不是真正的夥伴而被逐出勇者隊伍,流落到邊境展開慢活人生 第二季(僅限港澳台地區) - 02 [1080P][Bilibili][Web-Dl][Aac Avc][Cht Chs]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 因為不是真正的夥伴而被逐出勇者隊伍,流落到邊境展開慢活人生 第二季(僅限港澳台地區) - 02 [1080P][Bilibili][Web-Dl][Aac Avc][Cht Chs]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Tensura Nikki - Tensei Shitara Slime Datta Ken [WebRip 1080p HEVC-10bit AAC]/[LoliHouse] Tensura Nikki - Tensei Shitara Slime Datta Ken - 11 [WebRip 1080p HEVC-10bit AAC SRTx3].mkv", + "filename": "[LoliHouse] Tensura Nikki - Tensei Shitara Slime Datta Ken - 11 [WebRip 1080p HEVC-10bit AAC SRTx3].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Tensura Nikki - Tensei Shitara Slime Datta Ken - 11 [Webrip 1080P Hevc-10Bit Aac Srtx3]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Tensura Nikki - Tensei Shitara Slime Datta Ken - 11 [Webrip 1080P Hevc-10Bit Aac Srtx3]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Tensura Nikki - Tensei Shitara Slime Datta Ken [WebRip 1080p HEVC-10bit AAC]/[LoliHouse] Tensura Nikki - Tensei Shitara Slime Datta Ken - 02 [WebRip 1080p HEVC-10bit AAC SRTx3].mkv", + "filename": "[LoliHouse] Tensura Nikki - Tensei Shitara Slime Datta Ken - 02 [WebRip 1080p HEVC-10bit AAC SRTx3].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Tensura Nikki - Tensei Shitara Slime Datta Ken - 02 [Webrip 1080P Hevc-10Bit Aac Srtx3]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Tensura Nikki - Tensei Shitara Slime Datta Ken - 02 [Webrip 1080P Hevc-10Bit Aac Srtx3]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Tensura Nikki - Tensei Shitara Slime Datta Ken [WebRip 1080p HEVC-10bit AAC]/[LoliHouse] Tensura Nikki - Tensei Shitara Slime Datta Ken - 06 [WebRip 1080p HEVC-10bit AAC SRTx3].mkv", + "filename": "[LoliHouse] Tensura Nikki - Tensei Shitara Slime Datta Ken - 06 [WebRip 1080p HEVC-10bit AAC SRTx3].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Tensura Nikki - Tensei Shitara Slime Datta Ken - 06 [Webrip 1080P Hevc-10Bit Aac Srtx3]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Tensura Nikki - Tensei Shitara Slime Datta Ken - 06 [Webrip 1080P Hevc-10Bit Aac Srtx3]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Tensura Nikki - Tensei Shitara Slime Datta Ken [WebRip 1080p HEVC-10bit AAC]/[LoliHouse] Tensura Nikki - Tensei Shitara Slime Datta Ken - 03 [WebRip 1080p HEVC-10bit AAC SRTx3].mkv", + "filename": "[LoliHouse] Tensura Nikki - Tensei Shitara Slime Datta Ken - 03 [WebRip 1080p HEVC-10bit AAC SRTx3].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Tensura Nikki - Tensei Shitara Slime Datta Ken - 03 [Webrip 1080P Hevc-10Bit Aac Srtx3]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Tensura Nikki - Tensei Shitara Slime Datta Ken - 03 [Webrip 1080P Hevc-10Bit Aac Srtx3]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Tensura Nikki - Tensei Shitara Slime Datta Ken [WebRip 1080p HEVC-10bit AAC]/[LoliHouse] Tensura Nikki - Tensei Shitara Slime Datta Ken - 07 [WebRip 1080p HEVC-10bit AAC SRTx3].mkv", + "filename": "[LoliHouse] Tensura Nikki - Tensei Shitara Slime Datta Ken - 07 [WebRip 1080p HEVC-10bit AAC SRTx3].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Tensura Nikki - Tensei Shitara Slime Datta Ken - 07 [Webrip 1080P Hevc-10Bit Aac Srtx3]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Tensura Nikki - Tensei Shitara Slime Datta Ken - 07 [Webrip 1080P Hevc-10Bit Aac Srtx3]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Tensura Nikki - Tensei Shitara Slime Datta Ken [WebRip 1080p HEVC-10bit AAC]/[LoliHouse] Tensura Nikki - Tensei Shitara Slime Datta Ken - 10 [WebRip 1080p HEVC-10bit AAC SRTx3].mkv", + "filename": "[LoliHouse] Tensura Nikki - Tensei Shitara Slime Datta Ken - 10 [WebRip 1080p HEVC-10bit AAC SRTx3].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Tensura Nikki - Tensei Shitara Slime Datta Ken - 10 [Webrip 1080P Hevc-10Bit Aac Srtx3]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Tensura Nikki - Tensei Shitara Slime Datta Ken - 10 [Webrip 1080P Hevc-10Bit Aac Srtx3]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Tensura Nikki - Tensei Shitara Slime Datta Ken [WebRip 1080p HEVC-10bit AAC]/[LoliHouse] Tensura Nikki - Tensei Shitara Slime Datta Ken - 01 [WebRip 1080p HEVC-10bit AAC SRTx3].mkv", + "filename": "[LoliHouse] Tensura Nikki - Tensei Shitara Slime Datta Ken - 01 [WebRip 1080p HEVC-10bit AAC SRTx3].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Tensura Nikki - Tensei Shitara Slime Datta Ken - 01 [Webrip 1080P Hevc-10Bit Aac Srtx3]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Tensura Nikki - Tensei Shitara Slime Datta Ken - 01 [Webrip 1080P Hevc-10Bit Aac Srtx3]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Tensura Nikki - Tensei Shitara Slime Datta Ken [WebRip 1080p HEVC-10bit AAC]/[LoliHouse] Tensura Nikki - Tensei Shitara Slime Datta Ken - 05 [WebRip 1080p HEVC-10bit AAC SRTx3].mkv", + "filename": "[LoliHouse] Tensura Nikki - Tensei Shitara Slime Datta Ken - 05 [WebRip 1080p HEVC-10bit AAC SRTx3].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Tensura Nikki - Tensei Shitara Slime Datta Ken - 05 [Webrip 1080P Hevc-10Bit Aac Srtx3]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Tensura Nikki - Tensei Shitara Slime Datta Ken - 05 [Webrip 1080P Hevc-10Bit Aac Srtx3]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Tensura Nikki - Tensei Shitara Slime Datta Ken [WebRip 1080p HEVC-10bit AAC]/[LoliHouse] Tensura Nikki - Tensei Shitara Slime Datta Ken - 09 [WebRip 1080p HEVC-10bit AAC SRTx3].mkv", + "filename": "[LoliHouse] Tensura Nikki - Tensei Shitara Slime Datta Ken - 09 [WebRip 1080p HEVC-10bit AAC SRTx3].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Tensura Nikki - Tensei Shitara Slime Datta Ken - 09 [Webrip 1080P Hevc-10Bit Aac Srtx3]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Tensura Nikki - Tensei Shitara Slime Datta Ken - 09 [Webrip 1080P Hevc-10Bit Aac Srtx3]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Tensura Nikki - Tensei Shitara Slime Datta Ken [WebRip 1080p HEVC-10bit AAC]/[LoliHouse] Tensura Nikki - Tensei Shitara Slime Datta Ken - 12 [WebRip 1080p HEVC-10bit AAC SRTx3].mkv", + "filename": "[LoliHouse] Tensura Nikki - Tensei Shitara Slime Datta Ken - 12 [WebRip 1080p HEVC-10bit AAC SRTx3].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Tensura Nikki - Tensei Shitara Slime Datta Ken - 12 [Webrip 1080P Hevc-10Bit Aac Srtx3]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Tensura Nikki - Tensei Shitara Slime Datta Ken - 12 [Webrip 1080P Hevc-10Bit Aac Srtx3]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Tensura Nikki - Tensei Shitara Slime Datta Ken [WebRip 1080p HEVC-10bit AAC]/[LoliHouse] Tensura Nikki - Tensei Shitara Slime Datta Ken - 08 [WebRip 1080p HEVC-10bit AAC SRTx3].mkv", + "filename": "[LoliHouse] Tensura Nikki - Tensei Shitara Slime Datta Ken - 08 [WebRip 1080p HEVC-10bit AAC SRTx3].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Tensura Nikki - Tensei Shitara Slime Datta Ken - 08 [Webrip 1080P Hevc-10Bit Aac Srtx3]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Tensura Nikki - Tensei Shitara Slime Datta Ken - 08 [Webrip 1080P Hevc-10Bit Aac Srtx3]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Tensura Nikki - Tensei Shitara Slime Datta Ken [WebRip 1080p HEVC-10bit AAC]/[LoliHouse] Tensura Nikki - Tensei Shitara Slime Datta Ken - 04 [WebRip 1080p HEVC-10bit AAC SRTx3].mkv", + "filename": "[LoliHouse] Tensura Nikki - Tensei Shitara Slime Datta Ken - 04 [WebRip 1080p HEVC-10bit AAC SRTx3].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Tensura Nikki - Tensei Shitara Slime Datta Ken - 04 [Webrip 1080P Hevc-10Bit Aac Srtx3]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Tensura Nikki - Tensei Shitara Slime Datta Ken - 04 [Webrip 1080P Hevc-10Bit Aac Srtx3]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Nekomoe kissaten][Boku no Kokoro no Yabai Yatsu][20][1080p][JPSC].mp4", + "filename": "[Nekomoe kissaten][Boku no Kokoro no Yabai Yatsu][20][1080p][JPSC].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Nekomoe Kissaten][Boku No Kokoro No Yabai Yatsu][20][1080P][Jpsc]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Nekomoe Kissaten][Boku No Kokoro No Yabai Yatsu][20][1080P][Jpsc]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Katainaka no Ossan, Kensei ni Naru - 11 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "filename": "[LoliHouse] Katainaka no Ossan, Kensei ni Naru - 11 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Katainaka No Ossan, Kensei Ni Naru - 11 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Katainaka No Ossan, Kensei Ni Naru - 11 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 刀劍神域外傳 Gun Gale Online II - 06 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 刀劍神域外傳 Gun Gale Online II - 06 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 刀劍神域外傳 Gun Gale Online Ii - 06 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 刀劍神域外傳 Gun Gale Online Ii - 06 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[BeanSub&FZSD][Jigokuraku][16][GB][1080P][x264_AAC].mp4", + "filename": "[BeanSub&FZSD][Jigokuraku][16][GB][1080P][x264_AAC].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Beansub&Fzsd][Jigokuraku][16][Gb][1080P][X264 Aac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Beansub&Fzsd][Jigokuraku][16][Gb][1080P][X264 Aac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] Re:從零開始的異世界生活 第三季 - 12 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] Re:從零開始的異世界生活 第三季 - 12 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] Re:從零開始的異世界生活 第三季 - 12 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] Re:從零開始的異世界生活 第三季 - 12 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 離開 A 級隊伍的我,和從前的弟子往迷宮深處邁進 - 07 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 離開 A 級隊伍的我,和從前的弟子往迷宮深處邁進 - 07 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 離開 A 級隊伍的我,和從前的弟子往迷宮深處邁進 - 07 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 離開 A 級隊伍的我,和從前的弟子往迷宮深處邁進 - 07 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 香格里拉・開拓異境~糞作獵手挑戰神作~ 第二季 - 04 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 香格里拉・開拓異境~糞作獵手挑戰神作~ 第二季 - 04 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 香格里拉・開拓異境~糞作獵手挑戰神作~ 第二季 - 04 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 香格里拉・開拓異境~糞作獵手挑戰神作~ 第二季 - 04 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 結緣甘神神社 - 21 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 結緣甘神神社 - 21 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 結緣甘神神社 - 21 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 結緣甘神神社 - 21 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] LAZARUS 拉撒路 - 03 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] LAZARUS 拉撒路 - 03 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] Lazarus 拉撒路 - 03 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] Lazarus 拉撒路 - 03 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "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", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 孤單一人的異世界攻略 - 05 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 孤單一人的異世界攻略 - 05 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Nekomoe kissaten&LoliHouse] BURN THE WITCH - 0.8 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "filename": "[Nekomoe kissaten&LoliHouse] BURN THE WITCH - 0.8 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Nekomoe Kissaten&Lolihouse] Burn The Witch - 0 8 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Nekomoe Kissaten&Lolihouse] Burn The Witch - 0 8 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Nekomoe kissaten][Ao no Hako][18][1080p][JPSC].mp4", + "filename": "[Nekomoe kissaten][Ao no Hako][18][1080p][JPSC].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Nekomoe Kissaten][Ao No Hako][18][1080P][Jpsc]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Nekomoe Kissaten][Ao No Hako][18][1080P][Jpsc]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 妻子變成小學生。 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 妻子變成小學生。 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 妻子變成小學生。 - 01 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 妻子變成小學生。 - 01 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "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", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 鬼滅之刃 柱訓練篇 - 05 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 鬼滅之刃 柱訓練篇 - 05 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 杖與劍的魔劍譚 - 10 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 杖與劍的魔劍譚 - 10 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 杖與劍的魔劍譚 - 10 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 杖與劍的魔劍譚 - 10 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 永遠的黃昏 - 06 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 永遠的黃昏 - 06 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 永遠的黃昏 - 06 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 永遠的黃昏 - 06 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 地下城中的人 - 10 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 地下城中的人 - 10 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 地下城中的人 - 10 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 地下城中的人 - 10 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 貫徹輔助魔法支援弱小隊友的宮廷魔法師,慘遭驅逐後目標成為最強冒險者 - 04 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 貫徹輔助魔法支援弱小隊友的宮廷魔法師,慘遭驅逐後目標成為最強冒險者 - 04 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 貫徹輔助魔法支援弱小隊友的宮廷魔法師,慘遭驅逐後目標成為最強冒險者 - 04 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 貫徹輔助魔法支援弱小隊友的宮廷魔法師,慘遭驅逐後目標成為最強冒險者 - 04 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Amagami-san Chi no Enmusubi - 14 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "filename": "[LoliHouse] Amagami-san Chi no Enmusubi - 14 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Amagami-San Chi No Enmusubi - 14 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Amagami-San Chi No Enmusubi - 14 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 魔都精兵的奴隸 第二季 - 04 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 魔都精兵的奴隸 第二季 - 04 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 魔都精兵的奴隸 第二季 - 04 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 魔都精兵的奴隸 第二季 - 04 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Nekomoe kissaten][Ninja Kamui][11][1080p][CHT].mp4", + "filename": "[Nekomoe kissaten][Ninja Kamui][11][1080p][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Nekomoe Kissaten][Ninja Kamui][11][1080P][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Nekomoe Kissaten][Ninja Kamui][11][1080P][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Sakurato] Ookami to Koushinryou:Merchant Meets the Wise Wolf [01][AVC-8bit 1080p AAC][CHT].mp4", + "filename": "[Sakurato] Ookami to Koushinryou:Merchant Meets the Wise Wolf [01][AVC-8bit 1080p AAC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Sakurato] Ookami To Koushinryou:Merchant Meets The Wise Wolf [01][Avc-8Bit 1080P Aac][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Sakurato] Ookami To Koushinryou:Merchant Meets The Wise Wolf [01][Avc-8Bit 1080P Aac][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Nekomoe kissaten][Tower of God S2][22][1080p][CHS].mp4", + "filename": "[Nekomoe kissaten][Tower of God S2][22][1080p][CHS].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Nekomoe Kissaten][Tower Of God S2][22][1080P][Chs]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Nekomoe Kissaten][Tower Of God S2][22][1080P][Chs]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Nekomoe kissaten&LoliHouse] Ao no Hako - 19 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "filename": "[Nekomoe kissaten&LoliHouse] Ao no Hako - 19 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Nekomoe Kissaten&Lolihouse] Ao No Hako - 19 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Nekomoe Kissaten&Lolihouse] Ao No Hako - 19 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Nekomoe kissaten][Silent Witch - Chinmoku no Majo no Kakushigoto][02][1080p][JPTC].mp4", + "filename": "[Nekomoe kissaten][Silent Witch - Chinmoku no Majo no Kakushigoto][02][1080p][JPTC].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Nekomoe Kissaten][Silent Witch - Chinmoku No Majo No Kakushigoto][02][1080P][Jptc]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Nekomoe Kissaten][Silent Witch - Chinmoku No Majo No Kakushigoto][02][1080P][Jptc]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Nekomoe kissaten][Ao no Hako][16][1080p][JPTC].mp4", + "filename": "[Nekomoe kissaten][Ao no Hako][16][1080p][JPTC].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Nekomoe Kissaten][Ao No Hako][16][1080P][Jptc]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Nekomoe Kissaten][Ao No Hako][16][1080P][Jptc]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[DMG&LoliHouse] Senpai ga Uzai Kouhai no Hanashi - [01-12][WebRip 1080p HEVC-10bit AAC ASSx2]/[DMG&LoliHouse] Senpai ga Uzai Kouhai no Hanashi - 01 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "filename": "[DMG&LoliHouse] Senpai ga Uzai Kouhai no Hanashi - 01 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Dmg&Lolihouse] Senpai Ga Uzai Kouhai No Hanashi - 01 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Dmg&Lolihouse] Senpai Ga Uzai Kouhai No Hanashi - 01 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[DMG&LoliHouse] Senpai ga Uzai Kouhai no Hanashi - [01-12][WebRip 1080p HEVC-10bit AAC ASSx2]/[DMG&LoliHouse] Senpai ga Uzai Kouhai no Hanashi - 05 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "filename": "[DMG&LoliHouse] Senpai ga Uzai Kouhai no Hanashi - 05 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Dmg&Lolihouse] Senpai Ga Uzai Kouhai No Hanashi - 05 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Dmg&Lolihouse] Senpai Ga Uzai Kouhai No Hanashi - 05 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[DMG&LoliHouse] Senpai ga Uzai Kouhai no Hanashi - [01-12][WebRip 1080p HEVC-10bit AAC ASSx2]/[DMG&LoliHouse] Senpai ga Uzai Kouhai no Hanashi - 12 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "filename": "[DMG&LoliHouse] Senpai ga Uzai Kouhai no Hanashi - 12 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Dmg&Lolihouse] Senpai Ga Uzai Kouhai No Hanashi - 12 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Dmg&Lolihouse] Senpai Ga Uzai Kouhai No Hanashi - 12 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[DMG&LoliHouse] Senpai ga Uzai Kouhai no Hanashi - [01-12][WebRip 1080p HEVC-10bit AAC ASSx2]/[DMG&LoliHouse] Senpai ga Uzai Kouhai no Hanashi - 09 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "filename": "[DMG&LoliHouse] Senpai ga Uzai Kouhai no Hanashi - 09 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Dmg&Lolihouse] Senpai Ga Uzai Kouhai No Hanashi - 09 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Dmg&Lolihouse] Senpai Ga Uzai Kouhai No Hanashi - 09 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[DMG&LoliHouse] Senpai ga Uzai Kouhai no Hanashi - [01-12][WebRip 1080p HEVC-10bit AAC ASSx2]/[DMG&LoliHouse] Senpai ga Uzai Kouhai no Hanashi - 08 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "filename": "[DMG&LoliHouse] Senpai ga Uzai Kouhai no Hanashi - 08 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Dmg&Lolihouse] Senpai Ga Uzai Kouhai No Hanashi - 08 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Dmg&Lolihouse] Senpai Ga Uzai Kouhai No Hanashi - 08 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[DMG&LoliHouse] Senpai ga Uzai Kouhai no Hanashi - [01-12][WebRip 1080p HEVC-10bit AAC ASSx2]/[DMG&LoliHouse] Senpai ga Uzai Kouhai no Hanashi - 04 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "filename": "[DMG&LoliHouse] Senpai ga Uzai Kouhai no Hanashi - 04 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Dmg&Lolihouse] Senpai Ga Uzai Kouhai No Hanashi - 04 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Dmg&Lolihouse] Senpai Ga Uzai Kouhai No Hanashi - 04 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[DMG&LoliHouse] Senpai ga Uzai Kouhai no Hanashi - [01-12][WebRip 1080p HEVC-10bit AAC ASSx2]/[DMG&LoliHouse] Senpai ga Uzai Kouhai no Hanashi - 11 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "filename": "[DMG&LoliHouse] Senpai ga Uzai Kouhai no Hanashi - 11 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Dmg&Lolihouse] Senpai Ga Uzai Kouhai No Hanashi - 11 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Dmg&Lolihouse] Senpai Ga Uzai Kouhai No Hanashi - 11 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[DMG&LoliHouse] Senpai ga Uzai Kouhai no Hanashi - [01-12][WebRip 1080p HEVC-10bit AAC ASSx2]/[DMG&LoliHouse] Senpai ga Uzai Kouhai no Hanashi - 02 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "filename": "[DMG&LoliHouse] Senpai ga Uzai Kouhai no Hanashi - 02 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Dmg&Lolihouse] Senpai Ga Uzai Kouhai No Hanashi - 02 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Dmg&Lolihouse] Senpai Ga Uzai Kouhai No Hanashi - 02 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[DMG&LoliHouse] Senpai ga Uzai Kouhai no Hanashi - [01-12][WebRip 1080p HEVC-10bit AAC ASSx2]/[DMG&LoliHouse] Senpai ga Uzai Kouhai no Hanashi - 06 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "filename": "[DMG&LoliHouse] Senpai ga Uzai Kouhai no Hanashi - 06 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Dmg&Lolihouse] Senpai Ga Uzai Kouhai No Hanashi - 06 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Dmg&Lolihouse] Senpai Ga Uzai Kouhai No Hanashi - 06 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[DMG&LoliHouse] Senpai ga Uzai Kouhai no Hanashi - [01-12][WebRip 1080p HEVC-10bit AAC ASSx2]/[DMG&LoliHouse] Senpai ga Uzai Kouhai no Hanashi - 03 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "filename": "[DMG&LoliHouse] Senpai ga Uzai Kouhai no Hanashi - 03 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Dmg&Lolihouse] Senpai Ga Uzai Kouhai No Hanashi - 03 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Dmg&Lolihouse] Senpai Ga Uzai Kouhai No Hanashi - 03 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[DMG&LoliHouse] Senpai ga Uzai Kouhai no Hanashi - [01-12][WebRip 1080p HEVC-10bit AAC ASSx2]/[DMG&LoliHouse] Senpai ga Uzai Kouhai no Hanashi - 07 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "filename": "[DMG&LoliHouse] Senpai ga Uzai Kouhai no Hanashi - 07 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Dmg&Lolihouse] Senpai Ga Uzai Kouhai No Hanashi - 07 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Dmg&Lolihouse] Senpai Ga Uzai Kouhai No Hanashi - 07 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[DMG&LoliHouse] Senpai ga Uzai Kouhai no Hanashi - [01-12][WebRip 1080p HEVC-10bit AAC ASSx2]/[DMG&LoliHouse] Senpai ga Uzai Kouhai no Hanashi - 10 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "filename": "[DMG&LoliHouse] Senpai ga Uzai Kouhai no Hanashi - 10 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Dmg&Lolihouse] Senpai Ga Uzai Kouhai No Hanashi - 10 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Dmg&Lolihouse] Senpai Ga Uzai Kouhai No Hanashi - 10 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[KitaujiSub&LoliHouse] SAKAMOTO DAYS - 01 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "filename": "[KitaujiSub&LoliHouse] SAKAMOTO DAYS - 01 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Kitaujisub&Lolihouse] Sakamoto Days - 01 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Kitaujisub&Lolihouse] Sakamoto Days - 01 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Moonrise.S01.2025.1080p.NF.WEB-DL.H.264.DDP.5.1-FROGWeb/Moonrise.S01E10.2025.1080p.NF.WEB-DL.H.264.DDP.5.1-FROGWeb.mkv", + "filename": "Moonrise.S01E10.2025.1080p.NF.WEB-DL.H.264.DDP.5.1-FROGWeb.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Moonrise S01E10 2025 1080P Nf Web-Dl H 264 Ddp 5 1-Frogweb", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Moonrise S01E10 2025 1080P Nf Web-Dl H 264 Ddp 5 1-Frogweb", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Moonrise.S01.2025.1080p.NF.WEB-DL.H.264.DDP.5.1-FROGWeb/Moonrise.S01E03.2025.1080p.NF.WEB-DL.H.264.DDP.5.1-FROGWeb.mkv", + "filename": "Moonrise.S01E03.2025.1080p.NF.WEB-DL.H.264.DDP.5.1-FROGWeb.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Moonrise S01E03 2025 1080P Nf Web-Dl H 264 Ddp 5 1-Frogweb", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Moonrise S01E03 2025 1080P Nf Web-Dl H 264 Ddp 5 1-Frogweb", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Moonrise.S01.2025.1080p.NF.WEB-DL.H.264.DDP.5.1-FROGWeb/Moonrise.S01E04.2025.1080p.NF.WEB-DL.H.264.DDP.5.1-FROGWeb.mkv", + "filename": "Moonrise.S01E04.2025.1080p.NF.WEB-DL.H.264.DDP.5.1-FROGWeb.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Moonrise S01E04 2025 1080P Nf Web-Dl H 264 Ddp 5 1-Frogweb", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Moonrise S01E04 2025 1080P Nf Web-Dl H 264 Ddp 5 1-Frogweb", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Moonrise.S01.2025.1080p.NF.WEB-DL.H.264.DDP.5.1-FROGWeb/Moonrise.S01E17.2025.1080p.NF.WEB-DL.H.264.DDP.5.1-FROGWeb.mkv", + "filename": "Moonrise.S01E17.2025.1080p.NF.WEB-DL.H.264.DDP.5.1-FROGWeb.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Moonrise S01E17 2025 1080P Nf Web-Dl H 264 Ddp 5 1-Frogweb", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Moonrise S01E17 2025 1080P Nf Web-Dl H 264 Ddp 5 1-Frogweb", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Moonrise.S01.2025.1080p.NF.WEB-DL.H.264.DDP.5.1-FROGWeb/Moonrise.S01E09.2025.1080p.NF.WEB-DL.H.264.DDP.5.1-FROGWeb.mkv", + "filename": "Moonrise.S01E09.2025.1080p.NF.WEB-DL.H.264.DDP.5.1-FROGWeb.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Moonrise S01E09 2025 1080P Nf Web-Dl H 264 Ddp 5 1-Frogweb", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Moonrise S01E09 2025 1080P Nf Web-Dl H 264 Ddp 5 1-Frogweb", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Moonrise.S01.2025.1080p.NF.WEB-DL.H.264.DDP.5.1-FROGWeb/Moonrise.S01E13.2025.1080p.NF.WEB-DL.H.264.DDP.5.1-FROGWeb.mkv", + "filename": "Moonrise.S01E13.2025.1080p.NF.WEB-DL.H.264.DDP.5.1-FROGWeb.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Moonrise S01E13 2025 1080P Nf Web-Dl H 264 Ddp 5 1-Frogweb", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Moonrise S01E13 2025 1080P Nf Web-Dl H 264 Ddp 5 1-Frogweb", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Moonrise.S01.2025.1080p.NF.WEB-DL.H.264.DDP.5.1-FROGWeb/Moonrise.S01E14.2025.1080p.NF.WEB-DL.H.264.DDP.5.1-FROGWeb.mkv", + "filename": "Moonrise.S01E14.2025.1080p.NF.WEB-DL.H.264.DDP.5.1-FROGWeb.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Moonrise S01E14 2025 1080P Nf Web-Dl H 264 Ddp 5 1-Frogweb", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Moonrise S01E14 2025 1080P Nf Web-Dl H 264 Ddp 5 1-Frogweb", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Moonrise.S01.2025.1080p.NF.WEB-DL.H.264.DDP.5.1-FROGWeb/Moonrise.S01E07.2025.1080p.NF.WEB-DL.H.264.DDP.5.1-FROGWeb.mkv", + "filename": "Moonrise.S01E07.2025.1080p.NF.WEB-DL.H.264.DDP.5.1-FROGWeb.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Moonrise S01E07 2025 1080P Nf Web-Dl H 264 Ddp 5 1-Frogweb", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Moonrise S01E07 2025 1080P Nf Web-Dl H 264 Ddp 5 1-Frogweb", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Moonrise.S01.2025.1080p.NF.WEB-DL.H.264.DDP.5.1-FROGWeb/Moonrise.S01E08.2025.1080p.NF.WEB-DL.H.264.DDP.5.1-FROGWeb.mkv", + "filename": "Moonrise.S01E08.2025.1080p.NF.WEB-DL.H.264.DDP.5.1-FROGWeb.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Moonrise S01E08 2025 1080P Nf Web-Dl H 264 Ddp 5 1-Frogweb", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Moonrise S01E08 2025 1080P Nf Web-Dl H 264 Ddp 5 1-Frogweb", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Moonrise.S01.2025.1080p.NF.WEB-DL.H.264.DDP.5.1-FROGWeb/Moonrise.S01E16.2025.1080p.NF.WEB-DL.H.264.DDP.5.1-FROGWeb.mkv", + "filename": "Moonrise.S01E16.2025.1080p.NF.WEB-DL.H.264.DDP.5.1-FROGWeb.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Moonrise S01E16 2025 1080P Nf Web-Dl H 264 Ddp 5 1-Frogweb", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Moonrise S01E16 2025 1080P Nf Web-Dl H 264 Ddp 5 1-Frogweb", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Moonrise.S01.2025.1080p.NF.WEB-DL.H.264.DDP.5.1-FROGWeb/Moonrise.S01E05.2025.1080p.NF.WEB-DL.H.264.DDP.5.1-FROGWeb.mkv", + "filename": "Moonrise.S01E05.2025.1080p.NF.WEB-DL.H.264.DDP.5.1-FROGWeb.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Moonrise S01E05 2025 1080P Nf Web-Dl H 264 Ddp 5 1-Frogweb", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Moonrise S01E05 2025 1080P Nf Web-Dl H 264 Ddp 5 1-Frogweb", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Moonrise.S01.2025.1080p.NF.WEB-DL.H.264.DDP.5.1-FROGWeb/Moonrise.S01E02.2025.1080p.NF.WEB-DL.H.264.DDP.5.1-FROGWeb.mkv", + "filename": "Moonrise.S01E02.2025.1080p.NF.WEB-DL.H.264.DDP.5.1-FROGWeb.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Moonrise S01E02 2025 1080P Nf Web-Dl H 264 Ddp 5 1-Frogweb", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Moonrise S01E02 2025 1080P Nf Web-Dl H 264 Ddp 5 1-Frogweb", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Moonrise.S01.2025.1080p.NF.WEB-DL.H.264.DDP.5.1-FROGWeb/Moonrise.S01E11.2025.1080p.NF.WEB-DL.H.264.DDP.5.1-FROGWeb.mkv", + "filename": "Moonrise.S01E11.2025.1080p.NF.WEB-DL.H.264.DDP.5.1-FROGWeb.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Moonrise S01E11 2025 1080P Nf Web-Dl H 264 Ddp 5 1-Frogweb", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Moonrise S01E11 2025 1080P Nf Web-Dl H 264 Ddp 5 1-Frogweb", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Moonrise.S01.2025.1080p.NF.WEB-DL.H.264.DDP.5.1-FROGWeb/Moonrise.S01E18.2025.1080p.NF.WEB-DL.H.264.DDP.5.1-FROGWeb.mkv", + "filename": "Moonrise.S01E18.2025.1080p.NF.WEB-DL.H.264.DDP.5.1-FROGWeb.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Moonrise S01E18 2025 1080P Nf Web-Dl H 264 Ddp 5 1-Frogweb", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Moonrise S01E18 2025 1080P Nf Web-Dl H 264 Ddp 5 1-Frogweb", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Moonrise.S01.2025.1080p.NF.WEB-DL.H.264.DDP.5.1-FROGWeb/Moonrise.S01E06.2025.1080p.NF.WEB-DL.H.264.DDP.5.1-FROGWeb.mkv", + "filename": "Moonrise.S01E06.2025.1080p.NF.WEB-DL.H.264.DDP.5.1-FROGWeb.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Moonrise S01E06 2025 1080P Nf Web-Dl H 264 Ddp 5 1-Frogweb", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Moonrise S01E06 2025 1080P Nf Web-Dl H 264 Ddp 5 1-Frogweb", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Moonrise.S01.2025.1080p.NF.WEB-DL.H.264.DDP.5.1-FROGWeb/Moonrise.S01E15.2025.1080p.NF.WEB-DL.H.264.DDP.5.1-FROGWeb.mkv", + "filename": "Moonrise.S01E15.2025.1080p.NF.WEB-DL.H.264.DDP.5.1-FROGWeb.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Moonrise S01E15 2025 1080P Nf Web-Dl H 264 Ddp 5 1-Frogweb", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Moonrise S01E15 2025 1080P Nf Web-Dl H 264 Ddp 5 1-Frogweb", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Moonrise.S01.2025.1080p.NF.WEB-DL.H.264.DDP.5.1-FROGWeb/Moonrise.S01E12.2025.1080p.NF.WEB-DL.H.264.DDP.5.1-FROGWeb.mkv", + "filename": "Moonrise.S01E12.2025.1080p.NF.WEB-DL.H.264.DDP.5.1-FROGWeb.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Moonrise S01E12 2025 1080P Nf Web-Dl H 264 Ddp 5 1-Frogweb", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Moonrise S01E12 2025 1080P Nf Web-Dl H 264 Ddp 5 1-Frogweb", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Moonrise.S01.2025.1080p.NF.WEB-DL.H.264.DDP.5.1-FROGWeb/Moonrise.S01E01.2025.1080p.NF.WEB-DL.H.264.DDP.5.1-FROGWeb.mkv", + "filename": "Moonrise.S01E01.2025.1080p.NF.WEB-DL.H.264.DDP.5.1-FROGWeb.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Moonrise S01E01 2025 1080P Nf Web-Dl H 264 Ddp 5 1-Frogweb", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Moonrise S01E01 2025 1080P Nf Web-Dl H 264 Ddp 5 1-Frogweb", + "needs_review": true + }, + { + "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", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 轉生貴族憑鑑定技能扭轉人生 第二季 - 14 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 轉生貴族憑鑑定技能扭轉人生 第二季 - 14 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[BeanSub&FZSD][BLEACH_Sennen_Kessen-hen][35][GB][1080P][x264_AAC].mp4", + "filename": "[BeanSub&FZSD][BLEACH_Sennen_Kessen-hen][35][GB][1080P][x264_AAC].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Beansub&Fzsd][Bleach Sennen Kessen-Hen][35][Gb][1080P][X264 Aac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Beansub&Fzsd][Bleach Sennen Kessen-Hen][35][Gb][1080P][X264 Aac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Nekomoe kissaten][Ninja Kamui][04][1080p][CHT].mp4", + "filename": "[Nekomoe kissaten][Ninja Kamui][04][1080p][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Nekomoe Kissaten][Ninja Kamui][04][1080P][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Nekomoe Kissaten][Ninja Kamui][04][1080P][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Nekomoe kissaten&LoliHouse] Ao no Hako - 02 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "filename": "[Nekomoe kissaten&LoliHouse] Ao no Hako - 02 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Nekomoe Kissaten&Lolihouse] Ao No Hako - 02 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Nekomoe Kissaten&Lolihouse] Ao No Hako - 02 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "needs_review": true + }, + { + "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", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 最近的偵探真沒用 - 05 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 最近的偵探真沒用 - 05 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Snack Basue - 01 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "filename": "[LoliHouse] Snack Basue - 01 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Snack Basue - 01 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Snack Basue - 01 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "needs_review": true + }, + { + "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", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 膽大黨 - 05 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 膽大黨 - 05 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[BDrip] Solo Leveling S01 [7³ACG]/Solo Leveling S01E03-[1080p][BDRIP][x265.FLAC].mkv", + "filename": "Solo Leveling S01E03-[1080p][BDRIP][x265.FLAC].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Solo Leveling S01E03-[1080P][Bdrip][X265 Flac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Solo Leveling S01E03-[1080P][Bdrip][X265 Flac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[BDrip] Solo Leveling S01 [7³ACG]/Solo Leveling S01E05-[1080p][BDRIP][x265.FLAC].mkv", + "filename": "Solo Leveling S01E05-[1080p][BDRIP][x265.FLAC].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Solo Leveling S01E05-[1080P][Bdrip][X265 Flac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Solo Leveling S01E05-[1080P][Bdrip][X265 Flac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[BDrip] Solo Leveling S01 [7³ACG]/Solo Leveling S01E09-[1080p][BDRIP][x265.FLAC].mkv", + "filename": "Solo Leveling S01E09-[1080p][BDRIP][x265.FLAC].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Solo Leveling S01E09-[1080P][Bdrip][X265 Flac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Solo Leveling S01E09-[1080P][Bdrip][X265 Flac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[BDrip] Solo Leveling S01 [7³ACG]/NCED.mkv", + "filename": "NCED.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Nced", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Nced", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[BDrip] Solo Leveling S01 [7³ACG]/Solo Leveling S01E12-[1080p][BDRIP][x265.FLAC].mkv", + "filename": "Solo Leveling S01E12-[1080p][BDRIP][x265.FLAC].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Solo Leveling S01E12-[1080P][Bdrip][X265 Flac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Solo Leveling S01E12-[1080P][Bdrip][X265 Flac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[BDrip] Solo Leveling S01 [7³ACG]/Solo Leveling S01E02-[1080p][BDRIP][x265.FLAC].mkv", + "filename": "Solo Leveling S01E02-[1080p][BDRIP][x265.FLAC].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Solo Leveling S01E02-[1080P][Bdrip][X265 Flac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Solo Leveling S01E02-[1080P][Bdrip][X265 Flac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[BDrip] Solo Leveling S01 [7³ACG]/Solo Leveling S01E04-[1080p][BDRIP][x265.FLAC].mkv", + "filename": "Solo Leveling S01E04-[1080p][BDRIP][x265.FLAC].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Solo Leveling S01E04-[1080P][Bdrip][X265 Flac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Solo Leveling S01E04-[1080P][Bdrip][X265 Flac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[BDrip] Solo Leveling S01 [7³ACG]/Solo Leveling S01E08-[1080p][BDRIP][x265.FLAC].mkv", + "filename": "Solo Leveling S01E08-[1080p][BDRIP][x265.FLAC].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Solo Leveling S01E08-[1080P][Bdrip][X265 Flac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Solo Leveling S01E08-[1080P][Bdrip][X265 Flac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[BDrip] Solo Leveling S01 [7³ACG]/Solo Leveling S01E01-[1080p][BDRIP][x265.FLAC].mkv", + "filename": "Solo Leveling S01E01-[1080p][BDRIP][x265.FLAC].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Solo Leveling S01E01-[1080P][Bdrip][X265 Flac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Solo Leveling S01E01-[1080P][Bdrip][X265 Flac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[BDrip] Solo Leveling S01 [7³ACG]/NCOP.mkv", + "filename": "NCOP.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Ncop", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Ncop", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[BDrip] Solo Leveling S01 [7³ACG]/Solo Leveling S01E07-[1080p][BDRIP][x265.FLAC].mkv", + "filename": "Solo Leveling S01E07-[1080p][BDRIP][x265.FLAC].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Solo Leveling S01E07-[1080P][Bdrip][X265 Flac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Solo Leveling S01E07-[1080P][Bdrip][X265 Flac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[BDrip] Solo Leveling S01 [7³ACG]/Solo Leveling S01E10-[1080p][BDRIP][x265.FLAC].mkv", + "filename": "Solo Leveling S01E10-[1080p][BDRIP][x265.FLAC].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Solo Leveling S01E10-[1080P][Bdrip][X265 Flac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Solo Leveling S01E10-[1080P][Bdrip][X265 Flac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[BDrip] Solo Leveling S01 [7³ACG]/Solo Leveling S01E06-[1080p][BDRIP][x265.FLAC].mkv", + "filename": "Solo Leveling S01E06-[1080p][BDRIP][x265.FLAC].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Solo Leveling S01E06-[1080P][Bdrip][X265 Flac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Solo Leveling S01E06-[1080P][Bdrip][X265 Flac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[BDrip] Solo Leveling S01 [7³ACG]/Solo Leveling S01E11-[1080p][BDRIP][x265.FLAC].mkv", + "filename": "Solo Leveling S01E11-[1080p][BDRIP][x265.FLAC].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Solo Leveling S01E11-[1080P][Bdrip][X265 Flac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Solo Leveling S01E11-[1080P][Bdrip][X265 Flac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Airota&LoliHouse] Hibike! Euphonium 3 - 01 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "filename": "[Airota&LoliHouse] Hibike! Euphonium 3 - 01 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Airota&Lolihouse] Hibike! Euphonium 3 - 01 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Airota&Lolihouse] Hibike! Euphonium 3 - 01 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 歲月流逝飯菜依舊美味 - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 歲月流逝飯菜依舊美味 - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 歲月流逝飯菜依舊美味 - 02 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 歲月流逝飯菜依舊美味 - 02 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Nekomoe kissaten][Zoku Owarimonogatari][Commentary][01-06END][720p]/[Nekomoe kissaten][Zoku Owarimonogatari][Commentary][06][720p][x264_aac][chs].mp4", + "filename": "[Nekomoe kissaten][Zoku Owarimonogatari][Commentary][06][720p][x264_aac][chs].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Nekomoe Kissaten][Zoku Owarimonogatari][Commentary][06][720P][X264 Aac][Chs]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Nekomoe Kissaten][Zoku Owarimonogatari][Commentary][06][720P][X264 Aac][Chs]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Nekomoe kissaten][Zoku Owarimonogatari][Commentary][01-06END][720p]/[Nekomoe kissaten][Zoku Owarimonogatari][Commentary][02][720p][x264_aac][cht].mp4", + "filename": "[Nekomoe kissaten][Zoku Owarimonogatari][Commentary][02][720p][x264_aac][cht].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Nekomoe Kissaten][Zoku Owarimonogatari][Commentary][02][720P][X264 Aac][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Nekomoe Kissaten][Zoku Owarimonogatari][Commentary][02][720P][X264 Aac][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Nekomoe kissaten][Zoku Owarimonogatari][Commentary][01-06END][720p]/[Nekomoe kissaten][Zoku Owarimonogatari][Commentary][05][720p][x264_aac][chs].mp4", + "filename": "[Nekomoe kissaten][Zoku Owarimonogatari][Commentary][05][720p][x264_aac][chs].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Nekomoe Kissaten][Zoku Owarimonogatari][Commentary][05][720P][X264 Aac][Chs]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Nekomoe Kissaten][Zoku Owarimonogatari][Commentary][05][720P][X264 Aac][Chs]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Nekomoe kissaten][Zoku Owarimonogatari][Commentary][01-06END][720p]/[Nekomoe kissaten][Zoku Owarimonogatari][Commentary][01][720p][x264_aac][cht].mp4", + "filename": "[Nekomoe kissaten][Zoku Owarimonogatari][Commentary][01][720p][x264_aac][cht].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Nekomoe Kissaten][Zoku Owarimonogatari][Commentary][01][720P][X264 Aac][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Nekomoe Kissaten][Zoku Owarimonogatari][Commentary][01][720P][X264 Aac][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Nekomoe kissaten][Zoku Owarimonogatari][Commentary][01-06END][720p]/[Nekomoe kissaten][Zoku Owarimonogatari][Commentary][04][720p][x264_aac][cht].mp4", + "filename": "[Nekomoe kissaten][Zoku Owarimonogatari][Commentary][04][720p][x264_aac][cht].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Nekomoe Kissaten][Zoku Owarimonogatari][Commentary][04][720P][X264 Aac][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Nekomoe Kissaten][Zoku Owarimonogatari][Commentary][04][720P][X264 Aac][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Nekomoe kissaten][Zoku Owarimonogatari][Commentary][01-06END][720p]/[Nekomoe kissaten][Zoku Owarimonogatari][Commentary][03][720p][x264_aac][chs].mp4", + "filename": "[Nekomoe kissaten][Zoku Owarimonogatari][Commentary][03][720p][x264_aac][chs].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Nekomoe Kissaten][Zoku Owarimonogatari][Commentary][03][720P][X264 Aac][Chs]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Nekomoe Kissaten][Zoku Owarimonogatari][Commentary][03][720P][X264 Aac][Chs]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Nekomoe kissaten][Zoku Owarimonogatari][Commentary][01-06END][720p]/[Nekomoe kissaten][Zoku Owarimonogatari][Commentary][03][720p][x264_aac][cht].mp4", + "filename": "[Nekomoe kissaten][Zoku Owarimonogatari][Commentary][03][720p][x264_aac][cht].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Nekomoe Kissaten][Zoku Owarimonogatari][Commentary][03][720P][X264 Aac][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Nekomoe Kissaten][Zoku Owarimonogatari][Commentary][03][720P][X264 Aac][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Nekomoe kissaten][Zoku Owarimonogatari][Commentary][01-06END][720p]/[Nekomoe kissaten][Zoku Owarimonogatari][Commentary][04][720p][x264_aac][chs].mp4", + "filename": "[Nekomoe kissaten][Zoku Owarimonogatari][Commentary][04][720p][x264_aac][chs].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Nekomoe Kissaten][Zoku Owarimonogatari][Commentary][04][720P][X264 Aac][Chs]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Nekomoe Kissaten][Zoku Owarimonogatari][Commentary][04][720P][X264 Aac][Chs]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Nekomoe kissaten][Zoku Owarimonogatari][Commentary][01-06END][720p]/[Nekomoe kissaten][Zoku Owarimonogatari][Commentary][05][720p][x264_aac][cht].mp4", + "filename": "[Nekomoe kissaten][Zoku Owarimonogatari][Commentary][05][720p][x264_aac][cht].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Nekomoe Kissaten][Zoku Owarimonogatari][Commentary][05][720P][X264 Aac][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Nekomoe Kissaten][Zoku Owarimonogatari][Commentary][05][720P][X264 Aac][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Nekomoe kissaten][Zoku Owarimonogatari][Commentary][01-06END][720p]/[Nekomoe kissaten][Zoku Owarimonogatari][Commentary][01][720p][x264_aac][chs].mp4", + "filename": "[Nekomoe kissaten][Zoku Owarimonogatari][Commentary][01][720p][x264_aac][chs].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Nekomoe Kissaten][Zoku Owarimonogatari][Commentary][01][720P][X264 Aac][Chs]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Nekomoe Kissaten][Zoku Owarimonogatari][Commentary][01][720P][X264 Aac][Chs]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Nekomoe kissaten][Zoku Owarimonogatari][Commentary][01-06END][720p]/[Nekomoe kissaten][Zoku Owarimonogatari][Commentary][06][720p][x264_aac][cht].mp4", + "filename": "[Nekomoe kissaten][Zoku Owarimonogatari][Commentary][06][720p][x264_aac][cht].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Nekomoe Kissaten][Zoku Owarimonogatari][Commentary][06][720P][X264 Aac][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Nekomoe Kissaten][Zoku Owarimonogatari][Commentary][06][720P][X264 Aac][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Nekomoe kissaten][Zoku Owarimonogatari][Commentary][01-06END][720p]/[Nekomoe kissaten][Zoku Owarimonogatari][Commentary][02][720p][x264_aac][chs].mp4", + "filename": "[Nekomoe kissaten][Zoku Owarimonogatari][Commentary][02][720p][x264_aac][chs].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Nekomoe Kissaten][Zoku Owarimonogatari][Commentary][02][720P][X264 Aac][Chs]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Nekomoe Kissaten][Zoku Owarimonogatari][Commentary][02][720P][X264 Aac][Chs]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Lilith-Raws] Rinkai! - 04 [Baha][WebDL 1080p AVC AAC][CHT].mp4", + "filename": "[Lilith-Raws] Rinkai! - 04 [Baha][WebDL 1080p AVC AAC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lilith-Raws] Rinkai! - 04 [Baha][Webdl 1080P Avc Aac][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lilith-Raws] Rinkai! - 04 [Baha][Webdl 1080P Avc Aac][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 靠廢柴技能【狀態異常】成為最強的我將蹂躪一切 - 11 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 靠廢柴技能【狀態異常】成為最強的我將蹂躪一切 - 11 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 靠廢柴技能【狀態異常】成為最強的我將蹂躪一切 - 11 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 靠廢柴技能【狀態異常】成為最強的我將蹂躪一切 - 11 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[orion origin] Zom 100:Zombie ni Naru made ni Shitai 100 no Koto [12] [END] [1080p] [H265 AAC] [CHS&JPN].mp4", + "filename": "[orion origin] Zom 100:Zombie ni Naru made ni Shitai 100 no Koto [12] [END] [1080p] [H265 AAC] [CHS&JPN].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Orion Origin] Zom 100:Zombie Ni Naru Made Ni Shitai 100 No Koto [12] [End] [1080P] [H265 Aac] [Chs&Jpn]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Orion Origin] Zom 100:Zombie Ni Naru Made Ni Shitai 100 No Koto [12] [End] [1080P] [H265 Aac] [Chs&Jpn]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Kakushite! Makina-san!! - 05 [WebRip 1080p HEVC-10bit AAC].mkv", + "filename": "[LoliHouse] Kakushite! Makina-san!! - 05 [WebRip 1080p HEVC-10bit AAC].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Kakushite! Makina-San!! - 05 [Webrip 1080P Hevc-10Bit Aac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Kakushite! Makina-San!! - 05 [Webrip 1080P Hevc-10Bit Aac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 輝夜姬想讓人告白 邁向大人的階梯 - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 輝夜姬想讓人告白 邁向大人的階梯 - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 輝夜姬想讓人告白 邁向大人的階梯 - 02 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 輝夜姬想讓人告白 邁向大人的階梯 - 02 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "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", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 最後可以再拜託您一件事嗎? - 05 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 最後可以再拜託您一件事嗎? - 05 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 我與尼特女忍者的莫名同居生活 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 我與尼特女忍者的莫名同居生活 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 我與尼特女忍者的莫名同居生活 - 01 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 我與尼特女忍者的莫名同居生活 - 01 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[KitaujiSub] Ao no Hako [10][WebRip][HEVC_AAC][CHS_JP].mp4", + "filename": "[KitaujiSub] Ao no Hako [10][WebRip][HEVC_AAC][CHS_JP].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Kitaujisub] Ao No Hako [10][Webrip][Hevc Aac][Chs Jp]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Kitaujisub] Ao No Hako [10][Webrip][Hevc Aac][Chs Jp]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Class no Daikirai na Joshi to Kekkon suru Koto ni Natta. - 12 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "filename": "[LoliHouse] Class no Daikirai na Joshi to Kekkon suru Koto ni Natta. - 12 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Class No Daikirai Na Joshi To Kekkon Suru Koto Ni Natta - 12 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Class No Daikirai Na Joshi To Kekkon Suru Koto Ni Natta - 12 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Ghost.in.the.Shell.SAC.The.Laughing.Man.2005.1080p.BluRay.x265.10bit-WiKi/Ghost.in.the.Shell.SAC.The.Laughing.Man.2005.1080p.BluRay.x265.10bit-WiKi.mkv", + "filename": "Ghost.in.the.Shell.SAC.The.Laughing.Man.2005.1080p.BluRay.x265.10bit-WiKi.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Ghost In The Shell Sac The Laughing Man 2005 1080P Bluray X265 10Bit-Wiki", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Ghost In The Shell Sac The Laughing Man 2005 1080P Bluray X265 10Bit-Wiki", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Sword Art Online Alternative - Gun Gale Online II - 07 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "filename": "[LoliHouse] Sword Art Online Alternative - Gun Gale Online II - 07 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Sword Art Online Alternative - Gun Gale Online Ii - 07 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Sword Art Online Alternative - Gun Gale Online Ii - 07 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] WIND BREAKER—防風少年— - 08 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] WIND BREAKER—防風少年— - 08 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] Wind Breaker—防風少年— - 08 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] Wind Breaker—防風少年— - 08 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Comicat&KissSub][Kanojo, Okarishimasu 2][01-12][BIG5][MP4]/[Comicat&KissSub][Kanojo, Okarishimasu][23][1080P][BIG5][MP4].mp4", + "filename": "[Comicat&KissSub][Kanojo, Okarishimasu][23][1080P][BIG5][MP4].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Comicat&Kisssub][Kanojo, Okarishimasu][23][1080P][Big5][Mp4]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Comicat&Kisssub][Kanojo, Okarishimasu][23][1080P][Big5][Mp4]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Comicat&KissSub][Kanojo, Okarishimasu 2][01-12][BIG5][MP4]/[Comicat&KissSub][Kanojo, Okarishimasu][22][1080P][BIG5][MP4].mp4", + "filename": "[Comicat&KissSub][Kanojo, Okarishimasu][22][1080P][BIG5][MP4].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Comicat&Kisssub][Kanojo, Okarishimasu][22][1080P][Big5][Mp4]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Comicat&Kisssub][Kanojo, Okarishimasu][22][1080P][Big5][Mp4]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Comicat&KissSub][Kanojo, Okarishimasu 2][01-12][BIG5][MP4]/[Comicat&KissSub][Kanojo, Okarishimasu][19][1080P][BIG5][MP4].mp4", + "filename": "[Comicat&KissSub][Kanojo, Okarishimasu][19][1080P][BIG5][MP4].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Comicat&Kisssub][Kanojo, Okarishimasu][19][1080P][Big5][Mp4]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Comicat&Kisssub][Kanojo, Okarishimasu][19][1080P][Big5][Mp4]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Comicat&KissSub][Kanojo, Okarishimasu 2][01-12][BIG5][MP4]/[Comicat&KissSub][Kanojo, Okarishimasu][20][1080P][BIG5][MP4].mp4", + "filename": "[Comicat&KissSub][Kanojo, Okarishimasu][20][1080P][BIG5][MP4].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Comicat&Kisssub][Kanojo, Okarishimasu][20][1080P][Big5][Mp4]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Comicat&Kisssub][Kanojo, Okarishimasu][20][1080P][Big5][Mp4]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Comicat&KissSub][Kanojo, Okarishimasu 2][01-12][BIG5][MP4]/[Comicat&KissSub][Kanojo, Okarishimasu][21][1080P][BIG5][MP4].mp4", + "filename": "[Comicat&KissSub][Kanojo, Okarishimasu][21][1080P][BIG5][MP4].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Comicat&Kisssub][Kanojo, Okarishimasu][21][1080P][Big5][Mp4]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Comicat&Kisssub][Kanojo, Okarishimasu][21][1080P][Big5][Mp4]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Comicat&KissSub][Kanojo, Okarishimasu 2][01-12][BIG5][MP4]/[Comicat&KissSub][Kanojo, Okarishimasu][18][1080P][BIG5][MP4].mp4", + "filename": "[Comicat&KissSub][Kanojo, Okarishimasu][18][1080P][BIG5][MP4].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Comicat&Kisssub][Kanojo, Okarishimasu][18][1080P][Big5][Mp4]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Comicat&Kisssub][Kanojo, Okarishimasu][18][1080P][Big5][Mp4]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Comicat&KissSub][Kanojo, Okarishimasu 2][01-12][BIG5][MP4]/[Comicat&KissSub][Kanojo, Okarishimasu][13][1080P][BIG5][MP4].mp4", + "filename": "[Comicat&KissSub][Kanojo, Okarishimasu][13][1080P][BIG5][MP4].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Comicat&Kisssub][Kanojo, Okarishimasu][13][1080P][Big5][Mp4]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Comicat&Kisssub][Kanojo, Okarishimasu][13][1080P][Big5][Mp4]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Comicat&KissSub][Kanojo, Okarishimasu 2][01-12][BIG5][MP4]/[Comicat&KissSub][Kanojo, Okarishimasu][17][1080P][BIG5][MP4].mp4", + "filename": "[Comicat&KissSub][Kanojo, Okarishimasu][17][1080P][BIG5][MP4].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Comicat&Kisssub][Kanojo, Okarishimasu][17][1080P][Big5][Mp4]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Comicat&Kisssub][Kanojo, Okarishimasu][17][1080P][Big5][Mp4]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Comicat&KissSub][Kanojo, Okarishimasu 2][01-12][BIG5][MP4]/[Comicat&KissSub][Kanojo, Okarishimasu][16][1080P][BIG5][MP4].mp4", + "filename": "[Comicat&KissSub][Kanojo, Okarishimasu][16][1080P][BIG5][MP4].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Comicat&Kisssub][Kanojo, Okarishimasu][16][1080P][Big5][Mp4]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Comicat&Kisssub][Kanojo, Okarishimasu][16][1080P][Big5][Mp4]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Comicat&KissSub][Kanojo, Okarishimasu 2][01-12][BIG5][MP4]/[Comicat&KissSub][Kanojo, Okarishimasu][24][1080P][BIG5][MP4].mp4", + "filename": "[Comicat&KissSub][Kanojo, Okarishimasu][24][1080P][BIG5][MP4].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Comicat&Kisssub][Kanojo, Okarishimasu][24][1080P][Big5][Mp4]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Comicat&Kisssub][Kanojo, Okarishimasu][24][1080P][Big5][Mp4]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Comicat&KissSub][Kanojo, Okarishimasu 2][01-12][BIG5][MP4]/[Comicat&KissSub][Kanojo, Okarishimasu][14][1080P][BIG5][MP4].mp4", + "filename": "[Comicat&KissSub][Kanojo, Okarishimasu][14][1080P][BIG5][MP4].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Comicat&Kisssub][Kanojo, Okarishimasu][14][1080P][Big5][Mp4]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Comicat&Kisssub][Kanojo, Okarishimasu][14][1080P][Big5][Mp4]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Comicat&KissSub][Kanojo, Okarishimasu 2][01-12][BIG5][MP4]/[Comicat&KissSub][Kanojo, Okarishimasu][15][1080P][BIG5][MP4].mp4", + "filename": "[Comicat&KissSub][Kanojo, Okarishimasu][15][1080P][BIG5][MP4].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Comicat&Kisssub][Kanojo, Okarishimasu][15][1080P][Big5][Mp4]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Comicat&Kisssub][Kanojo, Okarishimasu][15][1080P][Big5][Mp4]", + "needs_review": true + }, + { + "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", + "title": "[Ani] 新人大叔冒險者,被最強隊伍操到死成無敵 - 07 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 新人大叔冒險者,被最強隊伍操到死成無敵 - 07 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Nekomoe kissaten][Ao no Hako][13][1080p][JPSC].mp4", + "filename": "[Nekomoe kissaten][Ao no Hako][13][1080p][JPSC].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Nekomoe Kissaten][Ao No Hako][13][1080P][Jpsc]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Nekomoe Kissaten][Ao No Hako][13][1080P][Jpsc]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Hitoribocchi no Isekai Kouryaku - 03 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "filename": "[LoliHouse] Hitoribocchi no Isekai Kouryaku - 03 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Hitoribocchi No Isekai Kouryaku - 03 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Hitoribocchi No Isekai Kouryaku - 03 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Skymoon-Raws] Mushoku Tensei 2nd Season - 04 [ViuTV][WEB-DL][CHT][1080p][AVC AAC][MP4+ASS]/[Skymoon-Raws] Mushoku Tensei 2nd Season - 04 [ViuTV][WEB-DL][1080p][AVC AAC].mp4", + "filename": "[Skymoon-Raws] Mushoku Tensei 2nd Season - 04 [ViuTV][WEB-DL][1080p][AVC AAC].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Skymoon-Raws] Mushoku Tensei 2Nd Season - 04 [Viutv][Web-Dl][1080P][Avc Aac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Skymoon-Raws] Mushoku Tensei 2Nd Season - 04 [Viutv][Web-Dl][1080P][Avc Aac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 使人誤解的工房主~關於原英雄隊伍的雜役人員,實際上除了戰鬥能力外全是SSS的故事~ - 08 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 使人誤解的工房主~關於原英雄隊伍的雜役人員,實際上除了戰鬥能力外全是SSS的故事~ - 08 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 使人誤解的工房主~關於原英雄隊伍的雜役人員,實際上除了戰鬥能力外全是Sss的故事~ - 08 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 使人誤解的工房主~關於原英雄隊伍的雜役人員,實際上除了戰鬥能力外全是Sss的故事~ - 08 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "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", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 我要【招架】一切~反誤解的世界最強想成為冒險家~ - 05 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 我要【招架】一切~反誤解的世界最強想成為冒險家~ - 05 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[KTXP][Great_Pretender][01-23][BIG5][720p]/[KTXP][Great_Pretender][11][BIG5][720p].mp4", + "filename": "[KTXP][Great_Pretender][11][BIG5][720p].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ktxp][Great Pretender][11][Big5][720P]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ktxp][Great Pretender][11][Big5][720P]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[KTXP][Great_Pretender][01-23][BIG5][720p]/[KTXP][Great_Pretender][04][BIG5][720p].mp4", + "filename": "[KTXP][Great_Pretender][04][BIG5][720p].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ktxp][Great Pretender][04][Big5][720P]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ktxp][Great Pretender][04][Big5][720P]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[KTXP][Great_Pretender][01-23][BIG5][720p]/[KTXP][Great_Pretender][10][BIG5][720p].mp4", + "filename": "[KTXP][Great_Pretender][10][BIG5][720p].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ktxp][Great Pretender][10][Big5][720P]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ktxp][Great Pretender][10][Big5][720P]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[KTXP][Great_Pretender][01-23][BIG5][720p]/[KTXP][Great_Pretender][05][BIG5][720p].mp4", + "filename": "[KTXP][Great_Pretender][05][BIG5][720p].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ktxp][Great Pretender][05][Big5][720P]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ktxp][Great Pretender][05][Big5][720P]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[KTXP][Great_Pretender][01-23][BIG5][720p]/[KTXP][Great_Pretender][06][BIG5][720p].mp4", + "filename": "[KTXP][Great_Pretender][06][BIG5][720p].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ktxp][Great Pretender][06][Big5][720P]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ktxp][Great Pretender][06][Big5][720P]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[KTXP][Great_Pretender][01-23][BIG5][720p]/[KTXP][Great_Pretender][13][BIG5][720p].mp4", + "filename": "[KTXP][Great_Pretender][13][BIG5][720p].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ktxp][Great Pretender][13][Big5][720P]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ktxp][Great Pretender][13][Big5][720P]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[KTXP][Great_Pretender][01-23][BIG5][720p]/[KTXP][Great_Pretender][07][BIG5][720p].mp4", + "filename": "[KTXP][Great_Pretender][07][BIG5][720p].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ktxp][Great Pretender][07][Big5][720P]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ktxp][Great Pretender][07][Big5][720P]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[KTXP][Great_Pretender][01-23][BIG5][720p]/[KTXP][Great_Pretender][12][BIG5][720p].mp4", + "filename": "[KTXP][Great_Pretender][12][BIG5][720p].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ktxp][Great Pretender][12][Big5][720P]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ktxp][Great Pretender][12][Big5][720P]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[KTXP][Great_Pretender][01-23][BIG5][720p]/[KTXP][Great_Pretender][14][BIG5][720p].mp4", + "filename": "[KTXP][Great_Pretender][14][BIG5][720p].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ktxp][Great Pretender][14][Big5][720P]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ktxp][Great Pretender][14][Big5][720P]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[KTXP][Great_Pretender][01-23][BIG5][720p]/[KTXP][Great_Pretender][01][BIG5][720p].mp4", + "filename": "[KTXP][Great_Pretender][01][BIG5][720p].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ktxp][Great Pretender][01][Big5][720P]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ktxp][Great Pretender][01][Big5][720P]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[KTXP][Great_Pretender][01-23][BIG5][720p]/[KTXP][Great_Pretender][15][BIG5][720p].mp4", + "filename": "[KTXP][Great_Pretender][15][BIG5][720p].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ktxp][Great Pretender][15][Big5][720P]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ktxp][Great Pretender][15][Big5][720P]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[KTXP][Great_Pretender][01-23][BIG5][720p]/[KTXP][Great_Pretender][03][BIG5][720p].mp4", + "filename": "[KTXP][Great_Pretender][03][BIG5][720p].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ktxp][Great Pretender][03][Big5][720P]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ktxp][Great Pretender][03][Big5][720P]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[KTXP][Great_Pretender][01-23][BIG5][720p]/[KTXP][Great_Pretender][16][BIG5][720p].mp4", + "filename": "[KTXP][Great_Pretender][16][BIG5][720p].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ktxp][Great Pretender][16][Big5][720P]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ktxp][Great Pretender][16][Big5][720P]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[KTXP][Great_Pretender][01-23][BIG5][720p]/[KTXP][Great_Pretender][02][BIG5][720p].mp4", + "filename": "[KTXP][Great_Pretender][02][BIG5][720p].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ktxp][Great Pretender][02][Big5][720P]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ktxp][Great Pretender][02][Big5][720P]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[KTXP][Great_Pretender][01-23][BIG5][720p]/[KTXP][Great_Pretender][17][BIG5][720p].mp4", + "filename": "[KTXP][Great_Pretender][17][BIG5][720p].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ktxp][Great Pretender][17][Big5][720P]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ktxp][Great Pretender][17][Big5][720P]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[KTXP][Great_Pretender][01-23][BIG5][720p]/[KTXP][Great_Pretender][19][BIG5][720p].mp4", + "filename": "[KTXP][Great_Pretender][19][BIG5][720p].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ktxp][Great Pretender][19][Big5][720P]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ktxp][Great Pretender][19][Big5][720P]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[KTXP][Great_Pretender][01-23][BIG5][720p]/[KTXP][Great_Pretender][18][BIG5][720p].mp4", + "filename": "[KTXP][Great_Pretender][18][BIG5][720p].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ktxp][Great Pretender][18][Big5][720P]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ktxp][Great Pretender][18][Big5][720P]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[KTXP][Great_Pretender][01-23][BIG5][720p]/[KTXP][Great_Pretender][20][BIG5][720p].mp4", + "filename": "[KTXP][Great_Pretender][20][BIG5][720p].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ktxp][Great Pretender][20][Big5][720P]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ktxp][Great Pretender][20][Big5][720P]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[KTXP][Great_Pretender][01-23][BIG5][720p]/[KTXP][Great_Pretender][21][BIG5][720p].mp4", + "filename": "[KTXP][Great_Pretender][21][BIG5][720p].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ktxp][Great Pretender][21][Big5][720P]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ktxp][Great Pretender][21][Big5][720P]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[KTXP][Great_Pretender][01-23][BIG5][720p]/[KTXP][Great_Pretender][09][BIG5][720p].mp4", + "filename": "[KTXP][Great_Pretender][09][BIG5][720p].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ktxp][Great Pretender][09][Big5][720P]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ktxp][Great Pretender][09][Big5][720P]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[KTXP][Great_Pretender][01-23][BIG5][720p]/[KTXP][Great_Pretender][22][BIG5][720p].mp4", + "filename": "[KTXP][Great_Pretender][22][BIG5][720p].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ktxp][Great Pretender][22][Big5][720P]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ktxp][Great Pretender][22][Big5][720P]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[KTXP][Great_Pretender][01-23][BIG5][720p]/[KTXP][Great_Pretender][08][BIG5][720p].mp4", + "filename": "[KTXP][Great_Pretender][08][BIG5][720p].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ktxp][Great Pretender][08][Big5][720P]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ktxp][Great Pretender][08][Big5][720P]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[KTXP][Great_Pretender][01-23][BIG5][720p]/[KTXP][Great_Pretender][23][BIG5][720p].mp4", + "filename": "[KTXP][Great_Pretender][23][BIG5][720p].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ktxp][Great Pretender][23][Big5][720P]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ktxp][Great Pretender][23][Big5][720P]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] Silent Witch 沉默魔女的祕密 - 13 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] Silent Witch 沉默魔女的祕密 - 13 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] Silent Witch 沉默魔女的祕密 - 13 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] Silent Witch 沉默魔女的祕密 - 13 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Nekomoe kissaten][Hibi wa Sugiredo Meshi Umashi][01][1080p][JPSC].mp4", + "filename": "[Nekomoe kissaten][Hibi wa Sugiredo Meshi Umashi][01][1080p][JPSC].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Nekomoe Kissaten][Hibi Wa Sugiredo Meshi Umashi][01][1080P][Jpsc]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Nekomoe Kissaten][Hibi Wa Sugiredo Meshi Umashi][01][1080P][Jpsc]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Nekomoe kissaten][Kanpekiseijo][05][1080p][JPSC].mp4", + "filename": "[Nekomoe kissaten][Kanpekiseijo][05][1080p][JPSC].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Nekomoe Kissaten][Kanpekiseijo][05][1080P][Jpsc]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Nekomoe Kissaten][Kanpekiseijo][05][1080P][Jpsc]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Nekomoe kissaten][Dosanko Gal wa Namara Menkoi][10][1080p][JPTC].mp4", + "filename": "[Nekomoe kissaten][Dosanko Gal wa Namara Menkoi][10][1080p][JPTC].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Nekomoe Kissaten][Dosanko Gal Wa Namara Menkoi][10][1080P][Jptc]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Nekomoe Kissaten][Dosanko Gal Wa Namara Menkoi][10][1080P][Jptc]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 我獨自升級 - 04 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 我獨自升級 - 04 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 我獨自升級 - 04 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 我獨自升級 - 04 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[HYSUB]Free! -Road to the World- Yume[BDrip][BIG5_MP4][1280X720][GER.ver]/[HYSUB]Free! -Road to the World- Yume[BDrip][BIG5_MP4][1280X720][GER.ver].mp4", + "filename": "[HYSUB]Free! -Road to the World- Yume[BDrip][BIG5_MP4][1280X720][GER.ver].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Hysub]Free! -Road To The World- Yume[Bdrip][Big5 Mp4][1280X720][Ger Ver]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Hysub]Free! -Road To The World- Yume[Bdrip][Big5 Mp4][1280X720][Ger Ver]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[HYSUB]Free! -Road to the World- Yume[BDrip][BIG5_MP4][1280X720][GER.ver]/EXTRA/[HYSUB]Free! -Road to the World- Yume[CREDIT][MP4][1280X720][GER.ver].mp4", + "filename": "[HYSUB]Free! -Road to the World- Yume[CREDIT][MP4][1280X720][GER.ver].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Hysub]Free! -Road To The World- Yume[Credit][Mp4][1280X720][Ger Ver]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Hysub]Free! -Road To The World- Yume[Credit][Mp4][1280X720][Ger Ver]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Tensei Kizoku, Kantei Skill de Nariagaru - 01 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "filename": "[LoliHouse] Tensei Kizoku, Kantei Skill de Nariagaru - 01 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Tensei Kizoku, Kantei Skill De Nariagaru - 01 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Tensei Kizoku, Kantei Skill De Nariagaru - 01 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Skymoon-Raws] Shin Samurai-den YAIBA - 01 [ViuTV][WEB-DL][CHT][SRT][1080p][AVC AAC].mkv", + "filename": "[Skymoon-Raws] Shin Samurai-den YAIBA - 01 [ViuTV][WEB-DL][CHT][SRT][1080p][AVC AAC].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Skymoon-Raws] Shin Samurai-Den Yaiba - 01 [Viutv][Web-Dl][Cht][Srt][1080P][Avc Aac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Skymoon-Raws] Shin Samurai-Den Yaiba - 01 [Viutv][Web-Dl][Cht][Srt][1080P][Avc Aac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[BeanSub&FZSD][Jujutsu_Kaisen][50][GB][1080P][x264_AAC].mp4", + "filename": "[BeanSub&FZSD][Jujutsu_Kaisen][50][GB][1080P][x264_AAC].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Beansub&Fzsd][Jujutsu Kaisen][50][Gb][1080P][X264 Aac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Beansub&Fzsd][Jujutsu Kaisen][50][Gb][1080P][X264 Aac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[orion origin] Wind Breaker [02] [1080p] [H265 AAC] [CHT&JPN].mp4", + "filename": "[orion origin] Wind Breaker [02] [1080p] [H265 AAC] [CHT&JPN].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Orion Origin] Wind Breaker [02] [1080P] [H265 Aac] [Cht&Jpn]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Orion Origin] Wind Breaker [02] [1080P] [H265 Aac] [Cht&Jpn]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] Silent Witch 沉默魔女的祕密 - 08 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] Silent Witch 沉默魔女的祕密 - 08 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] Silent Witch 沉默魔女的祕密 - 08 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] Silent Witch 沉默魔女的祕密 - 08 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Nekomoe kissaten][Dosanko Gal wa Namara Menkoi][05][1080p][JPTC].mp4", + "filename": "[Nekomoe kissaten][Dosanko Gal wa Namara Menkoi][05][1080p][JPTC].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Nekomoe Kissaten][Dosanko Gal Wa Namara Menkoi][05][1080P][Jptc]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Nekomoe Kissaten][Dosanko Gal Wa Namara Menkoi][05][1080P][Jptc]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Skymoon-Raws] Shin Samurai-den YAIBA - 02 [ViuTV][WEB-DL][CHT][SRT][1080p][AVC AAC].mkv", + "filename": "[Skymoon-Raws] Shin Samurai-den YAIBA - 02 [ViuTV][WEB-DL][CHT][SRT][1080p][AVC AAC].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Skymoon-Raws] Shin Samurai-Den Yaiba - 02 [Viutv][Web-Dl][Cht][Srt][1080P][Avc Aac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Skymoon-Raws] Shin Samurai-Den Yaiba - 02 [Viutv][Web-Dl][Cht][Srt][1080P][Avc Aac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Skymoon-Raws] Shingeki no Kyojin - The Final Season - 19 [ViuTV][WEB-DL][CHT][1080p][AVC AAC][MP4+ASS]/[Skymoon-Raws] Shingeki no Kyojin - The Final Season - 19 [ViuTV][WEB-DL][1080p][AVC AAC].mp4", + "filename": "[Skymoon-Raws] Shingeki no Kyojin - The Final Season - 19 [ViuTV][WEB-DL][1080p][AVC AAC].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Skymoon-Raws] Shingeki No Kyojin - The Final Season - 19 [Viutv][Web-Dl][1080P][Avc Aac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Skymoon-Raws] Shingeki No Kyojin - The Final Season - 19 [Viutv][Web-Dl][1080P][Avc Aac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Mabors] Ookami to Koushinryou - Merchant Meets the Wise Wolf - 01 [1080p][HEVC].mp4", + "filename": "[Mabors] Ookami to Koushinryou - Merchant Meets the Wise Wolf - 01 [1080p][HEVC].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Mabors] Ookami To Koushinryou - Merchant Meets The Wise Wolf - 01 [1080P][Hevc]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Mabors] Ookami To Koushinryou - Merchant Meets The Wise Wolf - 01 [1080P][Hevc]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Nekomoe kissaten&LoliHouse] Ao no Hako - 06 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "filename": "[Nekomoe kissaten&LoliHouse] Ao no Hako - 06 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Nekomoe Kissaten&Lolihouse] Ao No Hako - 06 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Nekomoe Kissaten&Lolihouse] Ao No Hako - 06 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 最近的偵探真沒用 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 最近的偵探真沒用 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 最近的偵探真沒用 - 01 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 最近的偵探真沒用 - 01 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Nekomoe kissaten][Ninja Kamui][10][1080p][CHT].mp4", + "filename": "[Nekomoe kissaten][Ninja Kamui][10][1080p][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Nekomoe Kissaten][Ninja Kamui][10][1080P][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Nekomoe Kissaten][Ninja Kamui][10][1080P][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 無職英雄:技能什麼的毫無用處 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 無職英雄:技能什麼的毫無用處 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 無職英雄:技能什麼的毫無用處 - 01 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 無職英雄:技能什麼的毫無用處 - 01 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 我獨自升級 第二季 -起於闇影- - 23 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 我獨自升級 第二季 -起於闇影- - 23 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 我獨自升級 第二季 -起於闇影- - 23 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 我獨自升級 第二季 -起於闇影- - 23 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[BeanSub&FZSD][BLEACH_Sennen_Kessen-hen][27][BIG5][1080P][x264_AAC].mp4", + "filename": "[BeanSub&FZSD][BLEACH_Sennen_Kessen-hen][27][BIG5][1080P][x264_AAC].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Beansub&Fzsd][Bleach Sennen Kessen-Hen][27][Big5][1080P][X264 Aac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Beansub&Fzsd][Bleach Sennen Kessen-Hen][27][Big5][1080P][X264 Aac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Izure Saikyou no Renkinjutsushi - 11 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "filename": "[LoliHouse] Izure Saikyou no Renkinjutsushi - 11 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Izure Saikyou No Renkinjutsushi - 11 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Izure Saikyou No Renkinjutsushi - 11 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] Re:Monster - 09 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] Re:Monster - 09 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] Re:Monster - 09 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] Re:Monster - 09 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Skymoon-Raws] Mashle - 12 [ViuTV][WEB-DL][CHT][1080p][AVC AAC][MP4+ASS]/[Skymoon-Raws] Mashle - 12 [ViuTV][WEB-DL][1080p][AVC AAC].mp4", + "filename": "[Skymoon-Raws] Mashle - 12 [ViuTV][WEB-DL][1080p][AVC AAC].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Skymoon-Raws] Mashle - 12 [Viutv][Web-Dl][1080P][Avc Aac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Skymoon-Raws] Mashle - 12 [Viutv][Web-Dl][1080P][Avc Aac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Kamigami] Haikyuu!! S2 [BD 1080p x265 Ma10p AAC]/[Kamigami] Haikyuu!! S2 - 22 [BD 1080p x265 Ma10p AAC].mkv", + "filename": "[Kamigami] Haikyuu!! S2 - 22 [BD 1080p x265 Ma10p AAC].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Kamigami] Haikyuu!! S2 - 22 [Bd 1080P X265 Ma10P Aac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Kamigami] Haikyuu!! S2 - 22 [Bd 1080P X265 Ma10P Aac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Kamigami] Haikyuu!! S2 [BD 1080p x265 Ma10p AAC]/[Kamigami] Haikyuu!! S2 - 01 [BD 1080p x265 Ma10p AAC].mkv", + "filename": "[Kamigami] Haikyuu!! S2 - 01 [BD 1080p x265 Ma10p AAC].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Kamigami] Haikyuu!! S2 - 01 [Bd 1080P X265 Ma10P Aac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Kamigami] Haikyuu!! S2 - 01 [Bd 1080P X265 Ma10P Aac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Kamigami] Haikyuu!! S2 [BD 1080p x265 Ma10p AAC]/[Kamigami] Haikyuu!! S2 - 24 [BD 1080p x265 Ma10p AAC].mkv", + "filename": "[Kamigami] Haikyuu!! S2 - 24 [BD 1080p x265 Ma10p AAC].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Kamigami] Haikyuu!! S2 - 24 [Bd 1080P X265 Ma10P Aac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Kamigami] Haikyuu!! S2 - 24 [Bd 1080P X265 Ma10P Aac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Kamigami] Haikyuu!! S2 [BD 1080p x265 Ma10p AAC]/[Kamigami] Haikyuu!! S2 - 07 [BD 1080p x265 Ma10p AAC].mkv", + "filename": "[Kamigami] Haikyuu!! S2 - 07 [BD 1080p x265 Ma10p AAC].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Kamigami] Haikyuu!! S2 - 07 [Bd 1080P X265 Ma10P Aac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Kamigami] Haikyuu!! S2 - 07 [Bd 1080P X265 Ma10P Aac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Kamigami] Haikyuu!! S2 [BD 1080p x265 Ma10p AAC]/[Kamigami] Haikyuu!! S2 - 10 [BD 1080p x265 Ma10p AAC].mkv", + "filename": "[Kamigami] Haikyuu!! S2 - 10 [BD 1080p x265 Ma10p AAC].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Kamigami] Haikyuu!! S2 - 10 [Bd 1080P X265 Ma10P Aac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Kamigami] Haikyuu!! S2 - 10 [Bd 1080P X265 Ma10P Aac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Kamigami] Haikyuu!! S2 [BD 1080p x265 Ma10p AAC]/[Kamigami] Haikyuu!! S2 - 16 [BD 1080p x265 Ma10p AAC].mkv", + "filename": "[Kamigami] Haikyuu!! S2 - 16 [BD 1080p x265 Ma10p AAC].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Kamigami] Haikyuu!! S2 - 16 [Bd 1080P X265 Ma10P Aac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Kamigami] Haikyuu!! S2 - 16 [Bd 1080P X265 Ma10P Aac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Kamigami] Haikyuu!! S2 [BD 1080p x265 Ma10p AAC]/[Kamigami] Haikyuu!! S2 - 23 [BD 1080p x265 Ma10p AAC].mkv", + "filename": "[Kamigami] Haikyuu!! S2 - 23 [BD 1080p x265 Ma10p AAC].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Kamigami] Haikyuu!! S2 - 23 [Bd 1080P X265 Ma10P Aac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Kamigami] Haikyuu!! S2 - 23 [Bd 1080P X265 Ma10P Aac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Kamigami] Haikyuu!! S2 [BD 1080p x265 Ma10p AAC]/[Kamigami] Haikyuu!! S2 - 25 [BD 1080p x265 Ma10p AAC].mkv", + "filename": "[Kamigami] Haikyuu!! S2 - 25 [BD 1080p x265 Ma10p AAC].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Kamigami] Haikyuu!! S2 - 25 [Bd 1080P X265 Ma10P Aac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Kamigami] Haikyuu!! S2 - 25 [Bd 1080P X265 Ma10P Aac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Kamigami] Haikyuu!! S2 [BD 1080p x265 Ma10p AAC]/[Kamigami] Haikyuu!! S2 - 06 [BD 1080p x265 Ma10p AAC].mkv", + "filename": "[Kamigami] Haikyuu!! S2 - 06 [BD 1080p x265 Ma10p AAC].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Kamigami] Haikyuu!! S2 - 06 [Bd 1080P X265 Ma10P Aac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Kamigami] Haikyuu!! S2 - 06 [Bd 1080P X265 Ma10P Aac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Kamigami] Haikyuu!! S2 [BD 1080p x265 Ma10p AAC]/[Kamigami] Haikyuu!! S2 - 11 [BD 1080p x265 Ma10p AAC].mkv", + "filename": "[Kamigami] Haikyuu!! S2 - 11 [BD 1080p x265 Ma10p AAC].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Kamigami] Haikyuu!! S2 - 11 [Bd 1080P X265 Ma10P Aac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Kamigami] Haikyuu!! S2 - 11 [Bd 1080P X265 Ma10P Aac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Kamigami] Haikyuu!! S2 [BD 1080p x265 Ma10p AAC]/[Kamigami] Haikyuu!! S2 - 17 [BD 1080p x265 Ma10p AAC].mkv", + "filename": "[Kamigami] Haikyuu!! S2 - 17 [BD 1080p x265 Ma10p AAC].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Kamigami] Haikyuu!! S2 - 17 [Bd 1080P X265 Ma10P Aac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Kamigami] Haikyuu!! S2 - 17 [Bd 1080P X265 Ma10P Aac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Kamigami] Haikyuu!! S2 [BD 1080p x265 Ma10p AAC]/[Kamigami] Haikyuu!! S2 - 18 [BD 1080p x265 Ma10p AAC].mkv", + "filename": "[Kamigami] Haikyuu!! S2 - 18 [BD 1080p x265 Ma10p AAC].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Kamigami] Haikyuu!! S2 - 18 [Bd 1080P X265 Ma10P Aac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Kamigami] Haikyuu!! S2 - 18 [Bd 1080P X265 Ma10P Aac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Kamigami] Haikyuu!! S2 [BD 1080p x265 Ma10p AAC]/[Kamigami] Haikyuu!! S2 - 03 [BD 1080p x265 Ma10p AAC].mkv", + "filename": "[Kamigami] Haikyuu!! S2 - 03 [BD 1080p x265 Ma10p AAC].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Kamigami] Haikyuu!! S2 - 03 [Bd 1080P X265 Ma10P Aac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Kamigami] Haikyuu!! S2 - 03 [Bd 1080P X265 Ma10P Aac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Kamigami] Haikyuu!! S2 [BD 1080p x265 Ma10p AAC]/[Kamigami] Haikyuu!! S2 - 20 [BD 1080p x265 Ma10p AAC].mkv", + "filename": "[Kamigami] Haikyuu!! S2 - 20 [BD 1080p x265 Ma10p AAC].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Kamigami] Haikyuu!! S2 - 20 [Bd 1080P X265 Ma10P Aac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Kamigami] Haikyuu!! S2 - 20 [Bd 1080P X265 Ma10P Aac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Kamigami] Haikyuu!! S2 [BD 1080p x265 Ma10p AAC]/[Kamigami] Haikyuu!! S2 - 05 [BD 1080p x265 Ma10p AAC].mkv", + "filename": "[Kamigami] Haikyuu!! S2 - 05 [BD 1080p x265 Ma10p AAC].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Kamigami] Haikyuu!! S2 - 05 [Bd 1080P X265 Ma10P Aac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Kamigami] Haikyuu!! S2 - 05 [Bd 1080P X265 Ma10P Aac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Kamigami] Haikyuu!! S2 [BD 1080p x265 Ma10p AAC]/[Kamigami] Haikyuu!! S2 - 09 [BD 1080p x265 Ma10p AAC].mkv", + "filename": "[Kamigami] Haikyuu!! S2 - 09 [BD 1080p x265 Ma10p AAC].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Kamigami] Haikyuu!! S2 - 09 [Bd 1080P X265 Ma10P Aac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Kamigami] Haikyuu!! S2 - 09 [Bd 1080P X265 Ma10P Aac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Kamigami] Haikyuu!! S2 [BD 1080p x265 Ma10p AAC]/[Kamigami] Haikyuu!! S2 - 12 [BD 1080p x265 Ma10p AAC].mkv", + "filename": "[Kamigami] Haikyuu!! S2 - 12 [BD 1080p x265 Ma10p AAC].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Kamigami] Haikyuu!! S2 - 12 [Bd 1080P X265 Ma10P Aac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Kamigami] Haikyuu!! S2 - 12 [Bd 1080P X265 Ma10P Aac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Kamigami] Haikyuu!! S2 [BD 1080p x265 Ma10p AAC]/[Kamigami] Haikyuu!! S2 - 14 [BD 1080p x265 Ma10p AAC].mkv", + "filename": "[Kamigami] Haikyuu!! S2 - 14 [BD 1080p x265 Ma10p AAC].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Kamigami] Haikyuu!! S2 - 14 [Bd 1080P X265 Ma10P Aac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Kamigami] Haikyuu!! S2 - 14 [Bd 1080P X265 Ma10P Aac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Kamigami] Haikyuu!! S2 [BD 1080p x265 Ma10p AAC]/[Kamigami] Haikyuu!! S2 - 19 [BD 1080p x265 Ma10p AAC].mkv", + "filename": "[Kamigami] Haikyuu!! S2 - 19 [BD 1080p x265 Ma10p AAC].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Kamigami] Haikyuu!! S2 - 19 [Bd 1080P X265 Ma10P Aac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Kamigami] Haikyuu!! S2 - 19 [Bd 1080P X265 Ma10P Aac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Kamigami] Haikyuu!! S2 [BD 1080p x265 Ma10p AAC]/[Kamigami] Haikyuu!! S2 - 02 [BD 1080p x265 Ma10p AAC].mkv", + "filename": "[Kamigami] Haikyuu!! S2 - 02 [BD 1080p x265 Ma10p AAC].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Kamigami] Haikyuu!! S2 - 02 [Bd 1080P X265 Ma10P Aac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Kamigami] Haikyuu!! S2 - 02 [Bd 1080P X265 Ma10P Aac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Kamigami] Haikyuu!! S2 [BD 1080p x265 Ma10p AAC]/[Kamigami] Haikyuu!! S2 - 21 [BD 1080p x265 Ma10p AAC].mkv", + "filename": "[Kamigami] Haikyuu!! S2 - 21 [BD 1080p x265 Ma10p AAC].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Kamigami] Haikyuu!! S2 - 21 [Bd 1080P X265 Ma10P Aac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Kamigami] Haikyuu!! S2 - 21 [Bd 1080P X265 Ma10P Aac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Kamigami] Haikyuu!! S2 [BD 1080p x265 Ma10p AAC]/[Kamigami] Haikyuu!! S2 - 04 [BD 1080p x265 Ma10p AAC].mkv", + "filename": "[Kamigami] Haikyuu!! S2 - 04 [BD 1080p x265 Ma10p AAC].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Kamigami] Haikyuu!! S2 - 04 [Bd 1080P X265 Ma10P Aac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Kamigami] Haikyuu!! S2 - 04 [Bd 1080P X265 Ma10P Aac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Kamigami] Haikyuu!! S2 [BD 1080p x265 Ma10p AAC]/Bonus/[Kamigami] Haikyuu!! S2 - NCOP2 [BD 1080p x265 Ma10p AAC].mp4", + "filename": "[Kamigami] Haikyuu!! S2 - NCOP2 [BD 1080p x265 Ma10p AAC].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Kamigami] Haikyuu!! S2 - Ncop2 [Bd 1080P X265 Ma10P Aac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Kamigami] Haikyuu!! S2 - Ncop2 [Bd 1080P X265 Ma10P Aac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Kamigami] Haikyuu!! S2 [BD 1080p x265 Ma10p AAC]/Bonus/[Kamigami] Haikyuu!! S2 - NCED1 [BD 1080p x265 Ma10p AAC].mp4", + "filename": "[Kamigami] Haikyuu!! S2 - NCED1 [BD 1080p x265 Ma10p AAC].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Kamigami] Haikyuu!! S2 - Nced1 [Bd 1080P X265 Ma10P Aac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Kamigami] Haikyuu!! S2 - Nced1 [Bd 1080P X265 Ma10P Aac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Kamigami] Haikyuu!! S2 [BD 1080p x265 Ma10p AAC]/Bonus/[Kamigami] Haikyuu!! S2 - NCED2 [BD 1080p x265 Ma10p AAC].mp4", + "filename": "[Kamigami] Haikyuu!! S2 - NCED2 [BD 1080p x265 Ma10p AAC].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Kamigami] Haikyuu!! S2 - Nced2 [Bd 1080P X265 Ma10P Aac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Kamigami] Haikyuu!! S2 - Nced2 [Bd 1080P X265 Ma10P Aac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Kamigami] Haikyuu!! S2 [BD 1080p x265 Ma10p AAC]/Bonus/[Kamigami] Haikyuu!! S2 - NCOP1 [BD 1080p x265 Ma10p AAC].mp4", + "filename": "[Kamigami] Haikyuu!! S2 - NCOP1 [BD 1080p x265 Ma10p AAC].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Kamigami] Haikyuu!! S2 - Ncop1 [Bd 1080P X265 Ma10P Aac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Kamigami] Haikyuu!! S2 - Ncop1 [Bd 1080P X265 Ma10P Aac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Kamigami] Haikyuu!! S2 [BD 1080p x265 Ma10p AAC]/[Kamigami] Haikyuu!! S2 - 08 [BD 1080p x265 Ma10p AAC].mkv", + "filename": "[Kamigami] Haikyuu!! S2 - 08 [BD 1080p x265 Ma10p AAC].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Kamigami] Haikyuu!! S2 - 08 [Bd 1080P X265 Ma10P Aac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Kamigami] Haikyuu!! S2 - 08 [Bd 1080P X265 Ma10P Aac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Kamigami] Haikyuu!! S2 [BD 1080p x265 Ma10p AAC]/[Kamigami] Haikyuu!! S2 - 13 [BD 1080p x265 Ma10p AAC].mkv", + "filename": "[Kamigami] Haikyuu!! S2 - 13 [BD 1080p x265 Ma10p AAC].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Kamigami] Haikyuu!! S2 - 13 [Bd 1080P X265 Ma10P Aac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Kamigami] Haikyuu!! S2 - 13 [Bd 1080P X265 Ma10P Aac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Kamigami] Haikyuu!! S2 [BD 1080p x265 Ma10p AAC]/[Kamigami] Haikyuu!! S2 - 15 [BD 1080p x265 Ma10p AAC].mkv", + "filename": "[Kamigami] Haikyuu!! S2 - 15 [BD 1080p x265 Ma10p AAC].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Kamigami] Haikyuu!! S2 - 15 [Bd 1080P X265 Ma10P Aac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Kamigami] Haikyuu!! S2 - 15 [Bd 1080P X265 Ma10P Aac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 素材採集家的異世界旅行記 - 09 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 素材採集家的異世界旅行記 - 09 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 素材採集家的異世界旅行記 - 09 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 素材採集家的異世界旅行記 - 09 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Skymoon-Raws] Shin Samurai-den YAIBA - 04 [ViuTV][WEB-DL][CHT][SRT][1080p][AVC AAC].mkv", + "filename": "[Skymoon-Raws] Shin Samurai-den YAIBA - 04 [ViuTV][WEB-DL][CHT][SRT][1080p][AVC AAC].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Skymoon-Raws] Shin Samurai-Den Yaiba - 04 [Viutv][Web-Dl][Cht][Srt][1080P][Avc Aac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Skymoon-Raws] Shin Samurai-Den Yaiba - 04 [Viutv][Web-Dl][Cht][Srt][1080P][Avc Aac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[orion origin] Saikyou Tank no Meikyuu Kouryaku [07] [1080p] [H265 AAC] [CHT].mp4", + "filename": "[orion origin] Saikyou Tank no Meikyuu Kouryaku [07] [1080p] [H265 AAC] [CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Orion Origin] Saikyou Tank No Meikyuu Kouryaku [07] [1080P] [H265 Aac] [Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Orion Origin] Saikyou Tank No Meikyuu Kouryaku [07] [1080P] [H265 Aac] [Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Skymoon-Raws] Mushoku Tensei - 24 [ViuTV][WEB-DL][CHT][1080p][AVC AAC][MP4+ASS]/[Skymoon-Raws] Mushoku Tensei - 24 [ViuTV][WEB-DL][1080p][AVC AAC].mp4", + "filename": "[Skymoon-Raws] Mushoku Tensei - 24 [ViuTV][WEB-DL][1080p][AVC AAC].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Skymoon-Raws] Mushoku Tensei - 24 [Viutv][Web-Dl][1080P][Avc Aac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Skymoon-Raws] Mushoku Tensei - 24 [Viutv][Web-Dl][1080P][Avc Aac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 我和班上最討厭的女生結婚了。 - 09 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 我和班上最討厭的女生結婚了。 - 09 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 我和班上最討厭的女生結婚了。 - 09 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 我和班上最討厭的女生結婚了。 - 09 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 最後可以再拜託您一件事嗎? - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 最後可以再拜託您一件事嗎? - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 最後可以再拜託您一件事嗎? - 01 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 最後可以再拜託您一件事嗎? - 01 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "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", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 我與尼特女忍者的莫名同居生活 - 05 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 我與尼特女忍者的莫名同居生活 - 05 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Suzu-Kaze&POPGO][Dorohedoro][01-12+OVA][BDRip_1080P][X265_Main10p]/[Suzu-Kaze&POPGO][Dorohedoro][NCED2][BDRip_1080P][X265_Main10p_Flac](0D6039AE).mkv", + "filename": "[Suzu-Kaze&POPGO][Dorohedoro][NCED2][BDRip_1080P][X265_Main10p_Flac](0D6039AE).mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Suzu-Kaze&Popgo][Dorohedoro][Nced2][Bdrip 1080P][X265 Main10P Flac](0D6039Ae)", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Suzu-Kaze&Popgo][Dorohedoro][Nced2][Bdrip 1080P][X265 Main10P Flac](0D6039Ae)", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Suzu-Kaze&POPGO][Dorohedoro][01-12+OVA][BDRip_1080P][X265_Main10p]/[Suzu-Kaze&POPGO][Dorohedoro][CM03][BDRip_1080P][X265_Main10p_Flac](FCF167C2).mkv", + "filename": "[Suzu-Kaze&POPGO][Dorohedoro][CM03][BDRip_1080P][X265_Main10p_Flac](FCF167C2).mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Suzu-Kaze&Popgo][Dorohedoro][Cm03][Bdrip 1080P][X265 Main10P Flac](Fcf167C2)", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Suzu-Kaze&Popgo][Dorohedoro][Cm03][Bdrip 1080P][X265 Main10P Flac](Fcf167C2)", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Suzu-Kaze&POPGO][Dorohedoro][01-12+OVA][BDRip_1080P][X265_Main10p]/[Suzu-Kaze&POPGO][Dorohedoro][08][BDRip_1080P][X265_Main10p_Flac_Chap](4A5CFA78).mkv", + "filename": "[Suzu-Kaze&POPGO][Dorohedoro][08][BDRip_1080P][X265_Main10p_Flac_Chap](4A5CFA78).mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Suzu-Kaze&Popgo][Dorohedoro][08][Bdrip 1080P][X265 Main10P Flac Chap](4A5Cfa78)", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Suzu-Kaze&Popgo][Dorohedoro][08][Bdrip 1080P][X265 Main10P Flac Chap](4A5Cfa78)", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Suzu-Kaze&POPGO][Dorohedoro][01-12+OVA][BDRip_1080P][X265_Main10p]/[Suzu-Kaze&POPGO][Dorohedoro][NCED1_V2][BDRip_1080P][X265_Main10p_Flac](9415B2B4).mkv", + "filename": "[Suzu-Kaze&POPGO][Dorohedoro][NCED1_V2][BDRip_1080P][X265_Main10p_Flac](9415B2B4).mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Suzu-Kaze&Popgo][Dorohedoro][Nced1 V2][Bdrip 1080P][X265 Main10P Flac](9415B2B4)", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Suzu-Kaze&Popgo][Dorohedoro][Nced1 V2][Bdrip 1080P][X265 Main10P Flac](9415B2B4)", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Suzu-Kaze&POPGO][Dorohedoro][01-12+OVA][BDRip_1080P][X265_Main10p]/[Suzu-Kaze&POPGO][Dorohedoro][CM04][BDRip_1080P][X265_Main10p_Flac](54DE0D17).mkv", + "filename": "[Suzu-Kaze&POPGO][Dorohedoro][CM04][BDRip_1080P][X265_Main10p_Flac](54DE0D17).mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Suzu-Kaze&Popgo][Dorohedoro][Cm04][Bdrip 1080P][X265 Main10P Flac](54De0D17)", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Suzu-Kaze&Popgo][Dorohedoro][Cm04][Bdrip 1080P][X265 Main10P Flac](54De0D17)", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Suzu-Kaze&POPGO][Dorohedoro][01-12+OVA][BDRip_1080P][X265_Main10p]/[Suzu-Kaze&POPGO][Dorohedoro][11][BDRip_1080P][X265_Main10p_Flac_Chap](18087804).mkv", + "filename": "[Suzu-Kaze&POPGO][Dorohedoro][11][BDRip_1080P][X265_Main10p_Flac_Chap](18087804).mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Suzu-Kaze&Popgo][Dorohedoro][11][Bdrip 1080P][X265 Main10P Flac Chap](18087804)", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Suzu-Kaze&Popgo][Dorohedoro][11][Bdrip 1080P][X265 Main10P Flac Chap](18087804)", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Suzu-Kaze&POPGO][Dorohedoro][01-12+OVA][BDRip_1080P][X265_Main10p]/[Suzu-Kaze&POPGO][Dorohedoro][CM07][BDRip_1080P][X265_Main10p_Flac](FD280ABF).mkv", + "filename": "[Suzu-Kaze&POPGO][Dorohedoro][CM07][BDRip_1080P][X265_Main10p_Flac](FD280ABF).mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Suzu-Kaze&Popgo][Dorohedoro][Cm07][Bdrip 1080P][X265 Main10P Flac](Fd280Abf)", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Suzu-Kaze&Popgo][Dorohedoro][Cm07][Bdrip 1080P][X265 Main10P Flac](Fd280Abf)", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Suzu-Kaze&POPGO][Dorohedoro][01-12+OVA][BDRip_1080P][X265_Main10p]/[Suzu-Kaze&POPGO][Dorohedoro][05][BDRip_1080P][X265_Main10p_Flac_Chap](3893156C).mkv", + "filename": "[Suzu-Kaze&POPGO][Dorohedoro][05][BDRip_1080P][X265_Main10p_Flac_Chap](3893156C).mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Suzu-Kaze&Popgo][Dorohedoro][05][Bdrip 1080P][X265 Main10P Flac Chap](3893156C)", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Suzu-Kaze&Popgo][Dorohedoro][05][Bdrip 1080P][X265 Main10P Flac Chap](3893156C)", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Suzu-Kaze&POPGO][Dorohedoro][01-12+OVA][BDRip_1080P][X265_Main10p]/[Suzu-Kaze&POPGO][Dorohedoro][09][BDRip_1080P][X265_Main10p_Flac_Chap](5E350022).mkv", + "filename": "[Suzu-Kaze&POPGO][Dorohedoro][09][BDRip_1080P][X265_Main10p_Flac_Chap](5E350022).mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Suzu-Kaze&Popgo][Dorohedoro][09][Bdrip 1080P][X265 Main10P Flac Chap](5E350022)", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Suzu-Kaze&Popgo][Dorohedoro][09][Bdrip 1080P][X265 Main10P Flac Chap](5E350022)", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Suzu-Kaze&POPGO][Dorohedoro][01-12+OVA][BDRip_1080P][X265_Main10p]/[Suzu-Kaze&POPGO][Dorohedoro][03][BDRip_1080P][X265_Main10p_Flac_Chap](E230AFE4).mkv", + "filename": "[Suzu-Kaze&POPGO][Dorohedoro][03][BDRip_1080P][X265_Main10p_Flac_Chap](E230AFE4).mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Suzu-Kaze&Popgo][Dorohedoro][03][Bdrip 1080P][X265 Main10P Flac Chap](E230Afe4)", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Suzu-Kaze&Popgo][Dorohedoro][03][Bdrip 1080P][X265 Main10P Flac Chap](E230Afe4)", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Suzu-Kaze&POPGO][Dorohedoro][01-12+OVA][BDRip_1080P][X265_Main10p]/[Suzu-Kaze&POPGO][Dorohedoro][NCED1_V1][BDRip_1080P][X265_Main10p_Flac](EDC4435B).mkv", + "filename": "[Suzu-Kaze&POPGO][Dorohedoro][NCED1_V1][BDRip_1080P][X265_Main10p_Flac](EDC4435B).mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Suzu-Kaze&Popgo][Dorohedoro][Nced1 V1][Bdrip 1080P][X265 Main10P Flac](Edc4435B)", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Suzu-Kaze&Popgo][Dorohedoro][Nced1 V1][Bdrip 1080P][X265 Main10P Flac](Edc4435B)", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Suzu-Kaze&POPGO][Dorohedoro][01-12+OVA][BDRip_1080P][X265_Main10p]/[Suzu-Kaze&POPGO][Dorohedoro][01][BDRip_1080P][X265_Main10p_Flac_Chap](DA256438).mkv", + "filename": "[Suzu-Kaze&POPGO][Dorohedoro][01][BDRip_1080P][X265_Main10p_Flac_Chap](DA256438).mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Suzu-Kaze&Popgo][Dorohedoro][01][Bdrip 1080P][X265 Main10P Flac Chap](Da256438)", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Suzu-Kaze&Popgo][Dorohedoro][01][Bdrip 1080P][X265 Main10P Flac Chap](Da256438)", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Suzu-Kaze&POPGO][Dorohedoro][01-12+OVA][BDRip_1080P][X265_Main10p]/[Suzu-Kaze&POPGO][Dorohedoro][04][BDRip_1080P][X265_Main10p_Flac_Chap](45C8EE0A).mkv", + "filename": "[Suzu-Kaze&POPGO][Dorohedoro][04][BDRip_1080P][X265_Main10p_Flac_Chap](45C8EE0A).mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Suzu-Kaze&Popgo][Dorohedoro][04][Bdrip 1080P][X265 Main10P Flac Chap](45C8Ee0A)", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Suzu-Kaze&Popgo][Dorohedoro][04][Bdrip 1080P][X265 Main10P Flac Chap](45C8Ee0A)", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Suzu-Kaze&POPGO][Dorohedoro][01-12+OVA][BDRip_1080P][X265_Main10p]/[Suzu-Kaze&POPGO][Dorohedoro][12FIN][BDRip_1080P][X265_Main10p_Flac_Chap](A7595605).mkv", + "filename": "[Suzu-Kaze&POPGO][Dorohedoro][12FIN][BDRip_1080P][X265_Main10p_Flac_Chap](A7595605).mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Suzu-Kaze&Popgo][Dorohedoro][12Fin][Bdrip 1080P][X265 Main10P Flac Chap](A7595605)", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Suzu-Kaze&Popgo][Dorohedoro][12Fin][Bdrip 1080P][X265 Main10P Flac Chap](A7595605)", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Suzu-Kaze&POPGO][Dorohedoro][01-12+OVA][BDRip_1080P][X265_Main10p]/[Suzu-Kaze&POPGO][Dorohedoro][OVA][BDRip_1080P][X265_Main10p_Flac_Chap](ABE325F9).mkv", + "filename": "[Suzu-Kaze&POPGO][Dorohedoro][OVA][BDRip_1080P][X265_Main10p_Flac_Chap](ABE325F9).mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Suzu-Kaze&Popgo][Dorohedoro][Ova][Bdrip 1080P][X265 Main10P Flac Chap](Abe325F9)", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Suzu-Kaze&Popgo][Dorohedoro][Ova][Bdrip 1080P][X265 Main10P Flac Chap](Abe325F9)", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Suzu-Kaze&POPGO][Dorohedoro][01-12+OVA][BDRip_1080P][X265_Main10p]/[Suzu-Kaze&POPGO][Dorohedoro][NCED3][BDRip_1080P][X265_Main10p_Flac](E090A971).mkv", + "filename": "[Suzu-Kaze&POPGO][Dorohedoro][NCED3][BDRip_1080P][X265_Main10p_Flac](E090A971).mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Suzu-Kaze&Popgo][Dorohedoro][Nced3][Bdrip 1080P][X265 Main10P Flac](E090A971)", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Suzu-Kaze&Popgo][Dorohedoro][Nced3][Bdrip 1080P][X265 Main10P Flac](E090A971)", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Suzu-Kaze&POPGO][Dorohedoro][01-12+OVA][BDRip_1080P][X265_Main10p]/[Suzu-Kaze&POPGO][Dorohedoro][NCED4][BDRip_1080P][X265_Main10p_Flac](D1063420).mkv", + "filename": "[Suzu-Kaze&POPGO][Dorohedoro][NCED4][BDRip_1080P][X265_Main10p_Flac](D1063420).mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Suzu-Kaze&Popgo][Dorohedoro][Nced4][Bdrip 1080P][X265 Main10P Flac](D1063420)", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Suzu-Kaze&Popgo][Dorohedoro][Nced4][Bdrip 1080P][X265 Main10P Flac](D1063420)", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Suzu-Kaze&POPGO][Dorohedoro][01-12+OVA][BDRip_1080P][X265_Main10p]/[Suzu-Kaze&POPGO][Dorohedoro][CM02][BDRip_1080P][X265_Main10p_Flac](1C0E5914).mkv", + "filename": "[Suzu-Kaze&POPGO][Dorohedoro][CM02][BDRip_1080P][X265_Main10p_Flac](1C0E5914).mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Suzu-Kaze&Popgo][Dorohedoro][Cm02][Bdrip 1080P][X265 Main10P Flac](1C0E5914)", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Suzu-Kaze&Popgo][Dorohedoro][Cm02][Bdrip 1080P][X265 Main10P Flac](1C0E5914)", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Suzu-Kaze&POPGO][Dorohedoro][01-12+OVA][BDRip_1080P][X265_Main10p]/[Suzu-Kaze&POPGO][Dorohedoro][10][BDRip_1080P][X265_Main10p_Flac_Chap](59036AFC).mkv", + "filename": "[Suzu-Kaze&POPGO][Dorohedoro][10][BDRip_1080P][X265_Main10p_Flac_Chap](59036AFC).mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Suzu-Kaze&Popgo][Dorohedoro][10][Bdrip 1080P][X265 Main10P Flac Chap](59036Afc)", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Suzu-Kaze&Popgo][Dorohedoro][10][Bdrip 1080P][X265 Main10P Flac Chap](59036Afc)", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Suzu-Kaze&POPGO][Dorohedoro][01-12+OVA][BDRip_1080P][X265_Main10p]/[Suzu-Kaze&POPGO][Dorohedoro][02][BDRip_1080P][X265_Main10p_Flac_Chap](B61E145F).mkv", + "filename": "[Suzu-Kaze&POPGO][Dorohedoro][02][BDRip_1080P][X265_Main10p_Flac_Chap](B61E145F).mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Suzu-Kaze&Popgo][Dorohedoro][02][Bdrip 1080P][X265 Main10P Flac Chap](B61E145F)", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Suzu-Kaze&Popgo][Dorohedoro][02][Bdrip 1080P][X265 Main10P Flac Chap](B61E145F)", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Suzu-Kaze&POPGO][Dorohedoro][01-12+OVA][BDRip_1080P][X265_Main10p]/[Suzu-Kaze&POPGO][Dorohedoro][NCOP][BDRip_1080P][X265_Main10p_Flac](9E15AF32).mkv", + "filename": "[Suzu-Kaze&POPGO][Dorohedoro][NCOP][BDRip_1080P][X265_Main10p_Flac](9E15AF32).mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Suzu-Kaze&Popgo][Dorohedoro][Ncop][Bdrip 1080P][X265 Main10P Flac](9E15Af32)", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Suzu-Kaze&Popgo][Dorohedoro][Ncop][Bdrip 1080P][X265 Main10P Flac](9E15Af32)", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Suzu-Kaze&POPGO][Dorohedoro][01-12+OVA][BDRip_1080P][X265_Main10p]/[Suzu-Kaze&POPGO][Dorohedoro][07][BDRip_1080P][X265_Main10p_Flac_Chap](2FFC6945).mkv", + "filename": "[Suzu-Kaze&POPGO][Dorohedoro][07][BDRip_1080P][X265_Main10p_Flac_Chap](2FFC6945).mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Suzu-Kaze&Popgo][Dorohedoro][07][Bdrip 1080P][X265 Main10P Flac Chap](2Ffc6945)", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Suzu-Kaze&Popgo][Dorohedoro][07][Bdrip 1080P][X265 Main10P Flac Chap](2Ffc6945)", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Suzu-Kaze&POPGO][Dorohedoro][01-12+OVA][BDRip_1080P][X265_Main10p]/[Suzu-Kaze&POPGO][Dorohedoro][CM01][BDRip_1080P][X265_Main10p_Flac](796324BF).mkv", + "filename": "[Suzu-Kaze&POPGO][Dorohedoro][CM01][BDRip_1080P][X265_Main10p_Flac](796324BF).mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Suzu-Kaze&Popgo][Dorohedoro][Cm01][Bdrip 1080P][X265 Main10P Flac](796324Bf)", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Suzu-Kaze&Popgo][Dorohedoro][Cm01][Bdrip 1080P][X265 Main10P Flac](796324Bf)", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Suzu-Kaze&POPGO][Dorohedoro][01-12+OVA][BDRip_1080P][X265_Main10p]/[Suzu-Kaze&POPGO][Dorohedoro][CM05][BDRip_1080P][X265_Main10p_Flac](4CF0025D).mkv", + "filename": "[Suzu-Kaze&POPGO][Dorohedoro][CM05][BDRip_1080P][X265_Main10p_Flac](4CF0025D).mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Suzu-Kaze&Popgo][Dorohedoro][Cm05][Bdrip 1080P][X265 Main10P Flac](4Cf0025D)", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Suzu-Kaze&Popgo][Dorohedoro][Cm05][Bdrip 1080P][X265 Main10P Flac](4Cf0025D)", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Suzu-Kaze&POPGO][Dorohedoro][01-12+OVA][BDRip_1080P][X265_Main10p]/[Suzu-Kaze&POPGO][Dorohedoro][NCED5][BDRip_1080P][X265_Main10p_Flac](2051A28C).mkv", + "filename": "[Suzu-Kaze&POPGO][Dorohedoro][NCED5][BDRip_1080P][X265_Main10p_Flac](2051A28C).mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Suzu-Kaze&Popgo][Dorohedoro][Nced5][Bdrip 1080P][X265 Main10P Flac](2051A28C)", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Suzu-Kaze&Popgo][Dorohedoro][Nced5][Bdrip 1080P][X265 Main10P Flac](2051A28C)", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Suzu-Kaze&POPGO][Dorohedoro][01-12+OVA][BDRip_1080P][X265_Main10p]/[Suzu-Kaze&POPGO][Dorohedoro][CM06][BDRip_1080P][X265_Main10p_Flac](75CABC4E).mkv", + "filename": "[Suzu-Kaze&POPGO][Dorohedoro][CM06][BDRip_1080P][X265_Main10p_Flac](75CABC4E).mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Suzu-Kaze&Popgo][Dorohedoro][Cm06][Bdrip 1080P][X265 Main10P Flac](75Cabc4E)", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Suzu-Kaze&Popgo][Dorohedoro][Cm06][Bdrip 1080P][X265 Main10P Flac](75Cabc4E)", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Suzu-Kaze&POPGO][Dorohedoro][01-12+OVA][BDRip_1080P][X265_Main10p]/[Suzu-Kaze&POPGO][Dorohedoro][06][BDRip_1080P][X265_Main10p_Flac_Chap](1A184C3A).mkv", + "filename": "[Suzu-Kaze&POPGO][Dorohedoro][06][BDRip_1080P][X265_Main10p_Flac_Chap](1A184C3A).mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Suzu-Kaze&Popgo][Dorohedoro][06][Bdrip 1080P][X265 Main10P Flac Chap](1A184C3A)", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Suzu-Kaze&Popgo][Dorohedoro][06][Bdrip 1080P][X265 Main10P Flac Chap](1A184C3A)", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Suzu-Kaze&POPGO][Dorohedoro][01-12+OVA][BDRip_1080P][X265_Main10p]/[Suzu-Kaze&POPGO][Dorohedoro][NCED6_EP12][BDRip_1080P][X265_Main10p_Flac](3E64C67F).mkv", + "filename": "[Suzu-Kaze&POPGO][Dorohedoro][NCED6_EP12][BDRip_1080P][X265_Main10p_Flac](3E64C67F).mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Suzu-Kaze&Popgo][Dorohedoro][Nced6 Ep12][Bdrip 1080P][X265 Main10P Flac](3E64C67F)", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Suzu-Kaze&Popgo][Dorohedoro][Nced6 Ep12][Bdrip 1080P][X265 Main10P Flac](3E64C67F)", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 新人大叔冒險者,被最強隊伍操到死成無敵 - 03 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 新人大叔冒險者,被最強隊伍操到死成無敵 - 03 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 新人大叔冒險者,被最強隊伍操到死成無敵 - 03 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 新人大叔冒險者,被最強隊伍操到死成無敵 - 03 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] Re:Monster - 12 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] Re:Monster - 12 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] Re:Monster - 12 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] Re:Monster - 12 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Sword Art Online Alternative - Gun Gale Online II - 03 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "filename": "[LoliHouse] Sword Art Online Alternative - Gun Gale Online II - 03 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Sword Art Online Alternative - Gun Gale Online Ii - 03 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Sword Art Online Alternative - Gun Gale Online Ii - 03 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[BeanSub&FZSD][Jigokuraku][15][GB][1080P][x264_AAC].mp4", + "filename": "[BeanSub&FZSD][Jigokuraku][15][GB][1080P][x264_AAC].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Beansub&Fzsd][Jigokuraku][15][Gb][1080P][X264 Aac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Beansub&Fzsd][Jigokuraku][15][Gb][1080P][X264 Aac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 盾之勇者成名錄 Season 4 - 04 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 盾之勇者成名錄 Season 4 - 04 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 盾之勇者成名錄 Season 4 - 04 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 盾之勇者成名錄 Season 4 - 04 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 身為暗殺者的我明顯比勇者還強 - 10 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 身為暗殺者的我明顯比勇者還強 - 10 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 身為暗殺者的我明顯比勇者還強 - 10 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 身為暗殺者的我明顯比勇者還強 - 10 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 素材採集家的異世界旅行記 - 12 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 素材採集家的異世界旅行記 - 12 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 素材採集家的異世界旅行記 - 12 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 素材採集家的異世界旅行記 - 12 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Tensei Shitara Slime Datta Ken 3rd Season - 65.5 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "filename": "[LoliHouse] Tensei Shitara Slime Datta Ken 3rd Season - 65.5 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Tensei Shitara Slime Datta Ken 3Rd Season - 65 5 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Tensei Shitara Slime Datta Ken 3Rd Season - 65 5 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 我要【招架】一切~反誤解的世界最強想成為冒險家~ - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 我要【招架】一切~反誤解的世界最強想成為冒險家~ - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 我要【招架】一切~反誤解的世界最強想成為冒險家~ - 01 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 我要【招架】一切~反誤解的世界最強想成為冒險家~ - 01 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/無職転生 〜異世界行ったら本気だす〜 2021 1080P BDrip HEVC-YUV444 FLAC SUP-SweetDreamDay & AI-Raws/無職転生 〜異世界行ったら本気だす〜 EP23 (BDrip HEVC-YUV444 FLAC SUP).mkv", + "filename": "無職転生 〜異世界行ったら本気だす〜 EP23 (BDrip HEVC-YUV444 FLAC SUP).mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "無職転生 〜異世界行ったら本気だす〜 Ep23 (Bdrip Hevc-Yuv444 Flac Sup)", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "無職転生 〜異世界行ったら本気だす〜 Ep23 (Bdrip Hevc-Yuv444 Flac Sup)", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/無職転生 〜異世界行ったら本気だす〜 2021 1080P BDrip HEVC-YUV444 FLAC SUP-SweetDreamDay & AI-Raws/無職転生 〜異世界行ったら本気だす〜 EP13 (BDrip HEVC-YUV444 FLAC SUP).mkv", + "filename": "無職転生 〜異世界行ったら本気だす〜 EP13 (BDrip HEVC-YUV444 FLAC SUP).mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "無職転生 〜異世界行ったら本気だす〜 Ep13 (Bdrip Hevc-Yuv444 Flac Sup)", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "無職転生 〜異世界行ったら本気だす〜 Ep13 (Bdrip Hevc-Yuv444 Flac Sup)", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/無職転生 〜異世界行ったら本気だす〜 2021 1080P BDrip HEVC-YUV444 FLAC SUP-SweetDreamDay & AI-Raws/無職転生 〜異世界行ったら本気だす〜 EP04 (BDrip HEVC-YUV444 FLAC SUP).mkv", + "filename": "無職転生 〜異世界行ったら本気だす〜 EP04 (BDrip HEVC-YUV444 FLAC SUP).mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "無職転生 〜異世界行ったら本気だす〜 Ep04 (Bdrip Hevc-Yuv444 Flac Sup)", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "無職転生 〜異世界行ったら本気だす〜 Ep04 (Bdrip Hevc-Yuv444 Flac Sup)", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/無職転生 〜異世界行ったら本気だす〜 2021 1080P BDrip HEVC-YUV444 FLAC SUP-SweetDreamDay & AI-Raws/無職転生 〜異世界行ったら本気だす〜 EP09 (BDrip HEVC-YUV444 FLAC SUP).mkv", + "filename": "無職転生 〜異世界行ったら本気だす〜 EP09 (BDrip HEVC-YUV444 FLAC SUP).mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "無職転生 〜異世界行ったら本気だす〜 Ep09 (Bdrip Hevc-Yuv444 Flac Sup)", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "無職転生 〜異世界行ったら本気だす〜 Ep09 (Bdrip Hevc-Yuv444 Flac Sup)", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/無職転生 〜異世界行ったら本気だす〜 2021 1080P BDrip HEVC-YUV444 FLAC SUP-SweetDreamDay & AI-Raws/無職転生 〜異世界行ったら本気だす〜 EP17 (BDrip HEVC-YUV444 FLAC SUP).mkv", + "filename": "無職転生 〜異世界行ったら本気だす〜 EP17 (BDrip HEVC-YUV444 FLAC SUP).mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "無職転生 〜異世界行ったら本気だす〜 Ep17 (Bdrip Hevc-Yuv444 Flac Sup)", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "無職転生 〜異世界行ったら本気だす〜 Ep17 (Bdrip Hevc-Yuv444 Flac Sup)", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/無職転生 〜異世界行ったら本気だす〜 2021 1080P BDrip HEVC-YUV444 FLAC SUP-SweetDreamDay & AI-Raws/無職転生 〜異世界行ったら本気だす〜 EP01 (BDrip HEVC-YUV444 FLAC SUP).mkv", + "filename": "無職転生 〜異世界行ったら本気だす〜 EP01 (BDrip HEVC-YUV444 FLAC SUP).mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "無職転生 〜異世界行ったら本気だす〜 Ep01 (Bdrip Hevc-Yuv444 Flac Sup)", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "無職転生 〜異世界行ったら本気だす〜 Ep01 (Bdrip Hevc-Yuv444 Flac Sup)", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/無職転生 〜異世界行ったら本気だす〜 2021 1080P BDrip HEVC-YUV444 FLAC SUP-SweetDreamDay & AI-Raws/無職転生 〜異世界行ったら本気だす〜 EP16 (BDrip HEVC-YUV444 FLAC SUP).mkv", + "filename": "無職転生 〜異世界行ったら本気だす〜 EP16 (BDrip HEVC-YUV444 FLAC SUP).mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "無職転生 〜異世界行ったら本気だす〜 Ep16 (Bdrip Hevc-Yuv444 Flac Sup)", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "無職転生 〜異世界行ったら本気だす〜 Ep16 (Bdrip Hevc-Yuv444 Flac Sup)", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/無職転生 〜異世界行ったら本気だす〜 2021 1080P BDrip HEVC-YUV444 FLAC SUP-SweetDreamDay & AI-Raws/無職転生 〜異世界行ったら本気だす〜 EP08 (BDrip HEVC-YUV444 FLAC SUP).mkv", + "filename": "無職転生 〜異世界行ったら本気だす〜 EP08 (BDrip HEVC-YUV444 FLAC SUP).mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "無職転生 〜異世界行ったら本気だす〜 Ep08 (Bdrip Hevc-Yuv444 Flac Sup)", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "無職転生 〜異世界行ったら本気だす〜 Ep08 (Bdrip Hevc-Yuv444 Flac Sup)", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/無職転生 〜異世界行ったら本気だす〜 2021 1080P BDrip HEVC-YUV444 FLAC SUP-SweetDreamDay & AI-Raws/映像特典/ノンクレジットOP#11 (BDrip HEVC-YUV444 FLAC).mkv", + "filename": "ノンクレジットOP#11 (BDrip HEVC-YUV444 FLAC).mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "ノンクレジットOp#11 (Bdrip Hevc-Yuv444 Flac)", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "ノンクレジットOp#11 (Bdrip Hevc-Yuv444 Flac)", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/無職転生 〜異世界行ったら本気だす〜 2021 1080P BDrip HEVC-YUV444 FLAC SUP-SweetDreamDay & AI-Raws/映像特典/ノンクレジットOP#03 (BDrip HEVC-YUV444 FLAC).mkv", + "filename": "ノンクレジットOP#03 (BDrip HEVC-YUV444 FLAC).mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "ノンクレジットOp#03 (Bdrip Hevc-Yuv444 Flac)", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "ノンクレジットOp#03 (Bdrip Hevc-Yuv444 Flac)", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/無職転生 〜異世界行ったら本気だす〜 2021 1080P BDrip HEVC-YUV444 FLAC SUP-SweetDreamDay & AI-Raws/映像特典/ノンクレジットED#22 (BDrip HEVC-YUV444 FLAC).mkv", + "filename": "ノンクレジットED#22 (BDrip HEVC-YUV444 FLAC).mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "ノンクレジットEd#22 (Bdrip Hevc-Yuv444 Flac)", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "ノンクレジットEd#22 (Bdrip Hevc-Yuv444 Flac)", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/無職転生 〜異世界行ったら本気だす〜 2021 1080P BDrip HEVC-YUV444 FLAC SUP-SweetDreamDay & AI-Raws/映像特典/ノンクレジットOP#10 (BDrip HEVC-YUV444 FLAC).mkv", + "filename": "ノンクレジットOP#10 (BDrip HEVC-YUV444 FLAC).mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "ノンクレジットOp#10 (Bdrip Hevc-Yuv444 Flac)", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "ノンクレジットOp#10 (Bdrip Hevc-Yuv444 Flac)", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/無職転生 〜異世界行ったら本気だす〜 2021 1080P BDrip HEVC-YUV444 FLAC SUP-SweetDreamDay & AI-Raws/映像特典/ノンクレジットED#08 (BDrip HEVC-YUV444 FLAC).mkv", + "filename": "ノンクレジットED#08 (BDrip HEVC-YUV444 FLAC).mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "ノンクレジットEd#08 (Bdrip Hevc-Yuv444 Flac)", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "ノンクレジットEd#08 (Bdrip Hevc-Yuv444 Flac)", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/無職転生 〜異世界行ったら本気だす〜 2021 1080P BDrip HEVC-YUV444 FLAC SUP-SweetDreamDay & AI-Raws/映像特典/ノンクレジットED#23 (BDrip HEVC-YUV444 FLAC).mkv", + "filename": "ノンクレジットED#23 (BDrip HEVC-YUV444 FLAC).mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "ノンクレジットEd#23 (Bdrip Hevc-Yuv444 Flac)", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "ノンクレジットEd#23 (Bdrip Hevc-Yuv444 Flac)", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/無職転生 〜異世界行ったら本気だす〜 2021 1080P BDrip HEVC-YUV444 FLAC SUP-SweetDreamDay & AI-Raws/映像特典/ノンクレジットOP#02 (BDrip HEVC-YUV444 FLAC).mkv", + "filename": "ノンクレジットOP#02 (BDrip HEVC-YUV444 FLAC).mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "ノンクレジットOp#02 (Bdrip Hevc-Yuv444 Flac)", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "ノンクレジットOp#02 (Bdrip Hevc-Yuv444 Flac)", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/無職転生 〜異世界行ったら本気だす〜 2021 1080P BDrip HEVC-YUV444 FLAC SUP-SweetDreamDay & AI-Raws/映像特典/ノンクレジットED#17 (BDrip HEVC-YUV444 FLAC).mkv", + "filename": "ノンクレジットED#17 (BDrip HEVC-YUV444 FLAC).mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "ノンクレジットEd#17 (Bdrip Hevc-Yuv444 Flac)", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "ノンクレジットEd#17 (Bdrip Hevc-Yuv444 Flac)", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/無職転生 〜異世界行ったら本気だす〜 2021 1080P BDrip HEVC-YUV444 FLAC SUP-SweetDreamDay & AI-Raws/映像特典/ノンクレジットOP#13 (BDrip HEVC-YUV444 FLAC).mkv", + "filename": "ノンクレジットOP#13 (BDrip HEVC-YUV444 FLAC).mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "ノンクレジットOp#13 (Bdrip Hevc-Yuv444 Flac)", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "ノンクレジットOp#13 (Bdrip Hevc-Yuv444 Flac)", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/無職転生 〜異世界行ったら本気だす〜 2021 1080P BDrip HEVC-YUV444 FLAC SUP-SweetDreamDay & AI-Raws/映像特典/ノンクレジットOP#12 (BDrip HEVC-YUV444 FLAC).mkv", + "filename": "ノンクレジットOP#12 (BDrip HEVC-YUV444 FLAC).mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "ノンクレジットOp#12 (Bdrip Hevc-Yuv444 Flac)", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "ノンクレジットOp#12 (Bdrip Hevc-Yuv444 Flac)", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/無職転生 〜異世界行ったら本気だす〜 2021 1080P BDrip HEVC-YUV444 FLAC SUP-SweetDreamDay & AI-Raws/映像特典/ノンクレジットED (BDrip HEVC-YUV444 FLAC).mkv", + "filename": "ノンクレジットED (BDrip HEVC-YUV444 FLAC).mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "ノンクレジットEd (Bdrip Hevc-Yuv444 Flac)", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "ノンクレジットEd (Bdrip Hevc-Yuv444 Flac)", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/無職転生 〜異世界行ったら本気だす〜 2021 1080P BDrip HEVC-YUV444 FLAC SUP-SweetDreamDay & AI-Raws/映像特典/ノンクレジットOP#06 (BDrip HEVC-YUV444 FLAC).mkv", + "filename": "ノンクレジットOP#06 (BDrip HEVC-YUV444 FLAC).mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "ノンクレジットOp#06 (Bdrip Hevc-Yuv444 Flac)", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "ノンクレジットOp#06 (Bdrip Hevc-Yuv444 Flac)", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/無職転生 〜異世界行ったら本気だす〜 2021 1080P BDrip HEVC-YUV444 FLAC SUP-SweetDreamDay & AI-Raws/映像特典/ノンクレジットOP#23 (BDrip HEVC-YUV444 FLAC).mkv", + "filename": "ノンクレジットOP#23 (BDrip HEVC-YUV444 FLAC).mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "ノンクレジットOp#23 (Bdrip Hevc-Yuv444 Flac)", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "ノンクレジットOp#23 (Bdrip Hevc-Yuv444 Flac)", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/無職転生 〜異世界行ったら本気だす〜 2021 1080P BDrip HEVC-YUV444 FLAC SUP-SweetDreamDay & AI-Raws/映像特典/ノンクレジットOP#14 (BDrip HEVC-YUV444 FLAC).mkv", + "filename": "ノンクレジットOP#14 (BDrip HEVC-YUV444 FLAC).mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "ノンクレジットOp#14 (Bdrip Hevc-Yuv444 Flac)", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "ノンクレジットOp#14 (Bdrip Hevc-Yuv444 Flac)", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/無職転生 〜異世界行ったら本気だす〜 2021 1080P BDrip HEVC-YUV444 FLAC SUP-SweetDreamDay & AI-Raws/映像特典/ノンクレジットOP#08 (BDrip HEVC-YUV444 FLAC).mkv", + "filename": "ノンクレジットOP#08 (BDrip HEVC-YUV444 FLAC).mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "ノンクレジットOp#08 (Bdrip Hevc-Yuv444 Flac)", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "ノンクレジットOp#08 (Bdrip Hevc-Yuv444 Flac)", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/無職転生 〜異世界行ったら本気だす〜 2021 1080P BDrip HEVC-YUV444 FLAC SUP-SweetDreamDay & AI-Raws/映像特典/ノンクレジットOP#07 (BDrip HEVC-YUV444 FLAC).mkv", + "filename": "ノンクレジットOP#07 (BDrip HEVC-YUV444 FLAC).mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "ノンクレジットOp#07 (Bdrip Hevc-Yuv444 Flac)", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "ノンクレジットOp#07 (Bdrip Hevc-Yuv444 Flac)", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/無職転生 〜異世界行ったら本気だす〜 2021 1080P BDrip HEVC-YUV444 FLAC SUP-SweetDreamDay & AI-Raws/映像特典/ノンクレジットED#11 (BDrip HEVC-YUV444 FLAC).mkv", + "filename": "ノンクレジットED#11 (BDrip HEVC-YUV444 FLAC).mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "ノンクレジットEd#11 (Bdrip Hevc-Yuv444 Flac)", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "ノンクレジットEd#11 (Bdrip Hevc-Yuv444 Flac)", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/無職転生 〜異世界行ったら本気だす〜 2021 1080P BDrip HEVC-YUV444 FLAC SUP-SweetDreamDay & AI-Raws/映像特典/ノンクレジットOP#09 (BDrip HEVC-YUV444 FLAC).mkv", + "filename": "ノンクレジットOP#09 (BDrip HEVC-YUV444 FLAC).mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "ノンクレジットOp#09 (Bdrip Hevc-Yuv444 Flac)", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "ノンクレジットOp#09 (Bdrip Hevc-Yuv444 Flac)", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/無職転生 〜異世界行ったら本気だす〜 2021 1080P BDrip HEVC-YUV444 FLAC SUP-SweetDreamDay & AI-Raws/映像特典/ノンクレジットOP#15 (BDrip HEVC-YUV444 FLAC).mkv", + "filename": "ノンクレジットOP#15 (BDrip HEVC-YUV444 FLAC).mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "ノンクレジットOp#15 (Bdrip Hevc-Yuv444 Flac)", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "ノンクレジットOp#15 (Bdrip Hevc-Yuv444 Flac)", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/無職転生 〜異世界行ったら本気だす〜 2021 1080P BDrip HEVC-YUV444 FLAC SUP-SweetDreamDay & AI-Raws/映像特典/ノンクレジットOP#22 (BDrip HEVC-YUV444 FLAC).mkv", + "filename": "ノンクレジットOP#22 (BDrip HEVC-YUV444 FLAC).mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "ノンクレジットOp#22 (Bdrip Hevc-Yuv444 Flac)", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "ノンクレジットOp#22 (Bdrip Hevc-Yuv444 Flac)", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/無職転生 〜異世界行ったら本気だす〜 2021 1080P BDrip HEVC-YUV444 FLAC SUP-SweetDreamDay & AI-Raws/映像特典/ノンクレジットED2 (BDrip HEVC-YUV444 FLAC).mkv", + "filename": "ノンクレジットED2 (BDrip HEVC-YUV444 FLAC).mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "ノンクレジットEd2 (Bdrip Hevc-Yuv444 Flac)", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "ノンクレジットEd2 (Bdrip Hevc-Yuv444 Flac)", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/無職転生 〜異世界行ったら本気だす〜 2021 1080P BDrip HEVC-YUV444 FLAC SUP-SweetDreamDay & AI-Raws/映像特典/ノンクレジットOP#21 (BDrip HEVC-YUV444 FLAC).mkv", + "filename": "ノンクレジットOP#21 (BDrip HEVC-YUV444 FLAC).mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "ノンクレジットOp#21 (Bdrip Hevc-Yuv444 Flac)", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "ノンクレジットOp#21 (Bdrip Hevc-Yuv444 Flac)", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/無職転生 〜異世界行ったら本気だす〜 2021 1080P BDrip HEVC-YUV444 FLAC SUP-SweetDreamDay & AI-Raws/映像特典/ノンクレジットOP#16 (BDrip HEVC-YUV444 FLAC).mkv", + "filename": "ノンクレジットOP#16 (BDrip HEVC-YUV444 FLAC).mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "ノンクレジットOp#16 (Bdrip Hevc-Yuv444 Flac)", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "ノンクレジットOp#16 (Bdrip Hevc-Yuv444 Flac)", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/無職転生 〜異世界行ったら本気だす〜 2021 1080P BDrip HEVC-YUV444 FLAC SUP-SweetDreamDay & AI-Raws/映像特典/ノンクレジットOP#04 (BDrip HEVC-YUV444 FLAC).mkv", + "filename": "ノンクレジットOP#04 (BDrip HEVC-YUV444 FLAC).mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "ノンクレジットOp#04 (Bdrip Hevc-Yuv444 Flac)", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "ノンクレジットOp#04 (Bdrip Hevc-Yuv444 Flac)", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/無職転生 〜異世界行ったら本気だす〜 2021 1080P BDrip HEVC-YUV444 FLAC SUP-SweetDreamDay & AI-Raws/映像特典/ノンクレジットOP#18 (BDrip HEVC-YUV444 FLAC).mkv", + "filename": "ノンクレジットOP#18 (BDrip HEVC-YUV444 FLAC).mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "ノンクレジットOp#18 (Bdrip Hevc-Yuv444 Flac)", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "ノンクレジットOp#18 (Bdrip Hevc-Yuv444 Flac)", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/無職転生 〜異世界行ったら本気だす〜 2021 1080P BDrip HEVC-YUV444 FLAC SUP-SweetDreamDay & AI-Raws/映像特典/ノンクレジットOP#17 (BDrip HEVC-YUV444 FLAC).mkv", + "filename": "ノンクレジットOP#17 (BDrip HEVC-YUV444 FLAC).mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "ノンクレジットOp#17 (Bdrip Hevc-Yuv444 Flac)", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "ノンクレジットOp#17 (Bdrip Hevc-Yuv444 Flac)", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/無職転生 〜異世界行ったら本気だす〜 2021 1080P BDrip HEVC-YUV444 FLAC SUP-SweetDreamDay & AI-Raws/映像特典/ノンクレジットOP#20 (BDrip HEVC-YUV444 FLAC).mkv", + "filename": "ノンクレジットOP#20 (BDrip HEVC-YUV444 FLAC).mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "ノンクレジットOp#20 (Bdrip Hevc-Yuv444 Flac)", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "ノンクレジットOp#20 (Bdrip Hevc-Yuv444 Flac)", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/無職転生 〜異世界行ったら本気だす〜 2021 1080P BDrip HEVC-YUV444 FLAC SUP-SweetDreamDay & AI-Raws/映像特典/PV・CM集 (BDrip HEVC-YUV444 FLAC).mkv", + "filename": "PV・CM集 (BDrip HEVC-YUV444 FLAC).mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Pv・Cm集 (Bdrip Hevc-Yuv444 Flac)", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Pv・Cm集 (Bdrip Hevc-Yuv444 Flac)", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/無職転生 〜異世界行ったら本気だす〜 2021 1080P BDrip HEVC-YUV444 FLAC SUP-SweetDreamDay & AI-Raws/映像特典/ノンクレジットOP#19 (BDrip HEVC-YUV444 FLAC).mkv", + "filename": "ノンクレジットOP#19 (BDrip HEVC-YUV444 FLAC).mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "ノンクレジットOp#19 (Bdrip Hevc-Yuv444 Flac)", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "ノンクレジットOp#19 (Bdrip Hevc-Yuv444 Flac)", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/無職転生 〜異世界行ったら本気だす〜 2021 1080P BDrip HEVC-YUV444 FLAC SUP-SweetDreamDay & AI-Raws/映像特典/ノンクレジットOP#05 (BDrip HEVC-YUV444 FLAC).mkv", + "filename": "ノンクレジットOP#05 (BDrip HEVC-YUV444 FLAC).mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "ノンクレジットOp#05 (Bdrip Hevc-Yuv444 Flac)", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "ノンクレジットOp#05 (Bdrip Hevc-Yuv444 Flac)", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/無職転生 〜異世界行ったら本気だす〜 2021 1080P BDrip HEVC-YUV444 FLAC SUP-SweetDreamDay & AI-Raws/無職転生 〜異世界行ったら本気だす〜 EP12 (BDrip HEVC-YUV444 FLAC SUP).mkv", + "filename": "無職転生 〜異世界行ったら本気だす〜 EP12 (BDrip HEVC-YUV444 FLAC SUP).mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "無職転生 〜異世界行ったら本気だす〜 Ep12 (Bdrip Hevc-Yuv444 Flac Sup)", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "無職転生 〜異世界行ったら本気だす〜 Ep12 (Bdrip Hevc-Yuv444 Flac Sup)", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/無職転生 〜異世界行ったら本気だす〜 2021 1080P BDrip HEVC-YUV444 FLAC SUP-SweetDreamDay & AI-Raws/無職転生 〜異世界行ったら本気だす〜 EP05 (BDrip HEVC-YUV444 FLAC SUP).mkv", + "filename": "無職転生 〜異世界行ったら本気だす〜 EP05 (BDrip HEVC-YUV444 FLAC SUP).mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "無職転生 〜異世界行ったら本気だす〜 Ep05 (Bdrip Hevc-Yuv444 Flac Sup)", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "無職転生 〜異世界行ったら本気だす〜 Ep05 (Bdrip Hevc-Yuv444 Flac Sup)", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/無職転生 〜異世界行ったら本気だす〜 2021 1080P BDrip HEVC-YUV444 FLAC SUP-SweetDreamDay & AI-Raws/無職転生 〜異世界行ったら本気だす〜 EP22 (BDrip HEVC-YUV444 FLAC SUP).mkv", + "filename": "無職転生 〜異世界行ったら本気だす〜 EP22 (BDrip HEVC-YUV444 FLAC SUP).mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "無職転生 〜異世界行ったら本気だす〜 Ep22 (Bdrip Hevc-Yuv444 Flac Sup)", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "無職転生 〜異世界行ったら本気だす〜 Ep22 (Bdrip Hevc-Yuv444 Flac Sup)", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/無職転生 〜異世界行ったら本気だす〜 2021 1080P BDrip HEVC-YUV444 FLAC SUP-SweetDreamDay & AI-Raws/無職転生 〜異世界行ったら本気だす〜 EP03 (BDrip HEVC-YUV444 FLAC SUP).mkv", + "filename": "無職転生 〜異世界行ったら本気だす〜 EP03 (BDrip HEVC-YUV444 FLAC SUP).mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "無職転生 〜異世界行ったら本気だす〜 Ep03 (Bdrip Hevc-Yuv444 Flac Sup)", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "無職転生 〜異世界行ったら本気だす〜 Ep03 (Bdrip Hevc-Yuv444 Flac Sup)", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/無職転生 〜異世界行ったら本気だす〜 2021 1080P BDrip HEVC-YUV444 FLAC SUP-SweetDreamDay & AI-Raws/無職転生 〜異世界行ったら本気だす〜 EP14 (BDrip HEVC-YUV444 FLAC SUP).mkv", + "filename": "無職転生 〜異世界行ったら本気だす〜 EP14 (BDrip HEVC-YUV444 FLAC SUP).mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "無職転生 〜異世界行ったら本気だす〜 Ep14 (Bdrip Hevc-Yuv444 Flac Sup)", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "無職転生 〜異世界行ったら本気だす〜 Ep14 (Bdrip Hevc-Yuv444 Flac Sup)", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/無職転生 〜異世界行ったら本気だす〜 2021 1080P BDrip HEVC-YUV444 FLAC SUP-SweetDreamDay & AI-Raws/無職転生 〜異世界行ったら本気だす〜 EP24 (BDrip HEVC-YUV444 FLAC SUP).mkv", + "filename": "無職転生 〜異世界行ったら本気だす〜 EP24 (BDrip HEVC-YUV444 FLAC SUP).mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "無職転生 〜異世界行ったら本気だす〜 Ep24 (Bdrip Hevc-Yuv444 Flac Sup)", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "無職転生 〜異世界行ったら本気だす〜 Ep24 (Bdrip Hevc-Yuv444 Flac Sup)", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/無職転生 〜異世界行ったら本気だす〜 2021 1080P BDrip HEVC-YUV444 FLAC SUP-SweetDreamDay & AI-Raws/無職転生 〜異世界行ったら本気だす〜 EP10 (BDrip HEVC-YUV444 FLAC SUP).mkv", + "filename": "無職転生 〜異世界行ったら本気だす〜 EP10 (BDrip HEVC-YUV444 FLAC SUP).mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "無職転生 〜異世界行ったら本気だす〜 Ep10 (Bdrip Hevc-Yuv444 Flac Sup)", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "無職転生 〜異世界行ったら本気だす〜 Ep10 (Bdrip Hevc-Yuv444 Flac Sup)", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/無職転生 〜異世界行ったら本気だす〜 2021 1080P BDrip HEVC-YUV444 FLAC SUP-SweetDreamDay & AI-Raws/無職転生 〜異世界行ったら本気だす〜 EP07 (BDrip HEVC-YUV444 FLAC SUP).mkv", + "filename": "無職転生 〜異世界行ったら本気だす〜 EP07 (BDrip HEVC-YUV444 FLAC SUP).mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "無職転生 〜異世界行ったら本気だす〜 Ep07 (Bdrip Hevc-Yuv444 Flac Sup)", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "無職転生 〜異世界行ったら本気だす〜 Ep07 (Bdrip Hevc-Yuv444 Flac Sup)", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/無職転生 〜異世界行ったら本気だす〜 2021 1080P BDrip HEVC-YUV444 FLAC SUP-SweetDreamDay & AI-Raws/無職転生 〜異世界行ったら本気だす〜 EP19 (BDrip HEVC-YUV444 FLAC SUP).mkv", + "filename": "無職転生 〜異世界行ったら本気だす〜 EP19 (BDrip HEVC-YUV444 FLAC SUP).mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "無職転生 〜異世界行ったら本気だす〜 Ep19 (Bdrip Hevc-Yuv444 Flac Sup)", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "無職転生 〜異世界行ったら本気だす〜 Ep19 (Bdrip Hevc-Yuv444 Flac Sup)", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/無職転生 〜異世界行ったら本気だす〜 2021 1080P BDrip HEVC-YUV444 FLAC SUP-SweetDreamDay & AI-Raws/無職転生 〜異世界行ったら本気だす〜 EP20 (BDrip HEVC-YUV444 FLAC SUP).mkv", + "filename": "無職転生 〜異世界行ったら本気だす〜 EP20 (BDrip HEVC-YUV444 FLAC SUP).mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "無職転生 〜異世界行ったら本気だす〜 Ep20 (Bdrip Hevc-Yuv444 Flac Sup)", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "無職転生 〜異世界行ったら本気だす〜 Ep20 (Bdrip Hevc-Yuv444 Flac Sup)", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/無職転生 〜異世界行ったら本気だす〜 2021 1080P BDrip HEVC-YUV444 FLAC SUP-SweetDreamDay & AI-Raws/無職転生 〜異世界行ったら本気だす〜 EP18 (BDrip HEVC-YUV444 FLAC SUP).mkv", + "filename": "無職転生 〜異世界行ったら本気だす〜 EP18 (BDrip HEVC-YUV444 FLAC SUP).mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "無職転生 〜異世界行ったら本気だす〜 Ep18 (Bdrip Hevc-Yuv444 Flac Sup)", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "無職転生 〜異世界行ったら本気だす〜 Ep18 (Bdrip Hevc-Yuv444 Flac Sup)", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/無職転生 〜異世界行ったら本気だす〜 2021 1080P BDrip HEVC-YUV444 FLAC SUP-SweetDreamDay & AI-Raws/無職転生 〜異世界行ったら本気だす〜 EP21 (BDrip HEVC-YUV444 FLAC SUP).mkv", + "filename": "無職転生 〜異世界行ったら本気だす〜 EP21 (BDrip HEVC-YUV444 FLAC SUP).mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "無職転生 〜異世界行ったら本気だす〜 Ep21 (Bdrip Hevc-Yuv444 Flac Sup)", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "無職転生 〜異世界行ったら本気だす〜 Ep21 (Bdrip Hevc-Yuv444 Flac Sup)", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/無職転生 〜異世界行ったら本気だす〜 2021 1080P BDrip HEVC-YUV444 FLAC SUP-SweetDreamDay & AI-Raws/無職転生 〜異世界行ったら本気だす〜 EP11 (BDrip HEVC-YUV444 FLAC SUP).mkv", + "filename": "無職転生 〜異世界行ったら本気だす〜 EP11 (BDrip HEVC-YUV444 FLAC SUP).mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "無職転生 〜異世界行ったら本気だす〜 Ep11 (Bdrip Hevc-Yuv444 Flac Sup)", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "無職転生 〜異世界行ったら本気だす〜 Ep11 (Bdrip Hevc-Yuv444 Flac Sup)", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/無職転生 〜異世界行ったら本気だす〜 2021 1080P BDrip HEVC-YUV444 FLAC SUP-SweetDreamDay & AI-Raws/無職転生 〜異世界行ったら本気だす〜 EP06 (BDrip HEVC-YUV444 FLAC SUP).mkv", + "filename": "無職転生 〜異世界行ったら本気だす〜 EP06 (BDrip HEVC-YUV444 FLAC SUP).mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "無職転生 〜異世界行ったら本気だす〜 Ep06 (Bdrip Hevc-Yuv444 Flac Sup)", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "無職転生 〜異世界行ったら本気だす〜 Ep06 (Bdrip Hevc-Yuv444 Flac Sup)", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/無職転生 〜異世界行ったら本気だす〜 2021 1080P BDrip HEVC-YUV444 FLAC SUP-SweetDreamDay & AI-Raws/無職転生 〜異世界行ったら本気だす〜 EP02 (BDrip HEVC-YUV444 FLAC SUP).mkv", + "filename": "無職転生 〜異世界行ったら本気だす〜 EP02 (BDrip HEVC-YUV444 FLAC SUP).mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "無職転生 〜異世界行ったら本気だす〜 Ep02 (Bdrip Hevc-Yuv444 Flac Sup)", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "無職転生 〜異世界行ったら本気だす〜 Ep02 (Bdrip Hevc-Yuv444 Flac Sup)", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/無職転生 〜異世界行ったら本気だす〜 2021 1080P BDrip HEVC-YUV444 FLAC SUP-SweetDreamDay & AI-Raws/無職転生 〜異世界行ったら本気だす〜 EP15 (BDrip HEVC-YUV444 FLAC SUP).mkv", + "filename": "無職転生 〜異世界行ったら本気だす〜 EP15 (BDrip HEVC-YUV444 FLAC SUP).mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "無職転生 〜異世界行ったら本気だす〜 Ep15 (Bdrip Hevc-Yuv444 Flac Sup)", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "無職転生 〜異世界行ったら本気だす〜 Ep15 (Bdrip Hevc-Yuv444 Flac Sup)", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 一拳超人(第三季) - 26 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 一拳超人(第三季) - 26 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 一拳超人(第三季) - 26 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 一拳超人(第三季) - 26 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "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", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 終末起點 - 05 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 終末起點 - 05 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 水屬性的魔法師 - 03 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 水屬性的魔法師 - 03 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 水屬性的魔法師 - 03 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 水屬性的魔法師 - 03 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 被逐出隊伍的治癒師,其實是最強 - 12 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 被逐出隊伍的治癒師,其實是最強 - 12 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 被逐出隊伍的治癒師,其實是最強 - 12 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 被逐出隊伍的治癒師,其實是最強 - 12 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Haruhana] Ikoku Nikki - 03 [WebRip][HEVC-10bit 1080p][CHI_JPN].mkv", + "filename": "[Haruhana] Ikoku Nikki - 03 [WebRip][HEVC-10bit 1080p][CHI_JPN].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Haruhana] Ikoku Nikki - 03 [Webrip][Hevc-10Bit 1080P][Chi Jpn]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Haruhana] Ikoku Nikki - 03 [Webrip][Hevc-10Bit 1080P][Chi Jpn]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[BeanSub][Ao no Exorcist _Yosuga Hen][02][BIG5][1080P][x264_AAC].mp4", + "filename": "[BeanSub][Ao no Exorcist _Yosuga Hen][02][BIG5][1080P][x264_AAC].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Beansub][Ao No Exorcist Yosuga Hen][02][Big5][1080P][X264 Aac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Beansub][Ao No Exorcist Yosuga Hen][02][Big5][1080P][X264 Aac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 最強肉盾的迷宮攻略~擁有稀少技能體力 9999 的肉盾,被勇者隊伍辭退了~ - 03 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 最強肉盾的迷宮攻略~擁有稀少技能體力 9999 的肉盾,被勇者隊伍辭退了~ - 03 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 最強肉盾的迷宮攻略~擁有稀少技能體力 9999 的肉盾,被勇者隊伍辭退了~ - 03 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 最強肉盾的迷宮攻略~擁有稀少技能體力 9999 的肉盾,被勇者隊伍辭退了~ - 03 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 尋神的旅途 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 尋神的旅途 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 尋神的旅途 - 01 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 尋神的旅途 - 01 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 泛而不精的我被逐出了勇者隊伍 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 泛而不精的我被逐出了勇者隊伍 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 泛而不精的我被逐出了勇者隊伍 - 01 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 泛而不精的我被逐出了勇者隊伍 - 01 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 結緣甘神神社 - 19 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 結緣甘神神社 - 19 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 結緣甘神神社 - 19 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 結緣甘神神社 - 19 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Tensei Shitara Slime Datta Ken 3rd Season - 67 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "filename": "[LoliHouse] Tensei Shitara Slime Datta Ken 3rd Season - 67 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Tensei Shitara Slime Datta Ken 3Rd Season - 67 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Tensei Shitara Slime Datta Ken 3Rd Season - 67 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Nekomoe kissaten][Tower of God S2][01][1080p][CHT].mp4", + "filename": "[Nekomoe kissaten][Tower of God S2][01][1080p][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Nekomoe Kissaten][Tower Of God S2][01][1080P][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Nekomoe Kissaten][Tower Of God S2][01][1080P][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] Re:從零開始的異世界生活 第三季 - 16 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] Re:從零開始的異世界生活 第三季 - 16 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] Re:從零開始的異世界生活 第三季 - 16 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] Re:從零開始的異世界生活 第三季 - 16 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[KitaujiSub&LoliHouse] Suicide Squad Isekai - 04 [WebRip 1080p HEVC-10bit AACx2 ASSx2].mkv", + "filename": "[KitaujiSub&LoliHouse] Suicide Squad Isekai - 04 [WebRip 1080p HEVC-10bit AACx2 ASSx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Kitaujisub&Lolihouse] Suicide Squad Isekai - 04 [Webrip 1080P Hevc-10Bit Aacx2 Assx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Kitaujisub&Lolihouse] Suicide Squad Isekai - 04 [Webrip 1080P Hevc-10Bit Aacx2 Assx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 怪獸 8 號 - 10 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 怪獸 8 號 - 10 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 怪獸 8 號 - 10 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 怪獸 8 號 - 10 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 被逐出隊伍的治癒師,其實是最強 - 09 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 被逐出隊伍的治癒師,其實是最強 - 09 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 被逐出隊伍的治癒師,其實是最強 - 09 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 被逐出隊伍的治癒師,其實是最強 - 09 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Nekomoe kissaten&LoliHouse] Dungeon Meshi - 07 [WebRip 1080p HEVC-10bit AAC EAC3 ASSx2].mkv", + "filename": "[Nekomoe kissaten&LoliHouse] Dungeon Meshi - 07 [WebRip 1080p HEVC-10bit AAC EAC3 ASSx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Nekomoe Kissaten&Lolihouse] Dungeon Meshi - 07 [Webrip 1080P Hevc-10Bit Aac Eac3 Assx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Nekomoe Kissaten&Lolihouse] Dungeon Meshi - 07 [Webrip 1080P Hevc-10Bit Aac Eac3 Assx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 治癒魔法的錯誤使用法 - 08 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 治癒魔法的錯誤使用法 - 08 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 治癒魔法的錯誤使用法 - 08 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 治癒魔法的錯誤使用法 - 08 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Kage no Jitsuryokusha ni Naritakute! S2 [01-12][WebRip 1080p HEVC-10bit AAC]/[LoliHouse] Kage no Jitsuryokusha ni Naritakute! S2 - 03 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "filename": "[LoliHouse] Kage no Jitsuryokusha ni Naritakute! S2 - 03 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Kage No Jitsuryokusha Ni Naritakute! S2 - 03 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Kage No Jitsuryokusha Ni Naritakute! S2 - 03 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Kage no Jitsuryokusha ni Naritakute! S2 [01-12][WebRip 1080p HEVC-10bit AAC]/[LoliHouse] Kage no Jitsuryokusha ni Naritakute! S2 - 07 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "filename": "[LoliHouse] Kage no Jitsuryokusha ni Naritakute! S2 - 07 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Kage No Jitsuryokusha Ni Naritakute! S2 - 07 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Kage No Jitsuryokusha Ni Naritakute! S2 - 07 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Kage no Jitsuryokusha ni Naritakute! S2 [01-12][WebRip 1080p HEVC-10bit AAC]/[LoliHouse] Kage no Jitsuryokusha ni Naritakute! S2 - 10 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "filename": "[LoliHouse] Kage no Jitsuryokusha ni Naritakute! S2 - 10 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Kage No Jitsuryokusha Ni Naritakute! S2 - 10 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Kage No Jitsuryokusha Ni Naritakute! S2 - 10 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Kage no Jitsuryokusha ni Naritakute! S2 [01-12][WebRip 1080p HEVC-10bit AAC]/[LoliHouse] Kage no Jitsuryokusha ni Naritakute! S2 - 11 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "filename": "[LoliHouse] Kage no Jitsuryokusha ni Naritakute! S2 - 11 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Kage No Jitsuryokusha Ni Naritakute! S2 - 11 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Kage No Jitsuryokusha Ni Naritakute! S2 - 11 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Kage no Jitsuryokusha ni Naritakute! S2 [01-12][WebRip 1080p HEVC-10bit AAC]/[LoliHouse] Kage no Jitsuryokusha ni Naritakute! S2 - 02 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "filename": "[LoliHouse] Kage no Jitsuryokusha ni Naritakute! S2 - 02 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Kage No Jitsuryokusha Ni Naritakute! S2 - 02 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Kage No Jitsuryokusha Ni Naritakute! S2 - 02 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Kage no Jitsuryokusha ni Naritakute! S2 [01-12][WebRip 1080p HEVC-10bit AAC]/[LoliHouse] Kage no Jitsuryokusha ni Naritakute! S2 - 06 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "filename": "[LoliHouse] Kage no Jitsuryokusha ni Naritakute! S2 - 06 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Kage No Jitsuryokusha Ni Naritakute! S2 - 06 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Kage No Jitsuryokusha Ni Naritakute! S2 - 06 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Kage no Jitsuryokusha ni Naritakute! S2 [01-12][WebRip 1080p HEVC-10bit AAC]/[LoliHouse] Kage no Jitsuryokusha ni Naritakute! S2 - 08 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "filename": "[LoliHouse] Kage no Jitsuryokusha ni Naritakute! S2 - 08 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Kage No Jitsuryokusha Ni Naritakute! S2 - 08 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Kage No Jitsuryokusha Ni Naritakute! S2 - 08 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Kage no Jitsuryokusha ni Naritakute! S2 [01-12][WebRip 1080p HEVC-10bit AAC]/[LoliHouse] Kage no Jitsuryokusha ni Naritakute! S2 - 04 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "filename": "[LoliHouse] Kage no Jitsuryokusha ni Naritakute! S2 - 04 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Kage No Jitsuryokusha Ni Naritakute! S2 - 04 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Kage No Jitsuryokusha Ni Naritakute! S2 - 04 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Kage no Jitsuryokusha ni Naritakute! S2 [01-12][WebRip 1080p HEVC-10bit AAC]/[LoliHouse] Kage no Jitsuryokusha ni Naritakute! S2 - 01 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "filename": "[LoliHouse] Kage no Jitsuryokusha ni Naritakute! S2 - 01 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Kage No Jitsuryokusha Ni Naritakute! S2 - 01 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Kage No Jitsuryokusha Ni Naritakute! S2 - 01 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Kage no Jitsuryokusha ni Naritakute! S2 [01-12][WebRip 1080p HEVC-10bit AAC]/[LoliHouse] Kage no Jitsuryokusha ni Naritakute! S2 - 05 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "filename": "[LoliHouse] Kage no Jitsuryokusha ni Naritakute! S2 - 05 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Kage No Jitsuryokusha Ni Naritakute! S2 - 05 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Kage No Jitsuryokusha Ni Naritakute! S2 - 05 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Kage no Jitsuryokusha ni Naritakute! S2 [01-12][WebRip 1080p HEVC-10bit AAC]/[LoliHouse] Kage no Jitsuryokusha ni Naritakute! S2 - 09 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "filename": "[LoliHouse] Kage no Jitsuryokusha ni Naritakute! S2 - 09 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Kage No Jitsuryokusha Ni Naritakute! S2 - 09 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Kage No Jitsuryokusha Ni Naritakute! S2 - 09 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Kage no Jitsuryokusha ni Naritakute! S2 [01-12][WebRip 1080p HEVC-10bit AAC]/[LoliHouse] Kage no Jitsuryokusha ni Naritakute! S2 - 12 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "filename": "[LoliHouse] Kage no Jitsuryokusha ni Naritakute! S2 - 12 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Kage No Jitsuryokusha Ni Naritakute! S2 - 12 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Kage No Jitsuryokusha Ni Naritakute! S2 - 12 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Nekomoe kissaten][Ninja Kamui][05][1080p][CHT].mp4", + "filename": "[Nekomoe kissaten][Ninja Kamui][05][1080p][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Nekomoe Kissaten][Ninja Kamui][05][1080P][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Nekomoe Kissaten][Ninja Kamui][05][1080P][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Nekomoe kissaten][Ishura][03][1080p][JPTC].mp4", + "filename": "[Nekomoe kissaten][Ishura][03][1080p][JPTC].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Nekomoe Kissaten][Ishura][03][1080P][Jptc]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Nekomoe Kissaten][Ishura][03][1080P][Jptc]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 忍者與殺手的兩人生活 - 09 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 忍者與殺手的兩人生活 - 09 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 忍者與殺手的兩人生活 - 09 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 忍者與殺手的兩人生活 - 09 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] LAZARUS 拉撒路 - 07 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] LAZARUS 拉撒路 - 07 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] Lazarus 拉撒路 - 07 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] Lazarus 拉撒路 - 07 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Nekomoe kissaten&LoliHouse] Mushoku Tensei S2 - 11 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "filename": "[Nekomoe kissaten&LoliHouse] Mushoku Tensei S2 - 11 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Nekomoe Kissaten&Lolihouse] Mushoku Tensei S2 - 11 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Nekomoe Kissaten&Lolihouse] Mushoku Tensei S2 - 11 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 瞬間治癒卻被當成廢物踢出隊伍的天才治療師,改當無照治療師快樂過活 - 08 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 瞬間治癒卻被當成廢物踢出隊伍的天才治療師,改當無照治療師快樂過活 - 08 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 瞬間治癒卻被當成廢物踢出隊伍的天才治療師,改當無照治療師快樂過活 - 08 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 瞬間治癒卻被當成廢物踢出隊伍的天才治療師,改當無照治療師快樂過活 - 08 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "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", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 妻子變成小學生。 - 05 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 妻子變成小學生。 - 05 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Shin Samurai-den YAIBA - 08 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "filename": "[LoliHouse] Shin Samurai-den YAIBA - 08 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Shin Samurai-Den Yaiba - 08 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Shin Samurai-Den Yaiba - 08 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Yami Healer - 03 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "filename": "[LoliHouse] Yami Healer - 03 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Yami Healer - 03 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Yami Healer - 03 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[HYSUB]Sono Bisque Doll wa Koi wo Suru[22][BIG5_MP4][1920X1080].mp4", + "filename": "[HYSUB]Sono Bisque Doll wa Koi wo Suru[22][BIG5_MP4][1920X1080].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Hysub]Sono Bisque Doll Wa Koi Wo Suru[22][Big5 Mp4][1920X1080]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Hysub]Sono Bisque Doll Wa Koi Wo Suru[22][Big5 Mp4][1920X1080]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Amagami-san Chi no Enmusubi - 01 [WebRip 1080p HEVC-10bit AAC SRTx2]).mkv", + "filename": "[LoliHouse] Amagami-san Chi no Enmusubi - 01 [WebRip 1080p HEVC-10bit AAC SRTx2]).mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Amagami-San Chi No Enmusubi - 01 [Webrip 1080P Hevc-10Bit Aac Srtx2])", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Amagami-San Chi No Enmusubi - 01 [Webrip 1080P Hevc-10Bit Aac Srtx2])", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 記憶縫線 YOUR FORMA - 04 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 記憶縫線 YOUR FORMA - 04 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 記憶縫線 Your Forma - 04 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 記憶縫線 Your Forma - 04 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] FAIRY TAIL 魔導少年 百年任務 - 10 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] FAIRY TAIL 魔導少年 百年任務 - 10 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] Fairy Tail 魔導少年 百年任務 - 10 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] Fairy Tail 魔導少年 百年任務 - 10 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 擁有超常技能的異世界流浪美食家 S2 - 22 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 擁有超常技能的異世界流浪美食家 S2 - 22 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 擁有超常技能的異世界流浪美食家 S2 - 22 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 擁有超常技能的異世界流浪美食家 S2 - 22 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 永遠的黃昏 - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 永遠的黃昏 - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 永遠的黃昏 - 02 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 永遠的黃昏 - 02 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 忍者與殺手的兩人生活 - 12 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 忍者與殺手的兩人生活 - 12 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 忍者與殺手的兩人生活 - 12 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 忍者與殺手的兩人生活 - 12 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/The.Stranger.by.the.Beach.2020.1080p.BluRay.x264.DTS-WiKi/Sample/The.Stranger.by.the.Beach.2020.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", + "filename": "The.Stranger.by.the.Beach.2020.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "The Stranger By The Beach 2020 1080P Bluray X264 Dts-Wiki Sample", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "The Stranger By The Beach 2020 1080P Bluray X264 Dts-Wiki Sample", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/The.Stranger.by.the.Beach.2020.1080p.BluRay.x264.DTS-WiKi/The.Stranger.by.the.Beach.2020.1080p.BluRay.x264.DTS-WiKi.mkv", + "filename": "The.Stranger.by.the.Beach.2020.1080p.BluRay.x264.DTS-WiKi.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "The Stranger By The Beach 2020 1080P Bluray X264 Dts-Wiki", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "The Stranger By The Beach 2020 1080P Bluray X264 Dts-Wiki", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Shin Samurai-den YAIBA - 13 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "filename": "[LoliHouse] Shin Samurai-den YAIBA - 13 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Shin Samurai-Den Yaiba - 13 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Shin Samurai-Den Yaiba - 13 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 怪獸 8 號 第二季 - 16 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 怪獸 8 號 第二季 - 16 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 怪獸 8 號 第二季 - 16 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 怪獸 8 號 第二季 - 16 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Around 40 Otoko no Isekai Tsuuhan - 12 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "filename": "[LoliHouse] Around 40 Otoko no Isekai Tsuuhan - 12 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Around 40 Otoko No Isekai Tsuuhan - 12 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Around 40 Otoko No Isekai Tsuuhan - 12 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 香格里拉・開拓異境~糞作獵手挑戰神作~ - 16 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 香格里拉・開拓異境~糞作獵手挑戰神作~ - 16 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 香格里拉・開拓異境~糞作獵手挑戰神作~ - 16 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 香格里拉・開拓異境~糞作獵手挑戰神作~ - 16 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Feibanyama] DARK MOON THE BLOOD ALTAR - 01 [BILIBILI WebRip 2160p HEVC OPUS Multi-Subs].mkv", + "filename": "[Feibanyama] DARK MOON THE BLOOD ALTAR - 01 [BILIBILI WebRip 2160p HEVC OPUS Multi-Subs].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Feibanyama] Dark Moon The Blood Altar - 01 [Bilibili Webrip 2160P Hevc Opus Multi-Subs]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Feibanyama] Dark Moon The Blood Altar - 01 [Bilibili Webrip 2160P Hevc Opus Multi-Subs]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 膽大黨 第二季 - 20 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 膽大黨 第二季 - 20 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 膽大黨 第二季 - 20 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 膽大黨 第二季 - 20 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Beheneko - 03 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "filename": "[LoliHouse] Beheneko - 03 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Beheneko - 03 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Beheneko - 03 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[orion origin] Boukyaku Battery [03] [1080p] [H265 AAC] [CHT&JPN].mp4", + "filename": "[orion origin] Boukyaku Battery [03] [1080p] [H265 AAC] [CHT&JPN].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Orion Origin] Boukyaku Battery [03] [1080P] [H265 Aac] [Cht&Jpn]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Orion Origin] Boukyaku Battery [03] [1080P] [H265 Aac] [Cht&Jpn]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 轉生貴族憑鑑定技能扭轉人生 第二季 - 18 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 轉生貴族憑鑑定技能扭轉人生 第二季 - 18 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 轉生貴族憑鑑定技能扭轉人生 第二季 - 18 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 轉生貴族憑鑑定技能扭轉人生 第二季 - 18 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] GNOSIA - 07 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] GNOSIA - 07 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] Gnosia - 07 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] Gnosia - 07 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[BeanSub&FZSD][Kimetsu_no_Yaiba][57][BIG5][1080P][x264_AAC].mp4", + "filename": "[BeanSub&FZSD][Kimetsu_no_Yaiba][57][BIG5][1080P][x264_AAC].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Beansub&Fzsd][Kimetsu No Yaiba][57][Big5][1080P][X264 Aac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Beansub&Fzsd][Kimetsu No Yaiba][57][Big5][1080P][X264 Aac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Kijin Gentoushou - 06 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "filename": "[LoliHouse] Kijin Gentoushou - 06 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Kijin Gentoushou - 06 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Kijin Gentoushou - 06 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 膽大黨 - 12 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 膽大黨 - 12 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 膽大黨 - 12 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 膽大黨 - 12 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[BeanSub&FZSD][BLEACH_Sennen_Kessen-hen][33][GB][1080P][x264_AAC].mp4", + "filename": "[BeanSub&FZSD][BLEACH_Sennen_Kessen-hen][33][GB][1080P][x264_AAC].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Beansub&Fzsd][Bleach Sennen Kessen-Hen][33][Gb][1080P][X264 Aac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Beansub&Fzsd][Bleach Sennen Kessen-Hen][33][Gb][1080P][X264 Aac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Penguin.Highway.2018.1080p.BluRay.x264.DTS-WiKi/Sample/Penguin.Highway.2018.1080p.BluRay.x264.DTS-WiKi.sample.mkv", + "filename": "Penguin.Highway.2018.1080p.BluRay.x264.DTS-WiKi.sample.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Penguin Highway 2018 1080P Bluray X264 Dts-Wiki Sample", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Penguin Highway 2018 1080P Bluray X264 Dts-Wiki Sample", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Penguin.Highway.2018.1080p.BluRay.x264.DTS-WiKi/Penguin.Highway.2018.1080p.BluRay.x264.DTS-WiKi.mkv", + "filename": "Penguin.Highway.2018.1080p.BluRay.x264.DTS-WiKi.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Penguin Highway 2018 1080P Bluray X264 Dts-Wiki", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Penguin Highway 2018 1080P Bluray X264 Dts-Wiki", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Tensei Kizoku, Kantei Skill de Nariagaru - 12 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "filename": "[LoliHouse] Tensei Kizoku, Kantei Skill de Nariagaru - 12 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Tensei Kizoku, Kantei Skill De Nariagaru - 12 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Tensei Kizoku, Kantei Skill De Nariagaru - 12 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Nekomoe kissaten][Dungeon Meshi][22][1080p][JPTC].mp4", + "filename": "[Nekomoe kissaten][Dungeon Meshi][22][1080p][JPTC].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Nekomoe Kissaten][Dungeon Meshi][22][1080P][Jptc]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Nekomoe Kissaten][Dungeon Meshi][22][1080P][Jptc]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Nekomoe kissaten][HELLO WORLD][BDRip][1080p][JPTC]/[Nekomoe kissaten][ANOTHER WORLD][02][1080p][JPTC].mp4", + "filename": "[Nekomoe kissaten][ANOTHER WORLD][02][1080p][JPTC].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Nekomoe Kissaten][Another World][02][1080P][Jptc]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Nekomoe Kissaten][Another World][02][1080P][Jptc]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Nekomoe kissaten][HELLO WORLD][BDRip][1080p][JPTC]/[Nekomoe kissaten][ANOTHER WORLD][03][1080p][JPTC].mp4", + "filename": "[Nekomoe kissaten][ANOTHER WORLD][03][1080p][JPTC].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Nekomoe Kissaten][Another World][03][1080P][Jptc]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Nekomoe Kissaten][Another World][03][1080P][Jptc]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Nekomoe kissaten][HELLO WORLD][BDRip][1080p][JPTC]/[Nekomoe kissaten][ANOTHER WORLD][01][1080p][JPTC].mp4", + "filename": "[Nekomoe kissaten][ANOTHER WORLD][01][1080p][JPTC].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Nekomoe Kissaten][Another World][01][1080P][Jptc]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Nekomoe Kissaten][Another World][01][1080P][Jptc]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Nekomoe kissaten][HELLO WORLD][BDRip][1080p][JPTC]/[Nekomoe kissaten][HELLO WORLD][Movie][1080p][JPTC].mp4", + "filename": "[Nekomoe kissaten][HELLO WORLD][Movie][1080p][JPTC].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Nekomoe Kissaten][Hello World][Movie][1080P][Jptc]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Nekomoe Kissaten][Hello World][Movie][1080P][Jptc]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[KTXP][Hokkaido_Gals_Are_Super_Adorable!][08][HEVC_opus][1080p].mkv", + "filename": "[KTXP][Hokkaido_Gals_Are_Super_Adorable!][08][HEVC_opus][1080p].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ktxp][Hokkaido Gals Are Super Adorable!][08][Hevc Opus][1080P]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ktxp][Hokkaido Gals Are Super Adorable!][08][Hevc Opus][1080P]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[KyokuSai] Isekai Onsen Paradise [03][720P][WEB-DL][Premium].mp4", + "filename": "[KyokuSai] Isekai Onsen Paradise [03][720P][WEB-DL][Premium].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Kyokusai] Isekai Onsen Paradise [03][720P][Web-Dl][Premium]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Kyokusai] Isekai Onsen Paradise [03][720P][Web-Dl][Premium]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Nekomoe kissaten][Ninja Kamui][06][1080p][CHT].mp4", + "filename": "[Nekomoe kissaten][Ninja Kamui][06][1080p][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Nekomoe Kissaten][Ninja Kamui][06][1080P][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Nekomoe Kissaten][Ninja Kamui][06][1080P][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Nekomoe kissaten][Tower of God S2][20][1080p][CHS].mp4", + "filename": "[Nekomoe kissaten][Tower of God S2][20][1080p][CHS].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Nekomoe Kissaten][Tower Of God S2][20][1080P][Chs]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Nekomoe Kissaten][Tower Of God S2][20][1080P][Chs]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 完美到難以接近的聖女遭到解除婚約後被賣到鄰國 - 06 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 完美到難以接近的聖女遭到解除婚約後被賣到鄰國 - 06 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 完美到難以接近的聖女遭到解除婚約後被賣到鄰國 - 06 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 完美到難以接近的聖女遭到解除婚約後被賣到鄰國 - 06 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 膽大黨 - 09 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 膽大黨 - 09 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 膽大黨 - 09 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 膽大黨 - 09 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 我內心的糟糕念頭 第二季 - 24 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 我內心的糟糕念頭 第二季 - 24 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 我內心的糟糕念頭 第二季 - 24 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 我內心的糟糕念頭 第二季 - 24 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 我要【招架】一切~反誤解的世界最強想成為冒險家~ - 12 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 我要【招架】一切~反誤解的世界最強想成為冒險家~ - 12 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 我要【招架】一切~反誤解的世界最強想成為冒險家~ - 12 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 我要【招架】一切~反誤解的世界最強想成為冒險家~ - 12 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 素材採集家的異世界旅行記 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 素材採集家的異世界旅行記 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 素材採集家的異世界旅行記 - 01 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 素材採集家的異世界旅行記 - 01 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Nekomoe kissaten][Tower of God S2][02][1080p][CHT].mp4", + "filename": "[Nekomoe kissaten][Tower of God S2][02][1080p][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Nekomoe Kissaten][Tower Of God S2][02][1080P][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Nekomoe Kissaten][Tower Of God S2][02][1080P][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 我和班上最討厭的女生結婚了。 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 我和班上最討厭的女生結婚了。 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 我和班上最討厭的女生結婚了。 - 01 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 我和班上最討厭的女生結婚了。 - 01 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 最後可以再拜託您一件事嗎? - 09 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 最後可以再拜託您一件事嗎? - 09 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 最後可以再拜託您一件事嗎? - 09 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 最後可以再拜託您一件事嗎? - 09 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 我獨自升級 第二季 -起於闇影- - 17 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 我獨自升級 第二季 -起於闇影- - 17 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 我獨自升級 第二季 -起於闇影- - 17 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 我獨自升級 第二季 -起於闇影- - 17 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 不時輕聲地以俄語遮羞的鄰座艾莉同學 - 12 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 不時輕聲地以俄語遮羞的鄰座艾莉同學 - 12 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 不時輕聲地以俄語遮羞的鄰座艾莉同學 - 12 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 不時輕聲地以俄語遮羞的鄰座艾莉同學 - 12 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 判處勇者刑 - 04 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 判處勇者刑 - 04 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 判處勇者刑 - 04 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 判處勇者刑 - 04 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 新人大叔冒險者,被最強隊伍操到死成無敵 - 10 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 新人大叔冒險者,被最強隊伍操到死成無敵 - 10 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 新人大叔冒險者,被最強隊伍操到死成無敵 - 10 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 新人大叔冒險者,被最強隊伍操到死成無敵 - 10 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/《盾之勇者成名錄 第二季》#7/《盾之勇者成名錄 第二季》#7 (日語原聲)【Ani-One ULTRA】.mp4", + "filename": "《盾之勇者成名錄 第二季》#7 (日語原聲)【Ani-One ULTRA】.mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "《盾之勇者成名錄 第二季》#7 (日語原聲)【Ani-One Ultra】", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "《盾之勇者成名錄 第二季》#7 (日語原聲)【Ani-One Ultra】", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 失憶投捕 - 11 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 失憶投捕 - 11 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 失憶投捕 - 11 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 失憶投捕 - 11 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 身為暗殺者的我明顯比勇者還強 - 03 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 身為暗殺者的我明顯比勇者還強 - 03 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 身為暗殺者的我明顯比勇者還強 - 03 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 身為暗殺者的我明顯比勇者還強 - 03 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 使人誤解的工房主~關於原英雄隊伍的雜役人員,實際上除了戰鬥能力外全是SSS的故事~ - 04 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 使人誤解的工房主~關於原英雄隊伍的雜役人員,實際上除了戰鬥能力外全是SSS的故事~ - 04 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 使人誤解的工房主~關於原英雄隊伍的雜役人員,實際上除了戰鬥能力外全是Sss的故事~ - 04 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 使人誤解的工房主~關於原英雄隊伍的雜役人員,實際上除了戰鬥能力外全是Sss的故事~ - 04 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 我要【招架】一切~反誤解的世界最強想成為冒險家~ - 09 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 我要【招架】一切~反誤解的世界最強想成為冒險家~ - 09 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 我要【招架】一切~反誤解的世界最強想成為冒險家~ - 09 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 我要【招架】一切~反誤解的世界最強想成為冒險家~ - 09 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 轉生貴族憑鑑定技能扭轉人生 第二季 - 24 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 轉生貴族憑鑑定技能扭轉人生 第二季 - 24 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 轉生貴族憑鑑定技能扭轉人生 第二季 - 24 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 轉生貴族憑鑑定技能扭轉人生 第二季 - 24 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] FARMAGIA 魔農傳記 - 04 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] FARMAGIA 魔農傳記 - 04 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] Farmagia 魔農傳記 - 04 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] Farmagia 魔農傳記 - 04 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 最後可以再拜託您一件事嗎? - 12 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 最後可以再拜託您一件事嗎? - 12 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 最後可以再拜託您一件事嗎? - 12 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 最後可以再拜託您一件事嗎? - 12 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 不時輕聲地以俄語遮羞的鄰座艾莉同學 - 09 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 不時輕聲地以俄語遮羞的鄰座艾莉同學 - 09 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 不時輕聲地以俄語遮羞的鄰座艾莉同學 - 09 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 不時輕聲地以俄語遮羞的鄰座艾莉同學 - 09 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Izure Saikyou no Renkinjutsushi - 02 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "filename": "[LoliHouse] Izure Saikyou no Renkinjutsushi - 02 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Izure Saikyou No Renkinjutsushi - 02 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Izure Saikyou No Renkinjutsushi - 02 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Nekomoe kissaten][Dungeon Meshi][08][1080p][JPTC].mp4", + "filename": "[Nekomoe kissaten][Dungeon Meshi][08][1080p][JPTC].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Nekomoe Kissaten][Dungeon Meshi][08][1080P][Jptc]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Nekomoe Kissaten][Dungeon Meshi][08][1080P][Jptc]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Nekomoe kissaten&LoliHouse] Your Forma - 05 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "filename": "[Nekomoe kissaten&LoliHouse] Your Forma - 05 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Nekomoe Kissaten&Lolihouse] Your Forma - 05 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Nekomoe Kissaten&Lolihouse] Your Forma - 05 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 怪獸 8 號 第二季 - 22 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 怪獸 8 號 第二季 - 22 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 怪獸 8 號 第二季 - 22 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 怪獸 8 號 第二季 - 22 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] Fate/strange Fake - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] Fate/strange Fake - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] Fate/Strange Fake - 01 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] Fate/Strange Fake - 01 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 香格里拉・開拓異境~糞作獵手挑戰神作~ 第二季 - 13 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 香格里拉・開拓異境~糞作獵手挑戰神作~ 第二季 - 13 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 香格里拉・開拓異境~糞作獵手挑戰神作~ 第二季 - 13 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 香格里拉・開拓異境~糞作獵手挑戰神作~ 第二季 - 13 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 香格里拉・開拓異境~糞作獵手挑戰神作~ - 22 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 香格里拉・開拓異境~糞作獵手挑戰神作~ - 22 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 香格里拉・開拓異境~糞作獵手挑戰神作~ - 22 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 香格里拉・開拓異境~糞作獵手挑戰神作~ - 22 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] S 級怪獸《貝希摩斯》被誤認成小貓,成為精靈女孩的騎士(寵物)一起生活 - 06 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] S 級怪獸《貝希摩斯》被誤認成小貓,成為精靈女孩的騎士(寵物)一起生活 - 06 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] S 級怪獸《貝希摩斯》被誤認成小貓,成為精靈女孩的騎士(寵物)一起生活 - 06 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] S 級怪獸《貝希摩斯》被誤認成小貓,成為精靈女孩的騎士(寵物)一起生活 - 06 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 九龍大眾浪漫 - 06 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 九龍大眾浪漫 - 06 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 九龍大眾浪漫 - 06 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 九龍大眾浪漫 - 06 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[KTXP][Hokkaido_Gals_Are_Super_Adorable!][10][BIG5][1080p].mp4", + "filename": "[KTXP][Hokkaido_Gals_Are_Super_Adorable!][10][BIG5][1080p].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ktxp][Hokkaido Gals Are Super Adorable!][10][Big5][1080P]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ktxp][Hokkaido Gals Are Super Adorable!][10][Big5][1080P]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[orion origin] Boukyaku Battery [07] [1080p] [H265 AAC] [CHT&JPN].mp4", + "filename": "[orion origin] Boukyaku Battery [07] [1080p] [H265 AAC] [CHT&JPN].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Orion Origin] Boukyaku Battery [07] [1080P] [H265 Aac] [Cht&Jpn]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Orion Origin] Boukyaku Battery [07] [1080P] [H265 Aac] [Cht&Jpn]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Sakurato] Haite Kudasai, Takamine-san [07][AVC-8bit 1080p AAC][CHT&JPN].mp4", + "filename": "[Sakurato] Haite Kudasai, Takamine-san [07][AVC-8bit 1080p AAC][CHT&JPN].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Sakurato] Haite Kudasai, Takamine-San [07][Avc-8Bit 1080P Aac][Cht&Jpn]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Sakurato] Haite Kudasai, Takamine-San [07][Avc-8Bit 1080P Aac][Cht&Jpn]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 擁有超常技能的異世界流浪美食家 S2 - 16 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 擁有超常技能的異世界流浪美食家 S2 - 16 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 擁有超常技能的異世界流浪美食家 S2 - 16 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 擁有超常技能的異世界流浪美食家 S2 - 16 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 最狂輔助職業【話術士】世界最強戰團聽我號令 - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 最狂輔助職業【話術士】世界最強戰團聽我號令 - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 最狂輔助職業【話術士】世界最強戰團聽我號令 - 02 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 最狂輔助職業【話術士】世界最強戰團聽我號令 - 02 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] Re:從零開始的異世界生活 第三季 - 05 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] Re:從零開始的異世界生活 第三季 - 05 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] Re:從零開始的異世界生活 第三季 - 05 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] Re:從零開始的異世界生活 第三季 - 05 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Sakurato] Dungeon Meshi [17v2][HEVC-10bit 1080p AAC][CHS&CHT].mkv", + "filename": "[Sakurato] Dungeon Meshi [17v2][HEVC-10bit 1080p AAC][CHS&CHT].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Sakurato] Dungeon Meshi [17V2][Hevc-10Bit 1080P Aac][Chs&Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Sakurato] Dungeon Meshi [17V2][Hevc-10Bit 1080P Aac][Chs&Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Lilith-Raws] Re:Monster - 05 [Baha][WebDL 1080p AVC AAC][CHT].mp4", + "filename": "[Lilith-Raws] Re:Monster - 05 [Baha][WebDL 1080p AVC AAC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lilith-Raws] Re:Monster - 05 [Baha][Webdl 1080P Avc Aac][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lilith-Raws] Re:Monster - 05 [Baha][Webdl 1080P Avc Aac][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Skymoon-Raws] Sozai Saishuka no Isekai Ryokouki - 01 [ViuTV][WEB-DL][CHT][SRT][1080p][AVC AAC].mkv", + "filename": "[Skymoon-Raws] Sozai Saishuka no Isekai Ryokouki - 01 [ViuTV][WEB-DL][CHT][SRT][1080p][AVC AAC].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Skymoon-Raws] Sozai Saishuka No Isekai Ryokouki - 01 [Viutv][Web-Dl][Cht][Srt][1080P][Avc Aac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Skymoon-Raws] Sozai Saishuka No Isekai Ryokouki - 01 [Viutv][Web-Dl][Cht][Srt][1080P][Avc Aac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[BeanSub][Ao no Exorcist _Shimane Illuminati Hen][08][BIG5][1080P][x264_AAC].mp4", + "filename": "[BeanSub][Ao no Exorcist _Shimane Illuminati Hen][08][BIG5][1080P][x264_AAC].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Beansub][Ao No Exorcist Shimane Illuminati Hen][08][Big5][1080P][X264 Aac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Beansub][Ao No Exorcist Shimane Illuminati Hen][08][Big5][1080P][X264 Aac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Katainaka no Ossan, Kensei ni Naru - 06 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "filename": "[LoliHouse] Katainaka no Ossan, Kensei ni Naru - 06 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Katainaka No Ossan, Kensei Ni Naru - 06 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Katainaka No Ossan, Kensei Ni Naru - 06 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 厄里斯的聖杯 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 厄里斯的聖杯 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 厄里斯的聖杯 - 01 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 厄里斯的聖杯 - 01 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Nekomoe kissaten][Tower of God S2][17][1080p][CHT].mp4", + "filename": "[Nekomoe kissaten][Tower of God S2][17][1080p][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Nekomoe Kissaten][Tower Of God S2][17][1080P][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Nekomoe Kissaten][Tower Of God S2][17][1080P][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 香格里拉・開拓異境~糞作獵手挑戰神作~ 第二季 - 08 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 香格里拉・開拓異境~糞作獵手挑戰神作~ 第二季 - 08 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 香格里拉・開拓異境~糞作獵手挑戰神作~ 第二季 - 08 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 香格里拉・開拓異境~糞作獵手挑戰神作~ 第二季 - 08 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Skymoon-Raws] Sozai Saishuka no Isekai Ryokouki - 02 [ViuTV][WEB-DL][CHT][SRT][1080p][AVC AAC].mkv", + "filename": "[Skymoon-Raws] Sozai Saishuka no Isekai Ryokouki - 02 [ViuTV][WEB-DL][CHT][SRT][1080p][AVC AAC].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Skymoon-Raws] Sozai Saishuka No Isekai Ryokouki - 02 [Viutv][Web-Dl][Cht][Srt][1080P][Avc Aac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Skymoon-Raws] Sozai Saishuka No Isekai Ryokouki - 02 [Viutv][Web-Dl][Cht][Srt][1080P][Avc Aac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Ghost.in.the.Shell.SAC_2045.Sustainable.War.2021.1080p.BluRay.x265.10bit-WiKi/Ghost.in.the.Shell.SAC_2045.Sustainable.War.2021.1080p.BluRay.x265.10bit-WiKi.mkv", + "filename": "Ghost.in.the.Shell.SAC_2045.Sustainable.War.2021.1080p.BluRay.x265.10bit-WiKi.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Ghost In The Shell Sac 2045 Sustainable War 2021 1080P Bluray X265 10Bit-Wiki", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Ghost In The Shell Sac 2045 Sustainable War 2021 1080P Bluray X265 10Bit-Wiki", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[U3-Web] PSYCHO-PASS 3 - FIRST INSPECTOR (2020) [AMZN WEB-DL 1080p AVC DDP]/[U3-Web] Psycho-Pass 3 - First Inspector - 01 [AMZN WEB-DL 1080p AVC AAC E-AC-3 SRT].mkv", + "filename": "[U3-Web] Psycho-Pass 3 - First Inspector - 01 [AMZN WEB-DL 1080p AVC AAC E-AC-3 SRT].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[U3-Web] Psycho-Pass 3 - First Inspector - 01 [Amzn Web-Dl 1080P Avc Aac E-Ac-3 Srt]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[U3-Web] Psycho-Pass 3 - First Inspector - 01 [Amzn Web-Dl 1080P Avc Aac E-Ac-3 Srt]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[U3-Web] PSYCHO-PASS 3 - FIRST INSPECTOR (2020) [AMZN WEB-DL 1080p AVC DDP]/[U3-Web] Psycho-Pass 3 - First Inspector - 02 [AMZN WEB-DL 1080p AVC AAC E-AC-3 SRT].mkv", + "filename": "[U3-Web] Psycho-Pass 3 - First Inspector - 02 [AMZN WEB-DL 1080p AVC AAC E-AC-3 SRT].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[U3-Web] Psycho-Pass 3 - First Inspector - 02 [Amzn Web-Dl 1080P Avc Aac E-Ac-3 Srt]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[U3-Web] Psycho-Pass 3 - First Inspector - 02 [Amzn Web-Dl 1080P Avc Aac E-Ac-3 Srt]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[U3-Web] PSYCHO-PASS 3 - FIRST INSPECTOR (2020) [AMZN WEB-DL 1080p AVC DDP]/[U3-Web] Psycho-Pass 3 - First Inspector - 03 [AMZN WEB-DL 1080p AVC AAC E-AC-3 SRT].mkv", + "filename": "[U3-Web] Psycho-Pass 3 - First Inspector - 03 [AMZN WEB-DL 1080p AVC AAC E-AC-3 SRT].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[U3-Web] Psycho-Pass 3 - First Inspector - 03 [Amzn Web-Dl 1080P Avc Aac E-Ac-3 Srt]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[U3-Web] Psycho-Pass 3 - First Inspector - 03 [Amzn Web-Dl 1080P Avc Aac E-Ac-3 Srt]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[HYSUB]Dungeon Meshi[24][BIG5_MP4][1920X1080].mp4", + "filename": "[HYSUB]Dungeon Meshi[24][BIG5_MP4][1920X1080].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Hysub]Dungeon Meshi[24][Big5 Mp4][1920X1080]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Hysub]Dungeon Meshi[24][Big5 Mp4][1920X1080]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 結緣甘神神社 - 11 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 結緣甘神神社 - 11 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 結緣甘神神社 - 11 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 結緣甘神神社 - 11 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 午夜的傾心旋律 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 午夜的傾心旋律 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 午夜的傾心旋律 - 01 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 午夜的傾心旋律 - 01 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 一拳超人(第三季) - 35 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 一拳超人(第三季) - 35 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 一拳超人(第三季) - 35 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 一拳超人(第三季) - 35 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 被逐出隊伍的治癒師,其實是最強 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 被逐出隊伍的治癒師,其實是最強 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 被逐出隊伍的治癒師,其實是最強 - 01 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 被逐出隊伍的治癒師,其實是最強 - 01 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 水屬性的魔法師 - 10 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 水屬性的魔法師 - 10 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 水屬性的魔法師 - 10 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 水屬性的魔法師 - 10 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 轉生貴族憑鑑定技能扭轉人生 - 04 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 轉生貴族憑鑑定技能扭轉人生 - 04 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 轉生貴族憑鑑定技能扭轉人生 - 04 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 轉生貴族憑鑑定技能扭轉人生 - 04 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Mato Seihei no Slave 2 - 01 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "filename": "[LoliHouse] Mato Seihei no Slave 2 - 01 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Mato Seihei No Slave 2 - 01 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Mato Seihei No Slave 2 - 01 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Nekomoe kissaten][Ninja Kamui][13][1080p][CHT].mp4", + "filename": "[Nekomoe kissaten][Ninja Kamui][13][1080p][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Nekomoe Kissaten][Ninja Kamui][13][1080P][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Nekomoe Kissaten][Ninja Kamui][13][1080P][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 勇氣爆發 BANG BRAVERN - 03 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 勇氣爆發 BANG BRAVERN - 03 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 勇氣爆發 Bang Bravern - 03 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 勇氣爆發 Bang Bravern - 03 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Sakurato] Modaete yo, Adam-kun [02][AVC-8bit 1080p AAC][CHT].mp4", + "filename": "[Sakurato] Modaete yo, Adam-kun [02][AVC-8bit 1080p AAC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Sakurato] Modaete Yo, Adam-Kun [02][Avc-8Bit 1080P Aac][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Sakurato] Modaete Yo, Adam-Kun [02][Avc-8Bit 1080P Aac][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 持續狩獵史萊姆三百年,不知不覺就練到 LV MAX 第二季 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 持續狩獵史萊姆三百年,不知不覺就練到 LV MAX 第二季 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 持續狩獵史萊姆三百年,不知不覺就練到 Lv Max 第二季 - 01 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 持續狩獵史萊姆三百年,不知不覺就練到 Lv Max 第二季 - 01 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 永遠的黃昏 - 11 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 永遠的黃昏 - 11 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 永遠的黃昏 - 11 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 永遠的黃昏 - 11 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 忍者與殺手的兩人生活 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 忍者與殺手的兩人生活 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 忍者與殺手的兩人生活 - 01 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 忍者與殺手的兩人生活 - 01 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Nekomoe kissaten][Hibi wa Sugiredo Meshi Umashi][07][1080p][JPSC].mp4", + "filename": "[Nekomoe kissaten][Hibi wa Sugiredo Meshi Umashi][07][1080p][JPSC].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Nekomoe Kissaten][Hibi Wa Sugiredo Meshi Umashi][07][1080P][Jpsc]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Nekomoe Kissaten][Hibi Wa Sugiredo Meshi Umashi][07][1080P][Jpsc]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[orion origin] Boukyaku Battery [01] [1080p] [H265 AAC] [CHT&JPN].mp4", + "filename": "[orion origin] Boukyaku Battery [01] [1080p] [H265 AAC] [CHT&JPN].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Orion Origin] Boukyaku Battery [01] [1080P] [H265 Aac] [Cht&Jpn]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Orion Origin] Boukyaku Battery [01] [1080P] [H265 Aac] [Cht&Jpn]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 孤單一人的異世界攻略 - 09 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 孤單一人的異世界攻略 - 09 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 孤單一人的異世界攻略 - 09 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 孤單一人的異世界攻略 - 09 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Amagami-san Chi no Enmusubi - 03 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "filename": "[LoliHouse] Amagami-san Chi no Enmusubi - 03 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Amagami-San Chi No Enmusubi - 03 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Amagami-San Chi No Enmusubi - 03 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[KitaujiSub&LoliHouse] The Grimm Variations - 01 [1080p HEVC-10bit AAC EAC3 ASSx2].mkv", + "filename": "[KitaujiSub&LoliHouse] The Grimm Variations - 01 [1080p HEVC-10bit AAC EAC3 ASSx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Kitaujisub&Lolihouse] The Grimm Variations - 01 [1080P Hevc-10Bit Aac Eac3 Assx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Kitaujisub&Lolihouse] The Grimm Variations - 01 [1080P Hevc-10Bit Aac Eac3 Assx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Nekomoe kissaten&LoliHouse] Vivy [WebRip 1080p HEVC-10bit AAC ASSx2]/[Nekomoe kissaten&LoliHouse] Vivy - 01 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "filename": "[Nekomoe kissaten&LoliHouse] Vivy - 01 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Nekomoe Kissaten&Lolihouse] Vivy - 01 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Nekomoe Kissaten&Lolihouse] Vivy - 01 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Nekomoe kissaten&LoliHouse] Vivy [WebRip 1080p HEVC-10bit AAC ASSx2]/[Nekomoe kissaten&LoliHouse] Vivy - 05 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "filename": "[Nekomoe kissaten&LoliHouse] Vivy - 05 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Nekomoe Kissaten&Lolihouse] Vivy - 05 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Nekomoe Kissaten&Lolihouse] Vivy - 05 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Nekomoe kissaten&LoliHouse] Vivy [WebRip 1080p HEVC-10bit AAC ASSx2]/[Nekomoe kissaten&LoliHouse] Vivy - 09 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "filename": "[Nekomoe kissaten&LoliHouse] Vivy - 09 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Nekomoe Kissaten&Lolihouse] Vivy - 09 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Nekomoe Kissaten&Lolihouse] Vivy - 09 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Nekomoe kissaten&LoliHouse] Vivy [WebRip 1080p HEVC-10bit AAC ASSx2]/[Nekomoe kissaten&LoliHouse] Vivy - 12 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "filename": "[Nekomoe kissaten&LoliHouse] Vivy - 12 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Nekomoe Kissaten&Lolihouse] Vivy - 12 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Nekomoe Kissaten&Lolihouse] Vivy - 12 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Nekomoe kissaten&LoliHouse] Vivy [WebRip 1080p HEVC-10bit AAC ASSx2]/[Nekomoe kissaten&LoliHouse] Vivy - 13 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "filename": "[Nekomoe kissaten&LoliHouse] Vivy - 13 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Nekomoe Kissaten&Lolihouse] Vivy - 13 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Nekomoe Kissaten&Lolihouse] Vivy - 13 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Nekomoe kissaten&LoliHouse] Vivy [WebRip 1080p HEVC-10bit AAC ASSx2]/[Nekomoe kissaten&LoliHouse] Vivy - 08 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "filename": "[Nekomoe kissaten&LoliHouse] Vivy - 08 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Nekomoe Kissaten&Lolihouse] Vivy - 08 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Nekomoe Kissaten&Lolihouse] Vivy - 08 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Nekomoe kissaten&LoliHouse] Vivy [WebRip 1080p HEVC-10bit AAC ASSx2]/[Nekomoe kissaten&LoliHouse] Vivy - 04 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "filename": "[Nekomoe kissaten&LoliHouse] Vivy - 04 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Nekomoe Kissaten&Lolihouse] Vivy - 04 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Nekomoe Kissaten&Lolihouse] Vivy - 04 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Nekomoe kissaten&LoliHouse] Vivy [WebRip 1080p HEVC-10bit AAC ASSx2]/[Nekomoe kissaten&LoliHouse] Vivy - 11 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "filename": "[Nekomoe kissaten&LoliHouse] Vivy - 11 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Nekomoe Kissaten&Lolihouse] Vivy - 11 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Nekomoe Kissaten&Lolihouse] Vivy - 11 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Nekomoe kissaten&LoliHouse] Vivy [WebRip 1080p HEVC-10bit AAC ASSx2]/[Nekomoe kissaten&LoliHouse] Vivy - 02 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "filename": "[Nekomoe kissaten&LoliHouse] Vivy - 02 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Nekomoe Kissaten&Lolihouse] Vivy - 02 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Nekomoe Kissaten&Lolihouse] Vivy - 02 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Nekomoe kissaten&LoliHouse] Vivy [WebRip 1080p HEVC-10bit AAC ASSx2]/[Nekomoe kissaten&LoliHouse] Vivy - 06 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "filename": "[Nekomoe kissaten&LoliHouse] Vivy - 06 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Nekomoe Kissaten&Lolihouse] Vivy - 06 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Nekomoe Kissaten&Lolihouse] Vivy - 06 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Nekomoe kissaten&LoliHouse] Vivy [WebRip 1080p HEVC-10bit AAC ASSx2]/[Nekomoe kissaten&LoliHouse] Vivy - 03 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "filename": "[Nekomoe kissaten&LoliHouse] Vivy - 03 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Nekomoe Kissaten&Lolihouse] Vivy - 03 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Nekomoe Kissaten&Lolihouse] Vivy - 03 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Nekomoe kissaten&LoliHouse] Vivy [WebRip 1080p HEVC-10bit AAC ASSx2]/[Nekomoe kissaten&LoliHouse] Vivy - 07 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "filename": "[Nekomoe kissaten&LoliHouse] Vivy - 07 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Nekomoe Kissaten&Lolihouse] Vivy - 07 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Nekomoe Kissaten&Lolihouse] Vivy - 07 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Nekomoe kissaten&LoliHouse] Vivy [WebRip 1080p HEVC-10bit AAC ASSx2]/[Nekomoe kissaten&LoliHouse] Vivy - 10 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "filename": "[Nekomoe kissaten&LoliHouse] Vivy - 10 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Nekomoe Kissaten&Lolihouse] Vivy - 10 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Nekomoe Kissaten&Lolihouse] Vivy - 10 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Nekomoe kissaten][Dungeon Meshi][16][1080p][JPTC].mp4", + "filename": "[Nekomoe kissaten][Dungeon Meshi][16][1080p][JPTC].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Nekomoe Kissaten][Dungeon Meshi][16][1080P][Jptc]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Nekomoe Kissaten][Dungeon Meshi][16][1080P][Jptc]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Belle.2021.1080p.BluRay.x264.DTS-WiKi/Belle.2021.1080p.BluRay.x264.DTS-WiKi.mkv", + "filename": "Belle.2021.1080p.BluRay.x264.DTS-WiKi.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Belle 2021 1080P Bluray X264 Dts-Wiki", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Belle 2021 1080P Bluray X264 Dts-Wiki", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Belle.2021.1080p.BluRay.x264.DTS-WiKi/Sample/Belle.2021.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", + "filename": "Belle.2021.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Belle 2021 1080P Bluray X264 Dts-Wiki Sample", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Belle 2021 1080P Bluray X264 Dts-Wiki Sample", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Haite Kudasai, Takamine-san - 03 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "filename": "[LoliHouse] Haite Kudasai, Takamine-san - 03 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Haite Kudasai, Takamine-San - 03 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Haite Kudasai, Takamine-San - 03 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 異國日記 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 異國日記 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 異國日記 - 01 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 異國日記 - 01 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 異世界自殺突擊隊 - 06 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 異世界自殺突擊隊 - 06 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 異世界自殺突擊隊 - 06 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 異世界自殺突擊隊 - 06 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Nekomoe kissaten][Dosanko Gal wa Namara Menkoi][03][1080p][JPTC].mp4", + "filename": "[Nekomoe kissaten][Dosanko Gal wa Namara Menkoi][03][1080p][JPTC].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Nekomoe Kissaten][Dosanko Gal Wa Namara Menkoi][03][1080P][Jptc]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Nekomoe Kissaten][Dosanko Gal Wa Namara Menkoi][03][1080P][Jptc]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 地獄模式 ~喜歡挑戰特殊成就的玩家在廢設定的異世界成為無雙~ - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 地獄模式 ~喜歡挑戰特殊成就的玩家在廢設定的異世界成為無雙~ - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 地獄模式 ~喜歡挑戰特殊成就的玩家在廢設定的異世界成為無雙~ - 01 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 地獄模式 ~喜歡挑戰特殊成就的玩家在廢設定的異世界成為無雙~ - 01 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[BeanSub&FZSD][Chainsaw_Man_Reze_Arc][MOVIE][BIG5][1080P][x264_AAC].mp4", + "filename": "[BeanSub&FZSD][Chainsaw_Man_Reze_Arc][MOVIE][BIG5][1080P][x264_AAC].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Beansub&Fzsd][Chainsaw Man Reze Arc][Movie][Big5][1080P][X264 Aac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Beansub&Fzsd][Chainsaw Man Reze Arc][Movie][Big5][1080P][X264 Aac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 葬送的芙莉蓮 - 26 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 葬送的芙莉蓮 - 26 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 葬送的芙莉蓮 - 26 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 葬送的芙莉蓮 - 26 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 九龍大眾浪漫 - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 九龍大眾浪漫 - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 九龍大眾浪漫 - 02 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 九龍大眾浪漫 - 02 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 香格里拉・開拓異境~糞作獵手挑戰神作~ 第二季 - 17 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 香格里拉・開拓異境~糞作獵手挑戰神作~ 第二季 - 17 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 香格里拉・開拓異境~糞作獵手挑戰神作~ 第二季 - 17 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 香格里拉・開拓異境~糞作獵手挑戰神作~ 第二季 - 17 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Nekomoe kissaten][Tower of God S2][03][1080p][CHT].mp4", + "filename": "[Nekomoe kissaten][Tower of God S2][03][1080p][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Nekomoe Kissaten][Tower Of God S2][03][1080P][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Nekomoe Kissaten][Tower Of God S2][03][1080P][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Lilith-Raws] Date A Live S05 - 01 [Baha][WebDL 1080p AVC AAC][CHT].mp4", + "filename": "[Lilith-Raws] Date A Live S05 - 01 [Baha][WebDL 1080p AVC AAC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lilith-Raws] Date A Live S05 - 01 [Baha][Webdl 1080P Avc Aac][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lilith-Raws] Date A Live S05 - 01 [Baha][Webdl 1080P Avc Aac][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 終末起點 - 09 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 終末起點 - 09 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 終末起點 - 09 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 終末起點 - 09 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Katainaka no Ossan, Kensei ni Naru - 02 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "filename": "[LoliHouse] Katainaka no Ossan, Kensei ni Naru - 02 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Katainaka No Ossan, Kensei Ni Naru - 02 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Katainaka No Ossan, Kensei Ni Naru - 02 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Eternal][Modaete yo, Adam-kun][08][GB][720P][Premium].mp4", + "filename": "[Eternal][Modaete yo, Adam-kun][08][GB][720P][Premium].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Eternal][Modaete Yo, Adam-Kun][08][Gb][720P][Premium]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Eternal][Modaete Yo, Adam-Kun][08][Gb][720P][Premium]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] Re:從零開始的異世界生活 第三季 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] Re:從零開始的異世界生活 第三季 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] Re:從零開始的異世界生活 第三季 - 01 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] Re:從零開始的異世界生活 第三季 - 01 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[BeanSub][Ao no Exorcist _Yosuga Hen][10][BIG5][1080P][x264_AAC].mp4", + "filename": "[BeanSub][Ao no Exorcist _Yosuga Hen][10][BIG5][1080P][x264_AAC].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Beansub][Ao No Exorcist Yosuga Hen][10][Big5][1080P][X264 Aac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Beansub][Ao No Exorcist Yosuga Hen][10][Big5][1080P][X264 Aac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[orion origin] Apocalypse Hotel [01] [1080p] [H265 AAC] [CHS_JPN].mp4", + "filename": "[orion origin] Apocalypse Hotel [01] [1080p] [H265 AAC] [CHS_JPN].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Orion Origin] Apocalypse Hotel [01] [1080P] [H265 Aac] [Chs Jpn]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Orion Origin] Apocalypse Hotel [01] [1080P] [H265 Aac] [Chs Jpn]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 治癒魔法的錯誤使用法 - 04 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 治癒魔法的錯誤使用法 - 04 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 治癒魔法的錯誤使用法 - 04 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 治癒魔法的錯誤使用法 - 04 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Love.Death.and.Robots.S03.1080p.NF.WEB-DL.DDP5.1.Atmos.x264-SMURF/Love.Death.and.Robots.S03E08.In.Vaulted.Halls.Entombed.1080p.NF.WEB-DL.DDP5.1.Atmos.x264-SMURF.mkv", + "filename": "Love.Death.and.Robots.S03E08.In.Vaulted.Halls.Entombed.1080p.NF.WEB-DL.DDP5.1.Atmos.x264-SMURF.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Love Death And Robots S03E08 In Vaulted Halls Entombed 1080P Nf Web-Dl Ddp5 1 Atmos X264-Smurf", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Love Death And Robots S03E08 In Vaulted Halls Entombed 1080P Nf Web-Dl Ddp5 1 Atmos X264-Smurf", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Love.Death.and.Robots.S03.1080p.NF.WEB-DL.DDP5.1.Atmos.x264-SMURF/Love.Death.and.Robots.S03E07.Masons.Rats.1080p.NF.WEB-DL.DDP5.1.Atmos.x264-SMURF.mkv", + "filename": "Love.Death.and.Robots.S03E07.Masons.Rats.1080p.NF.WEB-DL.DDP5.1.Atmos.x264-SMURF.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Love Death And Robots S03E07 Masons Rats 1080P Nf Web-Dl Ddp5 1 Atmos X264-Smurf", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Love Death And Robots S03E07 Masons Rats 1080P Nf Web-Dl Ddp5 1 Atmos X264-Smurf", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Love.Death.and.Robots.S03.1080p.NF.WEB-DL.DDP5.1.Atmos.x264-SMURF/Love.Death.and.Robots.S03E03.The.Very.Pulse.of.the.Machine.1080p.NF.WEB-DL.DDP5.1.Atmos.x264-SMURF.mkv", + "filename": "Love.Death.and.Robots.S03E03.The.Very.Pulse.of.the.Machine.1080p.NF.WEB-DL.DDP5.1.Atmos.x264-SMURF.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Love Death And Robots S03E03 The Very Pulse Of The Machine 1080P Nf Web-Dl Ddp5 1 Atmos X264-Smurf", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Love Death And Robots S03E03 The Very Pulse Of The Machine 1080P Nf Web-Dl Ddp5 1 Atmos X264-Smurf", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Love.Death.and.Robots.S03.1080p.NF.WEB-DL.DDP5.1.Atmos.x264-SMURF/Love.Death.and.Robots.S03E01.Three.Robots.Exit.Strategies.1080p.NF.WEB-DL.DDP5.1.Atmos.x264-SMURF.mkv", + "filename": "Love.Death.and.Robots.S03E01.Three.Robots.Exit.Strategies.1080p.NF.WEB-DL.DDP5.1.Atmos.x264-SMURF.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Love Death And Robots S03E01 Three Robots Exit Strategies 1080P Nf Web-Dl Ddp5 1 Atmos X264-Smurf", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Love Death And Robots S03E01 Three Robots Exit Strategies 1080P Nf Web-Dl Ddp5 1 Atmos X264-Smurf", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Love.Death.and.Robots.S03.1080p.NF.WEB-DL.DDP5.1.Atmos.x264-SMURF/Love.Death.and.Robots.S03E06.Swarm.1080p.NF.WEB-DL.DDP5.1.Atmos.x264-SMURF.mkv", + "filename": "Love.Death.and.Robots.S03E06.Swarm.1080p.NF.WEB-DL.DDP5.1.Atmos.x264-SMURF.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Love Death And Robots S03E06 Swarm 1080P Nf Web-Dl Ddp5 1 Atmos X264-Smurf", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Love Death And Robots S03E06 Swarm 1080P Nf Web-Dl Ddp5 1 Atmos X264-Smurf", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Love.Death.and.Robots.S03.1080p.NF.WEB-DL.DDP5.1.Atmos.x264-SMURF/Love.Death.and.Robots.S03E05.Kill.Team.Kill.1080p.NF.WEB-DL.DDP5.1.Atmos.x264-SMURF.mkv", + "filename": "Love.Death.and.Robots.S03E05.Kill.Team.Kill.1080p.NF.WEB-DL.DDP5.1.Atmos.x264-SMURF.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Love Death And Robots S03E05 Kill Team Kill 1080P Nf Web-Dl Ddp5 1 Atmos X264-Smurf", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Love Death And Robots S03E05 Kill Team Kill 1080P Nf Web-Dl Ddp5 1 Atmos X264-Smurf", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Love.Death.and.Robots.S03.1080p.NF.WEB-DL.DDP5.1.Atmos.x264-SMURF/Love.Death.and.Robots.S03E04.Night.of.the.Mini.Dead.1080p.NF.WEB-DL.DDP5.1.Atmos.x264-SMURF.mkv", + "filename": "Love.Death.and.Robots.S03E04.Night.of.the.Mini.Dead.1080p.NF.WEB-DL.DDP5.1.Atmos.x264-SMURF.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Love Death And Robots S03E04 Night Of The Mini Dead 1080P Nf Web-Dl Ddp5 1 Atmos X264-Smurf", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Love Death And Robots S03E04 Night Of The Mini Dead 1080P Nf Web-Dl Ddp5 1 Atmos X264-Smurf", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Love.Death.and.Robots.S03.1080p.NF.WEB-DL.DDP5.1.Atmos.x264-SMURF/Love.Death.and.Robots.S03E09.Jibaro.1080p.NF.WEB-DL.DDP5.1.Atmos.x264-SMURF.mkv", + "filename": "Love.Death.and.Robots.S03E09.Jibaro.1080p.NF.WEB-DL.DDP5.1.Atmos.x264-SMURF.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Love Death And Robots S03E09 Jibaro 1080P Nf Web-Dl Ddp5 1 Atmos X264-Smurf", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Love Death And Robots S03E09 Jibaro 1080P Nf Web-Dl Ddp5 1 Atmos X264-Smurf", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Love.Death.and.Robots.S03.1080p.NF.WEB-DL.DDP5.1.Atmos.x264-SMURF/Love.Death.and.Robots.S03E02.Bad.Travelling.1080p.NF.WEB-DL.DDP5.1.Atmos.x264-SMURF.mkv", + "filename": "Love.Death.and.Robots.S03E02.Bad.Travelling.1080p.NF.WEB-DL.DDP5.1.Atmos.x264-SMURF.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Love Death And Robots S03E02 Bad Travelling 1080P Nf Web-Dl Ddp5 1 Atmos X264-Smurf", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Love Death And Robots S03E02 Bad Travelling 1080P Nf Web-Dl Ddp5 1 Atmos X264-Smurf", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[DanMachi S4][00-11][BIG5][1080P]/[DanMachi S4][10][BIG5][1080P].mp4", + "filename": "[DanMachi S4][10][BIG5][1080P].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Danmachi S4][10][Big5][1080P]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Danmachi S4][10][Big5][1080P]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[DanMachi S4][00-11][BIG5][1080P]/[DanMachi S4][11][BIG5][1080P].mp4", + "filename": "[DanMachi S4][11][BIG5][1080P].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Danmachi S4][11][Big5][1080P]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Danmachi S4][11][Big5][1080P]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Grand Blue S2 - 01 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "filename": "[LoliHouse] Grand Blue S2 - 01 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Grand Blue S2 - 01 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Grand Blue S2 - 01 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 終末起點 - 12 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 終末起點 - 12 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 終末起點 - 12 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 終末起點 - 12 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "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", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 被逐出隊伍的治癒師,其實是最強 - 05 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 被逐出隊伍的治癒師,其實是最強 - 05 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Nekomoe kissaten][Ao no Hako][15][1080p][JPSC].mp4", + "filename": "[Nekomoe kissaten][Ao no Hako][15][1080p][JPSC].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Nekomoe Kissaten][Ao No Hako][15][1080P][Jpsc]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Nekomoe Kissaten][Ao No Hako][15][1080P][Jpsc]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 遲早是最強的鍊金術師? - 08 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 遲早是最強的鍊金術師? - 08 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 遲早是最強的鍊金術師? - 08 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 遲早是最強的鍊金術師? - 08 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 結緣甘神神社 - 15 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 結緣甘神神社 - 15 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 結緣甘神神社 - 15 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 結緣甘神神社 - 15 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 一拳超人(第三季) - 31 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 一拳超人(第三季) - 31 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 一拳超人(第三季) - 31 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 一拳超人(第三季) - 31 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 在地下城尋求邂逅是否搞錯了什麼 第五季 - 12 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 在地下城尋求邂逅是否搞錯了什麼 第五季 - 12 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 在地下城尋求邂逅是否搞錯了什麼 第五季 - 12 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 在地下城尋求邂逅是否搞錯了什麼 第五季 - 12 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 異世界悠閒紀行~邊養娃邊當冒險者~ - 03 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 異世界悠閒紀行~邊養娃邊當冒險者~ - 03 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 異世界悠閒紀行~邊養娃邊當冒險者~ - 03 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 異世界悠閒紀行~邊養娃邊當冒險者~ - 03 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Nekomoe kissaten&LoliHouse] Dungeon Meshi - 14 [WebRip 1080p HEVC-10bit AAC EAC3 ASSx2].mkv", + "filename": "[Nekomoe kissaten&LoliHouse] Dungeon Meshi - 14 [WebRip 1080p HEVC-10bit AAC EAC3 ASSx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Nekomoe Kissaten&Lolihouse] Dungeon Meshi - 14 [Webrip 1080P Hevc-10Bit Aac Eac3 Assx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Nekomoe Kissaten&Lolihouse] Dungeon Meshi - 14 [Webrip 1080P Hevc-10Bit Aac Eac3 Assx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Jigoku Sensei Nube 2025 - 16 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "filename": "[LoliHouse] Jigoku Sensei Nube 2025 - 16 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Jigoku Sensei Nube 2025 - 16 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Jigoku Sensei Nube 2025 - 16 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 勇氣爆發 BANG BRAVERN - 07 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 勇氣爆發 BANG BRAVERN - 07 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 勇氣爆發 Bang Bravern - 07 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 勇氣爆發 Bang Bravern - 07 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Skymoon-Raws] Guild no Uketsukejou desu ga, Zangyou wa Iya nanode Boss wo Solo Toubatsu Shiyou to Omoimasu - 09 [ViuTV][WEB-DL][CHT][SRT][1080p][AVC AAC].mkv", + "filename": "[Skymoon-Raws] Guild no Uketsukejou desu ga, Zangyou wa Iya nanode Boss wo Solo Toubatsu Shiyou to Omoimasu - 09 [ViuTV][WEB-DL][CHT][SRT][1080p][AVC AAC].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Skymoon-Raws] Guild No Uketsukejou Desu Ga, Zangyou Wa Iya Nanode Boss Wo Solo Toubatsu Shiyou To Omoimasu - 09 [Viutv][Web-Dl][Cht][Srt][1080P][Avc Aac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Skymoon-Raws] Guild No Uketsukejou Desu Ga, Zangyou Wa Iya Nanode Boss Wo Solo Toubatsu Shiyou To Omoimasu - 09 [Viutv][Web-Dl][Cht][Srt][1080P][Avc Aac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 妻子變成小學生。 - 09 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 妻子變成小學生。 - 09 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 妻子變成小學生。 - 09 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 妻子變成小學生。 - 09 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 無職轉生~到了異世界就拿出真本事 第二季 - 19 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 無職轉生~到了異世界就拿出真本事 第二季 - 19 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 無職轉生~到了異世界就拿出真本事 第二季 - 19 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 無職轉生~到了異世界就拿出真本事 第二季 - 19 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "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", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 忍者與殺手的兩人生活 - 05 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 忍者與殺手的兩人生活 - 05 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Tensei Shitara Slime Datta Ken 3rd Season - 57 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "filename": "[LoliHouse] Tensei Shitara Slime Datta Ken 3rd Season - 57 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Tensei Shitara Slime Datta Ken 3Rd Season - 57 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Tensei Shitara Slime Datta Ken 3Rd Season - 57 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Lilith-Raws] Kaijuu 8-gou - 01 [Baha][WebDL 1080p AVC AAC][CHT].mp4", + "filename": "[Lilith-Raws] Kaijuu 8-gou - 01 [Baha][WebDL 1080p AVC AAC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lilith-Raws] Kaijuu 8-Gou - 01 [Baha][Webdl 1080P Avc Aac][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lilith-Raws] Kaijuu 8-Gou - 01 [Baha][Webdl 1080P Avc Aac][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/《繼母的拖油瓶是我的前女友》#1/《繼母的拖油瓶是我的前女友》#1 (日語原聲)【Ani-One Asia】.mp4", + "filename": "《繼母的拖油瓶是我的前女友》#1 (日語原聲)【Ani-One Asia】.mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "《繼母的拖油瓶是我的前女友》#1 (日語原聲)【Ani-One Asia】", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "《繼母的拖油瓶是我的前女友》#1 (日語原聲)【Ani-One Asia】", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 瞬間治癒卻被當成廢物踢出隊伍的天才治療師,改當無照治療師快樂過活 - 04 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 瞬間治癒卻被當成廢物踢出隊伍的天才治療師,改當無照治療師快樂過活 - 04 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 瞬間治癒卻被當成廢物踢出隊伍的天才治療師,改當無照治療師快樂過活 - 04 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 瞬間治癒卻被當成廢物踢出隊伍的天才治療師,改當無照治療師快樂過活 - 04 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 記憶縫線 YOUR FORMA - 13 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 記憶縫線 YOUR FORMA - 13 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 記憶縫線 Your Forma - 13 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 記憶縫線 Your Forma - 13 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Episode of Skypiea 1080p/[OPFansMaplesnow][one_piece][2018][Special][01][Episode of Skypiea][jap_chs_cht][x264_aac][1080p].mkv", + "filename": "[OPFansMaplesnow][one_piece][2018][Special][01][Episode of Skypiea][jap_chs_cht][x264_aac][1080p].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Opfansmaplesnow][One Piece][2018][Special][01][Episode Of Skypiea][Jap Chs Cht][X264 Aac][1080P]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Opfansmaplesnow][One Piece][2018][Special][01][Episode Of Skypiea][Jap Chs Cht][X264 Aac][1080P]", + "needs_review": true + }, + { + "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", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 異國日記 - 05 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 異國日記 - 05 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 妻子變成小學生。 - 12 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 妻子變成小學生。 - 12 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 妻子變成小學生。 - 12 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 妻子變成小學生。 - 12 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Nekomoe kissaten][Tower of God S2][21][1080p][CHS].mp4", + "filename": "[Nekomoe kissaten][Tower of God S2][21][1080p][CHS].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Nekomoe Kissaten][Tower Of God S2][21][1080P][Chs]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Nekomoe Kissaten][Tower Of God S2][21][1080P][Chs]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 杖與劍的魔劍譚 - 03 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 杖與劍的魔劍譚 - 03 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 杖與劍的魔劍譚 - 03 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 杖與劍的魔劍譚 - 03 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] The Seven Deadly Sins the Movie - Prisoners of the Sky/[LoliHouse] The Seven Deadly Sins the Movie - Prisoners of the Sky [WebRip 1080p HEVC-10bit AAC SRTx4].mkv", + "filename": "[LoliHouse] The Seven Deadly Sins the Movie - Prisoners of the Sky [WebRip 1080p HEVC-10bit AAC SRTx4].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] The Seven Deadly Sins The Movie - Prisoners Of The Sky [Webrip 1080P Hevc-10Bit Aac Srtx4]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] The Seven Deadly Sins The Movie - Prisoners Of The Sky [Webrip 1080P Hevc-10Bit Aac Srtx4]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Nekomoe kissaten][Ninja Kamui][07][1080p][CHT].mp4", + "filename": "[Nekomoe kissaten][Ninja Kamui][07][1080p][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Nekomoe Kissaten][Ninja Kamui][07][1080P][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Nekomoe Kissaten][Ninja Kamui][07][1080P][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] LAZARUS 拉撒路 - 10 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] LAZARUS 拉撒路 - 10 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] Lazarus 拉撒路 - 10 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] Lazarus 拉撒路 - 10 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "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", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 地獄模式 ~喜歡挑戰特殊成就的玩家在廢設定的異世界成為無雙~ - 05 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 地獄模式 ~喜歡挑戰特殊成就的玩家在廢設定的異世界成為無雙~ - 05 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 異世界自殺突擊隊 - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 異世界自殺突擊隊 - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 異世界自殺突擊隊 - 02 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 異世界自殺突擊隊 - 02 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[KTXP][BAKI][01-13][GB][1080p]/[KTXP][BAKI][04][GB][1080p].mp4", + "filename": "[KTXP][BAKI][04][GB][1080p].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ktxp][Baki][04][Gb][1080P]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ktxp][Baki][04][Gb][1080P]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[KTXP][BAKI][01-13][GB][1080p]/[KTXP][BAKI][05][GB][1080p].mp4", + "filename": "[KTXP][BAKI][05][GB][1080p].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ktxp][Baki][05][Gb][1080P]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ktxp][Baki][05][Gb][1080P]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[KTXP][BAKI][01-13][GB][1080p]/[KTXP][BAKI][08][GB][1080p].mp4", + "filename": "[KTXP][BAKI][08][GB][1080p].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ktxp][Baki][08][Gb][1080P]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ktxp][Baki][08][Gb][1080P]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[KTXP][BAKI][01-13][GB][1080p]/[KTXP][BAKI][06][GB][1080p].mp4", + "filename": "[KTXP][BAKI][06][GB][1080p].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ktxp][Baki][06][Gb][1080P]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ktxp][Baki][06][Gb][1080P]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[KTXP][BAKI][01-13][GB][1080p]/[KTXP][BAKI][09][GB][1080p].mp4", + "filename": "[KTXP][BAKI][09][GB][1080p].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ktxp][Baki][09][Gb][1080P]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ktxp][Baki][09][Gb][1080P]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[KTXP][BAKI][01-13][GB][1080p]/[KTXP][BAKI][07][GB][1080p].mp4", + "filename": "[KTXP][BAKI][07][GB][1080p].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ktxp][Baki][07][Gb][1080P]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ktxp][Baki][07][Gb][1080P]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[KTXP][BAKI][01-13][GB][1080p]/[KTXP][BAKI][11][GB][1080p].mp4", + "filename": "[KTXP][BAKI][11][GB][1080p].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ktxp][Baki][11][Gb][1080P]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ktxp][Baki][11][Gb][1080P]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[KTXP][BAKI][01-13][GB][1080p]/[KTXP][BAKI][01][GB][1080p].mp4", + "filename": "[KTXP][BAKI][01][GB][1080p].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ktxp][Baki][01][Gb][1080P]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ktxp][Baki][01][Gb][1080P]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[KTXP][BAKI][01-13][GB][1080p]/[KTXP][BAKI][10][GB][1080p].mp4", + "filename": "[KTXP][BAKI][10][GB][1080p].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ktxp][Baki][10][Gb][1080P]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ktxp][Baki][10][Gb][1080P]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[KTXP][BAKI][01-13][GB][1080p]/[KTXP][BAKI][03][GB][1080p].mp4", + "filename": "[KTXP][BAKI][03][GB][1080p].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ktxp][Baki][03][Gb][1080P]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ktxp][Baki][03][Gb][1080P]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[KTXP][BAKI][01-13][GB][1080p]/[KTXP][BAKI][13][GB][1080p].mp4", + "filename": "[KTXP][BAKI][13][GB][1080p].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ktxp][Baki][13][Gb][1080P]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ktxp][Baki][13][Gb][1080P]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[KTXP][BAKI][01-13][GB][1080p]/[KTXP][BAKI][02][GB][1080p].mp4", + "filename": "[KTXP][BAKI][02][GB][1080p].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ktxp][Baki][02][Gb][1080P]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ktxp][Baki][02][Gb][1080P]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[KTXP][BAKI][01-13][GB][1080p]/[KTXP][BAKI][12][GB][1080p].mp4", + "filename": "[KTXP][BAKI][12][GB][1080p].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ktxp][Baki][12][Gb][1080P]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ktxp][Baki][12][Gb][1080P]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Castlevania.S03.1080p.NF.WEBRip.DDP5.1.Atmos.x264-NTG[rartv]/Castlevania.S03E09.1080p.NF.WEB-DL.DDP5.1.x264-NTG.mkv", + "filename": "Castlevania.S03E09.1080p.NF.WEB-DL.DDP5.1.x264-NTG.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Castlevania S03E09 1080P Nf Web-Dl Ddp5 1 X264-Ntg", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Castlevania S03E09 1080P Nf Web-Dl Ddp5 1 X264-Ntg", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Castlevania.S03.1080p.NF.WEBRip.DDP5.1.Atmos.x264-NTG[rartv]/Castlevania.S03E05.1080p.NF.WEB-DL.DDP5.1.x264-NTG.mkv", + "filename": "Castlevania.S03E05.1080p.NF.WEB-DL.DDP5.1.x264-NTG.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Castlevania S03E05 1080P Nf Web-Dl Ddp5 1 X264-Ntg", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Castlevania S03E05 1080P Nf Web-Dl Ddp5 1 X264-Ntg", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Castlevania.S03.1080p.NF.WEBRip.DDP5.1.Atmos.x264-NTG[rartv]/Castlevania.S03E01.1080p.NF.WEB-DL.DDP5.1.x264-NTG.mkv", + "filename": "Castlevania.S03E01.1080p.NF.WEB-DL.DDP5.1.x264-NTG.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Castlevania S03E01 1080P Nf Web-Dl Ddp5 1 X264-Ntg", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Castlevania S03E01 1080P Nf Web-Dl Ddp5 1 X264-Ntg", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Castlevania.S03.1080p.NF.WEBRip.DDP5.1.Atmos.x264-NTG[rartv]/Castlevania.S03E10.1080p.NF.WEB-DL.DDP5.1.x264-NTG.mkv", + "filename": "Castlevania.S03E10.1080p.NF.WEB-DL.DDP5.1.x264-NTG.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Castlevania S03E10 1080P Nf Web-Dl Ddp5 1 X264-Ntg", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Castlevania S03E10 1080P Nf Web-Dl Ddp5 1 X264-Ntg", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Castlevania.S03.1080p.NF.WEBRip.DDP5.1.Atmos.x264-NTG[rartv]/Castlevania.S03E08.1080p.NF.WEB-DL.DDP5.1.x264-NTG.mkv", + "filename": "Castlevania.S03E08.1080p.NF.WEB-DL.DDP5.1.x264-NTG.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Castlevania S03E08 1080P Nf Web-Dl Ddp5 1 X264-Ntg", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Castlevania S03E08 1080P Nf Web-Dl Ddp5 1 X264-Ntg", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Castlevania.S03.1080p.NF.WEBRip.DDP5.1.Atmos.x264-NTG[rartv]/Castlevania.S03E04.1080p.NF.WEB-DL.DDP5.1.x264-NTG.mkv", + "filename": "Castlevania.S03E04.1080p.NF.WEB-DL.DDP5.1.x264-NTG.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Castlevania S03E04 1080P Nf Web-Dl Ddp5 1 X264-Ntg", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Castlevania S03E04 1080P Nf Web-Dl Ddp5 1 X264-Ntg", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Castlevania.S03.1080p.NF.WEBRip.DDP5.1.Atmos.x264-NTG[rartv]/Castlevania.S03E02.1080p.NF.WEB-DL.DDP5.1.x264-NTG.mkv", + "filename": "Castlevania.S03E02.1080p.NF.WEB-DL.DDP5.1.x264-NTG.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Castlevania S03E02 1080P Nf Web-Dl Ddp5 1 X264-Ntg", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Castlevania S03E02 1080P Nf Web-Dl Ddp5 1 X264-Ntg", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Castlevania.S03.1080p.NF.WEBRip.DDP5.1.Atmos.x264-NTG[rartv]/Castlevania.S03E06.1080p.NF.WEB-DL.DDP5.1.x264-NTG.mkv", + "filename": "Castlevania.S03E06.1080p.NF.WEB-DL.DDP5.1.x264-NTG.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Castlevania S03E06 1080P Nf Web-Dl Ddp5 1 X264-Ntg", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Castlevania S03E06 1080P Nf Web-Dl Ddp5 1 X264-Ntg", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Castlevania.S03.1080p.NF.WEBRip.DDP5.1.Atmos.x264-NTG[rartv]/Castlevania.S03E03.1080p.NF.WEB-DL.DDP5.1.x264-NTG.mkv", + "filename": "Castlevania.S03E03.1080p.NF.WEB-DL.DDP5.1.x264-NTG.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Castlevania S03E03 1080P Nf Web-Dl Ddp5 1 X264-Ntg", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Castlevania S03E03 1080P Nf Web-Dl Ddp5 1 X264-Ntg", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Castlevania.S03.1080p.NF.WEBRip.DDP5.1.Atmos.x264-NTG[rartv]/Castlevania.S03E07.1080p.NF.WEB-DL.DDP5.1.x264-NTG.mkv", + "filename": "Castlevania.S03E07.1080p.NF.WEB-DL.DDP5.1.x264-NTG.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Castlevania S03E07 1080P Nf Web-Dl Ddp5 1 X264-Ntg", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Castlevania S03E07 1080P Nf Web-Dl Ddp5 1 X264-Ntg", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[UHA-WINGS][Kimetsu no Yaiba][01-26 END][x264 1080p][CHT]/[UHA-WINGS][Kimetsu no Yaiba][19][x264 1080p][CHT].mp4", + "filename": "[UHA-WINGS][Kimetsu no Yaiba][19][x264 1080p][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Uha-Wings][Kimetsu No Yaiba][19][X264 1080P][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Uha-Wings][Kimetsu No Yaiba][19][X264 1080P][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[UHA-WINGS][Kimetsu no Yaiba][01-26 END][x264 1080p][CHT]/[UHA-WINGS][Kimetsu no Yaiba][13][x264 1080p][CHT].mp4", + "filename": "[UHA-WINGS][Kimetsu no Yaiba][13][x264 1080p][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Uha-Wings][Kimetsu No Yaiba][13][X264 1080P][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Uha-Wings][Kimetsu No Yaiba][13][X264 1080P][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[UHA-WINGS][Kimetsu no Yaiba][01-26 END][x264 1080p][CHT]/[UHA-WINGS][Kimetsu no Yaiba][24][x264 1080p][CHT].mp4", + "filename": "[UHA-WINGS][Kimetsu no Yaiba][24][x264 1080p][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Uha-Wings][Kimetsu No Yaiba][24][X264 1080P][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Uha-Wings][Kimetsu No Yaiba][24][X264 1080P][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[UHA-WINGS][Kimetsu no Yaiba][01-26 END][x264 1080p][CHT]/[UHA-WINGS][Kimetsu no Yaiba][22][x264 1080p][CHT].mp4", + "filename": "[UHA-WINGS][Kimetsu no Yaiba][22][x264 1080p][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Uha-Wings][Kimetsu No Yaiba][22][X264 1080P][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Uha-Wings][Kimetsu No Yaiba][22][X264 1080P][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[UHA-WINGS][Kimetsu no Yaiba][01-26 END][x264 1080p][CHT]/[UHA-WINGS][Kimetsu no Yaiba][15][x264 1080p][CHT].mp4", + "filename": "[UHA-WINGS][Kimetsu no Yaiba][15][x264 1080p][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Uha-Wings][Kimetsu No Yaiba][15][X264 1080P][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Uha-Wings][Kimetsu No Yaiba][15][X264 1080P][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[UHA-WINGS][Kimetsu no Yaiba][01-26 END][x264 1080p][CHT]/[UHA-WINGS][Kimetsu no Yaiba][05][x264 1080p][CHT].mp4", + "filename": "[UHA-WINGS][Kimetsu no Yaiba][05][x264 1080p][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Uha-Wings][Kimetsu No Yaiba][05][X264 1080P][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Uha-Wings][Kimetsu No Yaiba][05][X264 1080P][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[UHA-WINGS][Kimetsu no Yaiba][01-26 END][x264 1080p][CHT]/[UHA-WINGS][Kimetsu no Yaiba][03][x264 1080p][CHT].mp4", + "filename": "[UHA-WINGS][Kimetsu no Yaiba][03][x264 1080p][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Uha-Wings][Kimetsu No Yaiba][03][X264 1080P][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Uha-Wings][Kimetsu No Yaiba][03][X264 1080P][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[UHA-WINGS][Kimetsu no Yaiba][01-26 END][x264 1080p][CHT]/[UHA-WINGS][Kimetsu no Yaiba][09][x264 1080p][CHT].mp4", + "filename": "[UHA-WINGS][Kimetsu no Yaiba][09][x264 1080p][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Uha-Wings][Kimetsu No Yaiba][09][X264 1080P][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Uha-Wings][Kimetsu No Yaiba][09][X264 1080P][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[UHA-WINGS][Kimetsu no Yaiba][01-26 END][x264 1080p][CHT]/[UHA-WINGS][Kimetsu no Yaiba][18][x264 1080p][CHT].mp4", + "filename": "[UHA-WINGS][Kimetsu no Yaiba][18][x264 1080p][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Uha-Wings][Kimetsu No Yaiba][18][X264 1080P][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Uha-Wings][Kimetsu No Yaiba][18][X264 1080P][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[UHA-WINGS][Kimetsu no Yaiba][01-26 END][x264 1080p][CHT]/[UHA-WINGS][Kimetsu no Yaiba][25][x264 1080p][CHT].mp4", + "filename": "[UHA-WINGS][Kimetsu no Yaiba][25][x264 1080p][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Uha-Wings][Kimetsu No Yaiba][25][X264 1080P][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Uha-Wings][Kimetsu No Yaiba][25][X264 1080P][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[UHA-WINGS][Kimetsu no Yaiba][01-26 END][x264 1080p][CHT]/[UHA-WINGS][Kimetsu no Yaiba][12][x264 1080p][CHT].mp4", + "filename": "[UHA-WINGS][Kimetsu no Yaiba][12][x264 1080p][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Uha-Wings][Kimetsu No Yaiba][12][X264 1080P][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Uha-Wings][Kimetsu No Yaiba][12][X264 1080P][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[UHA-WINGS][Kimetsu no Yaiba][01-26 END][x264 1080p][CHT]/[UHA-WINGS][Kimetsu no Yaiba][14][x264 1080p][CHT].mp4", + "filename": "[UHA-WINGS][Kimetsu no Yaiba][14][x264 1080p][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Uha-Wings][Kimetsu No Yaiba][14][X264 1080P][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Uha-Wings][Kimetsu No Yaiba][14][X264 1080P][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[UHA-WINGS][Kimetsu no Yaiba][01-26 END][x264 1080p][CHT]/[UHA-WINGS][Kimetsu no Yaiba][23][x264 1080p][CHT].mp4", + "filename": "[UHA-WINGS][Kimetsu no Yaiba][23][x264 1080p][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Uha-Wings][Kimetsu No Yaiba][23][X264 1080P][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Uha-Wings][Kimetsu No Yaiba][23][X264 1080P][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[UHA-WINGS][Kimetsu no Yaiba][01-26 END][x264 1080p][CHT]/[UHA-WINGS][Kimetsu no Yaiba][04][x264 1080p][CHT].mp4", + "filename": "[UHA-WINGS][Kimetsu no Yaiba][04][x264 1080p][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Uha-Wings][Kimetsu No Yaiba][04][X264 1080P][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Uha-Wings][Kimetsu No Yaiba][04][X264 1080P][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[UHA-WINGS][Kimetsu no Yaiba][01-26 END][x264 1080p][CHT]/[UHA-WINGS][Kimetsu no Yaiba][02][x264 1080p][CHT].mp4", + "filename": "[UHA-WINGS][Kimetsu no Yaiba][02][x264 1080p][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Uha-Wings][Kimetsu No Yaiba][02][X264 1080P][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Uha-Wings][Kimetsu No Yaiba][02][X264 1080P][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[UHA-WINGS][Kimetsu no Yaiba][01-26 END][x264 1080p][CHT]/[UHA-WINGS][Kimetsu no Yaiba][08][x264 1080p][CHT].mp4", + "filename": "[UHA-WINGS][Kimetsu no Yaiba][08][x264 1080p][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Uha-Wings][Kimetsu No Yaiba][08][X264 1080P][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Uha-Wings][Kimetsu No Yaiba][08][X264 1080P][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[UHA-WINGS][Kimetsu no Yaiba][01-26 END][x264 1080p][CHT]/[UHA-WINGS][Kimetsu no Yaiba][20][x264 1080p][CHT].mp4", + "filename": "[UHA-WINGS][Kimetsu no Yaiba][20][x264 1080p][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Uha-Wings][Kimetsu No Yaiba][20][X264 1080P][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Uha-Wings][Kimetsu No Yaiba][20][X264 1080P][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[UHA-WINGS][Kimetsu no Yaiba][01-26 END][x264 1080p][CHT]/[UHA-WINGS][Kimetsu no Yaiba][17][x264 1080p][CHT].mp4", + "filename": "[UHA-WINGS][Kimetsu no Yaiba][17][x264 1080p][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Uha-Wings][Kimetsu No Yaiba][17][X264 1080P][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Uha-Wings][Kimetsu No Yaiba][17][X264 1080P][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[UHA-WINGS][Kimetsu no Yaiba][01-26 END][x264 1080p][CHT]/[UHA-WINGS][Kimetsu no Yaiba][11][x264 1080p][CHT].mp4", + "filename": "[UHA-WINGS][Kimetsu no Yaiba][11][x264 1080p][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Uha-Wings][Kimetsu No Yaiba][11][X264 1080P][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Uha-Wings][Kimetsu No Yaiba][11][X264 1080P][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[UHA-WINGS][Kimetsu no Yaiba][01-26 END][x264 1080p][CHT]/[UHA-WINGS][Kimetsu no Yaiba][26][x264 1080p][CHT].mp4", + "filename": "[UHA-WINGS][Kimetsu no Yaiba][26][x264 1080p][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Uha-Wings][Kimetsu No Yaiba][26][X264 1080P][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Uha-Wings][Kimetsu No Yaiba][26][X264 1080P][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[UHA-WINGS][Kimetsu no Yaiba][01-26 END][x264 1080p][CHT]/[UHA-WINGS][Kimetsu no Yaiba][01][x264 1080p][CHT].mp4", + "filename": "[UHA-WINGS][Kimetsu no Yaiba][01][x264 1080p][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Uha-Wings][Kimetsu No Yaiba][01][X264 1080P][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Uha-Wings][Kimetsu No Yaiba][01][X264 1080P][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[UHA-WINGS][Kimetsu no Yaiba][01-26 END][x264 1080p][CHT]/[UHA-WINGS][Kimetsu no Yaiba][07][x264 1080p][CHT].mp4", + "filename": "[UHA-WINGS][Kimetsu no Yaiba][07][x264 1080p][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Uha-Wings][Kimetsu No Yaiba][07][X264 1080P][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Uha-Wings][Kimetsu No Yaiba][07][X264 1080P][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[UHA-WINGS][Kimetsu no Yaiba][01-26 END][x264 1080p][CHT]/[UHA-WINGS][Kimetsu no Yaiba][16][x264 1080p][CHT].mp4", + "filename": "[UHA-WINGS][Kimetsu no Yaiba][16][x264 1080p][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Uha-Wings][Kimetsu No Yaiba][16][X264 1080P][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Uha-Wings][Kimetsu No Yaiba][16][X264 1080P][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[UHA-WINGS][Kimetsu no Yaiba][01-26 END][x264 1080p][CHT]/[UHA-WINGS][Kimetsu no Yaiba][21][x264 1080p][CHT].mp4", + "filename": "[UHA-WINGS][Kimetsu no Yaiba][21][x264 1080p][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Uha-Wings][Kimetsu No Yaiba][21][X264 1080P][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Uha-Wings][Kimetsu No Yaiba][21][X264 1080P][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[UHA-WINGS][Kimetsu no Yaiba][01-26 END][x264 1080p][CHT]/[UHA-WINGS][Kimetsu no Yaiba][10][x264 1080p][CHT].mp4", + "filename": "[UHA-WINGS][Kimetsu no Yaiba][10][x264 1080p][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Uha-Wings][Kimetsu No Yaiba][10][X264 1080P][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Uha-Wings][Kimetsu No Yaiba][10][X264 1080P][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[UHA-WINGS][Kimetsu no Yaiba][01-26 END][x264 1080p][CHT]/[UHA-WINGS][Kimetsu no Yaiba][06][x264 1080p][CHT].mp4", + "filename": "[UHA-WINGS][Kimetsu no Yaiba][06][x264 1080p][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Uha-Wings][Kimetsu No Yaiba][06][X264 1080P][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Uha-Wings][Kimetsu No Yaiba][06][X264 1080P][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 記憶縫線 YOUR FORMA - 08 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 記憶縫線 YOUR FORMA - 08 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 記憶縫線 Your Forma - 08 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 記憶縫線 Your Forma - 08 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Sakurato] Okinawa de Suki ni Natta Ko ga Hougen Sugite Tsura Sugiru [01][HEVC-10bit 1080p AAC][CHS&CHT&JPN].mkv", + "filename": "[Sakurato] Okinawa de Suki ni Natta Ko ga Hougen Sugite Tsura Sugiru [01][HEVC-10bit 1080p AAC][CHS&CHT&JPN].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Sakurato] Okinawa De Suki Ni Natta Ko Ga Hougen Sugite Tsura Sugiru [01][Hevc-10Bit 1080P Aac][Chs&Cht&Jpn]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Sakurato] Okinawa De Suki Ni Natta Ko Ga Hougen Sugite Tsura Sugiru [01][Hevc-10Bit 1080P Aac][Chs&Cht&Jpn]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 靠廢柴技能【狀態異常】成為最強的我將蹂躪一切 - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 靠廢柴技能【狀態異常】成為最強的我將蹂躪一切 - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 靠廢柴技能【狀態異常】成為最強的我將蹂躪一切 - 02 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 靠廢柴技能【狀態異常】成為最強的我將蹂躪一切 - 02 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Hikaru ga Shinda Natsu - 01 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "filename": "[LoliHouse] Hikaru ga Shinda Natsu - 01 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Hikaru Ga Shinda Natsu - 01 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Hikaru Ga Shinda Natsu - 01 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Lilith-Raws] Mushoku Tensei S02 - 13 [Baha][WebDL 1080p AVC AAC][CHT].mp4", + "filename": "[Lilith-Raws] Mushoku Tensei S02 - 13 [Baha][WebDL 1080p AVC AAC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lilith-Raws] Mushoku Tensei S02 - 13 [Baha][Webdl 1080P Avc Aac][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lilith-Raws] Mushoku Tensei S02 - 13 [Baha][Webdl 1080P Avc Aac][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[U3-Web] Kabaneri of the Iron Fortress - The Battle of Unato (2019) [Movie][NFLX WEB-DL 1080p AVC E-AC-3 DDP5.1]/[U3-Web] Koutetsujou no Kabaneri Unato Kessen - 01 [NFLX WEB-DL 1080p AVC DDP5.1].mkv", + "filename": "[U3-Web] Koutetsujou no Kabaneri Unato Kessen - 01 [NFLX WEB-DL 1080p AVC DDP5.1].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[U3-Web] Koutetsujou No Kabaneri Unato Kessen - 01 [Nflx Web-Dl 1080P Avc Ddp5 1]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[U3-Web] Koutetsujou No Kabaneri Unato Kessen - 01 [Nflx Web-Dl 1080P Avc Ddp5 1]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[U3-Web] Kabaneri of the Iron Fortress - The Battle of Unato (2019) [Movie][NFLX WEB-DL 1080p AVC E-AC-3 DDP5.1]/[U3-Web] Koutetsujou no Kabaneri Unato Kessen - 02 [NFLX WEB-DL 1080p AVC DDP5.1].mkv", + "filename": "[U3-Web] Koutetsujou no Kabaneri Unato Kessen - 02 [NFLX WEB-DL 1080p AVC DDP5.1].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[U3-Web] Koutetsujou No Kabaneri Unato Kessen - 02 [Nflx Web-Dl 1080P Avc Ddp5 1]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[U3-Web] Koutetsujou No Kabaneri Unato Kessen - 02 [Nflx Web-Dl 1080P Avc Ddp5 1]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[U3-Web] Kabaneri of the Iron Fortress - The Battle of Unato (2019) [Movie][NFLX WEB-DL 1080p AVC E-AC-3 DDP5.1]/[U3-Web] Koutetsujou no Kabaneri Unato Kessen - 03 [NFLX WEB-DL 1080p AVC DDP5.1].mkv", + "filename": "[U3-Web] Koutetsujou no Kabaneri Unato Kessen - 03 [NFLX WEB-DL 1080p AVC DDP5.1].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[U3-Web] Koutetsujou No Kabaneri Unato Kessen - 03 [Nflx Web-Dl 1080P Avc Ddp5 1]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[U3-Web] Koutetsujou No Kabaneri Unato Kessen - 03 [Nflx Web-Dl 1080P Avc Ddp5 1]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[heibaiSub] Arafou Otoko no Isekai Tsuuhan Seikatsu [09] [WebRip] [AVC-8bit 1080P AAC][CHT&JPN].mp4", + "filename": "[heibaiSub] Arafou Otoko no Isekai Tsuuhan Seikatsu [09] [WebRip] [AVC-8bit 1080P AAC][CHT&JPN].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Heibaisub] Arafou Otoko No Isekai Tsuuhan Seikatsu [09] [Webrip] [Avc-8Bit 1080P Aac][Cht&Jpn]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Heibaisub] Arafou Otoko No Isekai Tsuuhan Seikatsu [09] [Webrip] [Avc-8Bit 1080P Aac][Cht&Jpn]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 膽大黨 第二季 - 24 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 膽大黨 第二季 - 24 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 膽大黨 第二季 - 24 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 膽大黨 第二季 - 24 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 差點在迷宮深處被信任的夥伴殺掉,但靠著天賜技能「無限扭蛋」獲得等級 9999 的夥伴,我要向前隊友和世界展開復仇&「給他們好看!」 - 08 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 差點在迷宮深處被信任的夥伴殺掉,但靠著天賜技能「無限扭蛋」獲得等級 9999 的夥伴,我要向前隊友和世界展開復仇&「給他們好看!」 - 08 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 差點在迷宮深處被信任的夥伴殺掉,但靠著天賜技能「無限扭蛋」獲得等級 9999 的夥伴,我要向前隊友和世界展開復仇&「給他們好看!」 - 08 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 差點在迷宮深處被信任的夥伴殺掉,但靠著天賜技能「無限扭蛋」獲得等級 9999 的夥伴,我要向前隊友和世界展開復仇&「給他們好看!」 - 08 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Saikyou Tank no Meikyuu Kouryaku - 01 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "filename": "[LoliHouse] Saikyou Tank no Meikyuu Kouryaku - 01 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Saikyou Tank No Meikyuu Kouryaku - 01 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Saikyou Tank No Meikyuu Kouryaku - 01 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 我獨自升級 - 08 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 我獨自升級 - 08 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 我獨自升級 - 08 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 我獨自升級 - 08 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Hazure Waku no Joutaiijou Sukiru - 06 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "filename": "[LoliHouse] Hazure Waku no Joutaiijou Sukiru - 06 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Hazure Waku No Joutaiijou Sukiru - 06 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Hazure Waku No Joutaiijou Sukiru - 06 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/爱,死亡和机器人S03.Love,Death.and.Robots.2022.1080p.WEB-DL.x265.AC3£cXcY@FRDS/Love,Death.and.Robots.S03E03.2022.1080p.WEB-DL.x265.10bit.AC3£cXcY@FRDS.mkv", + "filename": "Love,Death.and.Robots.S03E03.2022.1080p.WEB-DL.x265.10bit.AC3£cXcY@FRDS.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Love,Death And Robots S03E03 2022 1080P Web-Dl X265 10Bit Ac3£Cxcy@Frds", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Love,Death And Robots S03E03 2022 1080P Web-Dl X265 10Bit Ac3£Cxcy@Frds", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/爱,死亡和机器人S03.Love,Death.and.Robots.2022.1080p.WEB-DL.x265.AC3£cXcY@FRDS/Love,Death.and.Robots.S03E07.2022.1080p.WEB-DL.x265.10bit.AC3£cXcY@FRDS.mkv", + "filename": "Love,Death.and.Robots.S03E07.2022.1080p.WEB-DL.x265.10bit.AC3£cXcY@FRDS.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Love,Death And Robots S03E07 2022 1080P Web-Dl X265 10Bit Ac3£Cxcy@Frds", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Love,Death And Robots S03E07 2022 1080P Web-Dl X265 10Bit Ac3£Cxcy@Frds", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/爱,死亡和机器人S03.Love,Death.and.Robots.2022.1080p.WEB-DL.x265.AC3£cXcY@FRDS/Love,Death.and.Robots.S03E04.2022.1080p.WEB-DL.x265.10bit.AC3£cXcY@FRDS.mkv", + "filename": "Love,Death.and.Robots.S03E04.2022.1080p.WEB-DL.x265.10bit.AC3£cXcY@FRDS.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Love,Death And Robots S03E04 2022 1080P Web-Dl X265 10Bit Ac3£Cxcy@Frds", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Love,Death And Robots S03E04 2022 1080P Web-Dl X265 10Bit Ac3£Cxcy@Frds", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/爱,死亡和机器人S03.Love,Death.and.Robots.2022.1080p.WEB-DL.x265.AC3£cXcY@FRDS/Love,Death.and.Robots.S03E08.2022.1080p.WEB-DL.x265.10bit.AC3£cXcY@FRDS.mkv", + "filename": "Love,Death.and.Robots.S03E08.2022.1080p.WEB-DL.x265.10bit.AC3£cXcY@FRDS.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Love,Death And Robots S03E08 2022 1080P Web-Dl X265 10Bit Ac3£Cxcy@Frds", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Love,Death And Robots S03E08 2022 1080P Web-Dl X265 10Bit Ac3£Cxcy@Frds", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/爱,死亡和机器人S03.Love,Death.and.Robots.2022.1080p.WEB-DL.x265.AC3£cXcY@FRDS/Love,Death.and.Robots.S03E06.2022.1080p.WEB-DL.x265.10bit.AC3£cXcY@FRDS.mkv", + "filename": "Love,Death.and.Robots.S03E06.2022.1080p.WEB-DL.x265.10bit.AC3£cXcY@FRDS.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Love,Death And Robots S03E06 2022 1080P Web-Dl X265 10Bit Ac3£Cxcy@Frds", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Love,Death And Robots S03E06 2022 1080P Web-Dl X265 10Bit Ac3£Cxcy@Frds", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/爱,死亡和机器人S03.Love,Death.and.Robots.2022.1080p.WEB-DL.x265.AC3£cXcY@FRDS/Love,Death.and.Robots.S03E02.2022.1080p.WEB-DL.x265.10bit.AC3£cXcY@FRDS.mkv", + "filename": "Love,Death.and.Robots.S03E02.2022.1080p.WEB-DL.x265.10bit.AC3£cXcY@FRDS.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Love,Death And Robots S03E02 2022 1080P Web-Dl X265 10Bit Ac3£Cxcy@Frds", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Love,Death And Robots S03E02 2022 1080P Web-Dl X265 10Bit Ac3£Cxcy@Frds", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/爱,死亡和机器人S03.Love,Death.and.Robots.2022.1080p.WEB-DL.x265.AC3£cXcY@FRDS/Love,Death.and.Robots.S03E05.2022.1080p.WEB-DL.x265.10bit.AC3£cXcY@FRDS.mkv", + "filename": "Love,Death.and.Robots.S03E05.2022.1080p.WEB-DL.x265.10bit.AC3£cXcY@FRDS.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Love,Death And Robots S03E05 2022 1080P Web-Dl X265 10Bit Ac3£Cxcy@Frds", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Love,Death And Robots S03E05 2022 1080P Web-Dl X265 10Bit Ac3£Cxcy@Frds", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/爱,死亡和机器人S03.Love,Death.and.Robots.2022.1080p.WEB-DL.x265.AC3£cXcY@FRDS/Love,Death.and.Robots.S03E01.2022.1080p.WEB-DL.x265.10bit.AC3£cXcY@FRDS.mkv", + "filename": "Love,Death.and.Robots.S03E01.2022.1080p.WEB-DL.x265.10bit.AC3£cXcY@FRDS.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Love,Death And Robots S03E01 2022 1080P Web-Dl X265 10Bit Ac3£Cxcy@Frds", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Love,Death And Robots S03E01 2022 1080P Web-Dl X265 10Bit Ac3£Cxcy@Frds", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/爱,死亡和机器人S03.Love,Death.and.Robots.2022.1080p.WEB-DL.x265.AC3£cXcY@FRDS/Love,Death.and.Robots.S03E09.2022.1080p.WEB-DL.x265.10bit.AC3£cXcY@FRDS.mkv", + "filename": "Love,Death.and.Robots.S03E09.2022.1080p.WEB-DL.x265.10bit.AC3£cXcY@FRDS.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Love,Death And Robots S03E09 2022 1080P Web-Dl X265 10Bit Ac3£Cxcy@Frds", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Love,Death And Robots S03E09 2022 1080P Web-Dl X265 10Bit Ac3£Cxcy@Frds", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 歲月流逝飯菜依舊美味 - 11 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 歲月流逝飯菜依舊美味 - 11 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 歲月流逝飯菜依舊美味 - 11 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 歲月流逝飯菜依舊美味 - 11 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] GNOSIA - 03 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] GNOSIA - 03 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] Gnosia - 03 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] Gnosia - 03 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 王者天下 第六季 - 08 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 王者天下 第六季 - 08 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 王者天下 第六季 - 08 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 王者天下 第六季 - 08 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Nekomoe kissaten][Ninja Kamui][12][1080p][CHT].mp4", + "filename": "[Nekomoe kissaten][Ninja Kamui][12][1080p][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Nekomoe Kissaten][Ninja Kamui][12][1080P][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Nekomoe Kissaten][Ninja Kamui][12][1080P][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[BeanSub&FZSD][Kimetsu_no_Yaiba][59][BIG5][1080P][x264_AAC].mp4", + "filename": "[BeanSub&FZSD][Kimetsu_no_Yaiba][59][BIG5][1080P][x264_AAC].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Beansub&Fzsd][Kimetsu No Yaiba][59][Big5][1080P][X264 Aac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Beansub&Fzsd][Kimetsu No Yaiba][59][Big5][1080P][X264 Aac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 魔術師庫諾看得見一切 - 04 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 魔術師庫諾看得見一切 - 04 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 魔術師庫諾看得見一切 - 04 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 魔術師庫諾看得見一切 - 04 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Kizetsu Yuusha to Ansatsu Hime - 01 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "filename": "[LoliHouse] Kizetsu Yuusha to Ansatsu Hime - 01 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Kizetsu Yuusha To Ansatsu Hime - 01 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Kizetsu Yuusha To Ansatsu Hime - 01 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 聽說你們要結婚!? - 11 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 聽說你們要結婚!? - 11 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 聽說你們要結婚!? - 11 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 聽說你們要結婚!? - 11 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Sakurato] Dungeon Meshi [10][AVC-8bit 1080p AAC][CHT].mp4", + "filename": "[Sakurato] Dungeon Meshi [10][AVC-8bit 1080p AAC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Sakurato] Dungeon Meshi [10][Avc-8Bit 1080P Aac][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Sakurato] Dungeon Meshi [10][Avc-8Bit 1080P Aac][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Sakurato] Haite Kudasai, Takamine-san [01][AVC-8bit 1080p AAC][CHT&JPN].mp4", + "filename": "[Sakurato] Haite Kudasai, Takamine-san [01][AVC-8bit 1080p AAC][CHT&JPN].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Sakurato] Haite Kudasai, Takamine-San [01][Avc-8Bit 1080P Aac][Cht&Jpn]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Sakurato] Haite Kudasai, Takamine-San [01][Avc-8Bit 1080P Aac][Cht&Jpn]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Levius [WebRip 1080p HEVC-10bit AAC SRTx4]/[LoliHouse] Levius - 11 [WebRip 1080p HEVC-10bit AAC SRTx4].mkv", + "filename": "[LoliHouse] Levius - 11 [WebRip 1080p HEVC-10bit AAC SRTx4].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Levius - 11 [Webrip 1080P Hevc-10Bit Aac Srtx4]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Levius - 11 [Webrip 1080P Hevc-10Bit Aac Srtx4]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Levius [WebRip 1080p HEVC-10bit AAC SRTx4]/[LoliHouse] Levius - 06 [WebRip 1080p HEVC-10bit AAC SRTx4].mkv", + "filename": "[LoliHouse] Levius - 06 [WebRip 1080p HEVC-10bit AAC SRTx4].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Levius - 06 [Webrip 1080P Hevc-10Bit Aac Srtx4]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Levius - 06 [Webrip 1080P Hevc-10Bit Aac Srtx4]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Levius [WebRip 1080p HEVC-10bit AAC SRTx4]/[LoliHouse] Levius - 02 [WebRip 1080p HEVC-10bit AAC SRTx4].mkv", + "filename": "[LoliHouse] Levius - 02 [WebRip 1080p HEVC-10bit AAC SRTx4].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Levius - 02 [Webrip 1080P Hevc-10Bit Aac Srtx4]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Levius - 02 [Webrip 1080P Hevc-10Bit Aac Srtx4]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Levius [WebRip 1080p HEVC-10bit AAC SRTx4]/[LoliHouse] Levius - 07 [WebRip 1080p HEVC-10bit AAC SRTx4].mkv", + "filename": "[LoliHouse] Levius - 07 [WebRip 1080p HEVC-10bit AAC SRTx4].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Levius - 07 [Webrip 1080P Hevc-10Bit Aac Srtx4]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Levius - 07 [Webrip 1080P Hevc-10Bit Aac Srtx4]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Levius [WebRip 1080p HEVC-10bit AAC SRTx4]/[LoliHouse] Levius - 03 [WebRip 1080p HEVC-10bit AAC SRTx4].mkv", + "filename": "[LoliHouse] Levius - 03 [WebRip 1080p HEVC-10bit AAC SRTx4].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Levius - 03 [Webrip 1080P Hevc-10Bit Aac Srtx4]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Levius - 03 [Webrip 1080P Hevc-10Bit Aac Srtx4]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Levius [WebRip 1080p HEVC-10bit AAC SRTx4]/[LoliHouse] Levius - 10 [WebRip 1080p HEVC-10bit AAC SRTx4].mkv", + "filename": "[LoliHouse] Levius - 10 [WebRip 1080p HEVC-10bit AAC SRTx4].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Levius - 10 [Webrip 1080P Hevc-10Bit Aac Srtx4]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Levius - 10 [Webrip 1080P Hevc-10Bit Aac Srtx4]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Levius [WebRip 1080p HEVC-10bit AAC SRTx4]/[LoliHouse] Levius - 05 [WebRip 1080p HEVC-10bit AAC SRTx4].mkv", + "filename": "[LoliHouse] Levius - 05 [WebRip 1080p HEVC-10bit AAC SRTx4].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Levius - 05 [Webrip 1080P Hevc-10Bit Aac Srtx4]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Levius - 05 [Webrip 1080P Hevc-10Bit Aac Srtx4]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Levius [WebRip 1080p HEVC-10bit AAC SRTx4]/[LoliHouse] Levius - 01 [WebRip 1080p HEVC-10bit AAC SRTx4].mkv", + "filename": "[LoliHouse] Levius - 01 [WebRip 1080p HEVC-10bit AAC SRTx4].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Levius - 01 [Webrip 1080P Hevc-10Bit Aac Srtx4]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Levius - 01 [Webrip 1080P Hevc-10Bit Aac Srtx4]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Levius [WebRip 1080p HEVC-10bit AAC SRTx4]/[LoliHouse] Levius - 09 [WebRip 1080p HEVC-10bit AAC SRTx4].mkv", + "filename": "[LoliHouse] Levius - 09 [WebRip 1080p HEVC-10bit AAC SRTx4].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Levius - 09 [Webrip 1080P Hevc-10Bit Aac Srtx4]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Levius - 09 [Webrip 1080P Hevc-10Bit Aac Srtx4]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Levius [WebRip 1080p HEVC-10bit AAC SRTx4]/[LoliHouse] Levius - 12 [WebRip 1080p HEVC-10bit AAC SRTx4].mkv", + "filename": "[LoliHouse] Levius - 12 [WebRip 1080p HEVC-10bit AAC SRTx4].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Levius - 12 [Webrip 1080P Hevc-10Bit Aac Srtx4]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Levius - 12 [Webrip 1080P Hevc-10Bit Aac Srtx4]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Levius [WebRip 1080p HEVC-10bit AAC SRTx4]/[LoliHouse] Levius - 08 [WebRip 1080p HEVC-10bit AAC SRTx4].mkv", + "filename": "[LoliHouse] Levius - 08 [WebRip 1080p HEVC-10bit AAC SRTx4].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Levius - 08 [Webrip 1080P Hevc-10Bit Aac Srtx4]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Levius - 08 [Webrip 1080P Hevc-10Bit Aac Srtx4]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Levius [WebRip 1080p HEVC-10bit AAC SRTx4]/[LoliHouse] Levius - 04 [WebRip 1080p HEVC-10bit AAC SRTx4].mkv", + "filename": "[LoliHouse] Levius - 04 [WebRip 1080p HEVC-10bit AAC SRTx4].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Levius - 04 [Webrip 1080P Hevc-10Bit Aac Srtx4]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Levius - 04 [Webrip 1080P Hevc-10Bit Aac Srtx4]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 我獨自升級 第二季 -起於闇影- - 13 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 我獨自升級 第二季 -起於闇影- - 13 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 我獨自升級 第二季 -起於闇影- - 13 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 我獨自升級 第二季 -起於闇影- - 13 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "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", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 素材採集家的異世界旅行記 - 05 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 素材採集家的異世界旅行記 - 05 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Feibanyama] Fate-strange Fake - 05 [IQIYI WebRip 2160p HEVC OPUS Dual-Audio Multi-Subs].mkv", + "filename": "[Feibanyama] Fate-strange Fake - 05 [IQIYI WebRip 2160p HEVC OPUS Dual-Audio Multi-Subs].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Feibanyama] Fate-Strange Fake - 05 [Iqiyi Webrip 2160P Hevc Opus Dual-Audio Multi-Subs]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Feibanyama] Fate-Strange Fake - 05 [Iqiyi Webrip 2160P Hevc Opus Dual-Audio Multi-Subs]", + "needs_review": true + }, + { + "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", + "title": "[Ani] 身為暗殺者的我明顯比勇者還強 - 07 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 身為暗殺者的我明顯比勇者還強 - 07 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Hitoribocchi no Isekai Kouryaku - 10 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "filename": "[LoliHouse] Hitoribocchi no Isekai Kouryaku - 10 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Hitoribocchi No Isekai Kouryaku - 10 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Hitoribocchi No Isekai Kouryaku - 10 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[KissSub][Dosanko Gal wa Namara Menkoi][12][1080P][BIG5][MP4].mp4", + "filename": "[KissSub][Dosanko Gal wa Namara Menkoi][12][1080P][BIG5][MP4].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Kisssub][Dosanko Gal Wa Namara Menkoi][12][1080P][Big5][Mp4]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Kisssub][Dosanko Gal Wa Namara Menkoi][12][1080P][Big5][Mp4]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 膽大黨 第二季 - 18 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 膽大黨 第二季 - 18 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 膽大黨 第二季 - 18 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 膽大黨 第二季 - 18 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Nekomoe kissaten][Chi. Chikyuu no Undou ni Tsuite][05][1080p][JPSC].mp4", + "filename": "[Nekomoe kissaten][Chi. Chikyuu no Undou ni Tsuite][05][1080p][JPSC].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Nekomoe Kissaten][Chi Chikyuu No Undou Ni Tsuite][05][1080P][Jpsc]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Nekomoe Kissaten][Chi Chikyuu No Undou Ni Tsuite][05][1080P][Jpsc]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 轉生貴族憑鑑定技能扭轉人生 第二季 - 20 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 轉生貴族憑鑑定技能扭轉人生 第二季 - 20 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 轉生貴族憑鑑定技能扭轉人生 第二季 - 20 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 轉生貴族憑鑑定技能扭轉人生 第二季 - 20 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 盾之勇者成名錄 Season 4 - 08 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 盾之勇者成名錄 Season 4 - 08 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 盾之勇者成名錄 Season 4 - 08 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 盾之勇者成名錄 Season 4 - 08 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/The.Monkey.King.2023.Netflix.WEB-DL.1080p.x264.DDP-Enichi/The.Monkey.King.2023.Netflix.WEB-DL.1080p.x264.DDP-Enichi.mkv", + "filename": "The.Monkey.King.2023.Netflix.WEB-DL.1080p.x264.DDP-Enichi.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "The Monkey King 2023 Netflix Web-Dl 1080P X264 Ddp-Enichi", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "The Monkey King 2023 Netflix Web-Dl 1080P X264 Ddp-Enichi", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Nekomoe kissaten][Your Forma][03][1080p][JPTC].mp4", + "filename": "[Nekomoe kissaten][Your Forma][03][1080p][JPTC].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Nekomoe Kissaten][Your Forma][03][1080P][Jptc]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Nekomoe Kissaten][Your Forma][03][1080P][Jptc]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Kamigami] Kaze ga Tsuyoku Fuiteiru [BD 1080p x265 Ma10p AAC]/[Kamigami] Kaze ga Tsuyoku Fuiteiru - 04 [BD 1080p x265 Ma10p AAC].mkv", + "filename": "[Kamigami] Kaze ga Tsuyoku Fuiteiru - 04 [BD 1080p x265 Ma10p AAC].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Kamigami] Kaze Ga Tsuyoku Fuiteiru - 04 [Bd 1080P X265 Ma10P Aac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Kamigami] Kaze Ga Tsuyoku Fuiteiru - 04 [Bd 1080P X265 Ma10P Aac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Kamigami] Kaze ga Tsuyoku Fuiteiru [BD 1080p x265 Ma10p AAC]/[Kamigami] Kaze ga Tsuyoku Fuiteiru - 02 [BD 1080p x265 Ma10p AAC].mkv", + "filename": "[Kamigami] Kaze ga Tsuyoku Fuiteiru - 02 [BD 1080p x265 Ma10p AAC].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Kamigami] Kaze Ga Tsuyoku Fuiteiru - 02 [Bd 1080P X265 Ma10P Aac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Kamigami] Kaze Ga Tsuyoku Fuiteiru - 02 [Bd 1080P X265 Ma10P Aac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Kamigami] Kaze ga Tsuyoku Fuiteiru [BD 1080p x265 Ma10p AAC]/[Kamigami] Kaze ga Tsuyoku Fuiteiru - 21 [BD 1080p x265 Ma10p AAC].mkv", + "filename": "[Kamigami] Kaze ga Tsuyoku Fuiteiru - 21 [BD 1080p x265 Ma10p AAC].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Kamigami] Kaze Ga Tsuyoku Fuiteiru - 21 [Bd 1080P X265 Ma10P Aac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Kamigami] Kaze Ga Tsuyoku Fuiteiru - 21 [Bd 1080P X265 Ma10P Aac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Kamigami] Kaze ga Tsuyoku Fuiteiru [BD 1080p x265 Ma10p AAC]/[Kamigami] Kaze ga Tsuyoku Fuiteiru - 19 [BD 1080p x265 Ma10p AAC].mkv", + "filename": "[Kamigami] Kaze ga Tsuyoku Fuiteiru - 19 [BD 1080p x265 Ma10p AAC].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Kamigami] Kaze Ga Tsuyoku Fuiteiru - 19 [Bd 1080P X265 Ma10P Aac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Kamigami] Kaze Ga Tsuyoku Fuiteiru - 19 [Bd 1080P X265 Ma10P Aac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Kamigami] Kaze ga Tsuyoku Fuiteiru [BD 1080p x265 Ma10p AAC]/[Kamigami] Kaze ga Tsuyoku Fuiteiru - 15 [BD 1080p x265 Ma10p AAC].mkv", + "filename": "[Kamigami] Kaze ga Tsuyoku Fuiteiru - 15 [BD 1080p x265 Ma10p AAC].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Kamigami] Kaze Ga Tsuyoku Fuiteiru - 15 [Bd 1080P X265 Ma10P Aac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Kamigami] Kaze Ga Tsuyoku Fuiteiru - 15 [Bd 1080P X265 Ma10P Aac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Kamigami] Kaze ga Tsuyoku Fuiteiru [BD 1080p x265 Ma10p AAC]/[Kamigami] Kaze ga Tsuyoku Fuiteiru - 13 [BD 1080p x265 Ma10p AAC].mkv", + "filename": "[Kamigami] Kaze ga Tsuyoku Fuiteiru - 13 [BD 1080p x265 Ma10p AAC].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Kamigami] Kaze Ga Tsuyoku Fuiteiru - 13 [Bd 1080P X265 Ma10P Aac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Kamigami] Kaze Ga Tsuyoku Fuiteiru - 13 [Bd 1080P X265 Ma10P Aac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Kamigami] Kaze ga Tsuyoku Fuiteiru [BD 1080p x265 Ma10p AAC]/[Kamigami] Kaze ga Tsuyoku Fuiteiru - 08 [BD 1080p x265 Ma10p AAC].mkv", + "filename": "[Kamigami] Kaze ga Tsuyoku Fuiteiru - 08 [BD 1080p x265 Ma10p AAC].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Kamigami] Kaze Ga Tsuyoku Fuiteiru - 08 [Bd 1080P X265 Ma10P Aac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Kamigami] Kaze Ga Tsuyoku Fuiteiru - 08 [Bd 1080P X265 Ma10P Aac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Kamigami] Kaze ga Tsuyoku Fuiteiru [BD 1080p x265 Ma10p AAC]/[Kamigami] Kaze ga Tsuyoku Fuiteiru - 05 [BD 1080p x265 Ma10p AAC].mkv", + "filename": "[Kamigami] Kaze ga Tsuyoku Fuiteiru - 05 [BD 1080p x265 Ma10p AAC].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Kamigami] Kaze Ga Tsuyoku Fuiteiru - 05 [Bd 1080P X265 Ma10P Aac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Kamigami] Kaze Ga Tsuyoku Fuiteiru - 05 [Bd 1080P X265 Ma10P Aac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Kamigami] Kaze ga Tsuyoku Fuiteiru [BD 1080p x265 Ma10p AAC]/[Kamigami] Kaze ga Tsuyoku Fuiteiru - 03 [BD 1080p x265 Ma10p AAC].mkv", + "filename": "[Kamigami] Kaze ga Tsuyoku Fuiteiru - 03 [BD 1080p x265 Ma10p AAC].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Kamigami] Kaze Ga Tsuyoku Fuiteiru - 03 [Bd 1080P X265 Ma10P Aac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Kamigami] Kaze Ga Tsuyoku Fuiteiru - 03 [Bd 1080P X265 Ma10P Aac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Kamigami] Kaze ga Tsuyoku Fuiteiru [BD 1080p x265 Ma10p AAC]/[Kamigami] Kaze ga Tsuyoku Fuiteiru - 20 [BD 1080p x265 Ma10p AAC].mkv", + "filename": "[Kamigami] Kaze ga Tsuyoku Fuiteiru - 20 [BD 1080p x265 Ma10p AAC].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Kamigami] Kaze Ga Tsuyoku Fuiteiru - 20 [Bd 1080P X265 Ma10P Aac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Kamigami] Kaze Ga Tsuyoku Fuiteiru - 20 [Bd 1080P X265 Ma10P Aac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Kamigami] Kaze ga Tsuyoku Fuiteiru [BD 1080p x265 Ma10p AAC]/[Kamigami] Kaze ga Tsuyoku Fuiteiru - 18 [BD 1080p x265 Ma10p AAC].mkv", + "filename": "[Kamigami] Kaze ga Tsuyoku Fuiteiru - 18 [BD 1080p x265 Ma10p AAC].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Kamigami] Kaze Ga Tsuyoku Fuiteiru - 18 [Bd 1080P X265 Ma10P Aac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Kamigami] Kaze Ga Tsuyoku Fuiteiru - 18 [Bd 1080P X265 Ma10P Aac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Kamigami] Kaze ga Tsuyoku Fuiteiru [BD 1080p x265 Ma10p AAC]/[Kamigami] Kaze ga Tsuyoku Fuiteiru - 14 [BD 1080p x265 Ma10p AAC].mkv", + "filename": "[Kamigami] Kaze ga Tsuyoku Fuiteiru - 14 [BD 1080p x265 Ma10p AAC].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Kamigami] Kaze Ga Tsuyoku Fuiteiru - 14 [Bd 1080P X265 Ma10P Aac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Kamigami] Kaze Ga Tsuyoku Fuiteiru - 14 [Bd 1080P X265 Ma10P Aac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Kamigami] Kaze ga Tsuyoku Fuiteiru [BD 1080p x265 Ma10p AAC]/[Kamigami] Kaze ga Tsuyoku Fuiteiru - 12 [BD 1080p x265 Ma10p AAC].mkv", + "filename": "[Kamigami] Kaze ga Tsuyoku Fuiteiru - 12 [BD 1080p x265 Ma10p AAC].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Kamigami] Kaze Ga Tsuyoku Fuiteiru - 12 [Bd 1080P X265 Ma10P Aac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Kamigami] Kaze Ga Tsuyoku Fuiteiru - 12 [Bd 1080P X265 Ma10P Aac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Kamigami] Kaze ga Tsuyoku Fuiteiru [BD 1080p x265 Ma10p AAC]/[Kamigami] Kaze ga Tsuyoku Fuiteiru - 09 [BD 1080p x265 Ma10p AAC].mkv", + "filename": "[Kamigami] Kaze ga Tsuyoku Fuiteiru - 09 [BD 1080p x265 Ma10p AAC].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Kamigami] Kaze Ga Tsuyoku Fuiteiru - 09 [Bd 1080P X265 Ma10P Aac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Kamigami] Kaze Ga Tsuyoku Fuiteiru - 09 [Bd 1080P X265 Ma10P Aac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Kamigami] Kaze ga Tsuyoku Fuiteiru [BD 1080p x265 Ma10p AAC]/[Kamigami] Kaze ga Tsuyoku Fuiteiru - 06 [BD 1080p x265 Ma10p AAC].mkv", + "filename": "[Kamigami] Kaze ga Tsuyoku Fuiteiru - 06 [BD 1080p x265 Ma10p AAC].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Kamigami] Kaze Ga Tsuyoku Fuiteiru - 06 [Bd 1080P X265 Ma10P Aac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Kamigami] Kaze Ga Tsuyoku Fuiteiru - 06 [Bd 1080P X265 Ma10P Aac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Kamigami] Kaze ga Tsuyoku Fuiteiru [BD 1080p x265 Ma10p AAC]/[Kamigami] Kaze ga Tsuyoku Fuiteiru - 23 [BD 1080p x265 Ma10p AAC].mkv", + "filename": "[Kamigami] Kaze ga Tsuyoku Fuiteiru - 23 [BD 1080p x265 Ma10p AAC].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Kamigami] Kaze Ga Tsuyoku Fuiteiru - 23 [Bd 1080P X265 Ma10P Aac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Kamigami] Kaze Ga Tsuyoku Fuiteiru - 23 [Bd 1080P X265 Ma10P Aac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Kamigami] Kaze ga Tsuyoku Fuiteiru [BD 1080p x265 Ma10p AAC]/[Kamigami] Kaze ga Tsuyoku Fuiteiru - 17 [BD 1080p x265 Ma10p AAC].mkv", + "filename": "[Kamigami] Kaze ga Tsuyoku Fuiteiru - 17 [BD 1080p x265 Ma10p AAC].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Kamigami] Kaze Ga Tsuyoku Fuiteiru - 17 [Bd 1080P X265 Ma10P Aac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Kamigami] Kaze Ga Tsuyoku Fuiteiru - 17 [Bd 1080P X265 Ma10P Aac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Kamigami] Kaze ga Tsuyoku Fuiteiru [BD 1080p x265 Ma10p AAC]/[Kamigami] Kaze ga Tsuyoku Fuiteiru - 11 [BD 1080p x265 Ma10p AAC].mkv", + "filename": "[Kamigami] Kaze ga Tsuyoku Fuiteiru - 11 [BD 1080p x265 Ma10p AAC].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Kamigami] Kaze Ga Tsuyoku Fuiteiru - 11 [Bd 1080P X265 Ma10P Aac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Kamigami] Kaze Ga Tsuyoku Fuiteiru - 11 [Bd 1080P X265 Ma10P Aac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Kamigami] Kaze ga Tsuyoku Fuiteiru [BD 1080p x265 Ma10p AAC]/Bonus/[Kamigami] Kaze ga Tsuyoku Fuiteiru - NCED2 [BD 1080p x265 Ma10p AAC].mp4", + "filename": "[Kamigami] Kaze ga Tsuyoku Fuiteiru - NCED2 [BD 1080p x265 Ma10p AAC].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Kamigami] Kaze Ga Tsuyoku Fuiteiru - Nced2 [Bd 1080P X265 Ma10P Aac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Kamigami] Kaze Ga Tsuyoku Fuiteiru - Nced2 [Bd 1080P X265 Ma10P Aac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Kamigami] Kaze ga Tsuyoku Fuiteiru [BD 1080p x265 Ma10p AAC]/Bonus/[Kamigami] Kaze ga Tsuyoku Fuiteiru - NCOP1 [BD 1080p x265 Ma10p AAC].mp4", + "filename": "[Kamigami] Kaze ga Tsuyoku Fuiteiru - NCOP1 [BD 1080p x265 Ma10p AAC].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Kamigami] Kaze Ga Tsuyoku Fuiteiru - Ncop1 [Bd 1080P X265 Ma10P Aac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Kamigami] Kaze Ga Tsuyoku Fuiteiru - Ncop1 [Bd 1080P X265 Ma10P Aac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Kamigami] Kaze ga Tsuyoku Fuiteiru [BD 1080p x265 Ma10p AAC]/Bonus/[Kamigami] Kaze ga Tsuyoku Fuiteiru - NCOP2 [BD 1080p x265 Ma10p AAC].mp4", + "filename": "[Kamigami] Kaze ga Tsuyoku Fuiteiru - NCOP2 [BD 1080p x265 Ma10p AAC].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Kamigami] Kaze Ga Tsuyoku Fuiteiru - Ncop2 [Bd 1080P X265 Ma10P Aac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Kamigami] Kaze Ga Tsuyoku Fuiteiru - Ncop2 [Bd 1080P X265 Ma10P Aac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Kamigami] Kaze ga Tsuyoku Fuiteiru [BD 1080p x265 Ma10p AAC]/Bonus/[Kamigami] Kaze ga Tsuyoku Fuiteiru - NCED1 [BD 1080p x265 Ma10p AAC].mp4", + "filename": "[Kamigami] Kaze ga Tsuyoku Fuiteiru - NCED1 [BD 1080p x265 Ma10p AAC].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Kamigami] Kaze Ga Tsuyoku Fuiteiru - Nced1 [Bd 1080P X265 Ma10P Aac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Kamigami] Kaze Ga Tsuyoku Fuiteiru - Nced1 [Bd 1080P X265 Ma10P Aac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Kamigami] Kaze ga Tsuyoku Fuiteiru [BD 1080p x265 Ma10p AAC]/[Kamigami] Kaze ga Tsuyoku Fuiteiru - 07 [BD 1080p x265 Ma10p AAC].mkv", + "filename": "[Kamigami] Kaze ga Tsuyoku Fuiteiru - 07 [BD 1080p x265 Ma10p AAC].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Kamigami] Kaze Ga Tsuyoku Fuiteiru - 07 [Bd 1080P X265 Ma10P Aac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Kamigami] Kaze Ga Tsuyoku Fuiteiru - 07 [Bd 1080P X265 Ma10P Aac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Kamigami] Kaze ga Tsuyoku Fuiteiru [BD 1080p x265 Ma10p AAC]/[Kamigami] Kaze ga Tsuyoku Fuiteiru - 22 [BD 1080p x265 Ma10p AAC].mkv", + "filename": "[Kamigami] Kaze ga Tsuyoku Fuiteiru - 22 [BD 1080p x265 Ma10p AAC].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Kamigami] Kaze Ga Tsuyoku Fuiteiru - 22 [Bd 1080P X265 Ma10P Aac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Kamigami] Kaze Ga Tsuyoku Fuiteiru - 22 [Bd 1080P X265 Ma10P Aac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Kamigami] Kaze ga Tsuyoku Fuiteiru [BD 1080p x265 Ma10p AAC]/[Kamigami] Kaze ga Tsuyoku Fuiteiru - 01 [BD 1080p x265 Ma10p AAC].mkv", + "filename": "[Kamigami] Kaze ga Tsuyoku Fuiteiru - 01 [BD 1080p x265 Ma10p AAC].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Kamigami] Kaze Ga Tsuyoku Fuiteiru - 01 [Bd 1080P X265 Ma10P Aac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Kamigami] Kaze Ga Tsuyoku Fuiteiru - 01 [Bd 1080P X265 Ma10P Aac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Kamigami] Kaze ga Tsuyoku Fuiteiru [BD 1080p x265 Ma10p AAC]/[Kamigami] Kaze ga Tsuyoku Fuiteiru - 16 [BD 1080p x265 Ma10p AAC].mkv", + "filename": "[Kamigami] Kaze ga Tsuyoku Fuiteiru - 16 [BD 1080p x265 Ma10p AAC].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Kamigami] Kaze Ga Tsuyoku Fuiteiru - 16 [Bd 1080P X265 Ma10P Aac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Kamigami] Kaze Ga Tsuyoku Fuiteiru - 16 [Bd 1080P X265 Ma10P Aac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Kamigami] Kaze ga Tsuyoku Fuiteiru [BD 1080p x265 Ma10p AAC]/[Kamigami] Kaze ga Tsuyoku Fuiteiru - 10 [BD 1080p x265 Ma10p AAC].mkv", + "filename": "[Kamigami] Kaze ga Tsuyoku Fuiteiru - 10 [BD 1080p x265 Ma10p AAC].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Kamigami] Kaze Ga Tsuyoku Fuiteiru - 10 [Bd 1080P X265 Ma10P Aac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Kamigami] Kaze Ga Tsuyoku Fuiteiru - 10 [Bd 1080P X265 Ma10P Aac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 妻子變成小學生。 - 03 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 妻子變成小學生。 - 03 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 妻子變成小學生。 - 03 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 妻子變成小學生。 - 03 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 杖與劍的魔劍譚 - 12 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 杖與劍的魔劍譚 - 12 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 杖與劍的魔劍譚 - 12 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 杖與劍的魔劍譚 - 12 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 地下城中的人 - 09 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 地下城中的人 - 09 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 地下城中的人 - 09 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 地下城中的人 - 09 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] LAZARUS 拉撒路 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] LAZARUS 拉撒路 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] Lazarus 拉撒路 - 01 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] Lazarus 拉撒路 - 01 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Feibanyama] JUJUTSU KAISEN S3 - 05 [IQIYI WebRip 2160p HEVC OPUS Multi-Subs].mkv", + "filename": "[Feibanyama] JUJUTSU KAISEN S3 - 05 [IQIYI WebRip 2160p HEVC OPUS Multi-Subs].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Feibanyama] Jujutsu Kaisen S3 - 05 [Iqiyi Webrip 2160P Hevc Opus Multi-Subs]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Feibanyama] Jujutsu Kaisen S3 - 05 [Iqiyi Webrip 2160P Hevc Opus Multi-Subs]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Shigurui/[Cervoz] Shigurui - 04 {Bluray.1080p}{Jap-Fr.Aac}{Fr-For.Sub} [975477FF].mkv", + "filename": "[Cervoz] Shigurui - 04 {Bluray.1080p}{Jap-Fr.Aac}{Fr-For.Sub} [975477FF].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Cervoz] Shigurui - 04 {Bluray 1080P}{Jap-Fr Aac}{Fr-For Sub} [975477Ff]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Cervoz] Shigurui - 04 {Bluray 1080P}{Jap-Fr Aac}{Fr-For Sub} [975477Ff]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Shigurui/[Cervoz] Shigurui - 06 {Bluray.1080p}{Jap-Fr.Aac}{Fr-For.Sub} [1ADE42BE].mkv", + "filename": "[Cervoz] Shigurui - 06 {Bluray.1080p}{Jap-Fr.Aac}{Fr-For.Sub} [1ADE42BE].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Cervoz] Shigurui - 06 {Bluray 1080P}{Jap-Fr Aac}{Fr-For Sub} [1Ade42Be]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Cervoz] Shigurui - 06 {Bluray 1080P}{Jap-Fr Aac}{Fr-For Sub} [1Ade42Be]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Shigurui/[Cervoz] Shigurui - 01 {Bluray.1080p}{Jap-Fr.Aac}{Fr-For.Sub} [521617A2].mkv", + "filename": "[Cervoz] Shigurui - 01 {Bluray.1080p}{Jap-Fr.Aac}{Fr-For.Sub} [521617A2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Cervoz] Shigurui - 01 {Bluray 1080P}{Jap-Fr Aac}{Fr-For Sub} [521617A2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Cervoz] Shigurui - 01 {Bluray 1080P}{Jap-Fr Aac}{Fr-For Sub} [521617A2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Shigurui/[Cervoz] Shigurui - 02 {Bluray.1080p}{Jap-Fr.Aac}{Fr-For.Sub} [650B5190].mkv", + "filename": "[Cervoz] Shigurui - 02 {Bluray.1080p}{Jap-Fr.Aac}{Fr-For.Sub} [650B5190].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Cervoz] Shigurui - 02 {Bluray 1080P}{Jap-Fr Aac}{Fr-For Sub} [650B5190]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Cervoz] Shigurui - 02 {Bluray 1080P}{Jap-Fr Aac}{Fr-For Sub} [650B5190]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Shigurui/[Cervoz] Shigurui - 08 {Bluray.1080p}{Jap-Fr.Aac}{Fr-For.Sub} [B6D8A8E0].mkv", + "filename": "[Cervoz] Shigurui - 08 {Bluray.1080p}{Jap-Fr.Aac}{Fr-For.Sub} [B6D8A8E0].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Cervoz] Shigurui - 08 {Bluray 1080P}{Jap-Fr Aac}{Fr-For Sub} [B6D8A8E0]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Cervoz] Shigurui - 08 {Bluray 1080P}{Jap-Fr Aac}{Fr-For Sub} [B6D8A8E0]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Shigurui/[Cervoz] Shigurui - 09 {Bluray.1080p}{Jap-Fr.Aac}{Fr-For.Sub} [D8A4BC20].mkv", + "filename": "[Cervoz] Shigurui - 09 {Bluray.1080p}{Jap-Fr.Aac}{Fr-For.Sub} [D8A4BC20].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Cervoz] Shigurui - 09 {Bluray 1080P}{Jap-Fr Aac}{Fr-For Sub} [D8A4Bc20]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Cervoz] Shigurui - 09 {Bluray 1080P}{Jap-Fr Aac}{Fr-For Sub} [D8A4Bc20]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Shigurui/[Cervoz] Shigurui - 05 {Bluray.1080p}{Jap-Fr.Aac}{Fr-For.Sub} [1F0206C6].mkv", + "filename": "[Cervoz] Shigurui - 05 {Bluray.1080p}{Jap-Fr.Aac}{Fr-For.Sub} [1F0206C6].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Cervoz] Shigurui - 05 {Bluray 1080P}{Jap-Fr Aac}{Fr-For Sub} [1F0206C6]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Cervoz] Shigurui - 05 {Bluray 1080P}{Jap-Fr Aac}{Fr-For Sub} [1F0206C6]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Shigurui/[Cervoz] Shigurui - 10 {Bluray.1080p}{Jap-Fr.Aac}{Fr-For.Sub} [D3D7C5D9].mkv", + "filename": "[Cervoz] Shigurui - 10 {Bluray.1080p}{Jap-Fr.Aac}{Fr-For.Sub} [D3D7C5D9].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Cervoz] Shigurui - 10 {Bluray 1080P}{Jap-Fr Aac}{Fr-For Sub} [D3D7C5D9]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Cervoz] Shigurui - 10 {Bluray 1080P}{Jap-Fr Aac}{Fr-For Sub} [D3D7C5D9]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Shigurui/[Cervoz] Shigurui - 11 {Bluray.1080p}{Jap-Fr.Aac}{Fr-For.Sub} [B321B908].mkv", + "filename": "[Cervoz] Shigurui - 11 {Bluray.1080p}{Jap-Fr.Aac}{Fr-For.Sub} [B321B908].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Cervoz] Shigurui - 11 {Bluray 1080P}{Jap-Fr Aac}{Fr-For Sub} [B321B908]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Cervoz] Shigurui - 11 {Bluray 1080P}{Jap-Fr Aac}{Fr-For Sub} [B321B908]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Shigurui/[Cervoz] Shigurui - 12 {Bluray.1080p}{Jap-Fr.Aac}{Fr-For.Sub} [7432E577].mkv", + "filename": "[Cervoz] Shigurui - 12 {Bluray.1080p}{Jap-Fr.Aac}{Fr-For.Sub} [7432E577].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Cervoz] Shigurui - 12 {Bluray 1080P}{Jap-Fr Aac}{Fr-For Sub} [7432E577]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Cervoz] Shigurui - 12 {Bluray 1080P}{Jap-Fr Aac}{Fr-For Sub} [7432E577]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Shigurui/[Cervoz] Shigurui - 03 {Bluray.1080p}{Jap-Fr.Aac}{Fr-For.Sub} [0852517D].mkv", + "filename": "[Cervoz] Shigurui - 03 {Bluray.1080p}{Jap-Fr.Aac}{Fr-For.Sub} [0852517D].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Cervoz] Shigurui - 03 {Bluray 1080P}{Jap-Fr Aac}{Fr-For Sub} [0852517D]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Cervoz] Shigurui - 03 {Bluray 1080P}{Jap-Fr Aac}{Fr-For Sub} [0852517D]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Shigurui/[Cervoz] Shigurui - 07 {Bluray.1080p}{Jap-Fr.Aac}{Fr-For.Sub} [66499B33].mkv", + "filename": "[Cervoz] Shigurui - 07 {Bluray.1080p}{Jap-Fr.Aac}{Fr-For.Sub} [66499B33].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Cervoz] Shigurui - 07 {Bluray 1080P}{Jap-Fr Aac}{Fr-For Sub} [66499B33]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Cervoz] Shigurui - 07 {Bluray 1080P}{Jap-Fr Aac}{Fr-For Sub} [66499B33]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 香格里拉・開拓異境~糞作獵手挑戰神作~ 第二季 - 21 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 香格里拉・開拓異境~糞作獵手挑戰神作~ 第二季 - 21 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 香格里拉・開拓異境~糞作獵手挑戰神作~ 第二季 - 21 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 香格里拉・開拓異境~糞作獵手挑戰神作~ 第二季 - 21 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 轉生貴族憑鑑定技能扭轉人生 - 11 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 轉生貴族憑鑑定技能扭轉人生 - 11 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 轉生貴族憑鑑定技能扭轉人生 - 11 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 轉生貴族憑鑑定技能扭轉人生 - 11 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Shin Samurai-den YAIBA - 15 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "filename": "[LoliHouse] Shin Samurai-den YAIBA - 15 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Shin Samurai-Den Yaiba - 15 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Shin Samurai-Den Yaiba - 15 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 杖與劍的魔劍譚 - 09 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 杖與劍的魔劍譚 - 09 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 杖與劍的魔劍譚 - 09 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 杖與劍的魔劍譚 - 09 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Fate strange Fake - 03 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "filename": "[LoliHouse] Fate strange Fake - 03 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Fate Strange Fake - 03 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Fate Strange Fake - 03 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Lilith-Raws] Re:Monster - 03 [Baha][WebDL 1080p AVC AAC][CHT].mp4", + "filename": "[Lilith-Raws] Re:Monster - 03 [Baha][WebDL 1080p AVC AAC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lilith-Raws] Re:Monster - 03 [Baha][Webdl 1080P Avc Aac][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lilith-Raws] Re:Monster - 03 [Baha][Webdl 1080P Avc Aac][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 地下城中的人 - 12 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 地下城中的人 - 12 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 地下城中的人 - 12 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 地下城中的人 - 12 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 擁有超常技能的異世界流浪美食家 S2 - 24 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 擁有超常技能的異世界流浪美食家 S2 - 24 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 擁有超常技能的異世界流浪美食家 S2 - 24 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 擁有超常技能的異世界流浪美食家 S2 - 24 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 永遠的黃昏 - 04 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 永遠的黃昏 - 04 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 永遠的黃昏 - 04 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 永遠的黃昏 - 04 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[BeanSub&FZSD][BLEACH_Sennen_Kessen-hen][28][BIG5][1080P][x264_AAC].mp4", + "filename": "[BeanSub&FZSD][BLEACH_Sennen_Kessen-hen][28][BIG5][1080P][x264_AAC].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Beansub&Fzsd][Bleach Sennen Kessen-Hen][28][Big5][1080P][X264 Aac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Beansub&Fzsd][Bleach Sennen Kessen-Hen][28][Big5][1080P][X264 Aac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] NUKITASHI 住在拔作島上的我該如何是好? [年齡限制版] - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] NUKITASHI 住在拔作島上的我該如何是好? [年齡限制版] - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] Nukitashi 住在拔作島上的我該如何是好? [年齡限制版] - 02 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] Nukitashi 住在拔作島上的我該如何是好? [年齡限制版] - 02 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 貫徹輔助魔法支援弱小隊友的宮廷魔法師,慘遭驅逐後目標成為最強冒險者 - 06 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 貫徹輔助魔法支援弱小隊友的宮廷魔法師,慘遭驅逐後目標成為最強冒險者 - 06 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 貫徹輔助魔法支援弱小隊友的宮廷魔法師,慘遭驅逐後目標成為最強冒險者 - 06 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 貫徹輔助魔法支援弱小隊友的宮廷魔法師,慘遭驅逐後目標成為最強冒險者 - 06 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Yami Healer - 05 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "filename": "[LoliHouse] Yami Healer - 05 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Yami Healer - 05 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Yami Healer - 05 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Nekomoe kissaten][Kusuriya no Hitorigoto][19][1080p][JPTC].mp4", + "filename": "[Nekomoe kissaten][Kusuriya no Hitorigoto][19][1080p][JPTC].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Nekomoe Kissaten][Kusuriya No Hitorigoto][19][1080P][Jptc]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Nekomoe Kissaten][Kusuriya No Hitorigoto][19][1080P][Jptc]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Tsue to Tsurugi no Wistoria - 05 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "filename": "[LoliHouse] Tsue to Tsurugi no Wistoria - 05 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Tsue To Tsurugi No Wistoria - 05 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Tsue To Tsurugi No Wistoria - 05 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 九龍大眾浪漫 - 08 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 九龍大眾浪漫 - 08 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 九龍大眾浪漫 - 08 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 九龍大眾浪漫 - 08 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 最強肉盾的迷宮攻略~擁有稀少技能體力 9999 的肉盾,被勇者隊伍辭退了~ - 05 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 最強肉盾的迷宮攻略~擁有稀少技能體力 9999 的肉盾,被勇者隊伍辭退了~ - 05 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 最強肉盾的迷宮攻略~擁有稀少技能體力 9999 的肉盾,被勇者隊伍辭退了~ - 05 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 最強肉盾的迷宮攻略~擁有稀少技能體力 9999 的肉盾,被勇者隊伍辭退了~ - 05 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Skymoon-Raws] Zom 100 - Zombie ni Naru made ni Shitai 100 no Koto - 01 [ViuTV][WEB-DL][CHT][1080p][AVC AAC][MP4+ASS]/[Skymoon-Raws] Zom 100 - Zombie ni Naru made ni Shitai 100 no Koto - 01 [ViuTV][WEB-DL][1080p][AVC AAC].mp4", + "filename": "[Skymoon-Raws] Zom 100 - Zombie ni Naru made ni Shitai 100 no Koto - 01 [ViuTV][WEB-DL][1080p][AVC AAC].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Skymoon-Raws] Zom 100 - Zombie Ni Naru Made Ni Shitai 100 No Koto - 01 [Viutv][Web-Dl][1080P][Avc Aac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Skymoon-Raws] Zom 100 - Zombie Ni Naru Made Ni Shitai 100 No Koto - 01 [Viutv][Web-Dl][1080P][Avc Aac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 葬送的芙莉蓮 第二季 - 31 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 葬送的芙莉蓮 第二季 - 31 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 葬送的芙莉蓮 第二季 - 31 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 葬送的芙莉蓮 第二季 - 31 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Shin no Nakama 2nd - 04 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "filename": "[LoliHouse] Shin no Nakama 2nd - 04 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Shin No Nakama 2Nd - 04 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Shin No Nakama 2Nd - 04 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[KTXP][Hokkaido_Gals_Are_Super_Adorable!][10][HEVC_opus][1080p].mkv", + "filename": "[KTXP][Hokkaido_Gals_Are_Super_Adorable!][10][HEVC_opus][1080p].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ktxp][Hokkaido Gals Are Super Adorable!][10][Hevc Opus][1080P]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ktxp][Hokkaido Gals Are Super Adorable!][10][Hevc Opus][1080P]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Katainaka no Ossan, Kensei ni Naru - 08 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "filename": "[LoliHouse] Katainaka no Ossan, Kensei ni Naru - 08 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Katainaka No Ossan, Kensei Ni Naru - 08 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Katainaka No Ossan, Kensei Ni Naru - 08 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "needs_review": true + }, + { + "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", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 水屬性的魔法師 - 05 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 水屬性的魔法師 - 05 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 終末起點 - 03 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 終末起點 - 03 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 終末起點 - 03 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 終末起點 - 03 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 擁有超常技能的異世界流浪美食家 S2 - 18 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 擁有超常技能的異世界流浪美食家 S2 - 18 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 擁有超常技能的異世界流浪美食家 S2 - 18 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 擁有超常技能的異世界流浪美食家 S2 - 18 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 在地下城尋求邂逅是否搞錯了什麼 第五季 - 03 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 在地下城尋求邂逅是否搞錯了什麼 第五季 - 03 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 在地下城尋求邂逅是否搞錯了什麼 第五季 - 03 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 在地下城尋求邂逅是否搞錯了什麼 第五季 - 03 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Sakurato] Mushoku Tensei S2 [14][AVC-8bit 1080P AAC][CHT@60FPS].mp4", + "filename": "[Sakurato] Mushoku Tensei S2 [14][AVC-8bit 1080P AAC][CHT@60FPS].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Sakurato] Mushoku Tensei S2 [14][Avc-8Bit 1080P Aac][Cht@60Fps]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Sakurato] Mushoku Tensei S2 [14][Avc-8Bit 1080P Aac][Cht@60Fps]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 九龍大眾浪漫 - 13 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 九龍大眾浪漫 - 13 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 九龍大眾浪漫 - 13 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 九龍大眾浪漫 - 13 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 香格里拉・開拓異境~糞作獵手挑戰神作~ 第二季 - 06 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 香格里拉・開拓異境~糞作獵手挑戰神作~ 第二季 - 06 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 香格里拉・開拓異境~糞作獵手挑戰神作~ 第二季 - 06 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 香格里拉・開拓異境~糞作獵手挑戰神作~ 第二季 - 06 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 關於我轉生變成史萊姆這檔事 第三季 - 71 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 關於我轉生變成史萊姆這檔事 第三季 - 71 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 關於我轉生變成史萊姆這檔事 第三季 - 71 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 關於我轉生變成史萊姆這檔事 第三季 - 71 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Tensei Shitara Slime Datta Ken 3rd Season - 61 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "filename": "[LoliHouse] Tensei Shitara Slime Datta Ken 3rd Season - 61 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Tensei Shitara Slime Datta Ken 3Rd Season - 61 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Tensei Shitara Slime Datta Ken 3Rd Season - 61 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 我與尼特女忍者的莫名同居生活 - 03 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 我與尼特女忍者的莫名同居生活 - 03 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 我與尼特女忍者的莫名同居生活 - 03 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 我與尼特女忍者的莫名同居生活 - 03 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 我獨自升級 第二季 -起於闇影- - 19 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 我獨自升級 第二季 -起於闇影- - 19 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 我獨自升級 第二季 -起於闇影- - 19 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 我獨自升級 第二季 -起於闇影- - 19 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "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", + "title": "[Ani] 最後可以再拜託您一件事嗎? - 07 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 最後可以再拜託您一件事嗎? - 07 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[DragsterPS] Ghost in the Shell - SAC_2045 S01 [720p] [Japanese Audio] [Multi-Subs]/[DragsterPS] Ghost in the Shell - SAC_2045 S01E03 [720p] [Japanese Audio] [Multi-Subs] [9F9FC6CA].mkv", + "filename": "[DragsterPS] Ghost in the Shell - SAC_2045 S01E03 [720p] [Japanese Audio] [Multi-Subs] [9F9FC6CA].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Dragsterps] Ghost In The Shell - Sac 2045 S01E03 [720P] [Japanese Audio] [Multi-Subs] [9F9Fc6Ca]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Dragsterps] Ghost In The Shell - Sac 2045 S01E03 [720P] [Japanese Audio] [Multi-Subs] [9F9Fc6Ca]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[DragsterPS] Ghost in the Shell - SAC_2045 S01 [720p] [Japanese Audio] [Multi-Subs]/[DragsterPS] Ghost in the Shell - SAC_2045 S01E01 [720p] [Japanese Audio] [Multi-Subs] [5DD471D6].mkv", + "filename": "[DragsterPS] Ghost in the Shell - SAC_2045 S01E01 [720p] [Japanese Audio] [Multi-Subs] [5DD471D6].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Dragsterps] Ghost In The Shell - Sac 2045 S01E01 [720P] [Japanese Audio] [Multi-Subs] [5Dd471D6]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Dragsterps] Ghost In The Shell - Sac 2045 S01E01 [720P] [Japanese Audio] [Multi-Subs] [5Dd471D6]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[DragsterPS] Ghost in the Shell - SAC_2045 S01 [720p] [Japanese Audio] [Multi-Subs]/[DragsterPS] Ghost in the Shell - SAC_2045 S01E12 [720p] [Japanese Audio] [Multi-Subs] [E20D6E8C].mkv", + "filename": "[DragsterPS] Ghost in the Shell - SAC_2045 S01E12 [720p] [Japanese Audio] [Multi-Subs] [E20D6E8C].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Dragsterps] Ghost In The Shell - Sac 2045 S01E12 [720P] [Japanese Audio] [Multi-Subs] [E20D6E8C]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Dragsterps] Ghost In The Shell - Sac 2045 S01E12 [720P] [Japanese Audio] [Multi-Subs] [E20D6E8C]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[DragsterPS] Ghost in the Shell - SAC_2045 S01 [720p] [Japanese Audio] [Multi-Subs]/[DragsterPS] Ghost in the Shell - SAC_2045 S01E08 [720p] [Japanese Audio] [Multi-Subs] [DBB56C13].mkv", + "filename": "[DragsterPS] Ghost in the Shell - SAC_2045 S01E08 [720p] [Japanese Audio] [Multi-Subs] [DBB56C13].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Dragsterps] Ghost In The Shell - Sac 2045 S01E08 [720P] [Japanese Audio] [Multi-Subs] [Dbb56C13]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Dragsterps] Ghost In The Shell - Sac 2045 S01E08 [720P] [Japanese Audio] [Multi-Subs] [Dbb56C13]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[DragsterPS] Ghost in the Shell - SAC_2045 S01 [720p] [Japanese Audio] [Multi-Subs]/[DragsterPS] Ghost in the Shell - SAC_2045 S01E09 [720p] [Japanese Audio] [Multi-Subs] [627F8BBA].mkv", + "filename": "[DragsterPS] Ghost in the Shell - SAC_2045 S01E09 [720p] [Japanese Audio] [Multi-Subs] [627F8BBA].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Dragsterps] Ghost In The Shell - Sac 2045 S01E09 [720P] [Japanese Audio] [Multi-Subs] [627F8Bba]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Dragsterps] Ghost In The Shell - Sac 2045 S01E09 [720P] [Japanese Audio] [Multi-Subs] [627F8Bba]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[DragsterPS] Ghost in the Shell - SAC_2045 S01 [720p] [Japanese Audio] [Multi-Subs]/[DragsterPS] Ghost in the Shell - SAC_2045 S01E02 [720p] [Japanese Audio] [Multi-Subs] [79CFBC72].mkv", + "filename": "[DragsterPS] Ghost in the Shell - SAC_2045 S01E02 [720p] [Japanese Audio] [Multi-Subs] [79CFBC72].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Dragsterps] Ghost In The Shell - Sac 2045 S01E02 [720P] [Japanese Audio] [Multi-Subs] [79Cfbc72]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Dragsterps] Ghost In The Shell - Sac 2045 S01E02 [720P] [Japanese Audio] [Multi-Subs] [79Cfbc72]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[DragsterPS] Ghost in the Shell - SAC_2045 S01 [720p] [Japanese Audio] [Multi-Subs]/[DragsterPS] Ghost in the Shell - SAC_2045 S01E05 [720p] [Japanese Audio] [Multi-Subs] [8F6F0778].mkv", + "filename": "[DragsterPS] Ghost in the Shell - SAC_2045 S01E05 [720p] [Japanese Audio] [Multi-Subs] [8F6F0778].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Dragsterps] Ghost In The Shell - Sac 2045 S01E05 [720P] [Japanese Audio] [Multi-Subs] [8F6F0778]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Dragsterps] Ghost In The Shell - Sac 2045 S01E05 [720P] [Japanese Audio] [Multi-Subs] [8F6F0778]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[DragsterPS] Ghost in the Shell - SAC_2045 S01 [720p] [Japanese Audio] [Multi-Subs]/[DragsterPS] Ghost in the Shell - SAC_2045 S01E04 [720p] [Japanese Audio] [Multi-Subs] [A6410DBD].mkv", + "filename": "[DragsterPS] Ghost in the Shell - SAC_2045 S01E04 [720p] [Japanese Audio] [Multi-Subs] [A6410DBD].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Dragsterps] Ghost In The Shell - Sac 2045 S01E04 [720P] [Japanese Audio] [Multi-Subs] [A6410Dbd]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Dragsterps] Ghost In The Shell - Sac 2045 S01E04 [720P] [Japanese Audio] [Multi-Subs] [A6410Dbd]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[DragsterPS] Ghost in the Shell - SAC_2045 S01 [720p] [Japanese Audio] [Multi-Subs]/[DragsterPS] Ghost in the Shell - SAC_2045 S01E11 [720p] [Japanese Audio] [Multi-Subs] [90855CF9].mkv", + "filename": "[DragsterPS] Ghost in the Shell - SAC_2045 S01E11 [720p] [Japanese Audio] [Multi-Subs] [90855CF9].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Dragsterps] Ghost In The Shell - Sac 2045 S01E11 [720P] [Japanese Audio] [Multi-Subs] [90855Cf9]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Dragsterps] Ghost In The Shell - Sac 2045 S01E11 [720P] [Japanese Audio] [Multi-Subs] [90855Cf9]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[DragsterPS] Ghost in the Shell - SAC_2045 S01 [720p] [Japanese Audio] [Multi-Subs]/[DragsterPS] Ghost in the Shell - SAC_2045 S01E07 [720p] [Japanese Audio] [Multi-Subs] [3DA89D78].mkv", + "filename": "[DragsterPS] Ghost in the Shell - SAC_2045 S01E07 [720p] [Japanese Audio] [Multi-Subs] [3DA89D78].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Dragsterps] Ghost In The Shell - Sac 2045 S01E07 [720P] [Japanese Audio] [Multi-Subs] [3Da89D78]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Dragsterps] Ghost In The Shell - Sac 2045 S01E07 [720P] [Japanese Audio] [Multi-Subs] [3Da89D78]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[DragsterPS] Ghost in the Shell - SAC_2045 S01 [720p] [Japanese Audio] [Multi-Subs]/[DragsterPS] Ghost in the Shell - SAC_2045 S01E10 [720p] [Japanese Audio] [Multi-Subs] [63349AB5].mkv", + "filename": "[DragsterPS] Ghost in the Shell - SAC_2045 S01E10 [720p] [Japanese Audio] [Multi-Subs] [63349AB5].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Dragsterps] Ghost In The Shell - Sac 2045 S01E10 [720P] [Japanese Audio] [Multi-Subs] [63349Ab5]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Dragsterps] Ghost In The Shell - Sac 2045 S01E10 [720P] [Japanese Audio] [Multi-Subs] [63349Ab5]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[DragsterPS] Ghost in the Shell - SAC_2045 S01 [720p] [Japanese Audio] [Multi-Subs]/[DragsterPS] Ghost in the Shell - SAC_2045 S01E06 [720p] [Japanese Audio] [Multi-Subs] [7398EB28].mkv", + "filename": "[DragsterPS] Ghost in the Shell - SAC_2045 S01E06 [720p] [Japanese Audio] [Multi-Subs] [7398EB28].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Dragsterps] Ghost In The Shell - Sac 2045 S01E06 [720P] [Japanese Audio] [Multi-Subs] [7398Eb28]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Dragsterps] Ghost In The Shell - Sac 2045 S01E06 [720P] [Japanese Audio] [Multi-Subs] [7398Eb28]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 使人誤解的工房主~關於原英雄隊伍的雜役人員,實際上除了戰鬥能力外全是SSS的故事~ - 11 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 使人誤解的工房主~關於原英雄隊伍的雜役人員,實際上除了戰鬥能力外全是SSS的故事~ - 11 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 使人誤解的工房主~關於原英雄隊伍的雜役人員,實際上除了戰鬥能力外全是Sss的故事~ - 11 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 使人誤解的工房主~關於原英雄隊伍的雜役人員,實際上除了戰鬥能力外全是Sss的故事~ - 11 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 戀上換裝娃娃 Season 2 - 14 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 戀上換裝娃娃 Season 2 - 14 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 戀上換裝娃娃 Season 2 - 14 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 戀上換裝娃娃 Season 2 - 14 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Lv2 kara Cheat datta Motoyuusha Kouho no Mattari Isekai Life - 02 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "filename": "[LoliHouse] Lv2 kara Cheat datta Motoyuusha Kouho no Mattari Isekai Life - 02 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Lv2 Kara Cheat Datta Motoyuusha Kouho No Mattari Isekai Life - 02 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Lv2 Kara Cheat Datta Motoyuusha Kouho No Mattari Isekai Life - 02 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] WIND BREAKER—防風少年— - 11 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] WIND BREAKER—防風少年— - 11 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] Wind Breaker—防風少年— - 11 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] Wind Breaker—防風少年— - 11 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 我內心的糟糕念頭 第二季 - 16 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 我內心的糟糕念頭 第二季 - 16 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 我內心的糟糕念頭 第二季 - 16 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 我內心的糟糕念頭 第二季 - 16 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Nekomoe kissaten][Tower of God S2][13][1080p][CHS].mp4", + "filename": "[Nekomoe kissaten][Tower of God S2][13][1080p][CHS].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Nekomoe Kissaten][Tower Of God S2][13][1080P][Chs]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Nekomoe Kissaten][Tower Of God S2][13][1080P][Chs]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/The.Garden.of.Words.2013.1080p.BluRay.x264-WiKi/The.Garden.of.Words.2013.1080p.BluRay.x264-WiKi.mkv", + "filename": "The.Garden.of.Words.2013.1080p.BluRay.x264-WiKi.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "The Garden Of Words 2013 1080P Bluray X264-Wiki", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "The Garden Of Words 2013 1080P Bluray X264-Wiki", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/The.Garden.of.Words.2013.1080p.BluRay.x264-WiKi/Sample/The.Garden.of.Words.2013.1080p.BluRay.x264-WiKi.Sample.mkv", + "filename": "The.Garden.of.Words.2013.1080p.BluRay.x264-WiKi.Sample.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "The Garden Of Words 2013 1080P Bluray X264-Wiki Sample", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "The Garden Of Words 2013 1080P Bluray X264-Wiki Sample", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Skymoon-Raws] Akuyaku Reijou Tensei Ojisan - 01 [ViuTV][WEB-DL][CHT][SRT][1080p][AVC AAC].mkv", + "filename": "[Skymoon-Raws] Akuyaku Reijou Tensei Ojisan - 01 [ViuTV][WEB-DL][CHT][SRT][1080p][AVC AAC].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Skymoon-Raws] Akuyaku Reijou Tensei Ojisan - 01 [Viutv][Web-Dl][Cht][Srt][1080P][Avc Aac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Skymoon-Raws] Akuyaku Reijou Tensei Ojisan - 01 [Viutv][Web-Dl][Cht][Srt][1080P][Avc Aac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[UHA-WINGS][Vindland Saga][BDRIP x264 1080p]/[UHA-WINGS][Vindland Saga][07][BDRIP x264 1080p].mkv", + "filename": "[UHA-WINGS][Vindland Saga][07][BDRIP x264 1080p].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Uha-Wings][Vindland Saga][07][Bdrip X264 1080P]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Uha-Wings][Vindland Saga][07][Bdrip X264 1080P]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[UHA-WINGS][Vindland Saga][BDRIP x264 1080p]/[UHA-WINGS][Vindland Saga][10][BDRIP x264 1080p].mkv", + "filename": "[UHA-WINGS][Vindland Saga][10][BDRIP x264 1080p].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Uha-Wings][Vindland Saga][10][Bdrip X264 1080P]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Uha-Wings][Vindland Saga][10][Bdrip X264 1080P]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[UHA-WINGS][Vindland Saga][BDRIP x264 1080p]/[UHA-WINGS][Vindland Saga][22][BDRIP x264 1080p].mkv", + "filename": "[UHA-WINGS][Vindland Saga][22][BDRIP x264 1080p].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Uha-Wings][Vindland Saga][22][Bdrip X264 1080P]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Uha-Wings][Vindland Saga][22][Bdrip X264 1080P]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[UHA-WINGS][Vindland Saga][BDRIP x264 1080p]/[UHA-WINGS][Vindland Saga][23][BDRIP x264 1080p].mkv", + "filename": "[UHA-WINGS][Vindland Saga][23][BDRIP x264 1080p].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Uha-Wings][Vindland Saga][23][Bdrip X264 1080P]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Uha-Wings][Vindland Saga][23][Bdrip X264 1080P]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[UHA-WINGS][Vindland Saga][BDRIP x264 1080p]/[UHA-WINGS][Vindland Saga][11][BDRIP x264 1080p].mkv", + "filename": "[UHA-WINGS][Vindland Saga][11][BDRIP x264 1080p].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Uha-Wings][Vindland Saga][11][Bdrip X264 1080P]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Uha-Wings][Vindland Saga][11][Bdrip X264 1080P]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[UHA-WINGS][Vindland Saga][BDRIP x264 1080p]/[UHA-WINGS][Vindland Saga][06][BDRIP x264 1080p].mkv", + "filename": "[UHA-WINGS][Vindland Saga][06][BDRIP x264 1080p].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Uha-Wings][Vindland Saga][06][Bdrip X264 1080P]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Uha-Wings][Vindland Saga][06][Bdrip X264 1080P]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[UHA-WINGS][Vindland Saga][BDRIP x264 1080p]/[UHA-WINGS][Vindland Saga][18][BDRIP x264 1080p].mkv", + "filename": "[UHA-WINGS][Vindland Saga][18][BDRIP x264 1080p].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Uha-Wings][Vindland Saga][18][Bdrip X264 1080P]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Uha-Wings][Vindland Saga][18][Bdrip X264 1080P]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[UHA-WINGS][Vindland Saga][BDRIP x264 1080p]/[UHA-WINGS][Vindland Saga][13][BDRIP x264 1080p].mkv", + "filename": "[UHA-WINGS][Vindland Saga][13][BDRIP x264 1080p].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Uha-Wings][Vindland Saga][13][Bdrip X264 1080P]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Uha-Wings][Vindland Saga][13][Bdrip X264 1080P]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[UHA-WINGS][Vindland Saga][BDRIP x264 1080p]/[UHA-WINGS][Vindland Saga][04][BDRIP x264 1080p].mkv", + "filename": "[UHA-WINGS][Vindland Saga][04][BDRIP x264 1080p].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Uha-Wings][Vindland Saga][04][Bdrip X264 1080P]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Uha-Wings][Vindland Saga][04][Bdrip X264 1080P]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[UHA-WINGS][Vindland Saga][BDRIP x264 1080p]/[UHA-WINGS][Vindland Saga][21][BDRIP x264 1080p].mkv", + "filename": "[UHA-WINGS][Vindland Saga][21][BDRIP x264 1080p].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Uha-Wings][Vindland Saga][21][Bdrip X264 1080P]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Uha-Wings][Vindland Saga][21][Bdrip X264 1080P]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[UHA-WINGS][Vindland Saga][BDRIP x264 1080p]/[UHA-WINGS][Vindland Saga][20][BDRIP x264 1080p].mkv", + "filename": "[UHA-WINGS][Vindland Saga][20][BDRIP x264 1080p].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Uha-Wings][Vindland Saga][20][Bdrip X264 1080P]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Uha-Wings][Vindland Saga][20][Bdrip X264 1080P]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[UHA-WINGS][Vindland Saga][BDRIP x264 1080p]/[UHA-WINGS][Vindland Saga][05][BDRIP x264 1080p].mkv", + "filename": "[UHA-WINGS][Vindland Saga][05][BDRIP x264 1080p].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Uha-Wings][Vindland Saga][05][Bdrip X264 1080P]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Uha-Wings][Vindland Saga][05][Bdrip X264 1080P]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[UHA-WINGS][Vindland Saga][BDRIP x264 1080p]/[UHA-WINGS][Vindland Saga][12][BDRIP x264 1080p].mkv", + "filename": "[UHA-WINGS][Vindland Saga][12][BDRIP x264 1080p].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Uha-Wings][Vindland Saga][12][Bdrip X264 1080P]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Uha-Wings][Vindland Saga][12][Bdrip X264 1080P]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[UHA-WINGS][Vindland Saga][BDRIP x264 1080p]/[UHA-WINGS][Vindland Saga][19][BDRIP x264 1080p].mkv", + "filename": "[UHA-WINGS][Vindland Saga][19][BDRIP x264 1080p].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Uha-Wings][Vindland Saga][19][Bdrip X264 1080P]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Uha-Wings][Vindland Saga][19][Bdrip X264 1080P]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[UHA-WINGS][Vindland Saga][BDRIP x264 1080p]/[UHA-WINGS][Vindland Saga][24][BDRIP x264 1080p].mkv", + "filename": "[UHA-WINGS][Vindland Saga][24][BDRIP x264 1080p].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Uha-Wings][Vindland Saga][24][Bdrip X264 1080P]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Uha-Wings][Vindland Saga][24][Bdrip X264 1080P]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[UHA-WINGS][Vindland Saga][BDRIP x264 1080p]/[UHA-WINGS][Vindland Saga][16][BDRIP x264 1080p].mkv", + "filename": "[UHA-WINGS][Vindland Saga][16][BDRIP x264 1080p].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Uha-Wings][Vindland Saga][16][Bdrip X264 1080P]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Uha-Wings][Vindland Saga][16][Bdrip X264 1080P]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[UHA-WINGS][Vindland Saga][BDRIP x264 1080p]/[UHA-WINGS][Vindland Saga][01][BDRIP x264 1080p].mkv", + "filename": "[UHA-WINGS][Vindland Saga][01][BDRIP x264 1080p].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Uha-Wings][Vindland Saga][01][Bdrip X264 1080P]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Uha-Wings][Vindland Saga][01][Bdrip X264 1080P]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[UHA-WINGS][Vindland Saga][BDRIP x264 1080p]/[UHA-WINGS][Vindland Saga][17][BDRIP x264 1080p].mkv", + "filename": "[UHA-WINGS][Vindland Saga][17][BDRIP x264 1080p].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Uha-Wings][Vindland Saga][17][Bdrip X264 1080P]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Uha-Wings][Vindland Saga][17][Bdrip X264 1080P]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[UHA-WINGS][Vindland Saga][BDRIP x264 1080p]/[UHA-WINGS][Vindland Saga][02][BDRIP x264 1080p].mkv", + "filename": "[UHA-WINGS][Vindland Saga][02][BDRIP x264 1080p].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Uha-Wings][Vindland Saga][02][Bdrip X264 1080P]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Uha-Wings][Vindland Saga][02][Bdrip X264 1080P]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[UHA-WINGS][Vindland Saga][BDRIP x264 1080p]/[UHA-WINGS][Vindland Saga][09][BDRIP x264 1080p].mkv", + "filename": "[UHA-WINGS][Vindland Saga][09][BDRIP x264 1080p].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Uha-Wings][Vindland Saga][09][Bdrip X264 1080P]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Uha-Wings][Vindland Saga][09][Bdrip X264 1080P]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[UHA-WINGS][Vindland Saga][BDRIP x264 1080p]/[UHA-WINGS][Vindland Saga][15][BDRIP x264 1080p].mkv", + "filename": "[UHA-WINGS][Vindland Saga][15][BDRIP x264 1080p].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Uha-Wings][Vindland Saga][15][Bdrip X264 1080P]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Uha-Wings][Vindland Saga][15][Bdrip X264 1080P]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[UHA-WINGS][Vindland Saga][BDRIP x264 1080p]/[UHA-WINGS][Vindland Saga][14][BDRIP x264 1080p].mkv", + "filename": "[UHA-WINGS][Vindland Saga][14][BDRIP x264 1080p].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Uha-Wings][Vindland Saga][14][Bdrip X264 1080P]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Uha-Wings][Vindland Saga][14][Bdrip X264 1080P]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[UHA-WINGS][Vindland Saga][BDRIP x264 1080p]/[UHA-WINGS][Vindland Saga][08][BDRIP x264 1080p].mkv", + "filename": "[UHA-WINGS][Vindland Saga][08][BDRIP x264 1080p].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Uha-Wings][Vindland Saga][08][Bdrip X264 1080P]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Uha-Wings][Vindland Saga][08][Bdrip X264 1080P]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[UHA-WINGS][Vindland Saga][BDRIP x264 1080p]/[UHA-WINGS][Vindland Saga][03][BDRIP x264 1080p].mkv", + "filename": "[UHA-WINGS][Vindland Saga][03][BDRIP x264 1080p].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Uha-Wings][Vindland Saga][03][Bdrip X264 1080P]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Uha-Wings][Vindland Saga][03][Bdrip X264 1080P]", + "needs_review": true + }, + { + "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", + "title": "[Ani] 我要【招架】一切~反誤解的世界最強想成為冒險家~ - 07 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 我要【招架】一切~反誤解的世界最強想成為冒險家~ - 07 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Tsuki ga Michibiku Isekai Douchuu S2 - 23 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "filename": "[LoliHouse] Tsuki ga Michibiku Isekai Douchuu S2 - 23 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Tsuki Ga Michibiku Isekai Douchuu S2 - 23 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Tsuki Ga Michibiku Isekai Douchuu S2 - 23 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[HYSUB]Dungeon Meshi[05][BIG5_MP4][1920X1080].mp4", + "filename": "[HYSUB]Dungeon Meshi[05][BIG5_MP4][1920X1080].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Hysub]Dungeon Meshi[05][Big5 Mp4][1920X1080]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Hysub]Dungeon Meshi[05][Big5 Mp4][1920X1080]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 盾之勇者成名錄 Season 4 - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 盾之勇者成名錄 Season 4 - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 盾之勇者成名錄 Season 4 - 02 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 盾之勇者成名錄 Season 4 - 02 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 我的英雄學院 FINAL SEASON - 164 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 我的英雄學院 FINAL SEASON - 164 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 我的英雄學院 Final Season - 164 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 我的英雄學院 Final Season - 164 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 戰國妖狐 - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 戰國妖狐 - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 戰國妖狐 - 02 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 戰國妖狐 - 02 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Hitoribocchi no Isekai Kouryaku - 01 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "filename": "[LoliHouse] Hitoribocchi no Isekai Kouryaku - 01 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Hitoribocchi No Isekai Kouryaku - 01 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Hitoribocchi No Isekai Kouryaku - 01 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "needs_review": true + }, + { + "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", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 新人大叔冒險者,被最強隊伍操到死成無敵 - 05 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 新人大叔冒險者,被最強隊伍操到死成無敵 - 05 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 靠廢柴技能【狀態異常】成為最強的我將蹂躪一切 - 08 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 靠廢柴技能【狀態異常】成為最強的我將蹂躪一切 - 08 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 靠廢柴技能【狀態異常】成為最強的我將蹂躪一切 - 08 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 靠廢柴技能【狀態異常】成為最強的我將蹂躪一切 - 08 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 轉生貴族憑鑑定技能扭轉人生 第二季 - 16 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 轉生貴族憑鑑定技能扭轉人生 第二季 - 16 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 轉生貴族憑鑑定技能扭轉人生 第二季 - 16 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 轉生貴族憑鑑定技能扭轉人生 第二季 - 16 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 差點在迷宮深處被信任的夥伴殺掉,但靠著天賜技能「無限扭蛋」獲得等級 9999 的夥伴,我要向前隊友和世界展開復仇&「給他們好看!」 - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 差點在迷宮深處被信任的夥伴殺掉,但靠著天賜技能「無限扭蛋」獲得等級 9999 的夥伴,我要向前隊友和世界展開復仇&「給他們好看!」 - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 差點在迷宮深處被信任的夥伴殺掉,但靠著天賜技能「無限扭蛋」獲得等級 9999 的夥伴,我要向前隊友和世界展開復仇&「給他們好看!」 - 02 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 差點在迷宮深處被信任的夥伴殺掉,但靠著天賜技能「無限扭蛋」獲得等級 9999 的夥伴,我要向前隊友和世界展開復仇&「給他們好看!」 - 02 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 我獨自升級 - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 我獨自升級 - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 我獨自升級 - 02 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 我獨自升級 - 02 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Nekomoe kissaten][Ishura][05][1080p][JPSC].mp4", + "filename": "[Nekomoe kissaten][Ishura][05][1080p][JPSC].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Nekomoe Kissaten][Ishura][05][1080P][Jpsc]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Nekomoe Kissaten][Ishura][05][1080P][Jpsc]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[HYSUB]Sono Bisque Doll wa Koi wo Suru[13][BIG5_MP4][1920X1080].mp4", + "filename": "[HYSUB]Sono Bisque Doll wa Koi wo Suru[13][BIG5_MP4][1920X1080].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Hysub]Sono Bisque Doll Wa Koi Wo Suru[13][Big5 Mp4][1920X1080]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Hysub]Sono Bisque Doll Wa Koi Wo Suru[13][Big5 Mp4][1920X1080]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Nekomoe kissaten] Chi. Chikyuu no Undou ni Tsuite [03][WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "filename": "[Nekomoe kissaten] Chi. Chikyuu no Undou ni Tsuite [03][WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Nekomoe Kissaten] Chi Chikyuu No Undou Ni Tsuite [03][Webrip 1080P Hevc-10Bit Aac Assx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Nekomoe Kissaten] Chi Chikyuu No Undou Ni Tsuite [03][Webrip 1080P Hevc-10Bit Aac Assx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Comicat][Ninja to Koroshiya no Futarigurashi][02][1080P][BIG5][MP4].mp4", + "filename": "[Comicat][Ninja to Koroshiya no Futarigurashi][02][1080P][BIG5][MP4].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Comicat][Ninja To Koroshiya No Futarigurashi][02][1080P][Big5][Mp4]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Comicat][Ninja To Koroshiya No Futarigurashi][02][1080P][Big5][Mp4]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 我獨自升級 第二季 -起於闇影- - 25 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 我獨自升級 第二季 -起於闇影- - 25 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 我獨自升級 第二季 -起於闇影- - 25 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 我獨自升級 第二季 -起於闇影- - 25 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "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", + "title": "[Ani] 最近的偵探真沒用 - 07 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 最近的偵探真沒用 - 07 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "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", + "title": "[Ani] 膽大黨 - 07 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 膽大黨 - 07 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Nekomoe kissaten][Ishura][10][1080p][JPSC].mp4", + "filename": "[Nekomoe kissaten][Ishura][10][1080p][JPSC].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Nekomoe Kissaten][Ishura][10][1080P][Jpsc]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Nekomoe Kissaten][Ishura][10][1080P][Jpsc]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Nekomoe kissaten][Dungeon Meshi][18][1080p][JPTC].mp4", + "filename": "[Nekomoe kissaten][Dungeon Meshi][18][1080p][JPTC].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Nekomoe Kissaten][Dungeon Meshi][18][1080P][Jptc]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Nekomoe Kissaten][Dungeon Meshi][18][1080P][Jptc]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Maougun Saikyou no Majutsushi wa Ningen datta - 01 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "filename": "[LoliHouse] Maougun Saikyou no Majutsushi wa Ningen datta - 01 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Maougun Saikyou No Majutsushi Wa Ningen Datta - 01 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Maougun Saikyou No Majutsushi Wa Ningen Datta - 01 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Dynamis One] Tsuyokute New Saga - 07 (CR 1920x1080 AVC AAC MKV) [3E2D0ED7].mkv", + "filename": "[Dynamis One] Tsuyokute New Saga - 07 (CR 1920x1080 AVC AAC MKV) [3E2D0ED7].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Dynamis One] Tsuyokute New Saga - 07 (Cr 1920X1080 Avc Aac Mkv) [3E2D0Ed7]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Dynamis One] Tsuyokute New Saga - 07 (Cr 1920X1080 Avc Aac Mkv) [3E2D0Ed7]", + "needs_review": true + }, + { + "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", + "title": "[Ani] 我與尼特女忍者的莫名同居生活 - 07 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 我與尼特女忍者的莫名同居生活 - 07 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 小手指同學,請別亂摸 [年齡限制版] - 12 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 小手指同學,請別亂摸 [年齡限制版] - 12 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 小手指同學,請別亂摸 [年齡限制版] - 12 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 小手指同學,請別亂摸 [年齡限制版] - 12 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 大江戶烈火殺手 - 鳳凰傳說 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 大江戶烈火殺手 - 鳳凰傳說 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 大江戶烈火殺手 - 鳳凰傳說 - 01 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 大江戶烈火殺手 - 鳳凰傳說 - 01 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 身為暗殺者的我明顯比勇者還強 - 09 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 身為暗殺者的我明顯比勇者還強 - 09 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 身為暗殺者的我明顯比勇者還強 - 09 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 身為暗殺者的我明顯比勇者還強 - 09 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 素材採集家的異世界旅行記 - 10 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 素材採集家的異世界旅行記 - 10 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 素材採集家的異世界旅行記 - 10 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 素材採集家的異世界旅行記 - 10 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 我要【招架】一切~反誤解的世界最強想成為冒險家~ - 03 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 我要【招架】一切~反誤解的世界最強想成為冒險家~ - 03 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 我要【招架】一切~反誤解的世界最強想成為冒險家~ - 03 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 我要【招架】一切~反誤解的世界最強想成為冒險家~ - 03 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Star.Wars.Visions.S01.1080p.DSNP.WEB-DL.DDP5.1.H.264-FLUX/Star.Wars.Visions.S01E02.Tatooine.Rhapsody.1080p.DSNP.WEB-DL.DDP5.1.H.264-FLUX.mkv", + "filename": "Star.Wars.Visions.S01E02.Tatooine.Rhapsody.1080p.DSNP.WEB-DL.DDP5.1.H.264-FLUX.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Star Wars Visions S01E02 Tatooine Rhapsody 1080P Dsnp Web-Dl Ddp5 1 H 264-Flux", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Star Wars Visions S01E02 Tatooine Rhapsody 1080P Dsnp Web-Dl Ddp5 1 H 264-Flux", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Star.Wars.Visions.S01.1080p.DSNP.WEB-DL.DDP5.1.H.264-FLUX/Star.Wars.Visions.S01E05.The.Ninth.Jedi.1080p.DSNP.WEB-DL.DDP5.1.H.264-FLUX.mkv", + "filename": "Star.Wars.Visions.S01E05.The.Ninth.Jedi.1080p.DSNP.WEB-DL.DDP5.1.H.264-FLUX.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Star Wars Visions S01E05 The Ninth Jedi 1080P Dsnp Web-Dl Ddp5 1 H 264-Flux", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Star Wars Visions S01E05 The Ninth Jedi 1080P Dsnp Web-Dl Ddp5 1 H 264-Flux", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Star.Wars.Visions.S01.1080p.DSNP.WEB-DL.DDP5.1.H.264-FLUX/Star.Wars.Visions.S01E01.The.Duel.1080p.DSNP.WEB-DL.DDP5.1.H.264-FLUX.mkv", + "filename": "Star.Wars.Visions.S01E01.The.Duel.1080p.DSNP.WEB-DL.DDP5.1.H.264-FLUX.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Star Wars Visions S01E01 The Duel 1080P Dsnp Web-Dl Ddp5 1 H 264-Flux", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Star Wars Visions S01E01 The Duel 1080P Dsnp Web-Dl Ddp5 1 H 264-Flux", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Star.Wars.Visions.S01.1080p.DSNP.WEB-DL.DDP5.1.H.264-FLUX/Star.Wars.Visions.S01E08.Lop.Och.1080p.DSNP.WEB-DL.DDP5.1.H.264-FLUX.mkv", + "filename": "Star.Wars.Visions.S01E08.Lop.Och.1080p.DSNP.WEB-DL.DDP5.1.H.264-FLUX.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Star Wars Visions S01E08 Lop Och 1080P Dsnp Web-Dl Ddp5 1 H 264-Flux", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Star Wars Visions S01E08 Lop Och 1080P Dsnp Web-Dl Ddp5 1 H 264-Flux", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Star.Wars.Visions.S01.1080p.DSNP.WEB-DL.DDP5.1.H.264-FLUX/Star.Wars.Visions.S01E03.The.Twins.1080p.DSNP.WEB-DL.DDP5.1.H.264-FLUX.mkv", + "filename": "Star.Wars.Visions.S01E03.The.Twins.1080p.DSNP.WEB-DL.DDP5.1.H.264-FLUX.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Star Wars Visions S01E03 The Twins 1080P Dsnp Web-Dl Ddp5 1 H 264-Flux", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Star Wars Visions S01E03 The Twins 1080P Dsnp Web-Dl Ddp5 1 H 264-Flux", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Star.Wars.Visions.S01.1080p.DSNP.WEB-DL.DDP5.1.H.264-FLUX/Star.Wars.Visions.S01E06.T0-B1.1080p.DSNP.WEB-DL.DDP5.1.H.264-FLUX.mkv", + "filename": "Star.Wars.Visions.S01E06.T0-B1.1080p.DSNP.WEB-DL.DDP5.1.H.264-FLUX.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Star Wars Visions S01E06 T0-B1 1080P Dsnp Web-Dl Ddp5 1 H 264-Flux", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Star Wars Visions S01E06 T0-B1 1080P Dsnp Web-Dl Ddp5 1 H 264-Flux", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Star.Wars.Visions.S01.1080p.DSNP.WEB-DL.DDP5.1.H.264-FLUX/Star.Wars.Visions.S01E04.The.Village.Bride.1080p.DSNP.WEB-DL.DDP5.1.H.264-FLUX.mkv", + "filename": "Star.Wars.Visions.S01E04.The.Village.Bride.1080p.DSNP.WEB-DL.DDP5.1.H.264-FLUX.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Star Wars Visions S01E04 The Village Bride 1080P Dsnp Web-Dl Ddp5 1 H 264-Flux", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Star Wars Visions S01E04 The Village Bride 1080P Dsnp Web-Dl Ddp5 1 H 264-Flux", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Star.Wars.Visions.S01.1080p.DSNP.WEB-DL.DDP5.1.H.264-FLUX/Star.Wars.Visions.S01E07.The.Elder.1080p.DSNP.WEB-DL.DDP5.1.H.264-FLUX.mkv", + "filename": "Star.Wars.Visions.S01E07.The.Elder.1080p.DSNP.WEB-DL.DDP5.1.H.264-FLUX.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Star Wars Visions S01E07 The Elder 1080P Dsnp Web-Dl Ddp5 1 H 264-Flux", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Star Wars Visions S01E07 The Elder 1080P Dsnp Web-Dl Ddp5 1 H 264-Flux", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Star.Wars.Visions.S01.1080p.DSNP.WEB-DL.DDP5.1.H.264-FLUX/Star.Wars.Visions.S01E09.Akakiri.1080p.DSNP.WEB-DL.DDP5.1.H.264-FLUX.mkv", + "filename": "Star.Wars.Visions.S01E09.Akakiri.1080p.DSNP.WEB-DL.DDP5.1.H.264-FLUX.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Star Wars Visions S01E09 Akakiri 1080P Dsnp Web-Dl Ddp5 1 H 264-Flux", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Star Wars Visions S01E09 Akakiri 1080P Dsnp Web-Dl Ddp5 1 H 264-Flux", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 膽大黨 第二季 - 16 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 膽大黨 第二季 - 16 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 膽大黨 第二季 - 16 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 膽大黨 第二季 - 16 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 貴族轉生~得天眷顧一出生就獲得最強力量~ - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 貴族轉生~得天眷顧一出生就獲得最強力量~ - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 貴族轉生~得天眷顧一出生就獲得最強力量~ - 01 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 貴族轉生~得天眷顧一出生就獲得最強力量~ - 01 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Lilith-Raws] Mushoku Tensei S02 - 15 [Baha][WebDL 1080p AVC AAC][CHT].mp4", + "filename": "[Lilith-Raws] Mushoku Tensei S02 - 15 [Baha][WebDL 1080p AVC AAC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lilith-Raws] Mushoku Tensei S02 - 15 [Baha][Webdl 1080P Avc Aac][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lilith-Raws] Mushoku Tensei S02 - 15 [Baha][Webdl 1080P Avc Aac][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[HYSUB]Dungeon Meshi[13][BIG5_MP4][1920X1080].mp4", + "filename": "[HYSUB]Dungeon Meshi[13][BIG5_MP4][1920X1080].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Hysub]Dungeon Meshi[13][Big5 Mp4][1920X1080]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Hysub]Dungeon Meshi[13][Big5 Mp4][1920X1080]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 新人大叔冒險者,被最強隊伍操到死成無敵 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 新人大叔冒險者,被最強隊伍操到死成無敵 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 新人大叔冒險者,被最強隊伍操到死成無敵 - 01 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 新人大叔冒險者,被最強隊伍操到死成無敵 - 01 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Skymoon-Raws] SPY×FAMILY - 19 [ViuTV][WEB-DL][CHT][1080p][AVC AAC][MP4+ASS]/[Skymoon-Raws] SPY×FAMILY - 19 [ViuTV][WEB-DL][1080p][AVC AAC].mp4", + "filename": "[Skymoon-Raws] SPY×FAMILY - 19 [ViuTV][WEB-DL][1080p][AVC AAC].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Skymoon-Raws] Spy×Family - 19 [Viutv][Web-Dl][1080P][Avc Aac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Skymoon-Raws] Spy×Family - 19 [Viutv][Web-Dl][1080P][Avc Aac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 藍色管弦樂 第二季 - 13 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 藍色管弦樂 第二季 - 13 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 藍色管弦樂 第二季 - 13 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 藍色管弦樂 第二季 - 13 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 和機器人啪啪啪能算在經驗人數裡嗎?? [年齡限制版] - 03 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 和機器人啪啪啪能算在經驗人數裡嗎?? [年齡限制版] - 03 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 和機器人啪啪啪能算在經驗人數裡嗎?? [年齡限制版] - 03 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 和機器人啪啪啪能算在經驗人數裡嗎?? [年齡限制版] - 03 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 盾之勇者成名錄 Season 4 - 06 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 盾之勇者成名錄 Season 4 - 06 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 盾之勇者成名錄 Season 4 - 06 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 盾之勇者成名錄 Season 4 - 06 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 身為暗殺者的我明顯比勇者還強 - 12 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 身為暗殺者的我明顯比勇者還強 - 12 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 身為暗殺者的我明顯比勇者還強 - 12 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 身為暗殺者的我明顯比勇者還強 - 12 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 聽說你們要結婚!? - 04 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 聽說你們要結婚!? - 04 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 聽說你們要結婚!? - 04 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 聽說你們要結婚!? - 04 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] Silent Witch 沉默魔女的祕密 - 11 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] Silent Witch 沉默魔女的祕密 - 11 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] Silent Witch 沉默魔女的祕密 - 11 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] Silent Witch 沉默魔女的祕密 - 11 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 我獨自升級 - 06 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 我獨自升級 - 06 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 我獨自升級 - 06 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 我獨自升級 - 06 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Hametsu no Oukoku [01-12][WebRip 1080p HEVC-10bit AAC ASSx2]/[LoliHouse] Hametsu no Oukoku - 08 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "filename": "[LoliHouse] Hametsu no Oukoku - 08 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Hametsu No Oukoku - 08 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Hametsu No Oukoku - 08 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Hametsu no Oukoku [01-12][WebRip 1080p HEVC-10bit AAC ASSx2]/[LoliHouse] Hametsu no Oukoku - 04 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "filename": "[LoliHouse] Hametsu no Oukoku - 04 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Hametsu No Oukoku - 04 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Hametsu No Oukoku - 04 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Hametsu no Oukoku [01-12][WebRip 1080p HEVC-10bit AAC ASSx2]/[LoliHouse] Hametsu no Oukoku - 05 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "filename": "[LoliHouse] Hametsu no Oukoku - 05 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Hametsu No Oukoku - 05 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Hametsu No Oukoku - 05 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Hametsu no Oukoku [01-12][WebRip 1080p HEVC-10bit AAC ASSx2]/[LoliHouse] Hametsu no Oukoku - 01 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "filename": "[LoliHouse] Hametsu no Oukoku - 01 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Hametsu No Oukoku - 01 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Hametsu No Oukoku - 01 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Hametsu no Oukoku [01-12][WebRip 1080p HEVC-10bit AAC ASSx2]/[LoliHouse] Hametsu no Oukoku - 12 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "filename": "[LoliHouse] Hametsu no Oukoku - 12 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Hametsu No Oukoku - 12 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Hametsu No Oukoku - 12 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Hametsu no Oukoku [01-12][WebRip 1080p HEVC-10bit AAC ASSx2]/[LoliHouse] Hametsu no Oukoku - 09 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "filename": "[LoliHouse] Hametsu no Oukoku - 09 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Hametsu No Oukoku - 09 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Hametsu No Oukoku - 09 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Hametsu no Oukoku [01-12][WebRip 1080p HEVC-10bit AAC ASSx2]/[LoliHouse] Hametsu no Oukoku - 07 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "filename": "[LoliHouse] Hametsu no Oukoku - 07 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Hametsu No Oukoku - 07 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Hametsu No Oukoku - 07 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Hametsu no Oukoku [01-12][WebRip 1080p HEVC-10bit AAC ASSx2]/[LoliHouse] Hametsu no Oukoku - 03 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "filename": "[LoliHouse] Hametsu no Oukoku - 03 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Hametsu No Oukoku - 03 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Hametsu No Oukoku - 03 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Hametsu no Oukoku [01-12][WebRip 1080p HEVC-10bit AAC ASSx2]/[LoliHouse] Hametsu no Oukoku - 10 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "filename": "[LoliHouse] Hametsu no Oukoku - 10 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Hametsu No Oukoku - 10 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Hametsu No Oukoku - 10 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Hametsu no Oukoku [01-12][WebRip 1080p HEVC-10bit AAC ASSx2]/[LoliHouse] Hametsu no Oukoku - 11 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "filename": "[LoliHouse] Hametsu no Oukoku - 11 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Hametsu No Oukoku - 11 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Hametsu No Oukoku - 11 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Hametsu no Oukoku [01-12][WebRip 1080p HEVC-10bit AAC ASSx2]/[LoliHouse] Hametsu no Oukoku - 06 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "filename": "[LoliHouse] Hametsu no Oukoku - 06 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Hametsu No Oukoku - 06 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Hametsu No Oukoku - 06 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Hametsu no Oukoku [01-12][WebRip 1080p HEVC-10bit AAC ASSx2]/[LoliHouse] Hametsu no Oukoku - 02 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "filename": "[LoliHouse] Hametsu no Oukoku - 02 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Hametsu No Oukoku - 02 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Hametsu No Oukoku - 02 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Skymoon-Raws] Kaguya-sama wa Kokurasetai S03 - 10 [ViuTV][WEB-DL][CHT][1080p][AVC AAC][MP4+ASS]/[Skymoon-Raws] Kaguya-sama wa Kokurasetai S03 - 10 [ViuTV][WEB-DL][1080p][AVC AAC].mp4", + "filename": "[Skymoon-Raws] Kaguya-sama wa Kokurasetai S03 - 10 [ViuTV][WEB-DL][1080p][AVC AAC].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Skymoon-Raws] Kaguya-Sama Wa Kokurasetai S03 - 10 [Viutv][Web-Dl][1080P][Avc Aac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Skymoon-Raws] Kaguya-Sama Wa Kokurasetai S03 - 10 [Viutv][Web-Dl][1080P][Avc Aac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 靠死亡遊戲混飯吃。 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 靠死亡遊戲混飯吃。 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 靠死亡遊戲混飯吃。 - 01 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 靠死亡遊戲混飯吃。 - 01 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/はねバド! 2018 1080P BDrip HEVC FLAC 2.0-SweetDreamDay/はねバド! EP07 (BDrip HEVC FLAC SUP).mkv", + "filename": "はねバド! EP07 (BDrip HEVC FLAC SUP).mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "はねバド! Ep07 (Bdrip Hevc Flac Sup)", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "はねバド! Ep07 (Bdrip Hevc Flac Sup)", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/はねバド! 2018 1080P BDrip HEVC FLAC 2.0-SweetDreamDay/はねバド! EP012 (BDrip HEVC FLAC SUP).mkv", + "filename": "はねバド! EP012 (BDrip HEVC FLAC SUP).mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "はねバド! Ep012 (Bdrip Hevc Flac Sup)", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "はねバド! Ep012 (Bdrip Hevc Flac Sup)", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/はねバド! 2018 1080P BDrip HEVC FLAC 2.0-SweetDreamDay/はねバド! EP04 (BDrip HEVC FLAC SUP).mkv", + "filename": "はねバド! EP04 (BDrip HEVC FLAC SUP).mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "はねバド! Ep04 (Bdrip Hevc Flac Sup)", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "はねバド! Ep04 (Bdrip Hevc Flac Sup)", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/はねバド! 2018 1080P BDrip HEVC FLAC 2.0-SweetDreamDay/はねバド! EP011 (BDrip HEVC FLAC SUP).mkv", + "filename": "はねバド! EP011 (BDrip HEVC FLAC SUP).mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "はねバド! Ep011 (Bdrip Hevc Flac Sup)", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "はねバド! Ep011 (Bdrip Hevc Flac Sup)", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/はねバド! 2018 1080P BDrip HEVC FLAC 2.0-SweetDreamDay/はねバド! EP01 (BDrip HEVC FLAC SUP).mkv", + "filename": "はねバド! EP01 (BDrip HEVC FLAC SUP).mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "はねバド! Ep01 (Bdrip Hevc Flac Sup)", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "はねバド! Ep01 (Bdrip Hevc Flac Sup)", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/はねバド! 2018 1080P BDrip HEVC FLAC 2.0-SweetDreamDay/はねバド! EP02 (BDrip HEVC FLAC SUP).mkv", + "filename": "はねバド! EP02 (BDrip HEVC FLAC SUP).mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "はねバド! Ep02 (Bdrip Hevc Flac Sup)", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "はねバド! Ep02 (Bdrip Hevc Flac Sup)", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/はねバド! 2018 1080P BDrip HEVC FLAC 2.0-SweetDreamDay/はねバド! EP08 (BDrip HEVC FLAC SUP).mkv", + "filename": "はねバド! EP08 (BDrip HEVC FLAC SUP).mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "はねバド! Ep08 (Bdrip Hevc Flac Sup)", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "はねバド! Ep08 (Bdrip Hevc Flac Sup)", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/はねバド! 2018 1080P BDrip HEVC FLAC 2.0-SweetDreamDay/映像特典/『もりバド!』浜松合宿編~インターハイ2018の聖地へ~パッケージ特別編② (BDrip HEVC FLAC).mkv", + "filename": "『もりバド!』浜松合宿編~インターハイ2018の聖地へ~パッケージ特別編② (BDrip HEVC FLAC).mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "『もりバド!』浜松合宿編~インターハイ2018の聖地へ~パッケージ特別編② (Bdrip Hevc Flac)", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "『もりバド!』浜松合宿編~インターハイ2018の聖地へ~パッケージ特別編② (Bdrip Hevc Flac)", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/はねバド! 2018 1080P BDrip HEVC FLAC 2.0-SweetDreamDay/映像特典/Blu-ray&DVD VOLUME1 CM コニーx志波姬x多賀城 (BDrip HEVC FLAC).mkv", + "filename": "Blu-ray&DVD VOLUME1 CM コニーx志波姬x多賀城 (BDrip HEVC FLAC).mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Blu-Ray&Dvd Volume1 Cm コニーX志波姬X多賀城 (Bdrip Hevc Flac)", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Blu-Ray&Dvd Volume1 Cm コニーX志波姬X多賀城 (Bdrip Hevc Flac)", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/はねバド! 2018 1080P BDrip HEVC FLAC 2.0-SweetDreamDay/映像特典/Blu-ray&DVD VOLUME1 CM 石澤望x倉石監督 (BDrip HEVC FLAC).mkv", + "filename": "Blu-ray&DVD VOLUME1 CM 石澤望x倉石監督 (BDrip HEVC FLAC).mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Blu-Ray&Dvd Volume1 Cm 石澤望X倉石監督 (Bdrip Hevc Flac)", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Blu-Ray&Dvd Volume1 Cm 石澤望X倉石監督 (Bdrip Hevc Flac)", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/はねバド! 2018 1080P BDrip HEVC FLAC 2.0-SweetDreamDay/映像特典/オープニングムービー(クレジット有) (BDrip HEVC FLAC).mkv", + "filename": "オープニングムービー(クレジット有) (BDrip HEVC FLAC).mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "オープニングムービー(クレジット有) (Bdrip Hevc Flac)", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "オープニングムービー(クレジット有) (Bdrip Hevc Flac)", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/はねバド! 2018 1080P BDrip HEVC FLAC 2.0-SweetDreamDay/映像特典/Blu-ray&DVD VOLUME1 CM 羽咲綾乃x荒垣なぎさ(アナザーver.) (BDrip HEVC FLAC).mkv", + "filename": "Blu-ray&DVD VOLUME1 CM 羽咲綾乃x荒垣なぎさ(アナザーver.) (BDrip HEVC FLAC).mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Blu-Ray&Dvd Volume1 Cm 羽咲綾乃X荒垣なぎさ(アナザーVer ) (Bdrip Hevc Flac)", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Blu-Ray&Dvd Volume1 Cm 羽咲綾乃X荒垣なぎさ(アナザーVer ) (Bdrip Hevc Flac)", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/はねバド! 2018 1080P BDrip HEVC FLAC 2.0-SweetDreamDay/映像特典/Blu-ray&DVD VOLUME1 CM 羽咲綾乃x荒垣なぎさ(スタンダードver.) (BDrip HEVC FLAC).mkv", + "filename": "Blu-ray&DVD VOLUME1 CM 羽咲綾乃x荒垣なぎさ(スタンダードver.) (BDrip HEVC FLAC).mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Blu-Ray&Dvd Volume1 Cm 羽咲綾乃X荒垣なぎさ(スタンダードVer ) (Bdrip Hevc Flac)", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Blu-Ray&Dvd Volume1 Cm 羽咲綾乃X荒垣なぎさ(スタンダードVer ) (Bdrip Hevc Flac)", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/はねバド! 2018 1080P BDrip HEVC FLAC 2.0-SweetDreamDay/映像特典/『もりバド!』浜松合宿編~インターハイ2018の聖地へ~パッケージ特別編① (BDrip HEVC FLAC).mkv", + "filename": "『もりバド!』浜松合宿編~インターハイ2018の聖地へ~パッケージ特別編① (BDrip HEVC FLAC).mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "『もりバド!』浜松合宿編~インターハイ2018の聖地へ~パッケージ特別編① (Bdrip Hevc Flac)", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "『もりバド!』浜松合宿編~インターハイ2018の聖地へ~パッケージ特別編① (Bdrip Hevc Flac)", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/はねバド! 2018 1080P BDrip HEVC FLAC 2.0-SweetDreamDay/映像特典/#5 エンディングムービー (BDrip HEVC FLAC).mkv", + "filename": "#5 エンディングムービー (BDrip HEVC FLAC).mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "#5 エンディングムービー (Bdrip Hevc Flac)", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "#5 エンディングムービー (Bdrip Hevc Flac)", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/はねバド! 2018 1080P BDrip HEVC FLAC 2.0-SweetDreamDay/映像特典/Blu-ray&DVD Vol.1 発売記念イベント『もりバド!』夏のオープン戦 第一部 (BDrip HEVC FLAC).mkv", + "filename": "Blu-ray&DVD Vol.1 発売記念イベント『もりバド!』夏のオープン戦 第一部 (BDrip HEVC FLAC).mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Blu-Ray&Dvd Vol 1 発売記念イベント『もりバド!』夏のオープン戦 第一部 (Bdrip Hevc Flac)", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Blu-Ray&Dvd Vol 1 発売記念イベント『もりバド!』夏のオープン戦 第一部 (Bdrip Hevc Flac)", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/はねバド! 2018 1080P BDrip HEVC FLAC 2.0-SweetDreamDay/映像特典/エンディングムービー (BDrip HEVC FLAC).mkv", + "filename": "エンディングムービー (BDrip HEVC FLAC).mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "エンディングムービー (Bdrip Hevc Flac)", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "エンディングムービー (Bdrip Hevc Flac)", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/はねバド! 2018 1080P BDrip HEVC FLAC 2.0-SweetDreamDay/映像特典/オープニングムービー(クレジット無) (BDrip HEVC FLAC).mkv", + "filename": "オープニングムービー(クレジット無) (BDrip HEVC FLAC).mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "オープニングムービー(クレジット無) (Bdrip Hevc Flac)", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "オープニングムービー(クレジット無) (Bdrip Hevc Flac)", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/はねバド! 2018 1080P BDrip HEVC FLAC 2.0-SweetDreamDay/映像特典/Blu-ray&DVD VOLUME1 CM 荒垣なぎさx泉理子 (BDrip HEVC FLAC).mkv", + "filename": "Blu-ray&DVD VOLUME1 CM 荒垣なぎさx泉理子 (BDrip HEVC FLAC).mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Blu-Ray&Dvd Volume1 Cm 荒垣なぎさX泉理子 (Bdrip Hevc Flac)", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Blu-Ray&Dvd Volume1 Cm 荒垣なぎさX泉理子 (Bdrip Hevc Flac)", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/はねバド! 2018 1080P BDrip HEVC FLAC 2.0-SweetDreamDay/映像特典/Blu-ray&DVD Vol.1 発売記念イベント『もりバド!』夏のオープン戦 第二部 (BDrip HEVC FLAC).mkv", + "filename": "Blu-ray&DVD Vol.1 発売記念イベント『もりバド!』夏のオープン戦 第二部 (BDrip HEVC FLAC).mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Blu-Ray&Dvd Vol 1 発売記念イベント『もりバド!』夏のオープン戦 第二部 (Bdrip Hevc Flac)", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Blu-Ray&Dvd Vol 1 発売記念イベント『もりバド!』夏のオープン戦 第二部 (Bdrip Hevc Flac)", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/はねバド! 2018 1080P BDrip HEVC FLAC 2.0-SweetDreamDay/映像特典/PV (BDrip HEVC FLAC).mkv", + "filename": "PV (BDrip HEVC FLAC).mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Pv (Bdrip Hevc Flac)", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Pv (Bdrip Hevc Flac)", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/はねバド! 2018 1080P BDrip HEVC FLAC 2.0-SweetDreamDay/映像特典/ティザーPV (BDrip HEVC FLAC).mkv", + "filename": "ティザーPV (BDrip HEVC FLAC).mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "ティザーPv (Bdrip Hevc Flac)", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "ティザーPv (Bdrip Hevc Flac)", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/はねバド! 2018 1080P BDrip HEVC FLAC 2.0-SweetDreamDay/映像特典/Blu-ray&DVD VOLUME1 CM 芹ヶ谷薫子x立花健太郎 (BDrip HEVC FLAC).mkv", + "filename": "Blu-ray&DVD VOLUME1 CM 芹ヶ谷薫子x立花健太郎 (BDrip HEVC FLAC).mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Blu-Ray&Dvd Volume1 Cm 芹ヶ谷薫子X立花健太郎 (Bdrip Hevc Flac)", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Blu-Ray&Dvd Volume1 Cm 芹ヶ谷薫子X立花健太郎 (Bdrip Hevc Flac)", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/はねバド! 2018 1080P BDrip HEVC FLAC 2.0-SweetDreamDay/はねバド! EP06 (BDrip HEVC FLAC SUP).mkv", + "filename": "はねバド! EP06 (BDrip HEVC FLAC SUP).mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "はねバド! Ep06 (Bdrip Hevc Flac Sup)", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "はねバド! Ep06 (Bdrip Hevc Flac Sup)", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/はねバド! 2018 1080P BDrip HEVC FLAC 2.0-SweetDreamDay/はねバド! EP013 (BDrip HEVC FLAC SUP).mkv", + "filename": "はねバド! EP013 (BDrip HEVC FLAC SUP).mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "はねバド! Ep013 (Bdrip Hevc Flac Sup)", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "はねバド! Ep013 (Bdrip Hevc Flac Sup)", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/はねバド! 2018 1080P BDrip HEVC FLAC 2.0-SweetDreamDay/はねバド! EP05 (BDrip HEVC FLAC SUP).mkv", + "filename": "はねバド! EP05 (BDrip HEVC FLAC SUP).mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "はねバド! Ep05 (Bdrip Hevc Flac Sup)", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "はねバド! Ep05 (Bdrip Hevc Flac Sup)", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/はねバド! 2018 1080P BDrip HEVC FLAC 2.0-SweetDreamDay/はねバド! EP010 (BDrip HEVC FLAC SUP).mkv", + "filename": "はねバド! EP010 (BDrip HEVC FLAC SUP).mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "はねバド! Ep010 (Bdrip Hevc Flac Sup)", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "はねバド! Ep010 (Bdrip Hevc Flac Sup)", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/はねバド! 2018 1080P BDrip HEVC FLAC 2.0-SweetDreamDay/はねバド! EP03 (BDrip HEVC FLAC SUP).mkv", + "filename": "はねバド! EP03 (BDrip HEVC FLAC SUP).mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "はねバド! Ep03 (Bdrip Hevc Flac Sup)", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "はねバド! Ep03 (Bdrip Hevc Flac Sup)", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/はねバド! 2018 1080P BDrip HEVC FLAC 2.0-SweetDreamDay/はねバド! EP09 (BDrip HEVC FLAC SUP).mkv", + "filename": "はねバド! EP09 (BDrip HEVC FLAC SUP).mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "はねバド! Ep09 (Bdrip Hevc Flac Sup)", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "はねバド! Ep09 (Bdrip Hevc Flac Sup)", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 我獨自升級 第二季 -起於闇影- - 21 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 我獨自升級 第二季 -起於闇影- - 21 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 我獨自升級 第二季 -起於闇影- - 21 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 我獨自升級 第二季 -起於闇影- - 21 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 黃昏旅店 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 黃昏旅店 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 黃昏旅店 - 01 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 黃昏旅店 - 01 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Ghost.in.the.Shell.SAC.2nd.GIG.Individual.Eleven.2006.1080p.BluRay.x265.10bit-WiKi/Ghost.in.the.Shell.SAC.2nd.GIG.Individual.Eleven.2006.1080p.BluRay.x265.10bit-WiKi.mkv", + "filename": "Ghost.in.the.Shell.SAC.2nd.GIG.Individual.Eleven.2006.1080p.BluRay.x265.10bit-WiKi.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Ghost In The Shell Sac 2Nd Gig Individual Eleven 2006 1080P Bluray X265 10Bit-Wiki", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Ghost In The Shell Sac 2Nd Gig Individual Eleven 2006 1080P Bluray X265 10Bit-Wiki", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 歲月流逝飯菜依舊美味 - 04 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 歲月流逝飯菜依舊美味 - 04 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 歲月流逝飯菜依舊美味 - 04 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 歲月流逝飯菜依舊美味 - 04 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 最近的偵探真沒用 - 03 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 最近的偵探真沒用 - 03 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 最近的偵探真沒用 - 03 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 最近的偵探真沒用 - 03 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 膽大黨 - 03 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 膽大黨 - 03 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 膽大黨 - 03 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 膽大黨 - 03 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Nekomoe kissaten&LoliHouse] Ao no Hako - 04 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "filename": "[Nekomoe kissaten&LoliHouse] Ao no Hako - 04 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Nekomoe Kissaten&Lolihouse] Ao No Hako - 04 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Nekomoe Kissaten&Lolihouse] Ao No Hako - 04 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[BeanSub][Ao no Exorcist _Yosuga Hen][01][BIG5][1080P][x264_AAC].mp4", + "filename": "[BeanSub][Ao no Exorcist _Yosuga Hen][01][BIG5][1080P][x264_AAC].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Beansub][Ao No Exorcist Yosuga Hen][01][Big5][1080P][X264 Aac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Beansub][Ao No Exorcist Yosuga Hen][01][Big5][1080P][X264 Aac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 無職轉生~到了異世界就拿出真本事 第二季 - 17 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 無職轉生~到了異世界就拿出真本事 第二季 - 17 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 無職轉生~到了異世界就拿出真本事 第二季 - 17 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 無職轉生~到了異世界就拿出真本事 第二季 - 17 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "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", + "title": "[Ani] 妻子變成小學生。 - 07 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 妻子變成小學生。 - 07 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[NEO·QSW]劇場版 天元突破グレンラガン[UHDRIP HEVC DTS-7.1ch DOLBY ATMOS SDR 2160P&BDRIP HEVC DTS-5.1ch 1080P]/[NEO·QSW]劇場版 天元突破グレンラガン 螺巌編[UHDRIP HEVC DTS-7.1ch DOLBY ATMOS SDR 2160P].mkv", + "filename": "[NEO·QSW]劇場版 天元突破グレンラガン 螺巌編[UHDRIP HEVC DTS-7.1ch DOLBY ATMOS SDR 2160P].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Neo·Qsw]劇場版 天元突破グレンラガン 螺巌編[Uhdrip Hevc Dts-7 1Ch Dolby Atmos Sdr 2160P]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Neo·Qsw]劇場版 天元突破グレンラガン 螺巌編[Uhdrip Hevc Dts-7 1Ch Dolby Atmos Sdr 2160P]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[NEO·QSW]劇場版 天元突破グレンラガン[UHDRIP HEVC DTS-7.1ch DOLBY ATMOS SDR 2160P&BDRIP HEVC DTS-5.1ch 1080P]/[NEO·QSW]劇場版 天元突破グレンラガン 紅蓮篇[UHDRIP HEVC DTS-7.1ch DOLBY ATMOS SDR 2160P].mkv", + "filename": "[NEO·QSW]劇場版 天元突破グレンラガン 紅蓮篇[UHDRIP HEVC DTS-7.1ch DOLBY ATMOS SDR 2160P].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Neo·Qsw]劇場版 天元突破グレンラガン 紅蓮篇[Uhdrip Hevc Dts-7 1Ch Dolby Atmos Sdr 2160P]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Neo·Qsw]劇場版 天元突破グレンラガン 紅蓮篇[Uhdrip Hevc Dts-7 1Ch Dolby Atmos Sdr 2160P]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Kowloon Generic Romance - 11 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "filename": "[LoliHouse] Kowloon Generic Romance - 11 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Kowloon Generic Romance - 11 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Kowloon Generic Romance - 11 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 勇氣爆發 BANG BRAVERN - 09 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 勇氣爆發 BANG BRAVERN - 09 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 勇氣爆發 Bang Bravern - 09 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 勇氣爆發 Bang Bravern - 09 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Nekomoe kissaten][Unnamed Memory][01][1080p][JPSC].mp4", + "filename": "[Nekomoe kissaten][Unnamed Memory][01][1080p][JPSC].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Nekomoe Kissaten][Unnamed Memory][01][1080P][Jpsc]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Nekomoe Kissaten][Unnamed Memory][01][1080P][Jpsc]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Nekomoe kissaten][Silent Witch - Chinmoku no Majo no Kakushigoto][04][1080p][JPSC].mp4", + "filename": "[Nekomoe kissaten][Silent Witch - Chinmoku no Majo no Kakushigoto][04][1080p][JPSC].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Nekomoe Kissaten][Silent Witch - Chinmoku No Majo No Kakushigoto][04][1080P][Jpsc]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Nekomoe Kissaten][Silent Witch - Chinmoku No Majo No Kakushigoto][04][1080P][Jpsc]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 在沖繩喜歡上的女孩方言講得太過令人困擾 - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 在沖繩喜歡上的女孩方言講得太過令人困擾 - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 在沖繩喜歡上的女孩方言講得太過令人困擾 - 02 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 在沖繩喜歡上的女孩方言講得太過令人困擾 - 02 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Sakurato] Zenshuu. [02][HEVC-10bit 1080p AAC][CHS&CHT].mkv", + "filename": "[Sakurato] Zenshuu. [02][HEVC-10bit 1080p AAC][CHS&CHT].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Sakurato] Zenshuu [02][Hevc-10Bit 1080P Aac][Chs&Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Sakurato] Zenshuu [02][Hevc-10Bit 1080P Aac][Chs&Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Nekomoe kissaten&LoliHouse] Kaii to Otome to Kamikakushi - 02 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "filename": "[Nekomoe kissaten&LoliHouse] Kaii to Otome to Kamikakushi - 02 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Nekomoe Kissaten&Lolihouse] Kaii To Otome To Kamikakushi - 02 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Nekomoe Kissaten&Lolihouse] Kaii To Otome To Kamikakushi - 02 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Tensei Shitara Slime Datta Ken 3rd Season - 59 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "filename": "[LoliHouse] Tensei Shitara Slime Datta Ken 3rd Season - 59 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Tensei Shitara Slime Datta Ken 3Rd Season - 59 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Tensei Shitara Slime Datta Ken 3Rd Season - 59 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] LAZARUS 拉撒路 - 05 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] LAZARUS 拉撒路 - 05 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] Lazarus 拉撒路 - 05 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] Lazarus 拉撒路 - 05 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Nekomoe kissaten&LoliHouse] Mushoku Tensei S2 - 13 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "filename": "[Nekomoe kissaten&LoliHouse] Mushoku Tensei S2 - 13 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Nekomoe Kissaten&Lolihouse] Mushoku Tensei S2 - 13 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Nekomoe Kissaten&Lolihouse] Mushoku Tensei S2 - 13 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Shin Samurai-den YAIBA - 11 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "filename": "[LoliHouse] Shin Samurai-den YAIBA - 11 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Shin Samurai-Den Yaiba - 11 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Shin Samurai-Den Yaiba - 11 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/The.Boys.S03.2160p.AMZN.WEB-DL.DDP5.1.HDR.H.265-BillyButcher/The.Boys.S03E08.The.Instant.White-Hot.Wild.2160p.AMZN.WEB-DL.DDP5.1.HDR.H.265-BillyButcher.mkv", + "filename": "The.Boys.S03E08.The.Instant.White-Hot.Wild.2160p.AMZN.WEB-DL.DDP5.1.HDR.H.265-BillyButcher.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "The Boys S03E08 The Instant White-Hot Wild 2160P Amzn Web-Dl Ddp5 1 Hdr H 265-Billybutcher", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "The Boys S03E08 The Instant White-Hot Wild 2160P Amzn Web-Dl Ddp5 1 Hdr H 265-Billybutcher", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Around 40 Otoko no Isekai Tsuuhan - 10 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "filename": "[LoliHouse] Around 40 Otoko no Isekai Tsuuhan - 10 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Around 40 Otoko No Isekai Tsuuhan - 10 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Around 40 Otoko No Isekai Tsuuhan - 10 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 香格里拉・開拓異境~糞作獵手挑戰神作~ 第二季 - 25 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 香格里拉・開拓異境~糞作獵手挑戰神作~ 第二季 - 25 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 香格里拉・開拓異境~糞作獵手挑戰神作~ 第二季 - 25 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 香格里拉・開拓異境~糞作獵手挑戰神作~ 第二季 - 25 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "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", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 香格里拉・開拓異境~糞作獵手挑戰神作~ - 14 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 香格里拉・開拓異境~糞作獵手挑戰神作~ - 14 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 勇氣爆發 BANG BRAVERN - 12 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 勇氣爆發 BANG BRAVERN - 12 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 勇氣爆發 Bang Bravern - 12 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 勇氣爆發 Bang Bravern - 12 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 魔都精兵的奴隸 第二季 - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 魔都精兵的奴隸 第二季 - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 魔都精兵的奴隸 第二季 - 02 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 魔都精兵的奴隸 第二季 - 02 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Specials/S00E08 - 4-PCT #4 - Now I Can Relax!!, Nothing is More Expensive Than Free, Instinct, Turn Out.mkv", + "filename": "S00E08 - 4-PCT #4 - Now I Can Relax!!, Nothing is More Expensive Than Free, Instinct, Turn Out.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "S00E08 - 4-Pct #4 - Now I Can Relax!!, Nothing Is More Expensive Than Free, Instinct, Turn Out", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "S00E08 - 4-Pct #4 - Now I Can Relax!!, Nothing Is More Expensive Than Free, Instinct, Turn Out", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Specials/S00E05 - 4-PCT #1 - Steel and Alchemists, The Freezer, State Alchemist Exam.mkv", + "filename": "S00E05 - 4-PCT #1 - Steel and Alchemists, The Freezer, State Alchemist Exam.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "S00E05 - 4-Pct #1 - Steel And Alchemists, The Freezer, State Alchemist Exam", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "S00E05 - 4-Pct #1 - Steel And Alchemists, The Freezer, State Alchemist Exam", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Specials/S00E10 - 4-PCT #6 - Fluffy, Mr Train, Mach!!, Memories With My Father.mkv", + "filename": "S00E10 - 4-PCT #6 - Fluffy, Mr Train, Mach!!, Memories With My Father.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "S00E10 - 4-Pct #6 - Fluffy, Mr Train, Mach!!, Memories With My Father", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "S00E10 - 4-Pct #6 - Fluffy, Mr Train, Mach!!, Memories With My Father", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Specials/Extras/Fifth Season Opening Theme - Rain by Sid.mkv", + "filename": "Fifth Season Opening Theme - Rain by Sid.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Fifth Season Opening Theme - Rain By Sid", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Fifth Season Opening Theme - Rain By Sid", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Specials/Extras/Fourth Season Opening Theme - Period by Chemistry.mkv", + "filename": "Fourth Season Opening Theme - Period by Chemistry.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Fourth Season Opening Theme - Period By Chemistry", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Fourth Season Opening Theme - Period By Chemistry", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Specials/Extras/First Season Ending Theme - USO by Sid.mkv", + "filename": "First Season Ending Theme - USO by Sid.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "First Season Ending Theme - Uso By Sid", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "First Season Ending Theme - Uso By Sid", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Specials/Extras/Fourth Season Ending Theme - Shunkan Sentimental by Scandal.mkv", + "filename": "Fourth Season Ending Theme - Shunkan Sentimental by Scandal.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Fourth Season Ending Theme - Shunkan Sentimental By Scandal", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Fourth Season Ending Theme - Shunkan Sentimental By Scandal", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Specials/Extras/Third Season Opening Theme - Golden Time Lover by Sukima Switch.mkv", + "filename": "Third Season Opening Theme - Golden Time Lover by Sukima Switch.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Third Season Opening Theme - Golden Time Lover By Sukima Switch", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Third Season Opening Theme - Golden Time Lover By Sukima Switch", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Specials/Extras/First Season Opening Theme - again by Yui.mkv", + "filename": "First Season Opening Theme - again by Yui.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "First Season Opening Theme - Again By Yui", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "First Season Opening Theme - Again By Yui", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Specials/Extras/Making of Sacred Star of Milos.mkv", + "filename": "Making of Sacred Star of Milos.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Making Of Sacred Star Of Milos", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Making Of Sacred Star Of Milos", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Specials/Extras/Second Season Opening Theme - HOLOGRAM by NICO Touches the Walls.mkv", + "filename": "Second Season Opening Theme - HOLOGRAM by NICO Touches the Walls.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Second Season Opening Theme - Hologram By Nico Touches The Walls", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Second Season Opening Theme - Hologram By Nico Touches The Walls", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Specials/Extras/Fifth Season Ending Theme - Ray of Light by Shoko Nakagawa.mkv", + "filename": "Fifth Season Ending Theme - Ray of Light by Shoko Nakagawa.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Fifth Season Ending Theme - Ray Of Light By Shoko Nakagawa", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Fifth Season Ending Theme - Ray Of Light By Shoko Nakagawa", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Specials/Extras/Third Season Ending Theme - Tsunaida Te by Lil' B.mkv", + "filename": "Third Season Ending Theme - Tsunaida Te by Lil' B.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Third Season Ending Theme - Tsunaida Te By Lil' B", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Third Season Ending Theme - Tsunaida Te By Lil' B", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Specials/Extras/Second Season Ending Theme - Let it Out by Miho Fukuhara.mkv", + "filename": "Second Season Ending Theme - Let it Out by Miho Fukuhara.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Second Season Ending Theme - Let It Out By Miho Fukuhara", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Second Season Ending Theme - Let It Out By Miho Fukuhara", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Specials/S00E13 - 4-PCT #9 - I Can Do It Myself!, Terrifiying Little Boy!!, Run Away!!, Dealing With Adults.mkv", + "filename": "S00E13 - 4-PCT #9 - I Can Do It Myself!, Terrifiying Little Boy!!, Run Away!!, Dealing With Adults.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "S00E13 - 4-Pct #9 - I Can Do It Myself!, Terrifiying Little Boy!!, Run Away!!, Dealing With Adults", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "S00E13 - 4-Pct #9 - I Can Do It Myself!, Terrifiying Little Boy!!, Run Away!!, Dealing With Adults", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Specials/S00E16 - 4-PCT #12 - Kiss if Death, The Road to Reunion, The Delighful Bradley Family, Earth-Friendly Terrorism.mkv", + "filename": "S00E16 - 4-PCT #12 - Kiss if Death, The Road to Reunion, The Delighful Bradley Family, Earth-Friendly Terrorism.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "S00E16 - 4-Pct #12 - Kiss If Death, The Road To Reunion, The Delighful Bradley Family, Earth-Friendly Terrorism", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "S00E16 - 4-Pct #12 - Kiss If Death, The Road To Reunion, The Delighful Bradley Family, Earth-Friendly Terrorism", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Specials/S00E07 - 4-PCT #3 - God!!, I Don't Think I Can Win, Why Didn't You Say So, Mustang In It Deep.mkv", + "filename": "S00E07 - 4-PCT #3 - God!!, I Don't Think I Can Win, Why Didn't You Say So, Mustang In It Deep.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "S00E07 - 4-Pct #3 - God!!, I Don'T Think I Can Win, Why Didn'T You Say So, Mustang In It Deep", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "S00E07 - 4-Pct #3 - God!!, I Don'T Think I Can Win, Why Didn'T You Say So, Mustang In It Deep", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Specials/S00E15 - 4-PCT #11 - There'll Be No Undoing It!!, In The Bathroom, Beginnings of Love, The Legs are Just Decorative.mkv", + "filename": "S00E15 - 4-PCT #11 - There'll Be No Undoing It!!, In The Bathroom, Beginnings of Love, The Legs are Just Decorative.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "S00E15 - 4-Pct #11 - There'Ll Be No Undoing It!!, In The Bathroom, Beginnings Of Love, The Legs Are Just Decorative", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "S00E15 - 4-Pct #11 - There'Ll Be No Undoing It!!, In The Bathroom, Beginnings Of Love, The Legs Are Just Decorative", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Specials/S00E17 - 4-PCT #13 - It's Out!, You Can Do It If You Try, Stop Selim, Rebecca.mkv", + "filename": "S00E17 - 4-PCT #13 - It's Out!, You Can Do It If You Try, Stop Selim, Rebecca.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "S00E17 - 4-Pct #13 - It'S Out!, You Can Do It If You Try, Stop Selim, Rebecca", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "S00E17 - 4-Pct #13 - It'S Out!, You Can Do It If You Try, Stop Selim, Rebecca", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Specials/S00E09 - 4-PCT #5 - Identity, Love is Blind, Combustable Garbage, My Preference.mkv", + "filename": "S00E09 - 4-PCT #5 - Identity, Love is Blind, Combustable Garbage, My Preference.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "S00E09 - 4-Pct #5 - Identity, Love Is Blind, Combustable Garbage, My Preference", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "S00E09 - 4-Pct #5 - Identity, Love Is Blind, Combustable Garbage, My Preference", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Specials/S00E02 - OVA - Simple People.mkv", + "filename": "S00E02 - OVA - Simple People.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "S00E02 - Ova - Simple People", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "S00E02 - Ova - Simple People", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Specials/S00E21 - The Sacred Star of Milos (1080p BluRay x265 ImE).mkv", + "filename": "S00E21 - The Sacred Star of Milos (1080p BluRay x265 ImE).mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "S00E21 - The Sacred Star Of Milos (1080P Bluray X265 Ime)", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "S00E21 - The Sacred Star Of Milos (1080P Bluray X265 Ime)", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Specials/S00E04 - OVA - Yet Another Man's Battlefield.mkv", + "filename": "S00E04 - OVA - Yet Another Man's Battlefield.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "S00E04 - Ova - Yet Another Man'S Battlefield", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "S00E04 - Ova - Yet Another Man'S Battlefield", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Specials/S00E20 - 4-PCT #16 - Power of a God, Man Inside Pride, Worst Strategy In History, Old Man!!, Leading Edge of Fasion.mkv", + "filename": "S00E20 - 4-PCT #16 - Power of a God, Man Inside Pride, Worst Strategy In History, Old Man!!, Leading Edge of Fasion.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "S00E20 - 4-Pct #16 - Power Of A God, Man Inside Pride, Worst Strategy In History, Old Man!!, Leading Edge Of Fasion", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "S00E20 - 4-Pct #16 - Power Of A God, Man Inside Pride, Worst Strategy In History, Old Man!!, Leading Edge Of Fasion", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Specials/S00E19 - 4-PCT #15 - Come Over To My Place, Sparkle, The Death of Old Man Fu!!, The Dealth of Buccaneer!!, His Name is.mkv", + "filename": "S00E19 - 4-PCT #15 - Come Over To My Place, Sparkle, The Death of Old Man Fu!!, The Dealth of Buccaneer!!, His Name is.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "S00E19 - 4-Pct #15 - Come Over To My Place, Sparkle, The Death Of Old Man Fu!!, The Dealth Of Buccaneer!!, His Name Is", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "S00E19 - 4-Pct #15 - Come Over To My Place, Sparkle, The Death Of Old Man Fu!!, The Dealth Of Buccaneer!!, His Name Is", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Specials/S00E06 - 4-PCT #2 - Overdoing It, The Cursed House, Self-Introductions, The Perfect Woman.mkv", + "filename": "S00E06 - 4-PCT #2 - Overdoing It, The Cursed House, Self-Introductions, The Perfect Woman.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "S00E06 - 4-Pct #2 - Overdoing It, The Cursed House, Self-Introductions, The Perfect Woman", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "S00E06 - 4-Pct #2 - Overdoing It, The Cursed House, Self-Introductions, The Perfect Woman", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Specials/S00E14 - 4-PCT #10 - Something Warm, Kimblee Behind You Behind You!!, Humiliation!!, The Weather Man.mkv", + "filename": "S00E14 - 4-PCT #10 - Something Warm, Kimblee Behind You Behind You!!, Humiliation!!, The Weather Man.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "S00E14 - 4-Pct #10 - Something Warm, Kimblee Behind You Behind You!!, Humiliation!!, The Weather Man", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "S00E14 - 4-Pct #10 - Something Warm, Kimblee Behind You Behind You!!, Humiliation!!, The Weather Man", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Specials/S00E11 - 4-PCT #7 - Agar Noodles, Vaunted Father, !!!, Wall-to-Wall.mkv", + "filename": "S00E11 - 4-PCT #7 - Agar Noodles, Vaunted Father, !!!, Wall-to-Wall.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "S00E11 - 4-Pct #7 - Agar Noodles, Vaunted Father, !!!, Wall-To-Wall", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "S00E11 - 4-Pct #7 - Agar Noodles, Vaunted Father, !!!, Wall-To-Wall", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Specials/S00E18 - 4-PCT #14 - Step Forward!!, Going Back is a Bother, Sharp-Shooting, Combination.mkv", + "filename": "S00E18 - 4-PCT #14 - Step Forward!!, Going Back is a Bother, Sharp-Shooting, Combination.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "S00E18 - 4-Pct #14 - Step Forward!!, Going Back Is A Bother, Sharp-Shooting, Combination", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "S00E18 - 4-Pct #14 - Step Forward!!, Going Back Is A Bother, Sharp-Shooting, Combination", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Specials/S00E03 - OVA - The Tale of Teacher.mkv", + "filename": "S00E03 - OVA - The Tale of Teacher.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "S00E03 - Ova - The Tale Of Teacher", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "S00E03 - Ova - The Tale Of Teacher", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Specials/S00E01 - OVA - The Blind Alchemist.mkv", + "filename": "S00E01 - OVA - The Blind Alchemist.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "S00E01 - Ova - The Blind Alchemist", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "S00E01 - Ova - The Blind Alchemist", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Specials/S00E12 - 4-PCT #8 - Good Boy and Girls Don't Trry This At Home!, Healthy Appetite, Beautiful Memories, Smolder Garbage.mkv", + "filename": "S00E12 - 4-PCT #8 - Good Boy and Girls Don't Trry This At Home!, Healthy Appetite, Beautiful Memories, Smolder Garbage.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "S00E12 - 4-Pct #8 - Good Boy And Girls Don'T Trry This At Home!, Healthy Appetite, Beautiful Memories, Smolder Garbage", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "S00E12 - 4-Pct #8 - Good Boy And Girls Don'T Trry This At Home!, Healthy Appetite, Beautiful Memories, Smolder Garbage", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E58 - (58) - Sacrifices (1080p BluRay x265 ImE).mkv", + "filename": "Fullmetal Alchemist Brotherhood (2009) - S01E58 - (58) - Sacrifices (1080p BluRay x265 ImE).mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Fullmetal Alchemist Brotherhood (2009) - S01E58 - (58) - Sacrifices (1080P Bluray X265 Ime)", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Fullmetal Alchemist Brotherhood (2009) - S01E58 - (58) - Sacrifices (1080P Bluray X265 Ime)", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E32 - (32) - The Führer's Son (1080p BluRay x265 ImE).mkv", + "filename": "Fullmetal Alchemist Brotherhood (2009) - S01E32 - (32) - The Führer's Son (1080p BluRay x265 ImE).mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Fullmetal Alchemist Brotherhood (2009) - S01E32 - (32) - The Führer'S Son (1080P Bluray X265 Ime)", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Fullmetal Alchemist Brotherhood (2009) - S01E32 - (32) - The Führer'S Son (1080P Bluray X265 Ime)", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E27 - (27) - Interlude Party (1080p BluRay x265 ImE).mkv", + "filename": "Fullmetal Alchemist Brotherhood (2009) - S01E27 - (27) - Interlude Party (1080p BluRay x265 ImE).mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Fullmetal Alchemist Brotherhood (2009) - S01E27 - (27) - Interlude Party (1080P Bluray X265 Ime)", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Fullmetal Alchemist Brotherhood (2009) - S01E27 - (27) - Interlude Party (1080P Bluray X265 Ime)", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E22 - (22) - Backs in the Distance (1080p BluRay x265 ImE).mkv", + "filename": "Fullmetal Alchemist Brotherhood (2009) - S01E22 - (22) - Backs in the Distance (1080p BluRay x265 ImE).mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Fullmetal Alchemist Brotherhood (2009) - S01E22 - (22) - Backs In The Distance (1080P Bluray X265 Ime)", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Fullmetal Alchemist Brotherhood (2009) - S01E22 - (22) - Backs In The Distance (1080P Bluray X265 Ime)", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E43 - (43) - Bite of the Ant (1080p BluRay x265 ImE).mkv", + "filename": "Fullmetal Alchemist Brotherhood (2009) - S01E43 - (43) - Bite of the Ant (1080p BluRay x265 ImE).mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Fullmetal Alchemist Brotherhood (2009) - S01E43 - (43) - Bite Of The Ant (1080P Bluray X265 Ime)", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Fullmetal Alchemist Brotherhood (2009) - S01E43 - (43) - Bite Of The Ant (1080P Bluray X265 Ime)", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E42 - (42) - Signs of a Counteroffensive (1080p BluRay x265 ImE).mkv", + "filename": "Fullmetal Alchemist Brotherhood (2009) - S01E42 - (42) - Signs of a Counteroffensive (1080p BluRay x265 ImE).mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Fullmetal Alchemist Brotherhood (2009) - S01E42 - (42) - Signs Of A Counteroffensive (1080P Bluray X265 Ime)", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Fullmetal Alchemist Brotherhood (2009) - S01E42 - (42) - Signs Of A Counteroffensive (1080P Bluray X265 Ime)", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E63 - (63) - The Other Side of the Gateway (1080p BluRay x265 ImE).mkv", + "filename": "Fullmetal Alchemist Brotherhood (2009) - S01E63 - (63) - The Other Side of the Gateway (1080p BluRay x265 ImE).mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Fullmetal Alchemist Brotherhood (2009) - S01E63 - (63) - The Other Side Of The Gateway (1080P Bluray X265 Ime)", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Fullmetal Alchemist Brotherhood (2009) - S01E63 - (63) - The Other Side Of The Gateway (1080P Bluray X265 Ime)", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E59 - (59) - Lost Light (1080p BluRay x265 ImE).mkv", + "filename": "Fullmetal Alchemist Brotherhood (2009) - S01E59 - (59) - Lost Light (1080p BluRay x265 ImE).mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Fullmetal Alchemist Brotherhood (2009) - S01E59 - (59) - Lost Light (1080P Bluray X265 Ime)", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Fullmetal Alchemist Brotherhood (2009) - S01E59 - (59) - Lost Light (1080P Bluray X265 Ime)", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E52 - (52) - Combined Strength (1080p BluRay x265 ImE).mkv", + "filename": "Fullmetal Alchemist Brotherhood (2009) - S01E52 - (52) - Combined Strength (1080p BluRay x265 ImE).mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Fullmetal Alchemist Brotherhood (2009) - S01E52 - (52) - Combined Strength (1080P Bluray X265 Ime)", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Fullmetal Alchemist Brotherhood (2009) - S01E52 - (52) - Combined Strength (1080P Bluray X265 Ime)", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E11 - (11) - Miracle at Rush Valley (1080p BluRay x265 ImE).mkv", + "filename": "Fullmetal Alchemist Brotherhood (2009) - S01E11 - (11) - Miracle at Rush Valley (1080p BluRay x265 ImE).mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Fullmetal Alchemist Brotherhood (2009) - S01E11 - (11) - Miracle At Rush Valley (1080P Bluray X265 Ime)", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Fullmetal Alchemist Brotherhood (2009) - S01E11 - (11) - Miracle At Rush Valley (1080P Bluray X265 Ime)", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E64 - (64) - Journey's End (1080p BluRay x265 ImE).mkv", + "filename": "Fullmetal Alchemist Brotherhood (2009) - S01E64 - (64) - Journey's End (1080p BluRay x265 ImE).mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Fullmetal Alchemist Brotherhood (2009) - S01E64 - (64) - Journey'S End (1080P Bluray X265 Ime)", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Fullmetal Alchemist Brotherhood (2009) - S01E64 - (64) - Journey'S End (1080P Bluray X265 Ime)", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E28 - (28) - Father (1080p BluRay x265 ImE).mkv", + "filename": "Fullmetal Alchemist Brotherhood (2009) - S01E28 - (28) - Father (1080p BluRay x265 ImE).mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Fullmetal Alchemist Brotherhood (2009) - S01E28 - (28) - Father (1080P Bluray X265 Ime)", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Fullmetal Alchemist Brotherhood (2009) - S01E28 - (28) - Father (1080P Bluray X265 Ime)", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E16 - (16) - Footsteps of a Comrade-in-Arms (1080p BluRay x265 ImE).mkv", + "filename": "Fullmetal Alchemist Brotherhood (2009) - S01E16 - (16) - Footsteps of a Comrade-in-Arms (1080p BluRay x265 ImE).mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Fullmetal Alchemist Brotherhood (2009) - S01E16 - (16) - Footsteps Of A Comrade-In-Arms (1080P Bluray X265 Ime)", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Fullmetal Alchemist Brotherhood (2009) - S01E16 - (16) - Footsteps Of A Comrade-In-Arms (1080P Bluray X265 Ime)", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E13 - (13) - Beasts of Dublith (1080p BluRay x265 ImE).mkv", + "filename": "Fullmetal Alchemist Brotherhood (2009) - S01E13 - (13) - Beasts of Dublith (1080p BluRay x265 ImE).mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Fullmetal Alchemist Brotherhood (2009) - S01E13 - (13) - Beasts Of Dublith (1080P Bluray X265 Ime)", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Fullmetal Alchemist Brotherhood (2009) - S01E13 - (13) - Beasts Of Dublith (1080P Bluray X265 Ime)", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E53 - (53) - Flame of Vengeance (1080p BluRay x265 ImE).mkv", + "filename": "Fullmetal Alchemist Brotherhood (2009) - S01E53 - (53) - Flame of Vengeance (1080p BluRay x265 ImE).mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Fullmetal Alchemist Brotherhood (2009) - S01E53 - (53) - Flame Of Vengeance (1080P Bluray X265 Ime)", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Fullmetal Alchemist Brotherhood (2009) - S01E53 - (53) - Flame Of Vengeance (1080P Bluray X265 Ime)", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E56 - (56) - The Return of the Führer (1080p BluRay x265 ImE).mkv", + "filename": "Fullmetal Alchemist Brotherhood (2009) - S01E56 - (56) - The Return of the Führer (1080p BluRay x265 ImE).mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Fullmetal Alchemist Brotherhood (2009) - S01E56 - (56) - The Return Of The Führer (1080P Bluray X265 Ime)", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Fullmetal Alchemist Brotherhood (2009) - S01E56 - (56) - The Return Of The Führer (1080P Bluray X265 Ime)", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E40 - (40) - Homunculus (The Dwarf in the Flask) (1080p BluRay x265 ImE).mkv", + "filename": "Fullmetal Alchemist Brotherhood (2009) - S01E40 - (40) - Homunculus (The Dwarf in the Flask) (1080p BluRay x265 ImE).mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Fullmetal Alchemist Brotherhood (2009) - S01E40 - (40) - Homunculus (The Dwarf In The Flask) (1080P Bluray X265 Ime)", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Fullmetal Alchemist Brotherhood (2009) - S01E40 - (40) - Homunculus (The Dwarf In The Flask) (1080P Bluray X265 Ime)", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E51 - (51) - The Immortal Legion (1080p BluRay x265 ImE).mkv", + "filename": "Fullmetal Alchemist Brotherhood (2009) - S01E51 - (51) - The Immortal Legion (1080p BluRay x265 ImE).mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Fullmetal Alchemist Brotherhood (2009) - S01E51 - (51) - The Immortal Legion (1080P Bluray X265 Ime)", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Fullmetal Alchemist Brotherhood (2009) - S01E51 - (51) - The Immortal Legion (1080P Bluray X265 Ime)", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E05 - (5) - Rain of Sorrows (1080p BluRay x265 ImE).mkv", + "filename": "Fullmetal Alchemist Brotherhood (2009) - S01E05 - (5) - Rain of Sorrows (1080p BluRay x265 ImE).mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Fullmetal Alchemist Brotherhood (2009) - S01E05 - (5) - Rain Of Sorrows (1080P Bluray X265 Ime)", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Fullmetal Alchemist Brotherhood (2009) - S01E05 - (5) - Rain Of Sorrows (1080P Bluray X265 Ime)", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E54 - (54) - Beyond the Inferno (1080p BluRay x265 ImE).mkv", + "filename": "Fullmetal Alchemist Brotherhood (2009) - S01E54 - (54) - Beyond the Inferno (1080p BluRay x265 ImE).mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Fullmetal Alchemist Brotherhood (2009) - S01E54 - (54) - Beyond The Inferno (1080P Bluray X265 Ime)", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Fullmetal Alchemist Brotherhood (2009) - S01E54 - (54) - Beyond The Inferno (1080P Bluray X265 Ime)", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E24 - (24) - Inside the Belly (1080p BluRay x265 ImE).mkv", + "filename": "Fullmetal Alchemist Brotherhood (2009) - S01E24 - (24) - Inside the Belly (1080p BluRay x265 ImE).mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Fullmetal Alchemist Brotherhood (2009) - S01E24 - (24) - Inside The Belly (1080P Bluray X265 Ime)", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Fullmetal Alchemist Brotherhood (2009) - S01E24 - (24) - Inside The Belly (1080P Bluray X265 Ime)", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E10 - (10) - Separate Destinations (1080p BluRay x265 ImE).mkv", + "filename": "Fullmetal Alchemist Brotherhood (2009) - S01E10 - (10) - Separate Destinations (1080p BluRay x265 ImE).mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Fullmetal Alchemist Brotherhood (2009) - S01E10 - (10) - Separate Destinations (1080P Bluray X265 Ime)", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Fullmetal Alchemist Brotherhood (2009) - S01E10 - (10) - Separate Destinations (1080P Bluray X265 Ime)", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E38 - (38) - Conflict at Baschool (1080p BluRay x265 ImE).mkv", + "filename": "Fullmetal Alchemist Brotherhood (2009) - S01E38 - (38) - Conflict at Baschool (1080p BluRay x265 ImE).mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Fullmetal Alchemist Brotherhood (2009) - S01E38 - (38) - Conflict At Baschool (1080P Bluray X265 Ime)", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Fullmetal Alchemist Brotherhood (2009) - S01E38 - (38) - Conflict At Baschool (1080P Bluray X265 Ime)", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E46 - (46) - Looming Shadows (1080p BluRay x265 ImE).mkv", + "filename": "Fullmetal Alchemist Brotherhood (2009) - S01E46 - (46) - Looming Shadows (1080p BluRay x265 ImE).mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Fullmetal Alchemist Brotherhood (2009) - S01E46 - (46) - Looming Shadows (1080P Bluray X265 Ime)", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Fullmetal Alchemist Brotherhood (2009) - S01E46 - (46) - Looming Shadows (1080P Bluray X265 Ime)", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E14 - (14) - Those Who Lurk Underground (1080p BluRay x265 ImE).mkv", + "filename": "Fullmetal Alchemist Brotherhood (2009) - S01E14 - (14) - Those Who Lurk Underground (1080p BluRay x265 ImE).mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Fullmetal Alchemist Brotherhood (2009) - S01E14 - (14) - Those Who Lurk Underground (1080P Bluray X265 Ime)", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Fullmetal Alchemist Brotherhood (2009) - S01E14 - (14) - Those Who Lurk Underground (1080P Bluray X265 Ime)", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E07 - (7) - Hidden Truths (1080p BluRay x265 ImE).mkv", + "filename": "Fullmetal Alchemist Brotherhood (2009) - S01E07 - (7) - Hidden Truths (1080p BluRay x265 ImE).mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Fullmetal Alchemist Brotherhood (2009) - S01E07 - (7) - Hidden Truths (1080P Bluray X265 Ime)", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Fullmetal Alchemist Brotherhood (2009) - S01E07 - (7) - Hidden Truths (1080P Bluray X265 Ime)", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E04 - (4) - An Alchemist's Anguish (1080p BluRay x265 ImE).mkv", + "filename": "Fullmetal Alchemist Brotherhood (2009) - S01E04 - (4) - An Alchemist's Anguish (1080p BluRay x265 ImE).mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Fullmetal Alchemist Brotherhood (2009) - S01E04 - (4) - An Alchemist'S Anguish (1080P Bluray X265 Ime)", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Fullmetal Alchemist Brotherhood (2009) - S01E04 - (4) - An Alchemist'S Anguish (1080P Bluray X265 Ime)", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E60 - (60) - Eye of Heaven, Gateway of Earth (1080p BluRay x265 ImE).mkv", + "filename": "Fullmetal Alchemist Brotherhood (2009) - S01E60 - (60) - Eye of Heaven, Gateway of Earth (1080p BluRay x265 ImE).mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Fullmetal Alchemist Brotherhood (2009) - S01E60 - (60) - Eye Of Heaven, Gateway Of Earth (1080P Bluray X265 Ime)", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Fullmetal Alchemist Brotherhood (2009) - S01E60 - (60) - Eye Of Heaven, Gateway Of Earth (1080P Bluray X265 Ime)", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E01 - (1) - Fullmetal Alchemist (1080p BluRay x265 ImE).mkv", + "filename": "Fullmetal Alchemist Brotherhood (2009) - S01E01 - (1) - Fullmetal Alchemist (1080p BluRay x265 ImE).mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Fullmetal Alchemist Brotherhood (2009) - S01E01 - (1) - Fullmetal Alchemist (1080P Bluray X265 Ime)", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Fullmetal Alchemist Brotherhood (2009) - S01E01 - (1) - Fullmetal Alchemist (1080P Bluray X265 Ime)", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E23 - (23) - Girl on the Battlefield (1080p BluRay x265 ImE).mkv", + "filename": "Fullmetal Alchemist Brotherhood (2009) - S01E23 - (23) - Girl on the Battlefield (1080p BluRay x265 ImE).mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Fullmetal Alchemist Brotherhood (2009) - S01E23 - (23) - Girl On The Battlefield (1080P Bluray X265 Ime)", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Fullmetal Alchemist Brotherhood (2009) - S01E23 - (23) - Girl On The Battlefield (1080P Bluray X265 Ime)", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E62 - (62) - A Fierce Counterattack (1080p BluRay x265 ImE).mkv", + "filename": "Fullmetal Alchemist Brotherhood (2009) - S01E62 - (62) - A Fierce Counterattack (1080p BluRay x265 ImE).mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Fullmetal Alchemist Brotherhood (2009) - S01E62 - (62) - A Fierce Counterattack (1080P Bluray X265 Ime)", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Fullmetal Alchemist Brotherhood (2009) - S01E62 - (62) - A Fierce Counterattack (1080P Bluray X265 Ime)", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E41 - (41) - The Abyss (1080p BluRay x265 ImE).mkv", + "filename": "Fullmetal Alchemist Brotherhood (2009) - S01E41 - (41) - The Abyss (1080p BluRay x265 ImE).mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Fullmetal Alchemist Brotherhood (2009) - S01E41 - (41) - The Abyss (1080P Bluray X265 Ime)", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Fullmetal Alchemist Brotherhood (2009) - S01E41 - (41) - The Abyss (1080P Bluray X265 Ime)", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E36 - (36) - Family Portrait (1080p BluRay x265 ImE).mkv", + "filename": "Fullmetal Alchemist Brotherhood (2009) - S01E36 - (36) - Family Portrait (1080p BluRay x265 ImE).mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Fullmetal Alchemist Brotherhood (2009) - S01E36 - (36) - Family Portrait (1080P Bluray X265 Ime)", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Fullmetal Alchemist Brotherhood (2009) - S01E36 - (36) - Family Portrait (1080P Bluray X265 Ime)", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E45 - (45) - The Promised Day (1080p BluRay x265 ImE).mkv", + "filename": "Fullmetal Alchemist Brotherhood (2009) - S01E45 - (45) - The Promised Day (1080p BluRay x265 ImE).mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Fullmetal Alchemist Brotherhood (2009) - S01E45 - (45) - The Promised Day (1080P Bluray X265 Ime)", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Fullmetal Alchemist Brotherhood (2009) - S01E45 - (45) - The Promised Day (1080P Bluray X265 Ime)", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E31 - (31) - The 520 Cenz Promise (1080p BluRay x265 ImE).mkv", + "filename": "Fullmetal Alchemist Brotherhood (2009) - S01E31 - (31) - The 520 Cenz Promise (1080p BluRay x265 ImE).mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Fullmetal Alchemist Brotherhood (2009) - S01E31 - (31) - The 520 Cenz Promise (1080P Bluray X265 Ime)", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Fullmetal Alchemist Brotherhood (2009) - S01E31 - (31) - The 520 Cenz Promise (1080P Bluray X265 Ime)", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E02 - (2) - The First Day (1080p BluRay x265 ImE).mkv", + "filename": "Fullmetal Alchemist Brotherhood (2009) - S01E02 - (2) - The First Day (1080p BluRay x265 ImE).mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Fullmetal Alchemist Brotherhood (2009) - S01E02 - (2) - The First Day (1080P Bluray X265 Ime)", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Fullmetal Alchemist Brotherhood (2009) - S01E02 - (2) - The First Day (1080P Bluray X265 Ime)", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E19 - (19) - Death of the Undying (1080p BluRay x265 ImE).mkv", + "filename": "Fullmetal Alchemist Brotherhood (2009) - S01E19 - (19) - Death of the Undying (1080p BluRay x265 ImE).mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Fullmetal Alchemist Brotherhood (2009) - S01E19 - (19) - Death Of The Undying (1080P Bluray X265 Ime)", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Fullmetal Alchemist Brotherhood (2009) - S01E19 - (19) - Death Of The Undying (1080P Bluray X265 Ime)", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E37 - (37) - The First Homunculus (1080p BluRay x265 ImE).mkv", + "filename": "Fullmetal Alchemist Brotherhood (2009) - S01E37 - (37) - The First Homunculus (1080p BluRay x265 ImE).mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Fullmetal Alchemist Brotherhood (2009) - S01E37 - (37) - The First Homunculus (1080P Bluray X265 Ime)", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Fullmetal Alchemist Brotherhood (2009) - S01E37 - (37) - The First Homunculus (1080P Bluray X265 Ime)", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E06 - (6) - Road of Hope (1080p BluRay x265 ImE).mkv", + "filename": "Fullmetal Alchemist Brotherhood (2009) - S01E06 - (6) - Road of Hope (1080p BluRay x265 ImE).mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Fullmetal Alchemist Brotherhood (2009) - S01E06 - (6) - Road Of Hope (1080P Bluray X265 Ime)", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Fullmetal Alchemist Brotherhood (2009) - S01E06 - (6) - Road Of Hope (1080P Bluray X265 Ime)", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E30 - (30) - The Ishvalan War of Extermination (1080p BluRay x265 ImE).mkv", + "filename": "Fullmetal Alchemist Brotherhood (2009) - S01E30 - (30) - The Ishvalan War of Extermination (1080p BluRay x265 ImE).mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Fullmetal Alchemist Brotherhood (2009) - S01E30 - (30) - The Ishvalan War Of Extermination (1080P Bluray X265 Ime)", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Fullmetal Alchemist Brotherhood (2009) - S01E30 - (30) - The Ishvalan War Of Extermination (1080P Bluray X265 Ime)", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E50 - (50) - Upheaval in Central (1080p BluRay x265 ImE).mkv", + "filename": "Fullmetal Alchemist Brotherhood (2009) - S01E50 - (50) - Upheaval in Central (1080p BluRay x265 ImE).mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Fullmetal Alchemist Brotherhood (2009) - S01E50 - (50) - Upheaval In Central (1080P Bluray X265 Ime)", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Fullmetal Alchemist Brotherhood (2009) - S01E50 - (50) - Upheaval In Central (1080P Bluray X265 Ime)", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E12 - (12) - One Is All, All Is One (1080p BluRay x265 ImE).mkv", + "filename": "Fullmetal Alchemist Brotherhood (2009) - S01E12 - (12) - One Is All, All Is One (1080p BluRay x265 ImE).mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Fullmetal Alchemist Brotherhood (2009) - S01E12 - (12) - One Is All, All Is One (1080P Bluray X265 Ime)", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Fullmetal Alchemist Brotherhood (2009) - S01E12 - (12) - One Is All, All Is One (1080P Bluray X265 Ime)", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E35 - (35) - The Shape of This Country (1080p BluRay x265 ImE).mkv", + "filename": "Fullmetal Alchemist Brotherhood (2009) - S01E35 - (35) - The Shape of This Country (1080p BluRay x265 ImE).mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Fullmetal Alchemist Brotherhood (2009) - S01E35 - (35) - The Shape Of This Country (1080P Bluray X265 Ime)", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Fullmetal Alchemist Brotherhood (2009) - S01E35 - (35) - The Shape Of This Country (1080P Bluray X265 Ime)", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E47 - (47) - Emissary of Darkness (1080p BluRay x265 ImE).mkv", + "filename": "Fullmetal Alchemist Brotherhood (2009) - S01E47 - (47) - Emissary of Darkness (1080p BluRay x265 ImE).mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Fullmetal Alchemist Brotherhood (2009) - S01E47 - (47) - Emissary Of Darkness (1080P Bluray X265 Ime)", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Fullmetal Alchemist Brotherhood (2009) - S01E47 - (47) - Emissary Of Darkness (1080P Bluray X265 Ime)", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E21 - (21) - Advance of the Fool (1080p BluRay x265 ImE).mkv", + "filename": "Fullmetal Alchemist Brotherhood (2009) - S01E21 - (21) - Advance of the Fool (1080p BluRay x265 ImE).mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Fullmetal Alchemist Brotherhood (2009) - S01E21 - (21) - Advance Of The Fool (1080P Bluray X265 Ime)", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Fullmetal Alchemist Brotherhood (2009) - S01E21 - (21) - Advance Of The Fool (1080P Bluray X265 Ime)", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E29 - (29) - Struggle of the Fool (1080p BluRay x265 ImE).mkv", + "filename": "Fullmetal Alchemist Brotherhood (2009) - S01E29 - (29) - Struggle of the Fool (1080p BluRay x265 ImE).mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Fullmetal Alchemist Brotherhood (2009) - S01E29 - (29) - Struggle Of The Fool (1080P Bluray X265 Ime)", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Fullmetal Alchemist Brotherhood (2009) - S01E29 - (29) - Struggle Of The Fool (1080P Bluray X265 Ime)", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E33 - (33) - The Northern Wall of Briggs (1080p BluRay x265 ImE).mkv", + "filename": "Fullmetal Alchemist Brotherhood (2009) - S01E33 - (33) - The Northern Wall of Briggs (1080p BluRay x265 ImE).mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Fullmetal Alchemist Brotherhood (2009) - S01E33 - (33) - The Northern Wall Of Briggs (1080P Bluray X265 Ime)", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Fullmetal Alchemist Brotherhood (2009) - S01E33 - (33) - The Northern Wall Of Briggs (1080P Bluray X265 Ime)", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E08 - (8) - The Fifth Laboratory (1080p BluRay x265 ImE).mkv", + "filename": "Fullmetal Alchemist Brotherhood (2009) - S01E08 - (8) - The Fifth Laboratory (1080p BluRay x265 ImE).mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Fullmetal Alchemist Brotherhood (2009) - S01E08 - (8) - The Fifth Laboratory (1080P Bluray X265 Ime)", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Fullmetal Alchemist Brotherhood (2009) - S01E08 - (8) - The Fifth Laboratory (1080P Bluray X265 Ime)", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E49 - (49) - Filial Affection (1080p BluRay x265 ImE).mkv", + "filename": "Fullmetal Alchemist Brotherhood (2009) - S01E49 - (49) - Filial Affection (1080p BluRay x265 ImE).mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Fullmetal Alchemist Brotherhood (2009) - S01E49 - (49) - Filial Affection (1080P Bluray X265 Ime)", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Fullmetal Alchemist Brotherhood (2009) - S01E49 - (49) - Filial Affection (1080P Bluray X265 Ime)", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E15 - (15) - Envoy from the East (1080p BluRay x265 ImE).mkv", + "filename": "Fullmetal Alchemist Brotherhood (2009) - S01E15 - (15) - Envoy from the East (1080p BluRay x265 ImE).mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Fullmetal Alchemist Brotherhood (2009) - S01E15 - (15) - Envoy From The East (1080P Bluray X265 Ime)", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Fullmetal Alchemist Brotherhood (2009) - S01E15 - (15) - Envoy From The East (1080P Bluray X265 Ime)", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E44 - (44) - Revving at Full Throttle (1080p BluRay x265 ImE).mkv", + "filename": "Fullmetal Alchemist Brotherhood (2009) - S01E44 - (44) - Revving at Full Throttle (1080p BluRay x265 ImE).mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Fullmetal Alchemist Brotherhood (2009) - S01E44 - (44) - Revving At Full Throttle (1080P Bluray X265 Ime)", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Fullmetal Alchemist Brotherhood (2009) - S01E44 - (44) - Revving At Full Throttle (1080P Bluray X265 Ime)", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E17 - (17) - Cold Flame (1080p BluRay x265 ImE).mkv", + "filename": "Fullmetal Alchemist Brotherhood (2009) - S01E17 - (17) - Cold Flame (1080p BluRay x265 ImE).mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Fullmetal Alchemist Brotherhood (2009) - S01E17 - (17) - Cold Flame (1080P Bluray X265 Ime)", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Fullmetal Alchemist Brotherhood (2009) - S01E17 - (17) - Cold Flame (1080P Bluray X265 Ime)", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E25 - (25) - Doorway of Darkness (1080p BluRay x265 ImE).mkv", + "filename": "Fullmetal Alchemist Brotherhood (2009) - S01E25 - (25) - Doorway of Darkness (1080p BluRay x265 ImE).mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Fullmetal Alchemist Brotherhood (2009) - S01E25 - (25) - Doorway Of Darkness (1080P Bluray X265 Ime)", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Fullmetal Alchemist Brotherhood (2009) - S01E25 - (25) - Doorway Of Darkness (1080P Bluray X265 Ime)", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E39 - (39) - Daydream (1080p BluRay x265 ImE).mkv", + "filename": "Fullmetal Alchemist Brotherhood (2009) - S01E39 - (39) - Daydream (1080p BluRay x265 ImE).mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Fullmetal Alchemist Brotherhood (2009) - S01E39 - (39) - Daydream (1080P Bluray X265 Ime)", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Fullmetal Alchemist Brotherhood (2009) - S01E39 - (39) - Daydream (1080P Bluray X265 Ime)", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E26 - (26) - Reunion (1080p BluRay x265 ImE).mkv", + "filename": "Fullmetal Alchemist Brotherhood (2009) - S01E26 - (26) - Reunion (1080p BluRay x265 ImE).mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Fullmetal Alchemist Brotherhood (2009) - S01E26 - (26) - Reunion (1080P Bluray X265 Ime)", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Fullmetal Alchemist Brotherhood (2009) - S01E26 - (26) - Reunion (1080P Bluray X265 Ime)", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E03 - (3) - City of Heresy (1080p BluRay x265 ImE).mkv", + "filename": "Fullmetal Alchemist Brotherhood (2009) - S01E03 - (3) - City of Heresy (1080p BluRay x265 ImE).mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Fullmetal Alchemist Brotherhood (2009) - S01E03 - (3) - City Of Heresy (1080P Bluray X265 Ime)", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Fullmetal Alchemist Brotherhood (2009) - S01E03 - (3) - City Of Heresy (1080P Bluray X265 Ime)", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E48 - (48) - The Oath in the Tunnel (1080p BluRay x265 ImE).mkv", + "filename": "Fullmetal Alchemist Brotherhood (2009) - S01E48 - (48) - The Oath in the Tunnel (1080p BluRay x265 ImE).mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Fullmetal Alchemist Brotherhood (2009) - S01E48 - (48) - The Oath In The Tunnel (1080P Bluray X265 Ime)", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Fullmetal Alchemist Brotherhood (2009) - S01E48 - (48) - The Oath In The Tunnel (1080P Bluray X265 Ime)", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E57 - (57) - Eternal Leave (1080p BluRay x265 ImE).mkv", + "filename": "Fullmetal Alchemist Brotherhood (2009) - S01E57 - (57) - Eternal Leave (1080p BluRay x265 ImE).mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Fullmetal Alchemist Brotherhood (2009) - S01E57 - (57) - Eternal Leave (1080P Bluray X265 Ime)", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Fullmetal Alchemist Brotherhood (2009) - S01E57 - (57) - Eternal Leave (1080P Bluray X265 Ime)", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E34 - (34) - Ice Queen (1080p BluRay x265 ImE).mkv", + "filename": "Fullmetal Alchemist Brotherhood (2009) - S01E34 - (34) - Ice Queen (1080p BluRay x265 ImE).mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Fullmetal Alchemist Brotherhood (2009) - S01E34 - (34) - Ice Queen (1080P Bluray X265 Ime)", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Fullmetal Alchemist Brotherhood (2009) - S01E34 - (34) - Ice Queen (1080P Bluray X265 Ime)", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E18 - (18) - The Arrogant Palm of a Small Human (1080p BluRay x265 ImE).mkv", + "filename": "Fullmetal Alchemist Brotherhood (2009) - S01E18 - (18) - The Arrogant Palm of a Small Human (1080p BluRay x265 ImE).mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Fullmetal Alchemist Brotherhood (2009) - S01E18 - (18) - The Arrogant Palm Of A Small Human (1080P Bluray X265 Ime)", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Fullmetal Alchemist Brotherhood (2009) - S01E18 - (18) - The Arrogant Palm Of A Small Human (1080P Bluray X265 Ime)", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E09 - (9) - Created Feelings (1080p BluRay x265 ImE).mkv", + "filename": "Fullmetal Alchemist Brotherhood (2009) - S01E09 - (9) - Created Feelings (1080p BluRay x265 ImE).mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Fullmetal Alchemist Brotherhood (2009) - S01E09 - (9) - Created Feelings (1080P Bluray X265 Ime)", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Fullmetal Alchemist Brotherhood (2009) - S01E09 - (9) - Created Feelings (1080P Bluray X265 Ime)", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E20 - (20) - Father Before the Grave (1080p BluRay x265 ImE).mkv", + "filename": "Fullmetal Alchemist Brotherhood (2009) - S01E20 - (20) - Father Before the Grave (1080p BluRay x265 ImE).mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Fullmetal Alchemist Brotherhood (2009) - S01E20 - (20) - Father Before The Grave (1080P Bluray X265 Ime)", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Fullmetal Alchemist Brotherhood (2009) - S01E20 - (20) - Father Before The Grave (1080P Bluray X265 Ime)", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E55 - (55) - The Adults' Way of Life (1080p BluRay x265 ImE).mkv", + "filename": "Fullmetal Alchemist Brotherhood (2009) - S01E55 - (55) - The Adults' Way of Life (1080p BluRay x265 ImE).mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Fullmetal Alchemist Brotherhood (2009) - S01E55 - (55) - The Adults' Way Of Life (1080P Bluray X265 Ime)", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Fullmetal Alchemist Brotherhood (2009) - S01E55 - (55) - The Adults' Way Of Life (1080P Bluray X265 Ime)", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E61 - (61) - He Who Would Swallow God (1080p BluRay x265 ImE).mkv", + "filename": "Fullmetal Alchemist Brotherhood (2009) - S01E61 - (61) - He Who Would Swallow God (1080p BluRay x265 ImE).mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Fullmetal Alchemist Brotherhood (2009) - S01E61 - (61) - He Who Would Swallow God (1080P Bluray X265 Ime)", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Fullmetal Alchemist Brotherhood (2009) - S01E61 - (61) - He Who Would Swallow God (1080P Bluray X265 Ime)", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 記憶縫線 YOUR FORMA - 06 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 記憶縫線 YOUR FORMA - 06 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 記憶縫線 Your Forma - 06 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 記憶縫線 Your Forma - 06 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 忍者與殺手的兩人生活 - 10 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 忍者與殺手的兩人生活 - 10 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 忍者與殺手的兩人生活 - 10 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 忍者與殺手的兩人生活 - 10 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 擁有超常技能的異世界流浪美食家 S2 - 20 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 擁有超常技能的異世界流浪美食家 S2 - 20 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 擁有超常技能的異世界流浪美食家 S2 - 20 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 擁有超常技能的異世界流浪美食家 S2 - 20 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 瞬間治癒卻被當成廢物踢出隊伍的天才治療師,改當無照治療師快樂過活 - 11 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 瞬間治癒卻被當成廢物踢出隊伍的天才治療師,改當無照治療師快樂過活 - 11 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 瞬間治癒卻被當成廢物踢出隊伍的天才治療師,改當無照治療師快樂過活 - 11 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 瞬間治癒卻被當成廢物踢出隊伍的天才治療師,改當無照治療師快樂過活 - 11 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 貫徹輔助魔法支援弱小隊友的宮廷魔法師,慘遭驅逐後目標成為最強冒險者 - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 貫徹輔助魔法支援弱小隊友的宮廷魔法師,慘遭驅逐後目標成為最強冒險者 - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 貫徹輔助魔法支援弱小隊友的宮廷魔法師,慘遭驅逐後目標成為最強冒險者 - 02 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 貫徹輔助魔法支援弱小隊友的宮廷魔法師,慘遭驅逐後目標成為最強冒險者 - 02 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Nekomoe kissaten][Ao no Hako][05][1080p][JPSC].mp4", + "filename": "[Nekomoe kissaten][Ao no Hako][05][1080p][JPSC].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Nekomoe Kissaten][Ao No Hako][05][1080P][Jpsc]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Nekomoe Kissaten][Ao No Hako][05][1080P][Jpsc]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Mikata ga Yowasugite Hojo Maho ni Tesshite ita Kyutei Mahoshi - 12 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "filename": "[LoliHouse] Mikata ga Yowasugite Hojo Maho ni Tesshite ita Kyutei Mahoshi - 12 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Mikata Ga Yowasugite Hojo Maho Ni Tesshite Ita Kyutei Mahoshi - 12 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Mikata Ga Yowasugite Hojo Maho Ni Tesshite Ita Kyutei Mahoshi - 12 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[HYSUB]Sono Bisque Doll wa Koi wo Suru[01~12][BIG5_MP4][1920X1080]/[HYSUB]Sono Bisque Doll wa Koi wo Suru[02][BIG5_MP4][1920X1080].mp4", + "filename": "[HYSUB]Sono Bisque Doll wa Koi wo Suru[02][BIG5_MP4][1920X1080].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Hysub]Sono Bisque Doll Wa Koi Wo Suru[02][Big5 Mp4][1920X1080]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Hysub]Sono Bisque Doll Wa Koi Wo Suru[02][Big5 Mp4][1920X1080]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[HYSUB]Sono Bisque Doll wa Koi wo Suru[01~12][BIG5_MP4][1920X1080]/[HYSUB]Sono Bisque Doll wa Koi wo Suru[01v2][BIG5_MP4][1920X1080].mp4", + "filename": "[HYSUB]Sono Bisque Doll wa Koi wo Suru[01v2][BIG5_MP4][1920X1080].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Hysub]Sono Bisque Doll Wa Koi Wo Suru[01V2][Big5 Mp4][1920X1080]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Hysub]Sono Bisque Doll Wa Koi Wo Suru[01V2][Big5 Mp4][1920X1080]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[HYSUB]Sono Bisque Doll wa Koi wo Suru[01~12][BIG5_MP4][1920X1080]/[HYSUB]Sono Bisque Doll wa Koi wo Suru[04][BIG5_MP4][1920X1080].mp4", + "filename": "[HYSUB]Sono Bisque Doll wa Koi wo Suru[04][BIG5_MP4][1920X1080].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Hysub]Sono Bisque Doll Wa Koi Wo Suru[04][Big5 Mp4][1920X1080]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Hysub]Sono Bisque Doll Wa Koi Wo Suru[04][Big5 Mp4][1920X1080]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[HYSUB]Sono Bisque Doll wa Koi wo Suru[01~12][BIG5_MP4][1920X1080]/[HYSUB]Sono Bisque Doll wa Koi wo Suru[11][BIG5_MP4][1920X1080].mp4", + "filename": "[HYSUB]Sono Bisque Doll wa Koi wo Suru[11][BIG5_MP4][1920X1080].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Hysub]Sono Bisque Doll Wa Koi Wo Suru[11][Big5 Mp4][1920X1080]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Hysub]Sono Bisque Doll Wa Koi Wo Suru[11][Big5 Mp4][1920X1080]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[HYSUB]Sono Bisque Doll wa Koi wo Suru[01~12][BIG5_MP4][1920X1080]/[HYSUB]Sono Bisque Doll wa Koi wo Suru[12][BIG5_MP4][1920X1080][END].mp4", + "filename": "[HYSUB]Sono Bisque Doll wa Koi wo Suru[12][BIG5_MP4][1920X1080][END].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Hysub]Sono Bisque Doll Wa Koi Wo Suru[12][Big5 Mp4][1920X1080][End]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Hysub]Sono Bisque Doll Wa Koi Wo Suru[12][Big5 Mp4][1920X1080][End]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[HYSUB]Sono Bisque Doll wa Koi wo Suru[01~12][BIG5_MP4][1920X1080]/[HYSUB]Sono Bisque Doll wa Koi wo Suru[07][BIG5_MP4][1920X1080].mp4", + "filename": "[HYSUB]Sono Bisque Doll wa Koi wo Suru[07][BIG5_MP4][1920X1080].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Hysub]Sono Bisque Doll Wa Koi Wo Suru[07][Big5 Mp4][1920X1080]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Hysub]Sono Bisque Doll Wa Koi Wo Suru[07][Big5 Mp4][1920X1080]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[HYSUB]Sono Bisque Doll wa Koi wo Suru[01~12][BIG5_MP4][1920X1080]/[HYSUB]Sono Bisque Doll wa Koi wo Suru[08][BIG5_MP4][1920X1080].mp4", + "filename": "[HYSUB]Sono Bisque Doll wa Koi wo Suru[08][BIG5_MP4][1920X1080].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Hysub]Sono Bisque Doll Wa Koi Wo Suru[08][Big5 Mp4][1920X1080]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Hysub]Sono Bisque Doll Wa Koi Wo Suru[08][Big5 Mp4][1920X1080]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[HYSUB]Sono Bisque Doll wa Koi wo Suru[01~12][BIG5_MP4][1920X1080]/[HYSUB]Sono Bisque Doll wa Koi wo Suru[03][BIG5_MP4][1920X1080].mp4", + "filename": "[HYSUB]Sono Bisque Doll wa Koi wo Suru[03][BIG5_MP4][1920X1080].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Hysub]Sono Bisque Doll Wa Koi Wo Suru[03][Big5 Mp4][1920X1080]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Hysub]Sono Bisque Doll Wa Koi Wo Suru[03][Big5 Mp4][1920X1080]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[HYSUB]Sono Bisque Doll wa Koi wo Suru[01~12][BIG5_MP4][1920X1080]/[HYSUB]Sono Bisque Doll wa Koi wo Suru[05][BIG5_MP4][1920X1080].mp4", + "filename": "[HYSUB]Sono Bisque Doll wa Koi wo Suru[05][BIG5_MP4][1920X1080].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Hysub]Sono Bisque Doll Wa Koi Wo Suru[05][Big5 Mp4][1920X1080]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Hysub]Sono Bisque Doll Wa Koi Wo Suru[05][Big5 Mp4][1920X1080]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[HYSUB]Sono Bisque Doll wa Koi wo Suru[01~12][BIG5_MP4][1920X1080]/[HYSUB]Sono Bisque Doll wa Koi wo Suru[10][BIG5_MP4][1920X1080].mp4", + "filename": "[HYSUB]Sono Bisque Doll wa Koi wo Suru[10][BIG5_MP4][1920X1080].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Hysub]Sono Bisque Doll Wa Koi Wo Suru[10][Big5 Mp4][1920X1080]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Hysub]Sono Bisque Doll Wa Koi Wo Suru[10][Big5 Mp4][1920X1080]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[HYSUB]Sono Bisque Doll wa Koi wo Suru[01~12][BIG5_MP4][1920X1080]/[HYSUB]Sono Bisque Doll wa Koi wo Suru[06][BIG5_MP4][1920X1080].mp4", + "filename": "[HYSUB]Sono Bisque Doll wa Koi wo Suru[06][BIG5_MP4][1920X1080].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Hysub]Sono Bisque Doll Wa Koi Wo Suru[06][Big5 Mp4][1920X1080]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Hysub]Sono Bisque Doll Wa Koi Wo Suru[06][Big5 Mp4][1920X1080]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[HYSUB]Sono Bisque Doll wa Koi wo Suru[01~12][BIG5_MP4][1920X1080]/[HYSUB]Sono Bisque Doll wa Koi wo Suru[09][BIG5_MP4][1920X1080].mp4", + "filename": "[HYSUB]Sono Bisque Doll wa Koi wo Suru[09][BIG5_MP4][1920X1080].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Hysub]Sono Bisque Doll Wa Koi Wo Suru[09][Big5 Mp4][1920X1080]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Hysub]Sono Bisque Doll Wa Koi Wo Suru[09][Big5 Mp4][1920X1080]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 最強肉盾的迷宮攻略~擁有稀少技能體力 9999 的肉盾,被勇者隊伍辭退了~ - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 最強肉盾的迷宮攻略~擁有稀少技能體力 9999 的肉盾,被勇者隊伍辭退了~ - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 最強肉盾的迷宮攻略~擁有稀少技能體力 9999 的肉盾,被勇者隊伍辭退了~ - 01 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 最強肉盾的迷宮攻略~擁有稀少技能體力 9999 的肉盾,被勇者隊伍辭退了~ - 01 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 香格里拉・開拓異境~糞作獵手挑戰神作~ 第二季 - 19 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 香格里拉・開拓異境~糞作獵手挑戰神作~ 第二季 - 19 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 香格里拉・開拓異境~糞作獵手挑戰神作~ 第二季 - 19 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 香格里拉・開拓異境~糞作獵手挑戰神作~ 第二季 - 19 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Sakurato][20210111] Mushoku Tensei Isekai Ittara Honki Dasu [01-11 Fin][TVRip][1080p@60FPS][CHT]/[Sakurato] Mushoku Tensei Isekai Ittara Honki Dasu [08v2][AVC-8bit 1080p@60FPS AAC][CHT].mp4", + "filename": "[Sakurato] Mushoku Tensei Isekai Ittara Honki Dasu [08v2][AVC-8bit 1080p@60FPS AAC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Sakurato] Mushoku Tensei Isekai Ittara Honki Dasu [08V2][Avc-8Bit 1080P@60Fps Aac][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Sakurato] Mushoku Tensei Isekai Ittara Honki Dasu [08V2][Avc-8Bit 1080P@60Fps Aac][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Sakurato][20210111] Mushoku Tensei Isekai Ittara Honki Dasu [01-11 Fin][TVRip][1080p@60FPS][CHT]/[Sakurato] Mushoku Tensei Isekai Ittara Honki Dasu [09v2][AVC-8bit 1080p@60FPS AAC][CHT].mp4", + "filename": "[Sakurato] Mushoku Tensei Isekai Ittara Honki Dasu [09v2][AVC-8bit 1080p@60FPS AAC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Sakurato] Mushoku Tensei Isekai Ittara Honki Dasu [09V2][Avc-8Bit 1080P@60Fps Aac][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Sakurato] Mushoku Tensei Isekai Ittara Honki Dasu [09V2][Avc-8Bit 1080P@60Fps Aac][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Sakurato][20210111] Mushoku Tensei Isekai Ittara Honki Dasu [01-11 Fin][TVRip][1080p@60FPS][CHT]/[Sakurato] Mushoku Tensei Isekai Ittara Honki Dasu [10v2][AVC-8bit 1080p@60FPS AAC][CHT].mp4", + "filename": "[Sakurato] Mushoku Tensei Isekai Ittara Honki Dasu [10v2][AVC-8bit 1080p@60FPS AAC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Sakurato] Mushoku Tensei Isekai Ittara Honki Dasu [10V2][Avc-8Bit 1080P@60Fps Aac][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Sakurato] Mushoku Tensei Isekai Ittara Honki Dasu [10V2][Avc-8Bit 1080P@60Fps Aac][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Sakurato][20210111] Mushoku Tensei Isekai Ittara Honki Dasu [01-11 Fin][TVRip][1080p@60FPS][CHT]/[Sakurato] Mushoku Tensei Isekai Ittara Honki Dasu [06v2][AVC-8bit 1080p@60FPS AAC][CHT].mp4", + "filename": "[Sakurato] Mushoku Tensei Isekai Ittara Honki Dasu [06v2][AVC-8bit 1080p@60FPS AAC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Sakurato] Mushoku Tensei Isekai Ittara Honki Dasu [06V2][Avc-8Bit 1080P@60Fps Aac][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Sakurato] Mushoku Tensei Isekai Ittara Honki Dasu [06V2][Avc-8Bit 1080P@60Fps Aac][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Sakurato][20210111] Mushoku Tensei Isekai Ittara Honki Dasu [01-11 Fin][TVRip][1080p@60FPS][CHT]/[Sakurato] Mushoku Tensei Isekai Ittara Honki Dasu [11v2][AVC-8bit 1080p@60FPS AAC][CHT].mp4", + "filename": "[Sakurato] Mushoku Tensei Isekai Ittara Honki Dasu [11v2][AVC-8bit 1080p@60FPS AAC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Sakurato] Mushoku Tensei Isekai Ittara Honki Dasu [11V2][Avc-8Bit 1080P@60Fps Aac][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Sakurato] Mushoku Tensei Isekai Ittara Honki Dasu [11V2][Avc-8Bit 1080P@60Fps Aac][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Sakurato][20210111] Mushoku Tensei Isekai Ittara Honki Dasu [01-11 Fin][TVRip][1080p@60FPS][CHT]/[Sakurato] Mushoku Tensei Isekai Ittara Honki Dasu [07v2][AVC-8bit 1080p@60FPS AAC][CHT].mp4", + "filename": "[Sakurato] Mushoku Tensei Isekai Ittara Honki Dasu [07v2][AVC-8bit 1080p@60FPS AAC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Sakurato] Mushoku Tensei Isekai Ittara Honki Dasu [07V2][Avc-8Bit 1080P@60Fps Aac][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Sakurato] Mushoku Tensei Isekai Ittara Honki Dasu [07V2][Avc-8Bit 1080P@60Fps Aac][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Sakurato][20210111] Mushoku Tensei Isekai Ittara Honki Dasu [01-11 Fin][TVRip][1080p@60FPS][CHT]/[Sakurato] Mushoku Tensei Isekai Ittara Honki Dasu [04v2][AVC-8bit 1080p@60FPS AAC][CHT].mp4", + "filename": "[Sakurato] Mushoku Tensei Isekai Ittara Honki Dasu [04v2][AVC-8bit 1080p@60FPS AAC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Sakurato] Mushoku Tensei Isekai Ittara Honki Dasu [04V2][Avc-8Bit 1080P@60Fps Aac][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Sakurato] Mushoku Tensei Isekai Ittara Honki Dasu [04V2][Avc-8Bit 1080P@60Fps Aac][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Sakurato][20210111] Mushoku Tensei Isekai Ittara Honki Dasu [01-11 Fin][TVRip][1080p@60FPS][CHT]/[Sakurato] Mushoku Tensei Isekai Ittara Honki Dasu [05v2][AVC-8bit 1080p@60FPS AAC][CHT].mp4", + "filename": "[Sakurato] Mushoku Tensei Isekai Ittara Honki Dasu [05v2][AVC-8bit 1080p@60FPS AAC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Sakurato] Mushoku Tensei Isekai Ittara Honki Dasu [05V2][Avc-8Bit 1080P@60Fps Aac][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Sakurato] Mushoku Tensei Isekai Ittara Honki Dasu [05V2][Avc-8Bit 1080P@60Fps Aac][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Sakurato][20210111] Mushoku Tensei Isekai Ittara Honki Dasu [01-11 Fin][TVRip][1080p@60FPS][CHT]/[Sakurato] Mushoku Tensei Isekai Ittara Honki Dasu [02v2][AVC-8bit 1080p@60FPS AAC][CHT].mp4", + "filename": "[Sakurato] Mushoku Tensei Isekai Ittara Honki Dasu [02v2][AVC-8bit 1080p@60FPS AAC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Sakurato] Mushoku Tensei Isekai Ittara Honki Dasu [02V2][Avc-8Bit 1080P@60Fps Aac][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Sakurato] Mushoku Tensei Isekai Ittara Honki Dasu [02V2][Avc-8Bit 1080P@60Fps Aac][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Sakurato][20210111] Mushoku Tensei Isekai Ittara Honki Dasu [01-11 Fin][TVRip][1080p@60FPS][CHT]/[Sakurato] Mushoku Tensei Isekai Ittara Honki Dasu [03v2][AVC-8bit 1080p@60FPS AAC][CHT].mp4", + "filename": "[Sakurato] Mushoku Tensei Isekai Ittara Honki Dasu [03v2][AVC-8bit 1080p@60FPS AAC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Sakurato] Mushoku Tensei Isekai Ittara Honki Dasu [03V2][Avc-8Bit 1080P@60Fps Aac][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Sakurato] Mushoku Tensei Isekai Ittara Honki Dasu [03V2][Avc-8Bit 1080P@60Fps Aac][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Sakurato][20210111] Mushoku Tensei Isekai Ittara Honki Dasu [01-11 Fin][TVRip][1080p@60FPS][CHT]/[Sakurato] Mushoku Tensei Isekai Ittara Honki Dasu [01v2][AVC-8bit 1080p@60FPS AAC][CHT].mp4", + "filename": "[Sakurato] Mushoku Tensei Isekai Ittara Honki Dasu [01v2][AVC-8bit 1080p@60FPS AAC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Sakurato] Mushoku Tensei Isekai Ittara Honki Dasu [01V2][Avc-8Bit 1080P@60Fps Aac][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Sakurato] Mushoku Tensei Isekai Ittara Honki Dasu [01V2][Avc-8Bit 1080P@60Fps Aac][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 治癒魔法的錯誤使用法 - 11 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 治癒魔法的錯誤使用法 - 11 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 治癒魔法的錯誤使用法 - 11 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 治癒魔法的錯誤使用法 - 11 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 葬送的芙莉蓮 - 28 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 葬送的芙莉蓮 - 28 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 葬送的芙莉蓮 - 28 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 葬送的芙莉蓮 - 28 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[DMG][Isekai_Ojisan][01-13 END][1080P][BIG5][MP4]/[DMG][Isekai_Ojisan][03][1080P][BIG5].mp4", + "filename": "[DMG][Isekai_Ojisan][03][1080P][BIG5].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Dmg][Isekai Ojisan][03][1080P][Big5]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Dmg][Isekai Ojisan][03][1080P][Big5]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[DMG][Isekai_Ojisan][01-13 END][1080P][BIG5][MP4]/[DMG][Isekai_Ojisan][08][1080P][BIG5].mp4", + "filename": "[DMG][Isekai_Ojisan][08][1080P][BIG5].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Dmg][Isekai Ojisan][08][1080P][Big5]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Dmg][Isekai Ojisan][08][1080P][Big5]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[DMG][Isekai_Ojisan][01-13 END][1080P][BIG5][MP4]/[DMG][Isekai_Ojisan][05][1080P][BIG5].mp4", + "filename": "[DMG][Isekai_Ojisan][05][1080P][BIG5].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Dmg][Isekai Ojisan][05][1080P][Big5]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Dmg][Isekai Ojisan][05][1080P][Big5]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[DMG][Isekai_Ojisan][01-13 END][1080P][BIG5][MP4]/[DMG][Isekai_Ojisan][10][1080P][BIG5].mp4", + "filename": "[DMG][Isekai_Ojisan][10][1080P][BIG5].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Dmg][Isekai Ojisan][10][1080P][Big5]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Dmg][Isekai Ojisan][10][1080P][Big5]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[DMG][Isekai_Ojisan][01-13 END][1080P][BIG5][MP4]/[DMG][Isekai_Ojisan][13 END][1080P][BIG5].mp4", + "filename": "[DMG][Isekai_Ojisan][13 END][1080P][BIG5].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Dmg][Isekai Ojisan][13 End][1080P][Big5]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Dmg][Isekai Ojisan][13 End][1080P][Big5]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[DMG][Isekai_Ojisan][01-13 END][1080P][BIG5][MP4]/[DMG][Isekai_Ojisan][09][1080P][BIG5].mp4", + "filename": "[DMG][Isekai_Ojisan][09][1080P][BIG5].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Dmg][Isekai Ojisan][09][1080P][Big5]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Dmg][Isekai Ojisan][09][1080P][Big5]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[DMG][Isekai_Ojisan][01-13 END][1080P][BIG5][MP4]/[DMG][Isekai_Ojisan][02][1080P][BIG5].mp4", + "filename": "[DMG][Isekai_Ojisan][02][1080P][BIG5].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Dmg][Isekai Ojisan][02][1080P][Big5]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Dmg][Isekai Ojisan][02][1080P][Big5]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[DMG][Isekai_Ojisan][01-13 END][1080P][BIG5][MP4]/[DMG][Isekai_Ojisan][04][1080P][BIG5].mp4", + "filename": "[DMG][Isekai_Ojisan][04][1080P][BIG5].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Dmg][Isekai Ojisan][04][1080P][Big5]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Dmg][Isekai Ojisan][04][1080P][Big5]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[DMG][Isekai_Ojisan][01-13 END][1080P][BIG5][MP4]/[DMG][Isekai_Ojisan][11][1080P][BIG5].mp4", + "filename": "[DMG][Isekai_Ojisan][11][1080P][BIG5].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Dmg][Isekai Ojisan][11][1080P][Big5]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Dmg][Isekai Ojisan][11][1080P][Big5]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[DMG][Isekai_Ojisan][01-13 END][1080P][BIG5][MP4]/[DMG][Isekai_Ojisan][01][1080P][BIG5].mp4", + "filename": "[DMG][Isekai_Ojisan][01][1080P][BIG5].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Dmg][Isekai Ojisan][01][1080P][Big5]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Dmg][Isekai Ojisan][01][1080P][Big5]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[DMG][Isekai_Ojisan][01-13 END][1080P][BIG5][MP4]/[DMG][Isekai_Ojisan][12][1080P][BIG5].mp4", + "filename": "[DMG][Isekai_Ojisan][12][1080P][BIG5].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Dmg][Isekai Ojisan][12][1080P][Big5]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Dmg][Isekai Ojisan][12][1080P][Big5]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[DMG][Isekai_Ojisan][01-13 END][1080P][BIG5][MP4]/[DMG][Isekai_Ojisan][07][1080P][BIG5].mp4", + "filename": "[DMG][Isekai_Ojisan][07][1080P][BIG5].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Dmg][Isekai Ojisan][07][1080P][Big5]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Dmg][Isekai Ojisan][07][1080P][Big5]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[DMG][Isekai_Ojisan][01-13 END][1080P][BIG5][MP4]/[DMG][Isekai_Ojisan][06][1080P][BIG5].mp4", + "filename": "[DMG][Isekai_Ojisan][06][1080P][BIG5].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Dmg][Isekai Ojisan][06][1080P][Big5]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Dmg][Isekai Ojisan][06][1080P][Big5]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 機械臂 - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 機械臂 - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 機械臂 - 02 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 機械臂 - 02 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Kekkon suru tte, Hontou desu ka - 07 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "filename": "[LoliHouse] Kekkon suru tte, Hontou desu ka - 07 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Kekkon Suru Tte, Hontou Desu Ka - 07 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Kekkon Suru Tte, Hontou Desu Ka - 07 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "needs_review": true + }, + { + "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", + "title": "[Ani] 在地下城尋求邂逅是否搞錯了什麼 第五季 - 07 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 在地下城尋求邂逅是否搞錯了什麼 第五季 - 07 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 怪獸 8 號 - 09 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 怪獸 8 號 - 09 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 怪獸 8 號 - 09 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 怪獸 8 號 - 09 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Lilith-Raws] Kantei Skill - 03 [Baha][WebDL 1080p AVC AAC][CHT].mp4", + "filename": "[Lilith-Raws] Kantei Skill - 03 [Baha][WebDL 1080p AVC AAC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lilith-Raws] Kantei Skill - 03 [Baha][Webdl 1080P Avc Aac][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lilith-Raws] Kantei Skill - 03 [Baha][Webdl 1080P Avc Aac][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 水屬性的魔法師 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 水屬性的魔法師 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 水屬性的魔法師 - 01 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 水屬性的魔法師 - 01 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "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", + "title": "[Ani] 終末起點 - 07 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 終末起點 - 07 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 香格里拉・開拓異境~糞作獵手挑戰神作~ 第二季 - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 香格里拉・開拓異境~糞作獵手挑戰神作~ 第二季 - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 香格里拉・開拓異境~糞作獵手挑戰神作~ 第二季 - 02 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 香格里拉・開拓異境~糞作獵手挑戰神作~ 第二季 - 02 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/《咒術迴戰 第二季》- 閑話 - 前編/《咒術迴戰 第二季》- 閑話 - 前編 (日語原聲)【Ani-One Asia ULTRA】.mp4", + "filename": "《咒術迴戰 第二季》- 閑話 - 前編 (日語原聲)【Ani-One Asia ULTRA】.mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "《咒術迴戰 第二季》- 閑話 - 前編 (日語原聲)【Ani-One Asia Ultra】", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "《咒術迴戰 第二季》- 閑話 - 前編 (日語原聲)【Ani-One Asia Ultra】", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[XKsub&LoliHouse] Blue Lock [22-24][WebRip 1080p HEVC-10bit AAC ASSx2]/[XKsub&LoliHouse] Blue Lock - 24 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "filename": "[XKsub&LoliHouse] Blue Lock - 24 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Xksub&Lolihouse] Blue Lock - 24 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Xksub&Lolihouse] Blue Lock - 24 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[XKsub&LoliHouse] Blue Lock [22-24][WebRip 1080p HEVC-10bit AAC ASSx2]/[XKsub&LoliHouse] Blue Lock - 23 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "filename": "[XKsub&LoliHouse] Blue Lock - 23 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Xksub&Lolihouse] Blue Lock - 23 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Xksub&Lolihouse] Blue Lock - 23 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[XKsub&LoliHouse] Blue Lock [22-24][WebRip 1080p HEVC-10bit AAC ASSx2]/[XKsub&LoliHouse] Blue Lock - 22 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "filename": "[XKsub&LoliHouse] Blue Lock - 22 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Xksub&Lolihouse] Blue Lock - 22 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Xksub&Lolihouse] Blue Lock - 22 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 離開 A 級隊伍的我,和從前的弟子往迷宮深處邁進 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 離開 A 級隊伍的我,和從前的弟子往迷宮深處邁進 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 離開 A 級隊伍的我,和從前的弟子往迷宮深處邁進 - 01 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 離開 A 級隊伍的我,和從前的弟子往迷宮深處邁進 - 01 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Skymoon-Raws] SPY×FAMILY - 16 [ViuTV][WEB-DL][CHT][1080p][AVC AAC][MP4+ASS]/[Skymoon-Raws] SPY×FAMILY - 16 [ViuTV][WEB-DL][1080p][AVC AAC].mp4", + "filename": "[Skymoon-Raws] SPY×FAMILY - 16 [ViuTV][WEB-DL][1080p][AVC AAC].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Skymoon-Raws] Spy×Family - 16 [Viutv][Web-Dl][1080P][Avc Aac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Skymoon-Raws] Spy×Family - 16 [Viutv][Web-Dl][1080P][Avc Aac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Godzilla.The.Planet.Eater.2018.1080p.NF.WEBRip.DDP5.1.x264-NTG/Godzilla.The.Planet.Eater.2018.1080p.NF.WEB-DL.DDP5.1.x264-NTG.mkv", + "filename": "Godzilla.The.Planet.Eater.2018.1080p.NF.WEB-DL.DDP5.1.x264-NTG.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Godzilla The Planet Eater 2018 1080P Nf Web-Dl Ddp5 1 X264-Ntg", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Godzilla The Planet Eater 2018 1080P Nf Web-Dl Ddp5 1 X264-Ntg", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Tensei Shitara Slime Datta Ken 3rd Season - 65 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "filename": "[LoliHouse] Tensei Shitara Slime Datta Ken 3rd Season - 65 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Tensei Shitara Slime Datta Ken 3Rd Season - 65 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Tensei Shitara Slime Datta Ken 3Rd Season - 65 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Nekomoe kissaten&LoliHouse] Sousou no Frieren - 28 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "filename": "[Nekomoe kissaten&LoliHouse] Sousou no Frieren - 28 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Nekomoe Kissaten&Lolihouse] Sousou No Frieren - 28 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Nekomoe Kissaten&Lolihouse] Sousou No Frieren - 28 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/【搬运】[我的妻子没有感情][僕の妻は感情がない][01][1080P][繁体]/【搬运】[我的妻子没有感情][僕の妻は感情がない][01][1080P][繁体].mp4", + "filename": "【搬运】[我的妻子没有感情][僕の妻は感情がない][01][1080P][繁体].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "【搬运】[我的妻子没有感情][僕の妻は感情がない][01][1080P][繁体]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "【搬运】[我的妻子没有感情][僕の妻は感情がない][01][1080P][繁体]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 遲早是最強的鍊金術師? - 06 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 遲早是最強的鍊金術師? - 06 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 遲早是最強的鍊金術師? - 06 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 遲早是最強的鍊金術師? - 06 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[SweetSub] CENCOROLL CONNECT [BDRip][1080P][AVC 8bit][CHT]/[SweetSub] CENCOROLL CONNECT [BDRip][1080P][AVC 8bit][CHT].mp4", + "filename": "[SweetSub] CENCOROLL CONNECT [BDRip][1080P][AVC 8bit][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Sweetsub] Cencoroll Connect [Bdrip][1080P][Avc 8Bit][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Sweetsub] Cencoroll Connect [Bdrip][1080P][Avc 8Bit][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] Re:從零開始的異世界生活 第三季 - 14 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] Re:從零開始的異世界生活 第三季 - 14 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] Re:從零開始的異世界生活 第三季 - 14 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] Re:從零開始的異世界生活 第三季 - 14 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Nekomoe kissaten][Silent Witch - Chinmoku no Majo no Kakushigoto][01][1080p][JPTC].mp4", + "filename": "[Nekomoe kissaten][Silent Witch - Chinmoku no Majo no Kakushigoto][01][1080p][JPTC].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Nekomoe Kissaten][Silent Witch - Chinmoku No Majo No Kakushigoto][01][1080P][Jptc]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Nekomoe Kissaten][Silent Witch - Chinmoku No Majo No Kakushigoto][01][1080P][Jptc]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Nekomoe kissaten][Tower of God S2][12][1080p][CHS].mp4", + "filename": "[Nekomoe kissaten][Tower of God S2][12][1080p][CHS].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Nekomoe Kissaten][Tower Of God S2][12][1080P][Chs]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Nekomoe Kissaten][Tower Of God S2][12][1080P][Chs]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[KitaujiSub&LoliHouse] Suicide Squad Isekai - 09 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "filename": "[KitaujiSub&LoliHouse] Suicide Squad Isekai - 09 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Kitaujisub&Lolihouse] Suicide Squad Isekai - 09 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Kitaujisub&Lolihouse] Suicide Squad Isekai - 09 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 新人大叔冒險者,被最強隊伍操到死成無敵 - 12 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 新人大叔冒險者,被最強隊伍操到死成無敵 - 12 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 新人大叔冒險者,被最強隊伍操到死成無敵 - 12 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 新人大叔冒險者,被最強隊伍操到死成無敵 - 12 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 身為暗殺者的我明顯比勇者還強 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 身為暗殺者的我明顯比勇者還強 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 身為暗殺者的我明顯比勇者還強 - 01 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 身為暗殺者的我明顯比勇者還強 - 01 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 我要【招架】一切~反誤解的世界最強想成為冒險家~ - 10 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 我要【招架】一切~反誤解的世界最強想成為冒險家~ - 10 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 我要【招架】一切~反誤解的世界最強想成為冒險家~ - 10 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 我要【招架】一切~反誤解的世界最強想成為冒險家~ - 10 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 素材採集家的異世界旅行記 - 03 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 素材採集家的異世界旅行記 - 03 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 素材採集家的異世界旅行記 - 03 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 素材採集家的異世界旅行記 - 03 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Eternal][Modaete yo, Adam-kun][06][GB][720P][Uncensored].mp4", + "filename": "[Eternal][Modaete yo, Adam-kun][06][GB][720P][Uncensored].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Eternal][Modaete Yo, Adam-Kun][06][Gb][720P][Uncensored]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Eternal][Modaete Yo, Adam-Kun][06][Gb][720P][Uncensored]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Secret.Level.S01.1080p.AMZN.WEB-DL.DDP5.1.Atmos.H.264-FLUX/Secret.Level.S01E11.Exodus.Odyssey.1080p.AMZN.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv", + "filename": "Secret.Level.S01E11.Exodus.Odyssey.1080p.AMZN.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Secret Level S01E11 Exodus Odyssey 1080P Amzn Web-Dl Ddp5 1 Atmos H 264-Flux", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Secret Level S01E11 Exodus Odyssey 1080P Amzn Web-Dl Ddp5 1 Atmos H 264-Flux", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Secret.Level.S01.1080p.AMZN.WEB-DL.DDP5.1.Atmos.H.264-FLUX/Secret.Level.S01E10.Mega.Man.Start.1080p.AMZN.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv", + "filename": "Secret.Level.S01E10.Mega.Man.Start.1080p.AMZN.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Secret Level S01E10 Mega Man Start 1080P Amzn Web-Dl Ddp5 1 Atmos H 264-Flux", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Secret Level S01E10 Mega Man Start 1080P Amzn Web-Dl Ddp5 1 Atmos H 264-Flux", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Secret.Level.S01.1080p.AMZN.WEB-DL.DDP5.1.Atmos.H.264-FLUX/Secret.Level.S01E14.Honor.of.Kings.The.Way.of.All.Things.1080p.AMZN.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv", + "filename": "Secret.Level.S01E14.Honor.of.Kings.The.Way.of.All.Things.1080p.AMZN.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Secret Level S01E14 Honor Of Kings The Way Of All Things 1080P Amzn Web-Dl Ddp5 1 Atmos H 264-Flux", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Secret Level S01E14 Honor Of Kings The Way Of All Things 1080P Amzn Web-Dl Ddp5 1 Atmos H 264-Flux", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Secret.Level.S01.1080p.AMZN.WEB-DL.DDP5.1.Atmos.H.264-FLUX/Secret.Level.S01E07.Crossfire.Good.Conflict.1080p.AMZN.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv", + "filename": "Secret.Level.S01E07.Crossfire.Good.Conflict.1080p.AMZN.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Secret Level S01E07 Crossfire Good Conflict 1080P Amzn Web-Dl Ddp5 1 Atmos H 264-Flux", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Secret Level S01E07 Crossfire Good Conflict 1080P Amzn Web-Dl Ddp5 1 Atmos H 264-Flux", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Secret.Level.S01.1080p.AMZN.WEB-DL.DDP5.1.Atmos.H.264-FLUX/Secret.Level.S01E13.Concord.Tale.of.the.Implacable.1080p.AMZN.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv", + "filename": "Secret.Level.S01E13.Concord.Tale.of.the.Implacable.1080p.AMZN.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Secret Level S01E13 Concord Tale Of The Implacable 1080P Amzn Web-Dl Ddp5 1 Atmos H 264-Flux", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Secret Level S01E13 Concord Tale Of The Implacable 1080P Amzn Web-Dl Ddp5 1 Atmos H 264-Flux", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Secret.Level.S01.1080p.AMZN.WEB-DL.DDP5.1.Atmos.H.264-FLUX/Secret.Level.S01E15.Playtime.Fulfillment.1080p.AMZN.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv", + "filename": "Secret.Level.S01E15.Playtime.Fulfillment.1080p.AMZN.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Secret Level S01E15 Playtime Fulfillment 1080P Amzn Web-Dl Ddp5 1 Atmos H 264-Flux", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Secret Level S01E15 Playtime Fulfillment 1080P Amzn Web-Dl Ddp5 1 Atmos H 264-Flux", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Secret.Level.S01.1080p.AMZN.WEB-DL.DDP5.1.Atmos.H.264-FLUX/Secret.Level.S01E04.Unreal.Tournament.Xan.1080p.AMZN.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv", + "filename": "Secret.Level.S01E04.Unreal.Tournament.Xan.1080p.AMZN.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Secret Level S01E04 Unreal Tournament Xan 1080P Amzn Web-Dl Ddp5 1 Atmos H 264-Flux", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Secret Level S01E04 Unreal Tournament Xan 1080P Amzn Web-Dl Ddp5 1 Atmos H 264-Flux", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Secret.Level.S01.1080p.AMZN.WEB-DL.DDP5.1.Atmos.H.264-FLUX/Secret.Level.S01E06.PAC-MAN.Circle.1080p.AMZN.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv", + "filename": "Secret.Level.S01E06.PAC-MAN.Circle.1080p.AMZN.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Secret Level S01E06 Pac-Man Circle 1080P Amzn Web-Dl Ddp5 1 Atmos H 264-Flux", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Secret Level S01E06 Pac-Man Circle 1080P Amzn Web-Dl Ddp5 1 Atmos H 264-Flux", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Secret.Level.S01.1080p.AMZN.WEB-DL.DDP5.1.Atmos.H.264-FLUX/Secret.Level.S01E08.Armored.Core.Asset.Management.1080p.AMZN.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv", + "filename": "Secret.Level.S01E08.Armored.Core.Asset.Management.1080p.AMZN.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Secret Level S01E08 Armored Core Asset Management 1080P Amzn Web-Dl Ddp5 1 Atmos H 264-Flux", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Secret Level S01E08 Armored Core Asset Management 1080P Amzn Web-Dl Ddp5 1 Atmos H 264-Flux", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Secret.Level.S01.1080p.AMZN.WEB-DL.DDP5.1.Atmos.H.264-FLUX/Secret.Level.S01E01.Dungeons.and.Dragons.The.Queens.Cradle.1080p.AMZN.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv", + "filename": "Secret.Level.S01E01.Dungeons.and.Dragons.The.Queens.Cradle.1080p.AMZN.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Secret Level S01E01 Dungeons And Dragons The Queens Cradle 1080P Amzn Web-Dl Ddp5 1 Atmos H 264-Flux", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Secret Level S01E01 Dungeons And Dragons The Queens Cradle 1080P Amzn Web-Dl Ddp5 1 Atmos H 264-Flux", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Secret.Level.S01.1080p.AMZN.WEB-DL.DDP5.1.Atmos.H.264-FLUX/Secret.Level.S01E05.Warhammer.40000.And.They.Shall.Know.No.Fear.1080p.AMZN.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv", + "filename": "Secret.Level.S01E05.Warhammer.40000.And.They.Shall.Know.No.Fear.1080p.AMZN.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Secret Level S01E05 Warhammer 40000 And They Shall Know No Fear 1080P Amzn Web-Dl Ddp5 1 Atmos H 264-Flux", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Secret Level S01E05 Warhammer 40000 And They Shall Know No Fear 1080P Amzn Web-Dl Ddp5 1 Atmos H 264-Flux", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Secret.Level.S01.1080p.AMZN.WEB-DL.DDP5.1.Atmos.H.264-FLUX/Secret.Level.S01E03.New.World.The.Once.and.Future.King.1080p.AMZN.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv", + "filename": "Secret.Level.S01E03.New.World.The.Once.and.Future.King.1080p.AMZN.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Secret Level S01E03 New World The Once And Future King 1080P Amzn Web-Dl Ddp5 1 Atmos H 264-Flux", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Secret Level S01E03 New World The Once And Future King 1080P Amzn Web-Dl Ddp5 1 Atmos H 264-Flux", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Secret.Level.S01.1080p.AMZN.WEB-DL.DDP5.1.Atmos.H.264-FLUX/Secret.Level.S01E02.Sifu.It.Takes.a.Life.1080p.AMZN.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv", + "filename": "Secret.Level.S01E02.Sifu.It.Takes.a.Life.1080p.AMZN.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Secret Level S01E02 Sifu It Takes A Life 1080P Amzn Web-Dl Ddp5 1 Atmos H 264-Flux", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Secret Level S01E02 Sifu It Takes A Life 1080P Amzn Web-Dl Ddp5 1 Atmos H 264-Flux", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Secret.Level.S01.1080p.AMZN.WEB-DL.DDP5.1.Atmos.H.264-FLUX/Secret.Level.S01E12.Spelunky.Tally.1080p.AMZN.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv", + "filename": "Secret.Level.S01E12.Spelunky.Tally.1080p.AMZN.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Secret Level S01E12 Spelunky Tally 1080P Amzn Web-Dl Ddp5 1 Atmos H 264-Flux", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Secret Level S01E12 Spelunky Tally 1080P Amzn Web-Dl Ddp5 1 Atmos H 264-Flux", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Secret.Level.S01.1080p.AMZN.WEB-DL.DDP5.1.Atmos.H.264-FLUX/Secret.Level.S01E09.The.Outer.Worlds.The.Company.We.Keep.1080p.AMZN.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv", + "filename": "Secret.Level.S01E09.The.Outer.Worlds.The.Company.We.Keep.1080p.AMZN.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Secret Level S01E09 The Outer Worlds The Company We Keep 1080P Amzn Web-Dl Ddp5 1 Atmos H 264-Flux", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Secret Level S01E09 The Outer Worlds The Company We Keep 1080P Amzn Web-Dl Ddp5 1 Atmos H 264-Flux", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Baki.2018.S01.Part2.NF.1080p.WEB-DL.AAC.H.264@BWE/[第 2 部分.Ep14] 刃牙 - 不被允许的自由.mkv", + "filename": "[第 2 部分.Ep14] 刃牙 - 不被允许的自由.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[第 2 部分 Ep14] 刃牙 - 不被允许的自由", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[第 2 部分 Ep14] 刃牙 - 不被允许的自由", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Baki.2018.S01.Part2.NF.1080p.WEB-DL.AAC.H.264@BWE/[第 2 部分.Ep24] 刃牙 - 败北.mkv", + "filename": "[第 2 部分.Ep24] 刃牙 - 败北.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[第 2 部分 Ep24] 刃牙 - 败北", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[第 2 部分 Ep24] 刃牙 - 败北", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Baki.2018.S01.Part2.NF.1080p.WEB-DL.AAC.H.264@BWE/[第 2 部分.Ep18] 刃牙 - 谢谢.mkv", + "filename": "[第 2 部分.Ep18] 刃牙 - 谢谢.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[第 2 部分 Ep18] 刃牙 - 谢谢", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[第 2 部分 Ep18] 刃牙 - 谢谢", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Baki.2018.S01.Part2.NF.1080p.WEB-DL.AAC.H.264@BWE/[第 2 部分.Ep22] 刃牙 - 超雄对决.mkv", + "filename": "[第 2 部分.Ep22] 刃牙 - 超雄对决.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[第 2 部分 Ep22] 刃牙 - 超雄对决", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[第 2 部分 Ep22] 刃牙 - 超雄对决", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Baki.2018.S01.Part2.NF.1080p.WEB-DL.AAC.H.264@BWE/[第 2 部分.Ep20] 刃牙 - SAGA.mkv", + "filename": "[第 2 部分.Ep20] 刃牙 - SAGA.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[第 2 部分 Ep20] 刃牙 - Saga", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[第 2 部分 Ep20] 刃牙 - Saga", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Baki.2018.S01.Part2.NF.1080p.WEB-DL.AAC.H.264@BWE/[第 2 部分.Ep23] 刃牙 - 动真格的攻击.mkv", + "filename": "[第 2 部分.Ep23] 刃牙 - 动真格的攻击.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[第 2 部分 Ep23] 刃牙 - 动真格的攻击", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[第 2 部分 Ep23] 刃牙 - 动真格的攻击", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Baki.2018.S01.Part2.NF.1080p.WEB-DL.AAC.H.264@BWE/[第 2 部分.Ep26] 刃牙 - 大擂台赛.mkv", + "filename": "[第 2 部分.Ep26] 刃牙 - 大擂台赛.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[第 2 部分 Ep26] 刃牙 - 大擂台赛", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[第 2 部分 Ep26] 刃牙 - 大擂台赛", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Baki.2018.S01.Part2.NF.1080p.WEB-DL.AAC.H.264@BWE/[第 2 部分.Ep19] 刃牙 - 你要认输吗?.mkv", + "filename": "[第 2 部分.Ep19] 刃牙 - 你要认输吗?.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[第 2 部分 Ep19] 刃牙 - 你要认输吗?", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[第 2 部分 Ep19] 刃牙 - 你要认输吗?", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Baki.2018.S01.Part2.NF.1080p.WEB-DL.AAC.H.264@BWE/[第 2 部分.Ep25] 刃牙 - 神与鬼.mkv", + "filename": "[第 2 部分.Ep25] 刃牙 - 神与鬼.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[第 2 部分 Ep25] 刃牙 - 神与鬼", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[第 2 部分 Ep25] 刃牙 - 神与鬼", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Baki.2018.S01.Part2.NF.1080p.WEB-DL.AAC.H.264@BWE/[第 2 部分.Ep17] 刃牙 - 父亲!!.mkv", + "filename": "[第 2 部分.Ep17] 刃牙 - 父亲!!.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[第 2 部分 Ep17] 刃牙 - 父亲!!", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[第 2 部分 Ep17] 刃牙 - 父亲!!", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Baki.2018.S01.Part2.NF.1080p.WEB-DL.AAC.H.264@BWE/[第 2 部分.Ep21] 刃牙 - 制裁.mkv", + "filename": "[第 2 部分.Ep21] 刃牙 - 制裁.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[第 2 部分 Ep21] 刃牙 - 制裁", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[第 2 部分 Ep21] 刃牙 - 制裁", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Baki.2018.S01.Part2.NF.1080p.WEB-DL.AAC.H.264@BWE/[第 2 部分.Ep15] 刃牙 - 超级体力.mkv", + "filename": "[第 2 部分.Ep15] 刃牙 - 超级体力.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[第 2 部分 Ep15] 刃牙 - 超级体力", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[第 2 部分 Ep15] 刃牙 - 超级体力", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Baki.2018.S01.Part2.NF.1080p.WEB-DL.AAC.H.264@BWE/[第 2 部分.Ep16] 刃牙 - 斩击.mkv", + "filename": "[第 2 部分.Ep16] 刃牙 - 斩击.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[第 2 部分 Ep16] 刃牙 - 斩击", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[第 2 部分 Ep16] 刃牙 - 斩击", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 我獨自升級 第二季 -起於闇影- - 15 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 我獨自升級 第二季 -起於闇影- - 15 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 我獨自升級 第二季 -起於闇影- - 15 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 我獨自升級 第二季 -起於闇影- - 15 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 小手指同學,請別亂摸 [年齡限制版] - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 小手指同學,請別亂摸 [年齡限制版] - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 小手指同學,請別亂摸 [年齡限制版] - 01 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 小手指同學,請別亂摸 [年齡限制版] - 01 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] WIND BREAKER—防風少年— - 06 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] WIND BREAKER—防風少年— - 06 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] Wind Breaker—防風少年— - 06 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] Wind Breaker—防風少年— - 06 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 新人大叔冒險者,被最強隊伍操到死成無敵 - 09 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 新人大叔冒險者,被最強隊伍操到死成無敵 - 09 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 新人大叔冒險者,被最強隊伍操到死成無敵 - 09 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 新人大叔冒險者,被最強隊伍操到死成無敵 - 09 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 青梅竹馬的戀愛喜劇無法成立 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 青梅竹馬的戀愛喜劇無法成立 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 青梅竹馬的戀愛喜劇無法成立 - 01 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 青梅竹馬的戀愛喜劇無法成立 - 01 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/《BLEACH 死神 千年血戰篇》#12/《BLEACH 死神 千年血戰篇》#12 (日語原聲)【Ani-One Asia ULTRA】.mp4", + "filename": "《BLEACH 死神 千年血戰篇》#12 (日語原聲)【Ani-One Asia ULTRA】.mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "《Bleach 死神 千年血戰篇》#12 (日語原聲)【Ani-One Asia Ultra】", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "《Bleach 死神 千年血戰篇》#12 (日語原聲)【Ani-One Asia Ultra】", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Class no Daikirai na Joshi to Kekkon suru Koto ni Natta. - 07 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "filename": "[LoliHouse] Class no Daikirai na Joshi to Kekkon suru Koto ni Natta. - 07 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Class No Daikirai Na Joshi To Kekkon Suru Koto Ni Natta - 07 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Class No Daikirai Na Joshi To Kekkon Suru Koto Ni Natta - 07 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 使人誤解的工房主~關於原英雄隊伍的雜役人員,實際上除了戰鬥能力外全是SSS的故事~ - 06 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 使人誤解的工房主~關於原英雄隊伍的雜役人員,實際上除了戰鬥能力外全是SSS的故事~ - 06 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 使人誤解的工房主~關於原英雄隊伍的雜役人員,實際上除了戰鬥能力外全是Sss的故事~ - 06 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 使人誤解的工房主~關於原英雄隊伍的雜役人員,實際上除了戰鬥能力外全是Sss的故事~ - 06 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[HYSUB]Dungeon Meshi[03][BIG5_MP4][1920X1080].mp4", + "filename": "[HYSUB]Dungeon Meshi[03][BIG5_MP4][1920X1080].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Hysub]Dungeon Meshi[03][Big5 Mp4][1920X1080]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Hysub]Dungeon Meshi[03][Big5 Mp4][1920X1080]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 最後可以再拜託您一件事嗎? - 10 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 最後可以再拜託您一件事嗎? - 10 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 最後可以再拜託您一件事嗎? - 10 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 最後可以再拜託您一件事嗎? - 10 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] GNOSIA - 05 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] GNOSIA - 05 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] Gnosia - 05 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] Gnosia - 05 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 膽大黨 - 10 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 膽大黨 - 10 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 膽大黨 - 10 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 膽大黨 - 10 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Oooku [WebRip 1080p HEVC-10bit AAC]/[LoliHouse] Oooku - 09 [WebRip 1080p HEVC-10bit AAC SRTx4].mkv", + "filename": "[LoliHouse] Oooku - 09 [WebRip 1080p HEVC-10bit AAC SRTx4].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Oooku - 09 [Webrip 1080P Hevc-10Bit Aac Srtx4]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Oooku - 09 [Webrip 1080P Hevc-10Bit Aac Srtx4]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Oooku [WebRip 1080p HEVC-10bit AAC]/[LoliHouse] Oooku - 01 [WebRip 1080p HEVC-10bit AAC SRTx4].mkv", + "filename": "[LoliHouse] Oooku - 01 [WebRip 1080p HEVC-10bit AAC SRTx4].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Oooku - 01 [Webrip 1080P Hevc-10Bit Aac Srtx4]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Oooku - 01 [Webrip 1080P Hevc-10Bit Aac Srtx4]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Oooku [WebRip 1080p HEVC-10bit AAC]/[LoliHouse] Oooku - 05 [WebRip 1080p HEVC-10bit AAC SRTx4].mkv", + "filename": "[LoliHouse] Oooku - 05 [WebRip 1080p HEVC-10bit AAC SRTx4].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Oooku - 05 [Webrip 1080P Hevc-10Bit Aac Srtx4]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Oooku - 05 [Webrip 1080P Hevc-10Bit Aac Srtx4]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Oooku [WebRip 1080p HEVC-10bit AAC]/[LoliHouse] Oooku - 04 [WebRip 1080p HEVC-10bit AAC SRTx4].mkv", + "filename": "[LoliHouse] Oooku - 04 [WebRip 1080p HEVC-10bit AAC SRTx4].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Oooku - 04 [Webrip 1080P Hevc-10Bit Aac Srtx4]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Oooku - 04 [Webrip 1080P Hevc-10Bit Aac Srtx4]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Oooku [WebRip 1080p HEVC-10bit AAC]/[LoliHouse] Oooku - 08 [WebRip 1080p HEVC-10bit AAC SRTx4].mkv", + "filename": "[LoliHouse] Oooku - 08 [WebRip 1080p HEVC-10bit AAC SRTx4].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Oooku - 08 [Webrip 1080P Hevc-10Bit Aac Srtx4]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Oooku - 08 [Webrip 1080P Hevc-10Bit Aac Srtx4]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Oooku [WebRip 1080p HEVC-10bit AAC]/[LoliHouse] Oooku - 02 [WebRip 1080p HEVC-10bit AAC SRTx4].mkv", + "filename": "[LoliHouse] Oooku - 02 [WebRip 1080p HEVC-10bit AAC SRTx4].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Oooku - 02 [Webrip 1080P Hevc-10Bit Aac Srtx4]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Oooku - 02 [Webrip 1080P Hevc-10Bit Aac Srtx4]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Oooku [WebRip 1080p HEVC-10bit AAC]/[LoliHouse] Oooku - 06 [WebRip 1080p HEVC-10bit AAC SRTx4].mkv", + "filename": "[LoliHouse] Oooku - 06 [WebRip 1080p HEVC-10bit AAC SRTx4].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Oooku - 06 [Webrip 1080P Hevc-10Bit Aac Srtx4]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Oooku - 06 [Webrip 1080P Hevc-10Bit Aac Srtx4]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Oooku [WebRip 1080p HEVC-10bit AAC]/[LoliHouse] Oooku - 10 [WebRip 1080p HEVC-10bit AAC SRTx4].mkv", + "filename": "[LoliHouse] Oooku - 10 [WebRip 1080p HEVC-10bit AAC SRTx4].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Oooku - 10 [Webrip 1080P Hevc-10Bit Aac Srtx4]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Oooku - 10 [Webrip 1080P Hevc-10Bit Aac Srtx4]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Oooku [WebRip 1080p HEVC-10bit AAC]/[LoliHouse] Oooku - 03 [WebRip 1080p HEVC-10bit AAC SRTx4].mkv", + "filename": "[LoliHouse] Oooku - 03 [WebRip 1080p HEVC-10bit AAC SRTx4].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Oooku - 03 [Webrip 1080P Hevc-10Bit Aac Srtx4]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Oooku - 03 [Webrip 1080P Hevc-10Bit Aac Srtx4]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Oooku [WebRip 1080p HEVC-10bit AAC]/[LoliHouse] Oooku - 07 [WebRip 1080p HEVC-10bit AAC SRTx4].mkv", + "filename": "[LoliHouse] Oooku - 07 [WebRip 1080p HEVC-10bit AAC SRTx4].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Oooku - 07 [Webrip 1080P Hevc-10Bit Aac Srtx4]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Oooku - 07 [Webrip 1080P Hevc-10Bit Aac Srtx4]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 膽大黨 第二季 - 22 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 膽大黨 第二季 - 22 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 膽大黨 第二季 - 22 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 膽大黨 第二季 - 22 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 靠廢柴技能【狀態異常】成為最強的我將蹂躪一切 - 04 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 靠廢柴技能【狀態異常】成為最強的我將蹂躪一切 - 04 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 靠廢柴技能【狀態異常】成為最強的我將蹂躪一切 - 04 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 靠廢柴技能【狀態異常】成為最強的我將蹂躪一切 - 04 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[orion origin] Boukyaku Battery [05] [1080p] [H265 AAC] [CHT&JPN].mp4", + "filename": "[orion origin] Boukyaku Battery [05] [1080p] [H265 AAC] [CHT&JPN].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Orion Origin] Boukyaku Battery [05] [1080P] [H265 Aac] [Cht&Jpn]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Orion Origin] Boukyaku Battery [05] [1080P] [H265 Aac] [Cht&Jpn]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Beheneko - 01 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "filename": "[LoliHouse] Beheneko - 01 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Beheneko - 01 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Beheneko - 01 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[BeanSub&FZSD][Kimetsu_no_Yaiba][61][GB][1080P][x264_AAC].mp4", + "filename": "[BeanSub&FZSD][Kimetsu_no_Yaiba][61][GB][1080P][x264_AAC].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Beansub&Fzsd][Kimetsu No Yaiba][61][Gb][1080P][X264 Aac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Beansub&Fzsd][Kimetsu No Yaiba][61][Gb][1080P][X264 Aac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Skymoon-Raws] Kaguya-sama wa Kokurasetai S03 - 08 [ViuTV][WEB-DL][CHT][1080p][AVC AAC][MP4+ASS]/[Skymoon-Raws] Kaguya-sama wa Kokurasetai S03 - 08 [ViuTV][WEB-DL][1080p][AVC AAC].mp4", + "filename": "[Skymoon-Raws] Kaguya-sama wa Kokurasetai S03 - 08 [ViuTV][WEB-DL][1080p][AVC AAC].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Skymoon-Raws] Kaguya-Sama Wa Kokurasetai S03 - 08 [Viutv][Web-Dl][1080P][Avc Aac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Skymoon-Raws] Kaguya-Sama Wa Kokurasetai S03 - 08 [Viutv][Web-Dl][1080P][Avc Aac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Nekomoe kissaten][Ninja Kamui][09][1080p][CHT].mp4", + "filename": "[Nekomoe kissaten][Ninja Kamui][09][1080p][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Nekomoe Kissaten][Ninja Kamui][09][1080P][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Nekomoe Kissaten][Ninja Kamui][09][1080P][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Party kara Tsuihou sareta Sono Chiyushi, Jitsu wa Saikyou ni Tsuki - 04 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "filename": "[LoliHouse] Party kara Tsuihou sareta Sono Chiyushi, Jitsu wa Saikyou ni Tsuki - 04 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Party Kara Tsuihou Sareta Sono Chiyushi, Jitsu Wa Saikyou Ni Tsuki - 04 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Party Kara Tsuihou Sareta Sono Chiyushi, Jitsu Wa Saikyou Ni Tsuki - 04 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 和雨.和你 - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 和雨.和你 - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 和雨.和你 - 02 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 和雨.和你 - 02 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Nekomoe kissaten&LoliHouse] Dungeon Meshi - 12 [WebRip 1080p HEVC-10bit AAC EAC3 ASSx2].mkv", + "filename": "[Nekomoe kissaten&LoliHouse] Dungeon Meshi - 12 [WebRip 1080p HEVC-10bit AAC EAC3 ASSx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Nekomoe Kissaten&Lolihouse] Dungeon Meshi - 12 [Webrip 1080P Hevc-10Bit Aac Eac3 Assx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Nekomoe Kissaten&Lolihouse] Dungeon Meshi - 12 [Webrip 1080P Hevc-10Bit Aac Eac3 Assx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Re Monster - 10 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "filename": "[LoliHouse] Re Monster - 10 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Re Monster - 10 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Re Monster - 10 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Ore dake Level Up na Ken - 16 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "filename": "[LoliHouse] Ore dake Level Up na Ken - 16 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Ore Dake Level Up Na Ken - 16 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Ore Dake Level Up Na Ken - 16 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru no Darou ka V - Hoojou no Megami-hen - 14 [ViuTV][WEB-DL][CHT][SRT][1080p][AVC AAC].mkv", + "filename": "[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru no Darou ka V - Hoojou no Megami-hen - 14 [ViuTV][WEB-DL][CHT][SRT][1080p][AVC AAC].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Skymoon-Raws] Dungeon Ni Deai Wo Motomeru No Wa Machigatteiru No Darou Ka V - Hoojou No Megami-Hen - 14 [Viutv][Web-Dl][Cht][Srt][1080P][Avc Aac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Skymoon-Raws] Dungeon Ni Deai Wo Motomeru No Wa Machigatteiru No Darou Ka V - Hoojou No Megami-Hen - 14 [Viutv][Web-Dl][Cht][Srt][1080P][Avc Aac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 戀上換裝娃娃 Season 2 - 24 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 戀上換裝娃娃 Season 2 - 24 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 戀上換裝娃娃 Season 2 - 24 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 戀上換裝娃娃 Season 2 - 24 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Tensei Shitara Slime Datta Ken 3rd Season - 51 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "filename": "[LoliHouse] Tensei Shitara Slime Datta Ken 3rd Season - 51 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Tensei Shitara Slime Datta Ken 3Rd Season - 51 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Tensei Shitara Slime Datta Ken 3Rd Season - 51 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Kaijuu 8-gou - 14 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "filename": "[LoliHouse] Kaijuu 8-gou - 14 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Kaijuu 8-Gou - 14 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Kaijuu 8-Gou - 14 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Nekomoe kissaten][Ao no Hako][22][1080p][JPSC].mp4", + "filename": "[Nekomoe kissaten][Ao no Hako][22][1080p][JPSC].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Nekomoe Kissaten][Ao No Hako][22][1080P][Jpsc]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Nekomoe Kissaten][Ao No Hako][22][1080P][Jpsc]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 貫徹輔助魔法支援弱小隊友的宮廷魔法師,慘遭驅逐後目標成為最強冒險者 - 11 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 貫徹輔助魔法支援弱小隊友的宮廷魔法師,慘遭驅逐後目標成為最強冒險者 - 11 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 貫徹輔助魔法支援弱小隊友的宮廷魔法師,慘遭驅逐後目標成為最強冒險者 - 11 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 貫徹輔助魔法支援弱小隊友的宮廷魔法師,慘遭驅逐後目標成為最強冒險者 - 11 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 轉生貴族憑鑑定技能扭轉人生 - 06 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 轉生貴族憑鑑定技能扭轉人生 - 06 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 轉生貴族憑鑑定技能扭轉人生 - 06 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 轉生貴族憑鑑定技能扭轉人生 - 06 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Sakurato] Modaete yo, Adam-kun [01][AVC-8bit 1080p AAC][CHT].mp4", + "filename": "[Sakurato] Modaete yo, Adam-kun [01][AVC-8bit 1080p AAC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Sakurato] Modaete Yo, Adam-Kun [01][Avc-8Bit 1080P Aac][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Sakurato] Modaete Yo, Adam-Kun [01][Avc-8Bit 1080P Aac][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Around 40 Otoko no Isekai Tsuuhan - 03 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "filename": "[LoliHouse] Around 40 Otoko no Isekai Tsuuhan - 03 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Around 40 Otoko No Isekai Tsuuhan - 03 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Around 40 Otoko No Isekai Tsuuhan - 03 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "needs_review": true + }, + { + "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", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 醜男真戰士 - 05 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 醜男真戰士 - 05 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 因為不是真正的夥伴而被逐出勇者隊伍,流落到邊境展開慢活人生 第二季(僅限港澳台地區) - 01 [1080P][Bilibili][WEB-DL][AAC AVC][CHT CHS][V2].mp4", + "filename": "[ANi] 因為不是真正的夥伴而被逐出勇者隊伍,流落到邊境展開慢活人生 第二季(僅限港澳台地區) - 01 [1080P][Bilibili][WEB-DL][AAC AVC][CHT CHS][V2].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 因為不是真正的夥伴而被逐出勇者隊伍,流落到邊境展開慢活人生 第二季(僅限港澳台地區) - 01 [1080P][Bilibili][Web-Dl][Aac Avc][Cht Chs][V2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 因為不是真正的夥伴而被逐出勇者隊伍,流落到邊境展開慢活人生 第二季(僅限港澳台地區) - 01 [1080P][Bilibili][Web-Dl][Aac Avc][Cht Chs][V2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Nekomoe kissaten][Chi. Chikyuu no Undou ni Tsuite][06][1080p][JPSC].mp4", + "filename": "[Nekomoe kissaten][Chi. Chikyuu no Undou ni Tsuite][06][1080p][JPSC].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Nekomoe Kissaten][Chi Chikyuu No Undou Ni Tsuite][06][1080P][Jpsc]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Nekomoe Kissaten][Chi Chikyuu No Undou Ni Tsuite][06][1080P][Jpsc]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 勇氣爆發 BANG BRAVERN - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 勇氣爆發 BANG BRAVERN - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 勇氣爆發 Bang Bravern - 01 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 勇氣爆發 Bang Bravern - 01 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 地獄模式 ~喜歡挑戰特殊成就的玩家在廢設定的異世界成為無雙~ - 03 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 地獄模式 ~喜歡挑戰特殊成就的玩家在廢設定的異世界成為無雙~ - 03 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 地獄模式 ~喜歡挑戰特殊成就的玩家在廢設定的異世界成為無雙~ - 03 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 地獄模式 ~喜歡挑戰特殊成就的玩家在廢設定的異世界成為無雙~ - 03 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[BeanSub&FZSD][Kimetsu_no_Yaiba][56][BIG5][1080P][x264_AAC].mp4", + "filename": "[BeanSub&FZSD][Kimetsu_no_Yaiba][56][BIG5][1080P][x264_AAC].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Beansub&Fzsd][Kimetsu No Yaiba][56][Big5][1080P][X264 Aac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Beansub&Fzsd][Kimetsu No Yaiba][56][Big5][1080P][X264 Aac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[HYSUB]The Fable[01][BIG5_MP4][1920X1080].mp4", + "filename": "[HYSUB]The Fable[01][BIG5_MP4][1920X1080].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Hysub]The Fable[01][Big5 Mp4][1920X1080]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Hysub]The Fable[01][Big5 Mp4][1920X1080]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Mato Seihei no Slave [01-12][WebRip 1080p HEVC-10bit AAC]/[LoliHouse] Mato Seihei no Slave - 08 [WebRip 1080p HEVC-10bit AAC SRT].mkv", + "filename": "[LoliHouse] Mato Seihei no Slave - 08 [WebRip 1080p HEVC-10bit AAC SRT].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Mato Seihei No Slave - 08 [Webrip 1080P Hevc-10Bit Aac Srt]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Mato Seihei No Slave - 08 [Webrip 1080P Hevc-10Bit Aac Srt]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Mato Seihei no Slave [01-12][WebRip 1080p HEVC-10bit AAC]/[LoliHouse] Mato Seihei no Slave - 09 [WebRip 1080p HEVC-10bit AAC SRT].mkv", + "filename": "[LoliHouse] Mato Seihei no Slave - 09 [WebRip 1080p HEVC-10bit AAC SRT].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Mato Seihei No Slave - 09 [Webrip 1080P Hevc-10Bit Aac Srt]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Mato Seihei No Slave - 09 [Webrip 1080P Hevc-10Bit Aac Srt]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Mato Seihei no Slave [01-12][WebRip 1080p HEVC-10bit AAC]/[LoliHouse] Mato Seihei no Slave - 10 [WebRip 1080p HEVC-10bit AAC SRT].mkv", + "filename": "[LoliHouse] Mato Seihei no Slave - 10 [WebRip 1080p HEVC-10bit AAC SRT].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Mato Seihei No Slave - 10 [Webrip 1080P Hevc-10Bit Aac Srt]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Mato Seihei No Slave - 10 [Webrip 1080P Hevc-10Bit Aac Srt]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Mato Seihei no Slave [01-12][WebRip 1080p HEVC-10bit AAC]/[LoliHouse] Mato Seihei no Slave - 06 [WebRip 1080p HEVC-10bit AAC SRT].mkv", + "filename": "[LoliHouse] Mato Seihei no Slave - 06 [WebRip 1080p HEVC-10bit AAC SRT].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Mato Seihei No Slave - 06 [Webrip 1080P Hevc-10Bit Aac Srt]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Mato Seihei No Slave - 06 [Webrip 1080P Hevc-10Bit Aac Srt]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Mato Seihei no Slave [01-12][WebRip 1080p HEVC-10bit AAC]/[LoliHouse] Mato Seihei no Slave - 11 [WebRip 1080p HEVC-10bit AAC SRT].mkv", + "filename": "[LoliHouse] Mato Seihei no Slave - 11 [WebRip 1080p HEVC-10bit AAC SRT].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Mato Seihei No Slave - 11 [Webrip 1080P Hevc-10Bit Aac Srt]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Mato Seihei No Slave - 11 [Webrip 1080P Hevc-10Bit Aac Srt]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Mato Seihei no Slave [01-12][WebRip 1080p HEVC-10bit AAC]/[LoliHouse] Mato Seihei no Slave - 07 [WebRip 1080p HEVC-10bit AAC SRT].mkv", + "filename": "[LoliHouse] Mato Seihei no Slave - 07 [WebRip 1080p HEVC-10bit AAC SRT].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Mato Seihei No Slave - 07 [Webrip 1080P Hevc-10Bit Aac Srt]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Mato Seihei No Slave - 07 [Webrip 1080P Hevc-10Bit Aac Srt]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Mato Seihei no Slave [01-12][WebRip 1080p HEVC-10bit AAC]/[LoliHouse] Mato Seihei no Slave - 12 [WebRip 1080p HEVC-10bit AAC SRT].mkv", + "filename": "[LoliHouse] Mato Seihei no Slave - 12 [WebRip 1080p HEVC-10bit AAC SRT].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Mato Seihei No Slave - 12 [Webrip 1080P Hevc-10Bit Aac Srt]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Mato Seihei No Slave - 12 [Webrip 1080P Hevc-10Bit Aac Srt]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Mato Seihei no Slave [01-12][WebRip 1080p HEVC-10bit AAC]/[LoliHouse] Mato Seihei no Slave - 04 [WebRip 1080p HEVC-10bit AAC SRT].mkv", + "filename": "[LoliHouse] Mato Seihei no Slave - 04 [WebRip 1080p HEVC-10bit AAC SRT].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Mato Seihei No Slave - 04 [Webrip 1080P Hevc-10Bit Aac Srt]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Mato Seihei No Slave - 04 [Webrip 1080P Hevc-10Bit Aac Srt]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Mato Seihei no Slave [01-12][WebRip 1080p HEVC-10bit AAC]/[LoliHouse] Mato Seihei no Slave - 05 [WebRip 1080p HEVC-10bit AAC SRT].mkv", + "filename": "[LoliHouse] Mato Seihei no Slave - 05 [WebRip 1080p HEVC-10bit AAC SRT].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Mato Seihei No Slave - 05 [Webrip 1080P Hevc-10Bit Aac Srt]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Mato Seihei No Slave - 05 [Webrip 1080P Hevc-10Bit Aac Srt]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Mato Seihei no Slave [01-12][WebRip 1080p HEVC-10bit AAC]/[LoliHouse] Mato Seihei no Slave - 02 [WebRip 1080p HEVC-10bit AAC SRT].mkv", + "filename": "[LoliHouse] Mato Seihei no Slave - 02 [WebRip 1080p HEVC-10bit AAC SRT].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Mato Seihei No Slave - 02 [Webrip 1080P Hevc-10Bit Aac Srt]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Mato Seihei No Slave - 02 [Webrip 1080P Hevc-10Bit Aac Srt]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Mato Seihei no Slave [01-12][WebRip 1080p HEVC-10bit AAC]/[LoliHouse] Mato Seihei no Slave - 03 [WebRip 1080p HEVC-10bit AAC SRT].mkv", + "filename": "[LoliHouse] Mato Seihei no Slave - 03 [WebRip 1080p HEVC-10bit AAC SRT].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Mato Seihei No Slave - 03 [Webrip 1080P Hevc-10Bit Aac Srt]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Mato Seihei No Slave - 03 [Webrip 1080P Hevc-10Bit Aac Srt]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Mato Seihei no Slave [01-12][WebRip 1080p HEVC-10bit AAC]/[LoliHouse] Mato Seihei no Slave - 01 [WebRip 1080p HEVC-10bit AAC SRT].mkv", + "filename": "[LoliHouse] Mato Seihei no Slave - 01 [WebRip 1080p HEVC-10bit AAC SRT].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Mato Seihei No Slave - 01 [Webrip 1080P Hevc-10Bit Aac Srt]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Mato Seihei No Slave - 01 [Webrip 1080P Hevc-10Bit Aac Srt]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Skymoon-Raws] Kaguya-sama wa Kokurasetai S03 - 07 [ViuTV][WEB-DL][CHT][1080p][AVC AAC][MP4+ASS]/[Skymoon-Raws] Kaguya-sama wa Kokurasetai S03 - 07 [ViuTV][WEB-DL][1080p][AVC AAC].mp4", + "filename": "[Skymoon-Raws] Kaguya-sama wa Kokurasetai S03 - 07 [ViuTV][WEB-DL][1080p][AVC AAC].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Skymoon-Raws] Kaguya-Sama Wa Kokurasetai S03 - 07 [Viutv][Web-Dl][1080P][Avc Aac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Skymoon-Raws] Kaguya-Sama Wa Kokurasetai S03 - 07 [Viutv][Web-Dl][1080P][Avc Aac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Blue.Eye.Samurai.S01.2023.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-ADWeb/Blue.Eye.Samurai.S01E05.2023.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-ADWeb.mkv", + "filename": "Blue.Eye.Samurai.S01E05.2023.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-ADWeb.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Blue Eye Samurai S01E05 2023 1080P Nf Web-Dl X264 Ddp5 1 Atmos-Adweb", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Blue Eye Samurai S01E05 2023 1080P Nf Web-Dl X264 Ddp5 1 Atmos-Adweb", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Blue.Eye.Samurai.S01.2023.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-ADWeb/Blue.Eye.Samurai.S01E01.2023.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-ADWeb.mkv", + "filename": "Blue.Eye.Samurai.S01E01.2023.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-ADWeb.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Blue Eye Samurai S01E01 2023 1080P Nf Web-Dl X264 Ddp5 1 Atmos-Adweb", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Blue Eye Samurai S01E01 2023 1080P Nf Web-Dl X264 Ddp5 1 Atmos-Adweb", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Blue.Eye.Samurai.S01.2023.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-ADWeb/Blue.Eye.Samurai.S01E06.2023.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-ADWeb.mkv", + "filename": "Blue.Eye.Samurai.S01E06.2023.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-ADWeb.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Blue Eye Samurai S01E06 2023 1080P Nf Web-Dl X264 Ddp5 1 Atmos-Adweb", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Blue Eye Samurai S01E06 2023 1080P Nf Web-Dl X264 Ddp5 1 Atmos-Adweb", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Blue.Eye.Samurai.S01.2023.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-ADWeb/Blue.Eye.Samurai.S01E02.2023.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-ADWeb.mkv", + "filename": "Blue.Eye.Samurai.S01E02.2023.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-ADWeb.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Blue Eye Samurai S01E02 2023 1080P Nf Web-Dl X264 Ddp5 1 Atmos-Adweb", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Blue Eye Samurai S01E02 2023 1080P Nf Web-Dl X264 Ddp5 1 Atmos-Adweb", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Blue.Eye.Samurai.S01.2023.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-ADWeb/Blue.Eye.Samurai.S01E04.2023.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-ADWeb.mkv", + "filename": "Blue.Eye.Samurai.S01E04.2023.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-ADWeb.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Blue Eye Samurai S01E04 2023 1080P Nf Web-Dl X264 Ddp5 1 Atmos-Adweb", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Blue Eye Samurai S01E04 2023 1080P Nf Web-Dl X264 Ddp5 1 Atmos-Adweb", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Blue.Eye.Samurai.S01.2023.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-ADWeb/Blue.Eye.Samurai.S01E08.2023.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-ADWeb.mkv", + "filename": "Blue.Eye.Samurai.S01E08.2023.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-ADWeb.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Blue Eye Samurai S01E08 2023 1080P Nf Web-Dl X264 Ddp5 1 Atmos-Adweb", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Blue Eye Samurai S01E08 2023 1080P Nf Web-Dl X264 Ddp5 1 Atmos-Adweb", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Blue.Eye.Samurai.S01.2023.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-ADWeb/Blue.Eye.Samurai.S01E03.2023.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-ADWeb.mkv", + "filename": "Blue.Eye.Samurai.S01E03.2023.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-ADWeb.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Blue Eye Samurai S01E03 2023 1080P Nf Web-Dl X264 Ddp5 1 Atmos-Adweb", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Blue Eye Samurai S01E03 2023 1080P Nf Web-Dl X264 Ddp5 1 Atmos-Adweb", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Blue.Eye.Samurai.S01.2023.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-ADWeb/Blue.Eye.Samurai.S01E07.2023.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-ADWeb.mkv", + "filename": "Blue.Eye.Samurai.S01E07.2023.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-ADWeb.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Blue Eye Samurai S01E07 2023 1080P Nf Web-Dl X264 Ddp5 1 Atmos-Adweb", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Blue Eye Samurai S01E07 2023 1080P Nf Web-Dl X264 Ddp5 1 Atmos-Adweb", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Dont be a simp] Ore dake Level Up na Ken Season 2 - 01-13 [CR WebRip 1080p HEVC-10bit AAC Multi-Subs]/[Dont be a simp] Ore dake Level Up na Ken Season 2 - 12 [CR WebRip 1080p HEVC-10bit AAC Multi-Subs].mkv", + "filename": "[Dont be a simp] Ore dake Level Up na Ken Season 2 - 12 [CR WebRip 1080p HEVC-10bit AAC Multi-Subs].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Dont Be A Simp] Ore Dake Level Up Na Ken Season 2 - 12 [Cr Webrip 1080P Hevc-10Bit Aac Multi-Subs]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Dont Be A Simp] Ore Dake Level Up Na Ken Season 2 - 12 [Cr Webrip 1080P Hevc-10Bit Aac Multi-Subs]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Dont be a simp] Ore dake Level Up na Ken Season 2 - 01-13 [CR WebRip 1080p HEVC-10bit AAC Multi-Subs]/[Dont be a simp] Ore dake Level Up na Ken Season 2 - 06 [CR WebRip 1080p HEVC-10bit AAC Multi-Subs].mkv", + "filename": "[Dont be a simp] Ore dake Level Up na Ken Season 2 - 06 [CR WebRip 1080p HEVC-10bit AAC Multi-Subs].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Dont Be A Simp] Ore Dake Level Up Na Ken Season 2 - 06 [Cr Webrip 1080P Hevc-10Bit Aac Multi-Subs]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Dont Be A Simp] Ore Dake Level Up Na Ken Season 2 - 06 [Cr Webrip 1080P Hevc-10Bit Aac Multi-Subs]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Dont be a simp] Ore dake Level Up na Ken Season 2 - 01-13 [CR WebRip 1080p HEVC-10bit AAC Multi-Subs]/[Dont be a simp] Ore dake Level Up na Ken Season 2 - 13 [CR WebRip 1080p HEVC-10bit AAC Multi-Subs].mkv", + "filename": "[Dont be a simp] Ore dake Level Up na Ken Season 2 - 13 [CR WebRip 1080p HEVC-10bit AAC Multi-Subs].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Dont Be A Simp] Ore Dake Level Up Na Ken Season 2 - 13 [Cr Webrip 1080P Hevc-10Bit Aac Multi-Subs]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Dont Be A Simp] Ore Dake Level Up Na Ken Season 2 - 13 [Cr Webrip 1080P Hevc-10Bit Aac Multi-Subs]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Dont be a simp] Ore dake Level Up na Ken Season 2 - 01-13 [CR WebRip 1080p HEVC-10bit AAC Multi-Subs]/[Dont be a simp] Ore dake Level Up na Ken Season 2 - 07 [CR WebRip 1080p HEVC-10bit AAC Multi-Subs].mkv", + "filename": "[Dont be a simp] Ore dake Level Up na Ken Season 2 - 07 [CR WebRip 1080p HEVC-10bit AAC Multi-Subs].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Dont Be A Simp] Ore Dake Level Up Na Ken Season 2 - 07 [Cr Webrip 1080P Hevc-10Bit Aac Multi-Subs]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Dont Be A Simp] Ore Dake Level Up Na Ken Season 2 - 07 [Cr Webrip 1080P Hevc-10Bit Aac Multi-Subs]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Dont be a simp] Ore dake Level Up na Ken Season 2 - 01-13 [CR WebRip 1080p HEVC-10bit AAC Multi-Subs]/[Dont be a simp] Ore dake Level Up na Ken Season 2 - 01 [CR WebRip 1080p HEVC-10bit AAC Multi-Subs].mkv", + "filename": "[Dont be a simp] Ore dake Level Up na Ken Season 2 - 01 [CR WebRip 1080p HEVC-10bit AAC Multi-Subs].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Dont Be A Simp] Ore Dake Level Up Na Ken Season 2 - 01 [Cr Webrip 1080P Hevc-10Bit Aac Multi-Subs]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Dont Be A Simp] Ore Dake Level Up Na Ken Season 2 - 01 [Cr Webrip 1080P Hevc-10Bit Aac Multi-Subs]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Dont be a simp] Ore dake Level Up na Ken Season 2 - 01-13 [CR WebRip 1080p HEVC-10bit AAC Multi-Subs]/[Dont be a simp] Ore dake Level Up na Ken Season 2 - 04 [CR WebRip 1080p HEVC-10bit AAC Multi-Subs].mkv", + "filename": "[Dont be a simp] Ore dake Level Up na Ken Season 2 - 04 [CR WebRip 1080p HEVC-10bit AAC Multi-Subs].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Dont Be A Simp] Ore Dake Level Up Na Ken Season 2 - 04 [Cr Webrip 1080P Hevc-10Bit Aac Multi-Subs]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Dont Be A Simp] Ore Dake Level Up Na Ken Season 2 - 04 [Cr Webrip 1080P Hevc-10Bit Aac Multi-Subs]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Dont be a simp] Ore dake Level Up na Ken Season 2 - 01-13 [CR WebRip 1080p HEVC-10bit AAC Multi-Subs]/[Dont be a simp] Ore dake Level Up na Ken Season 2 - 09 [CR WebRip 1080p HEVC-10bit AAC Multi-Subs].mkv", + "filename": "[Dont be a simp] Ore dake Level Up na Ken Season 2 - 09 [CR WebRip 1080p HEVC-10bit AAC Multi-Subs].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Dont Be A Simp] Ore Dake Level Up Na Ken Season 2 - 09 [Cr Webrip 1080P Hevc-10Bit Aac Multi-Subs]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Dont Be A Simp] Ore Dake Level Up Na Ken Season 2 - 09 [Cr Webrip 1080P Hevc-10Bit Aac Multi-Subs]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Dont be a simp] Ore dake Level Up na Ken Season 2 - 01-13 [CR WebRip 1080p HEVC-10bit AAC Multi-Subs]/[Dont be a simp] Ore dake Level Up na Ken Season 2 - 10 [CR WebRip 1080p HEVC-10bit AAC Multi-Subs].mkv", + "filename": "[Dont be a simp] Ore dake Level Up na Ken Season 2 - 10 [CR WebRip 1080p HEVC-10bit AAC Multi-Subs].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Dont Be A Simp] Ore Dake Level Up Na Ken Season 2 - 10 [Cr Webrip 1080P Hevc-10Bit Aac Multi-Subs]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Dont Be A Simp] Ore Dake Level Up Na Ken Season 2 - 10 [Cr Webrip 1080P Hevc-10Bit Aac Multi-Subs]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Dont be a simp] Ore dake Level Up na Ken Season 2 - 01-13 [CR WebRip 1080p HEVC-10bit AAC Multi-Subs]/[Dont be a simp] Ore dake Level Up na Ken Season 2 - 02 [CR WebRip 1080p HEVC-10bit AAC Multi-Subs].mkv", + "filename": "[Dont be a simp] Ore dake Level Up na Ken Season 2 - 02 [CR WebRip 1080p HEVC-10bit AAC Multi-Subs].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Dont Be A Simp] Ore Dake Level Up Na Ken Season 2 - 02 [Cr Webrip 1080P Hevc-10Bit Aac Multi-Subs]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Dont Be A Simp] Ore Dake Level Up Na Ken Season 2 - 02 [Cr Webrip 1080P Hevc-10Bit Aac Multi-Subs]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Dont be a simp] Ore dake Level Up na Ken Season 2 - 01-13 [CR WebRip 1080p HEVC-10bit AAC Multi-Subs]/[Dont be a simp] Ore dake Level Up na Ken Season 2 - 08 [CR WebRip 1080p HEVC-10bit AAC Multi-Subs].mkv", + "filename": "[Dont be a simp] Ore dake Level Up na Ken Season 2 - 08 [CR WebRip 1080p HEVC-10bit AAC Multi-Subs].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Dont Be A Simp] Ore Dake Level Up Na Ken Season 2 - 08 [Cr Webrip 1080P Hevc-10Bit Aac Multi-Subs]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Dont Be A Simp] Ore Dake Level Up Na Ken Season 2 - 08 [Cr Webrip 1080P Hevc-10Bit Aac Multi-Subs]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Dont be a simp] Ore dake Level Up na Ken Season 2 - 01-13 [CR WebRip 1080p HEVC-10bit AAC Multi-Subs]/[Dont be a simp] Ore dake Level Up na Ken Season 2 - 05 [CR WebRip 1080p HEVC-10bit AAC Multi-Subs].mkv", + "filename": "[Dont be a simp] Ore dake Level Up na Ken Season 2 - 05 [CR WebRip 1080p HEVC-10bit AAC Multi-Subs].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Dont Be A Simp] Ore Dake Level Up Na Ken Season 2 - 05 [Cr Webrip 1080P Hevc-10Bit Aac Multi-Subs]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Dont Be A Simp] Ore Dake Level Up Na Ken Season 2 - 05 [Cr Webrip 1080P Hevc-10Bit Aac Multi-Subs]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Dont be a simp] Ore dake Level Up na Ken Season 2 - 01-13 [CR WebRip 1080p HEVC-10bit AAC Multi-Subs]/[Dont be a simp] Ore dake Level Up na Ken Season 2 - 11 [CR WebRip 1080p HEVC-10bit AAC Multi-Subs].mkv", + "filename": "[Dont be a simp] Ore dake Level Up na Ken Season 2 - 11 [CR WebRip 1080p HEVC-10bit AAC Multi-Subs].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Dont Be A Simp] Ore Dake Level Up Na Ken Season 2 - 11 [Cr Webrip 1080P Hevc-10Bit Aac Multi-Subs]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Dont Be A Simp] Ore Dake Level Up Na Ken Season 2 - 11 [Cr Webrip 1080P Hevc-10Bit Aac Multi-Subs]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Dont be a simp] Ore dake Level Up na Ken Season 2 - 01-13 [CR WebRip 1080p HEVC-10bit AAC Multi-Subs]/[Dont be a simp] Ore dake Level Up na Ken Season 2 - 03 [CR WebRip 1080p HEVC-10bit AAC Multi-Subs].mkv", + "filename": "[Dont be a simp] Ore dake Level Up na Ken Season 2 - 03 [CR WebRip 1080p HEVC-10bit AAC Multi-Subs].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Dont Be A Simp] Ore Dake Level Up Na Ken Season 2 - 03 [Cr Webrip 1080P Hevc-10Bit Aac Multi-Subs]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Dont Be A Simp] Ore Dake Level Up Na Ken Season 2 - 03 [Cr Webrip 1080P Hevc-10Bit Aac Multi-Subs]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 擁有超常技能的異世界流浪美食家 S2 - 14 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 擁有超常技能的異世界流浪美食家 S2 - 14 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 擁有超常技能的異世界流浪美食家 S2 - 14 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 擁有超常技能的異世界流浪美食家 S2 - 14 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 結緣甘神神社 - 08 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 結緣甘神神社 - 08 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 結緣甘神神社 - 08 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 結緣甘神神社 - 08 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] Re:從零開始的異世界生活 第三季 - 07 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] Re:從零開始的異世界生活 第三季 - 07 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] Re:從零開始的異世界生活 第三季 - 07 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] Re:從零開始的異世界生活 第三季 - 07 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Gachiakuta - 01 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "filename": "[LoliHouse] Gachiakuta - 01 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Gachiakuta - 01 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Gachiakuta - 01 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 水屬性的魔法師 - 09 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 水屬性的魔法師 - 09 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 水屬性的魔法師 - 09 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 水屬性的魔法師 - 09 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Skymoon-Raws] Kaguya-sama wa Kokurasetai S03 - 01 [ViuTV][WEB-DL][CHT][1080p][AVC AAC][MP4+ASS]/[Skymoon-Raws] Kaguya-sama wa Kokurasetai S03 - 01 [ViuTV][WEB-DL][1080p][AVC AAC].mp4", + "filename": "[Skymoon-Raws] Kaguya-sama wa Kokurasetai S03 - 01 [ViuTV][WEB-DL][1080p][AVC AAC].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Skymoon-Raws] Kaguya-Sama Wa Kokurasetai S03 - 01 [Viutv][Web-Dl][1080P][Avc Aac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Skymoon-Raws] Kaguya-Sama Wa Kokurasetai S03 - 01 [Viutv][Web-Dl][1080P][Avc Aac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Katainaka no Ossan, Kensei ni Naru - 04 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "filename": "[LoliHouse] Katainaka no Ossan, Kensei ni Naru - 04 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Katainaka No Ossan, Kensei Ni Naru - 04 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Katainaka No Ossan, Kensei Ni Naru - 04 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 怪獸 8 號 第二季 - 20 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 怪獸 8 號 第二季 - 20 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 怪獸 8 號 第二季 - 20 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 怪獸 8 號 第二季 - 20 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 香格里拉・開拓異境~糞作獵手挑戰神作~ - 20 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 香格里拉・開拓異境~糞作獵手挑戰神作~ - 20 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 香格里拉・開拓異境~糞作獵手挑戰神作~ - 20 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 香格里拉・開拓異境~糞作獵手挑戰神作~ - 20 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 香格里拉・開拓異境~糞作獵手挑戰神作~ 第二季 - 11 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 香格里拉・開拓異境~糞作獵手挑戰神作~ 第二季 - 11 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 香格里拉・開拓異境~糞作獵手挑戰神作~ 第二季 - 11 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 香格里拉・開拓異境~糞作獵手挑戰神作~ 第二季 - 11 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 29 歲單身中堅冒險家的日常 - 04 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 29 歲單身中堅冒險家的日常 - 04 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 29 歲單身中堅冒險家的日常 - 04 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 29 歲單身中堅冒險家的日常 - 04 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] S 級怪獸《貝希摩斯》被誤認成小貓,成為精靈女孩的騎士(寵物)一起生活 - 04 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] S 級怪獸《貝希摩斯》被誤認成小貓,成為精靈女孩的騎士(寵物)一起生活 - 04 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] S 級怪獸《貝希摩斯》被誤認成小貓,成為精靈女孩的騎士(寵物)一起生活 - 04 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] S 級怪獸《貝希摩斯》被誤認成小貓,成為精靈女孩的騎士(寵物)一起生活 - 04 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 葬送的芙莉蓮 - 20 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 葬送的芙莉蓮 - 20 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 葬送的芙莉蓮 - 20 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 葬送的芙莉蓮 - 20 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 九龍大眾浪漫 - 04 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 九龍大眾浪漫 - 04 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 九龍大眾浪漫 - 04 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 九龍大眾浪漫 - 04 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 氣絕勇者與暗殺公主 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 氣絕勇者與暗殺公主 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 氣絕勇者與暗殺公主 - 01 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 氣絕勇者與暗殺公主 - 01 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 結緣甘神神社 - 13 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 結緣甘神神社 - 13 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 結緣甘神神社 - 13 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 結緣甘神神社 - 13 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "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", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 異世界悠閒紀行~邊養娃邊當冒險者~ - 05 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 異世界悠閒紀行~邊養娃邊當冒險者~ - 05 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Nekomoe kissaten][Tower of God S2][18][1080p][CHT].mp4", + "filename": "[Nekomoe kissaten][Tower of God S2][18][1080p][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Nekomoe Kissaten][Tower Of God S2][18][1080P][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Nekomoe Kissaten][Tower Of God S2][18][1080P][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] DDDD 惡魔的破壞 [特別篇] - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] DDDD 惡魔的破壞 [特別篇] - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] Dddd 惡魔的破壞 [特別篇] - 01 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] Dddd 惡魔的破壞 [特別篇] - 01 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[BeanSub&FZSD][BLEACH_Sennen_Kessen-hen][38][BIG5][1080P][x264_AAC].mp4", + "filename": "[BeanSub&FZSD][BLEACH_Sennen_Kessen-hen][38][BIG5][1080P][x264_AAC].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Beansub&Fzsd][Bleach Sennen Kessen-Hen][38][Big5][1080P][X264 Aac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Beansub&Fzsd][Bleach Sennen Kessen-Hen][38][Big5][1080P][X264 Aac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 水屬性的魔法師 - 12 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 水屬性的魔法師 - 12 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 水屬性的魔法師 - 12 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 水屬性的魔法師 - 12 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 被逐出隊伍的治癒師,其實是最強 - 03 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 被逐出隊伍的治癒師,其實是最強 - 03 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 被逐出隊伍的治癒師,其實是最強 - 03 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 被逐出隊伍的治癒師,其實是最強 - 03 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 刀劍神域外傳 Gun Gale Online II - 08 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 刀劍神域外傳 Gun Gale Online II - 08 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 刀劍神域外傳 Gun Gale Online Ii - 08 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 刀劍神域外傳 Gun Gale Online Ii - 08 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 治癒魔法的錯誤使用法 - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 治癒魔法的錯誤使用法 - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 治癒魔法的錯誤使用法 - 02 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 治癒魔法的錯誤使用法 - 02 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 無職轉生~到了異世界就拿出真本事 第二季 - 23 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 無職轉生~到了異世界就拿出真本事 第二季 - 23 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 無職轉生~到了異世界就拿出真本事 第二季 - 23 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 無職轉生~到了異世界就拿出真本事 第二季 - 23 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Lilith-Raws] Re:Monster - 02 [Baha][WebDL 1080p AVC AAC][CHT].mp4", + "filename": "[Lilith-Raws] Re:Monster - 02 [Baha][WebDL 1080p AVC AAC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lilith-Raws] Re:Monster - 02 [Baha][Webdl 1080P Avc Aac][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lilith-Raws] Re:Monster - 02 [Baha][Webdl 1080P Avc Aac][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 地下城中的人 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 地下城中的人 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 地下城中的人 - 01 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 地下城中的人 - 01 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Tensei Shitara Slime Datta Ken 3rd Season - 55 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "filename": "[LoliHouse] Tensei Shitara Slime Datta Ken 3rd Season - 55 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Tensei Shitara Slime Datta Ken 3Rd Season - 55 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Tensei Shitara Slime Datta Ken 3Rd Season - 55 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "needs_review": true + }, + { + "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", + "title": "[Ani] 忍者與殺手的兩人生活 - 07 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 忍者與殺手的兩人生活 - 07 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 瞬間治癒卻被當成廢物踢出隊伍的天才治療師,改當無照治療師快樂過活 - 06 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 瞬間治癒卻被當成廢物踢出隊伍的天才治療師,改當無照治療師快樂過活 - 06 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 瞬間治癒卻被當成廢物踢出隊伍的天才治療師,改當無照治療師快樂過活 - 06 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 瞬間治癒卻被當成廢物踢出隊伍的天才治療師,改當無照治療師快樂過活 - 06 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Amagami-san Chi no Enmusubi - 05 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "filename": "[LoliHouse] Amagami-san Chi no Enmusubi - 05 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Amagami-San Chi No Enmusubi - 05 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Amagami-San Chi No Enmusubi - 05 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] LAZARUS 拉撒路 - 09 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] LAZARUS 拉撒路 - 09 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] Lazarus 拉撒路 - 09 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] Lazarus 拉撒路 - 09 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[BeanSub&FZSD][BLEACH_Sennen_Kessen-hen][34][BIG5][1080P][x264_AAC].mp4", + "filename": "[BeanSub&FZSD][BLEACH_Sennen_Kessen-hen][34][BIG5][1080P][x264_AAC].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Beansub&Fzsd][Bleach Sennen Kessen-Hen][34][Big5][1080P][X264 Aac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Beansub&Fzsd][Bleach Sennen Kessen-Hen][34][Big5][1080P][X264 Aac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 記憶縫線 YOUR FORMA - 11 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 記憶縫線 YOUR FORMA - 11 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 記憶縫線 Your Forma - 11 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 記憶縫線 Your Forma - 11 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[DHR][NanKoko][01-12][BIG5][720P][AVC_AAC][MP4]/[DHR][NanKoko][09][BIG5][720P][AVC_AAC].mp4", + "filename": "[DHR][NanKoko][09][BIG5][720P][AVC_AAC].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Dhr][Nankoko][09][Big5][720P][Avc Aac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Dhr][Nankoko][09][Big5][720P][Avc Aac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[DHR][NanKoko][01-12][BIG5][720P][AVC_AAC][MP4]/[DHR][NanKoko][06][BIG5][720P][AVC_AAC].mp4", + "filename": "[DHR][NanKoko][06][BIG5][720P][AVC_AAC].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Dhr][Nankoko][06][Big5][720P][Avc Aac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Dhr][Nankoko][06][Big5][720P][Avc Aac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[DHR][NanKoko][01-12][BIG5][720P][AVC_AAC][MP4]/[DHR][NanKoko][10][BIG5][720P][AVC_AAC].mp4", + "filename": "[DHR][NanKoko][10][BIG5][720P][AVC_AAC].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Dhr][Nankoko][10][Big5][720P][Avc Aac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Dhr][Nankoko][10][Big5][720P][Avc Aac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[DHR][NanKoko][01-12][BIG5][720P][AVC_AAC][MP4]/[DHR][NanKoko][05][BIG5][720P][AVC_AAC].mp4", + "filename": "[DHR][NanKoko][05][BIG5][720P][AVC_AAC].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Dhr][Nankoko][05][Big5][720P][Avc Aac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Dhr][Nankoko][05][Big5][720P][Avc Aac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[DHR][NanKoko][01-12][BIG5][720P][AVC_AAC][MP4]/[DHR][NanKoko][03][BIG5][720P][AVC_AAC].mp4", + "filename": "[DHR][NanKoko][03][BIG5][720P][AVC_AAC].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Dhr][Nankoko][03][Big5][720P][Avc Aac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Dhr][Nankoko][03][Big5][720P][Avc Aac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[DHR][NanKoko][01-12][BIG5][720P][AVC_AAC][MP4]/[DHR][NanKoko][08][BIG5][720P][AVC_AAC].mp4", + "filename": "[DHR][NanKoko][08][BIG5][720P][AVC_AAC].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Dhr][Nankoko][08][Big5][720P][Avc Aac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Dhr][Nankoko][08][Big5][720P][Avc Aac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[DHR][NanKoko][01-12][BIG5][720P][AVC_AAC][MP4]/[DHR][NanKoko][12][BIG5][720P][AVC_AAC].mp4", + "filename": "[DHR][NanKoko][12][BIG5][720P][AVC_AAC].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Dhr][Nankoko][12][Big5][720P][Avc Aac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Dhr][Nankoko][12][Big5][720P][Avc Aac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[DHR][NanKoko][01-12][BIG5][720P][AVC_AAC][MP4]/[DHR][NanKoko][07][BIG5][720P][AVC_AAC].mp4", + "filename": "[DHR][NanKoko][07][BIG5][720P][AVC_AAC].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Dhr][Nankoko][07][Big5][720P][Avc Aac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Dhr][Nankoko][07][Big5][720P][Avc Aac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[DHR][NanKoko][01-12][BIG5][720P][AVC_AAC][MP4]/[DHR][NanKoko][11][BIG5][720P][AVC_AAC].mp4", + "filename": "[DHR][NanKoko][11][BIG5][720P][AVC_AAC].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Dhr][Nankoko][11][Big5][720P][Avc Aac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Dhr][Nankoko][11][Big5][720P][Avc Aac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[DHR][NanKoko][01-12][BIG5][720P][AVC_AAC][MP4]/[DHR][NanKoko][04][BIG5][720P][AVC_AAC].mp4", + "filename": "[DHR][NanKoko][04][BIG5][720P][AVC_AAC].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Dhr][Nankoko][04][Big5][720P][Avc Aac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Dhr][Nankoko][04][Big5][720P][Avc Aac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[DHR][NanKoko][01-12][BIG5][720P][AVC_AAC][MP4]/[DHR][NanKoko][01][BIG5][720P][AVC_AAC].mp4", + "filename": "[DHR][NanKoko][01][BIG5][720P][AVC_AAC].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Dhr][Nankoko][01][Big5][720P][Avc Aac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Dhr][Nankoko][01][Big5][720P][Avc Aac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[DHR][NanKoko][01-12][BIG5][720P][AVC_AAC][MP4]/[DHR][NanKoko][02][BIG5][720P][AVC_AAC].mp4", + "filename": "[DHR][NanKoko][02][BIG5][720P][AVC_AAC].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Dhr][Nankoko][02][Big5][720P][Avc Aac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Dhr][Nankoko][02][Big5][720P][Avc Aac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 我的妻子不具感情 - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 我的妻子不具感情 - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 我的妻子不具感情 - 02 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 我的妻子不具感情 - 02 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Shin Samurai-den YAIBA - 06 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "filename": "[LoliHouse] Shin Samurai-den YAIBA - 06 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Shin Samurai-Den Yaiba - 06 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Shin Samurai-Den Yaiba - 06 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[BeanSub&FZSD][Kimetsu_no_Yaiba][58][BIG5][1080P][x264_AAC].mp4", + "filename": "[BeanSub&FZSD][Kimetsu_no_Yaiba][58][BIG5][1080P][x264_AAC].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Beansub&Fzsd][Kimetsu No Yaiba][58][Big5][1080P][X264 Aac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Beansub&Fzsd][Kimetsu No Yaiba][58][Big5][1080P][X264 Aac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[HYSUB]Sono Bisque Doll wa Koi wo Suru[16][BIG5_MP4][1920X1080].mp4", + "filename": "[HYSUB]Sono Bisque Doll wa Koi wo Suru[16][BIG5_MP4][1920X1080].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Hysub]Sono Bisque Doll Wa Koi Wo Suru[16][Big5 Mp4][1920X1080]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Hysub]Sono Bisque Doll Wa Koi Wo Suru[16][Big5 Mp4][1920X1080]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] LAZARUS 拉撒路 - 12 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] LAZARUS 拉撒路 - 12 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] Lazarus 拉撒路 - 12 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] Lazarus 拉撒路 - 12 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Shangri-La Frontier - 40 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "filename": "[LoliHouse] Shangri-La Frontier - 40 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Shangri-La Frontier - 40 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Shangri-La Frontier - 40 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[BeanSub][Ao no Exorcist _Shimane Illuminati Hen][03][BIG5][1080P][x264_AAC].mp4", + "filename": "[BeanSub][Ao no Exorcist _Shimane Illuminati Hen][03][BIG5][1080P][x264_AAC].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Beansub][Ao No Exorcist Shimane Illuminati Hen][03][Big5][1080P][X264 Aac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Beansub][Ao No Exorcist Shimane Illuminati Hen][03][Big5][1080P][X264 Aac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 怪獸 8 號 第二季 - 18 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 怪獸 8 號 第二季 - 18 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 怪獸 8 號 第二季 - 18 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 怪獸 8 號 第二季 - 18 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 香格里拉・開拓異境~糞作獵手挑戰神作~ - 18 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 香格里拉・開拓異境~糞作獵手挑戰神作~ - 18 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 香格里拉・開拓異境~糞作獵手挑戰神作~ - 18 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 香格里拉・開拓異境~糞作獵手挑戰神作~ - 18 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 葬送的芙莉蓮 - 18 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 葬送的芙莉蓮 - 18 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 葬送的芙莉蓮 - 18 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 葬送的芙莉蓮 - 18 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] ULTRAMAN [WebRip 1080p HEVC-10bit AAC SRTx4] v2/[LoliHouse] ULTRAMAN - 09 [WebRip 1080p HEVC-10bit AAC SRTx4].mkv", + "filename": "[LoliHouse] ULTRAMAN - 09 [WebRip 1080p HEVC-10bit AAC SRTx4].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Ultraman - 09 [Webrip 1080P Hevc-10Bit Aac Srtx4]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Ultraman - 09 [Webrip 1080P Hevc-10Bit Aac Srtx4]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] ULTRAMAN [WebRip 1080p HEVC-10bit AAC SRTx4] v2/[LoliHouse] ULTRAMAN - 12 [WebRip 1080p HEVC-10bit AAC SRTx4].mkv", + "filename": "[LoliHouse] ULTRAMAN - 12 [WebRip 1080p HEVC-10bit AAC SRTx4].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Ultraman - 12 [Webrip 1080P Hevc-10Bit Aac Srtx4]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Ultraman - 12 [Webrip 1080P Hevc-10Bit Aac Srtx4]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] ULTRAMAN [WebRip 1080p HEVC-10bit AAC SRTx4] v2/[LoliHouse] ULTRAMAN - 05 [WebRip 1080p HEVC-10bit AAC SRTx4].mkv", + "filename": "[LoliHouse] ULTRAMAN - 05 [WebRip 1080p HEVC-10bit AAC SRTx4].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Ultraman - 05 [Webrip 1080P Hevc-10Bit Aac Srtx4]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Ultraman - 05 [Webrip 1080P Hevc-10Bit Aac Srtx4]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] ULTRAMAN [WebRip 1080p HEVC-10bit AAC SRTx4] v2/[LoliHouse] ULTRAMAN - 01 [WebRip 1080p HEVC-10bit AAC SRTx4].mkv", + "filename": "[LoliHouse] ULTRAMAN - 01 [WebRip 1080p HEVC-10bit AAC SRTx4].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Ultraman - 01 [Webrip 1080P Hevc-10Bit Aac Srtx4]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Ultraman - 01 [Webrip 1080P Hevc-10Bit Aac Srtx4]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] ULTRAMAN [WebRip 1080p HEVC-10bit AAC SRTx4] v2/[LoliHouse] ULTRAMAN - 04 [WebRip 1080p HEVC-10bit AAC SRTx4].mkv", + "filename": "[LoliHouse] ULTRAMAN - 04 [WebRip 1080p HEVC-10bit AAC SRTx4].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Ultraman - 04 [Webrip 1080P Hevc-10Bit Aac Srtx4]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Ultraman - 04 [Webrip 1080P Hevc-10Bit Aac Srtx4]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] ULTRAMAN [WebRip 1080p HEVC-10bit AAC SRTx4] v2/[LoliHouse] ULTRAMAN - 13 [WebRip 1080p HEVC-10bit AAC SRTx4].mkv", + "filename": "[LoliHouse] ULTRAMAN - 13 [WebRip 1080p HEVC-10bit AAC SRTx4].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Ultraman - 13 [Webrip 1080P Hevc-10Bit Aac Srtx4]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Ultraman - 13 [Webrip 1080P Hevc-10Bit Aac Srtx4]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] ULTRAMAN [WebRip 1080p HEVC-10bit AAC SRTx4] v2/[LoliHouse] ULTRAMAN - 08 [WebRip 1080p HEVC-10bit AAC SRTx4].mkv", + "filename": "[LoliHouse] ULTRAMAN - 08 [WebRip 1080p HEVC-10bit AAC SRTx4].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Ultraman - 08 [Webrip 1080P Hevc-10Bit Aac Srtx4]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Ultraman - 08 [Webrip 1080P Hevc-10Bit Aac Srtx4]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] ULTRAMAN [WebRip 1080p HEVC-10bit AAC SRTx4] v2/[LoliHouse] ULTRAMAN - 06 [WebRip 1080p HEVC-10bit AAC SRTx4].mkv", + "filename": "[LoliHouse] ULTRAMAN - 06 [WebRip 1080p HEVC-10bit AAC SRTx4].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Ultraman - 06 [Webrip 1080P Hevc-10Bit Aac Srtx4]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Ultraman - 06 [Webrip 1080P Hevc-10Bit Aac Srtx4]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] ULTRAMAN [WebRip 1080p HEVC-10bit AAC SRTx4] v2/[LoliHouse] ULTRAMAN - 02 [WebRip 1080p HEVC-10bit AAC SRTx4].mkv", + "filename": "[LoliHouse] ULTRAMAN - 02 [WebRip 1080p HEVC-10bit AAC SRTx4].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Ultraman - 02 [Webrip 1080P Hevc-10Bit Aac Srtx4]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Ultraman - 02 [Webrip 1080P Hevc-10Bit Aac Srtx4]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] ULTRAMAN [WebRip 1080p HEVC-10bit AAC SRTx4] v2/[LoliHouse] ULTRAMAN - 11 [WebRip 1080p HEVC-10bit AAC SRTx4].mkv", + "filename": "[LoliHouse] ULTRAMAN - 11 [WebRip 1080p HEVC-10bit AAC SRTx4].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Ultraman - 11 [Webrip 1080P Hevc-10Bit Aac Srtx4]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Ultraman - 11 [Webrip 1080P Hevc-10Bit Aac Srtx4]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] ULTRAMAN [WebRip 1080p HEVC-10bit AAC SRTx4] v2/[LoliHouse] ULTRAMAN - 10 [WebRip 1080p HEVC-10bit AAC SRTx4].mkv", + "filename": "[LoliHouse] ULTRAMAN - 10 [WebRip 1080p HEVC-10bit AAC SRTx4].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Ultraman - 10 [Webrip 1080P Hevc-10Bit Aac Srtx4]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Ultraman - 10 [Webrip 1080P Hevc-10Bit Aac Srtx4]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] ULTRAMAN [WebRip 1080p HEVC-10bit AAC SRTx4] v2/[LoliHouse] ULTRAMAN - 07 [WebRip 1080p HEVC-10bit AAC SRTx4].mkv", + "filename": "[LoliHouse] ULTRAMAN - 07 [WebRip 1080p HEVC-10bit AAC SRTx4].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Ultraman - 07 [Webrip 1080P Hevc-10Bit Aac Srtx4]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Ultraman - 07 [Webrip 1080P Hevc-10Bit Aac Srtx4]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] ULTRAMAN [WebRip 1080p HEVC-10bit AAC SRTx4] v2/[LoliHouse] ULTRAMAN - 03 [WebRip 1080p HEVC-10bit AAC SRTx4].mkv", + "filename": "[LoliHouse] ULTRAMAN - 03 [WebRip 1080p HEVC-10bit AAC SRTx4].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Ultraman - 03 [Webrip 1080P Hevc-10Bit Aac Srtx4]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Ultraman - 03 [Webrip 1080P Hevc-10Bit Aac Srtx4]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 杖與劍的魔劍譚 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 杖與劍的魔劍譚 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 杖與劍的魔劍譚 - 01 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 杖與劍的魔劍譚 - 01 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 怪獸 8 號 - 05 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 怪獸 8 號 - 05 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 怪獸 8 號 - 05 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 怪獸 8 號 - 05 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Tensei Shitara Slime Datta Ken 3rd Season - 72 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "filename": "[LoliHouse] Tensei Shitara Slime Datta Ken 3rd Season - 72 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Tensei Shitara Slime Datta Ken 3Rd Season - 72 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Tensei Shitara Slime Datta Ken 3Rd Season - 72 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 一拳超人(第三季) - 28 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 一拳超人(第三季) - 28 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 一拳超人(第三季) - 28 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 一拳超人(第三季) - 28 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Nekomoe kissaten][Tower of God S2][10][1080p][CHS].mp4", + "filename": "[Nekomoe kissaten][Tower of God S2][10][1080p][CHS].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Nekomoe Kissaten][Tower Of God S2][10][1080P][Chs]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Nekomoe Kissaten][Tower Of God S2][10][1080P][Chs]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] Re:從零開始的異世界生活 第三季 - 03 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] Re:從零開始的異世界生活 第三季 - 03 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] Re:從零開始的異世界生活 第三季 - 03 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] Re:從零開始的異世界生活 第三季 - 03 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 葬送的芙莉蓮 - 24 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 葬送的芙莉蓮 - 24 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 葬送的芙莉蓮 - 24 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 葬送的芙莉蓮 - 24 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Nekomoe kissaten&LoliHouse] Sono Bisque Doll wa Koi wo Suru - 14 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "filename": "[Nekomoe kissaten&LoliHouse] Sono Bisque Doll wa Koi wo Suru - 14 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Nekomoe Kissaten&Lolihouse] Sono Bisque Doll Wa Koi Wo Suru - 14 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Nekomoe Kissaten&Lolihouse] Sono Bisque Doll Wa Koi Wo Suru - 14 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[BeanSub&FZSD][BLEACH_Sennen_Kessen-hen][36][BIG5][1080P][x264_AAC].mp4", + "filename": "[BeanSub&FZSD][BLEACH_Sennen_Kessen-hen][36][BIG5][1080P][x264_AAC].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Beansub&Fzsd][Bleach Sennen Kessen-Hen][36][Big5][1080P][X264 Aac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Beansub&Fzsd][Bleach Sennen Kessen-Hen][36][Big5][1080P][X264 Aac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Nekomoe kissaten][Dungeon Meshi][21][1080p][JPTC].mp4", + "filename": "[Nekomoe kissaten][Dungeon Meshi][21][1080p][JPTC].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Nekomoe Kissaten][Dungeon Meshi][21][1080P][Jptc]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Nekomoe Kissaten][Dungeon Meshi][21][1080P][Jptc]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 香格里拉・開拓異境~糞作獵手挑戰神作~ - 24 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 香格里拉・開拓異境~糞作獵手挑戰神作~ - 24 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 香格里拉・開拓異境~糞作獵手挑戰神作~ - 24 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 香格里拉・開拓異境~糞作獵手挑戰神作~ - 24 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[BeanSub][Ao no Exorcist _Shimane Illuminati Hen][01][BIG5][1080P][x264_AAC].mp4", + "filename": "[BeanSub][Ao no Exorcist _Shimane Illuminati Hen][01][BIG5][1080P][x264_AAC].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Beansub][Ao No Exorcist Shimane Illuminati Hen][01][Big5][1080P][X264 Aac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Beansub][Ao No Exorcist Shimane Illuminati Hen][01][Big5][1080P][X264 Aac]", + "needs_review": true + }, + { + "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", + "title": "[Ani] 被逐出隊伍的治癒師,其實是最強 - 07 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 被逐出隊伍的治癒師,其實是最強 - 07 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 終末起點 - 10 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 終末起點 - 10 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 終末起點 - 10 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 終末起點 - 10 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 一拳超人(第三季) - 33 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 一拳超人(第三季) - 33 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 一拳超人(第三季) - 33 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 一拳超人(第三季) - 33 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 結緣甘神神社 - 17 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 結緣甘神神社 - 17 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 結緣甘神神社 - 17 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 結緣甘神神社 - 17 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Terminator.Zero.S01.2024.1080p.NF.WEB-DL.x264.DDP5.1-ADWeb/Terminator.Zero.S01E08.2024.1080p.NF.WEB-DL.x264.DDP5.1-ADWeb.mkv", + "filename": "Terminator.Zero.S01E08.2024.1080p.NF.WEB-DL.x264.DDP5.1-ADWeb.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Terminator Zero S01E08 2024 1080P Nf Web-Dl X264 Ddp5 1-Adweb", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Terminator Zero S01E08 2024 1080P Nf Web-Dl X264 Ddp5 1-Adweb", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Terminator.Zero.S01.2024.1080p.NF.WEB-DL.x264.DDP5.1-ADWeb/Terminator.Zero.S01E06.2024.1080p.NF.WEB-DL.x264.DDP5.1-ADWeb.mkv", + "filename": "Terminator.Zero.S01E06.2024.1080p.NF.WEB-DL.x264.DDP5.1-ADWeb.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Terminator Zero S01E06 2024 1080P Nf Web-Dl X264 Ddp5 1-Adweb", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Terminator Zero S01E06 2024 1080P Nf Web-Dl X264 Ddp5 1-Adweb", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Terminator.Zero.S01.2024.1080p.NF.WEB-DL.x264.DDP5.1-ADWeb/Terminator.Zero.S01E07.2024.1080p.NF.WEB-DL.x264.DDP5.1-ADWeb.mkv", + "filename": "Terminator.Zero.S01E07.2024.1080p.NF.WEB-DL.x264.DDP5.1-ADWeb.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Terminator Zero S01E07 2024 1080P Nf Web-Dl X264 Ddp5 1-Adweb", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Terminator Zero S01E07 2024 1080P Nf Web-Dl X264 Ddp5 1-Adweb", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Terminator.Zero.S01.2024.1080p.NF.WEB-DL.x264.DDP5.1-ADWeb/Terminator.Zero.S01E04.2024.1080p.NF.WEB-DL.x264.DDP5.1-ADWeb.mkv", + "filename": "Terminator.Zero.S01E04.2024.1080p.NF.WEB-DL.x264.DDP5.1-ADWeb.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Terminator Zero S01E04 2024 1080P Nf Web-Dl X264 Ddp5 1-Adweb", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Terminator Zero S01E04 2024 1080P Nf Web-Dl X264 Ddp5 1-Adweb", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Terminator.Zero.S01.2024.1080p.NF.WEB-DL.x264.DDP5.1-ADWeb/Terminator.Zero.S01E05.2024.1080p.NF.WEB-DL.x264.DDP5.1-ADWeb.mkv", + "filename": "Terminator.Zero.S01E05.2024.1080p.NF.WEB-DL.x264.DDP5.1-ADWeb.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Terminator Zero S01E05 2024 1080P Nf Web-Dl X264 Ddp5 1-Adweb", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Terminator Zero S01E05 2024 1080P Nf Web-Dl X264 Ddp5 1-Adweb", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Terminator.Zero.S01.2024.1080p.NF.WEB-DL.x264.DDP5.1-ADWeb/Terminator.Zero.S01E02.2024.1080p.NF.WEB-DL.x264.DDP5.1-ADWeb.mkv", + "filename": "Terminator.Zero.S01E02.2024.1080p.NF.WEB-DL.x264.DDP5.1-ADWeb.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Terminator Zero S01E02 2024 1080P Nf Web-Dl X264 Ddp5 1-Adweb", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Terminator Zero S01E02 2024 1080P Nf Web-Dl X264 Ddp5 1-Adweb", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Terminator.Zero.S01.2024.1080p.NF.WEB-DL.x264.DDP5.1-ADWeb/Terminator.Zero.S01E03.2024.1080p.NF.WEB-DL.x264.DDP5.1-ADWeb.mkv", + "filename": "Terminator.Zero.S01E03.2024.1080p.NF.WEB-DL.x264.DDP5.1-ADWeb.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Terminator Zero S01E03 2024 1080P Nf Web-Dl X264 Ddp5 1-Adweb", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Terminator Zero S01E03 2024 1080P Nf Web-Dl X264 Ddp5 1-Adweb", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Terminator.Zero.S01.2024.1080p.NF.WEB-DL.x264.DDP5.1-ADWeb/Terminator.Zero.S01E01.2024.1080p.NF.WEB-DL.x264.DDP5.1-ADWeb.mkv", + "filename": "Terminator.Zero.S01E01.2024.1080p.NF.WEB-DL.x264.DDP5.1-ADWeb.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Terminator Zero S01E01 2024 1080P Nf Web-Dl X264 Ddp5 1-Adweb", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Terminator Zero S01E01 2024 1080P Nf Web-Dl X264 Ddp5 1-Adweb", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 異世界悠閒紀行~邊養娃邊當冒險者~ - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 異世界悠閒紀行~邊養娃邊當冒險者~ - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 異世界悠閒紀行~邊養娃邊當冒險者~ - 01 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 異世界悠閒紀行~邊養娃邊當冒險者~ - 01 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 在地下城尋求邂逅是否搞錯了什麼 第五季 - 10 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 在地下城尋求邂逅是否搞錯了什麼 第五季 - 10 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 在地下城尋求邂逅是否搞錯了什麼 第五季 - 10 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 在地下城尋求邂逅是否搞錯了什麼 第五季 - 10 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Grand Blue S2 - 03 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "filename": "[LoliHouse] Grand Blue S2 - 03 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Grand Blue S2 - 03 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Grand Blue S2 - 03 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[UHA-WINGS][Kakegurui XX][01-12][x264 1080p][tc_jp]/[UHA-WINGS][Kakegurui XX][06][x264 1080p][tc_jp].mp4", + "filename": "[UHA-WINGS][Kakegurui XX][06][x264 1080p][tc_jp].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Uha-Wings][Kakegurui Xx][06][X264 1080P][Tc Jp]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Uha-Wings][Kakegurui Xx][06][X264 1080P][Tc Jp]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[UHA-WINGS][Kakegurui XX][01-12][x264 1080p][tc_jp]/[UHA-WINGS][Kakegurui XX][02][x264 1080p][tc_jp].mp4", + "filename": "[UHA-WINGS][Kakegurui XX][02][x264 1080p][tc_jp].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Uha-Wings][Kakegurui Xx][02][X264 1080P][Tc Jp]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Uha-Wings][Kakegurui Xx][02][X264 1080P][Tc Jp]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[UHA-WINGS][Kakegurui XX][01-12][x264 1080p][tc_jp]/[UHA-WINGS][Kakegurui XX][12][x264 1080p][tc_jp].mp4", + "filename": "[UHA-WINGS][Kakegurui XX][12][x264 1080p][tc_jp].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Uha-Wings][Kakegurui Xx][12][X264 1080P][Tc Jp]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Uha-Wings][Kakegurui Xx][12][X264 1080P][Tc Jp]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[UHA-WINGS][Kakegurui XX][01-12][x264 1080p][tc_jp]/[UHA-WINGS][Kakegurui XX][05][x264 1080p][tc_jp].mp4", + "filename": "[UHA-WINGS][Kakegurui XX][05][x264 1080p][tc_jp].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Uha-Wings][Kakegurui Xx][05][X264 1080P][Tc Jp]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Uha-Wings][Kakegurui Xx][05][X264 1080P][Tc Jp]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[UHA-WINGS][Kakegurui XX][01-12][x264 1080p][tc_jp]/[UHA-WINGS][Kakegurui XX][11][x264 1080p][tc_jp].mp4", + "filename": "[UHA-WINGS][Kakegurui XX][11][x264 1080p][tc_jp].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Uha-Wings][Kakegurui Xx][11][X264 1080P][Tc Jp]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Uha-Wings][Kakegurui Xx][11][X264 1080P][Tc Jp]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[UHA-WINGS][Kakegurui XX][01-12][x264 1080p][tc_jp]/[UHA-WINGS][Kakegurui XX][01][x264 1080p][tc_jp].mp4", + "filename": "[UHA-WINGS][Kakegurui XX][01][x264 1080p][tc_jp].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Uha-Wings][Kakegurui Xx][01][X264 1080P][Tc Jp]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Uha-Wings][Kakegurui Xx][01][X264 1080P][Tc Jp]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[UHA-WINGS][Kakegurui XX][01-12][x264 1080p][tc_jp]/[UHA-WINGS][Kakegurui XX][09][x264 1080p][tc_jp].mp4", + "filename": "[UHA-WINGS][Kakegurui XX][09][x264 1080p][tc_jp].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Uha-Wings][Kakegurui Xx][09][X264 1080P][Tc Jp]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Uha-Wings][Kakegurui Xx][09][X264 1080P][Tc Jp]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[UHA-WINGS][Kakegurui XX][01-12][x264 1080p][tc_jp]/[UHA-WINGS][Kakegurui XX][07][x264 1080p][tc_jp].mp4", + "filename": "[UHA-WINGS][Kakegurui XX][07][x264 1080p][tc_jp].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Uha-Wings][Kakegurui Xx][07][X264 1080P][Tc Jp]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Uha-Wings][Kakegurui Xx][07][X264 1080P][Tc Jp]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[UHA-WINGS][Kakegurui XX][01-12][x264 1080p][tc_jp]/[UHA-WINGS][Kakegurui XX][03][x264 1080p][tc_jp].mp4", + "filename": "[UHA-WINGS][Kakegurui XX][03][x264 1080p][tc_jp].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Uha-Wings][Kakegurui Xx][03][X264 1080P][Tc Jp]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Uha-Wings][Kakegurui Xx][03][X264 1080P][Tc Jp]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[UHA-WINGS][Kakegurui XX][01-12][x264 1080p][tc_jp]/[UHA-WINGS][Kakegurui XX][08][x264 1080p][tc_jp].mp4", + "filename": "[UHA-WINGS][Kakegurui XX][08][x264 1080p][tc_jp].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Uha-Wings][Kakegurui Xx][08][X264 1080P][Tc Jp]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Uha-Wings][Kakegurui Xx][08][X264 1080P][Tc Jp]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[UHA-WINGS][Kakegurui XX][01-12][x264 1080p][tc_jp]/[UHA-WINGS][Kakegurui XX][04][x264 1080p][tc_jp].mp4", + "filename": "[UHA-WINGS][Kakegurui XX][04][x264 1080p][tc_jp].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Uha-Wings][Kakegurui Xx][04][X264 1080P][Tc Jp]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Uha-Wings][Kakegurui Xx][04][X264 1080P][Tc Jp]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[UHA-WINGS][Kakegurui XX][01-12][x264 1080p][tc_jp]/[UHA-WINGS][Kakegurui XX][10][x264 1080p][tc_jp].mp4", + "filename": "[UHA-WINGS][Kakegurui XX][10][x264 1080p][tc_jp].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Uha-Wings][Kakegurui Xx][10][X264 1080P][Tc Jp]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Uha-Wings][Kakegurui Xx][10][X264 1080P][Tc Jp]", + "needs_review": true + }, + { + "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", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 身為暗殺者的我明顯比勇者還強 - 05 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 身為暗殺者的我明顯比勇者還強 - 05 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 盾之勇者成名錄 Season 4 - 11 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 盾之勇者成名錄 Season 4 - 11 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 盾之勇者成名錄 Season 4 - 11 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 盾之勇者成名錄 Season 4 - 11 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 龍族II 悼亡者之瞳 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 龍族II 悼亡者之瞳 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 龍族Ii 悼亡者之瞳 - 01 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 龍族Ii 悼亡者之瞳 - 01 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[2021][Kaifuku Jutsushi no Yarinaoshi][BDRIP][1080P][1-12Fin+SP]/[Kaifuku Jutsushi no Yarinaoshi][05][BDRIP][1080P][H264_FLAC].mkv", + "filename": "[Kaifuku Jutsushi no Yarinaoshi][05][BDRIP][1080P][H264_FLAC].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Kaifuku Jutsushi No Yarinaoshi][05][Bdrip][1080P][H264 Flac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Kaifuku Jutsushi No Yarinaoshi][05][Bdrip][1080P][H264 Flac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[2021][Kaifuku Jutsushi no Yarinaoshi][BDRIP][1080P][1-12Fin+SP]/[Kaifuku Jutsushi no Yarinaoshi][03][BDRIP][1080P][H264_FLAC].mkv", + "filename": "[Kaifuku Jutsushi no Yarinaoshi][03][BDRIP][1080P][H264_FLAC].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Kaifuku Jutsushi No Yarinaoshi][03][Bdrip][1080P][H264 Flac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Kaifuku Jutsushi No Yarinaoshi][03][Bdrip][1080P][H264 Flac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[2021][Kaifuku Jutsushi no Yarinaoshi][BDRIP][1080P][1-12Fin+SP]/[Kaifuku Jutsushi no Yarinaoshi][Vol.02][SP01][PV #01][BDRIP][1080P][H264_FLAC].mkv", + "filename": "[Kaifuku Jutsushi no Yarinaoshi][Vol.02][SP01][PV #01][BDRIP][1080P][H264_FLAC].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Kaifuku Jutsushi No Yarinaoshi][Vol 02][Sp01][Pv #01][Bdrip][1080P][H264 Flac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Kaifuku Jutsushi No Yarinaoshi][Vol 02][Sp01][Pv #01][Bdrip][1080P][H264 Flac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[2021][Kaifuku Jutsushi no Yarinaoshi][BDRIP][1080P][1-12Fin+SP]/[Kaifuku Jutsushi no Yarinaoshi][09][BDRIP][1080P][H264_FLAC].mkv", + "filename": "[Kaifuku Jutsushi no Yarinaoshi][09][BDRIP][1080P][H264_FLAC].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Kaifuku Jutsushi No Yarinaoshi][09][Bdrip][1080P][H264 Flac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Kaifuku Jutsushi No Yarinaoshi][09][Bdrip][1080P][H264 Flac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[2021][Kaifuku Jutsushi no Yarinaoshi][BDRIP][1080P][1-12Fin+SP]/[Kaifuku Jutsushi no Yarinaoshi][12][BDRIP][1080P][H264_FLAC].mkv", + "filename": "[Kaifuku Jutsushi no Yarinaoshi][12][BDRIP][1080P][H264_FLAC].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Kaifuku Jutsushi No Yarinaoshi][12][Bdrip][1080P][H264 Flac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Kaifuku Jutsushi No Yarinaoshi][12][Bdrip][1080P][H264 Flac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[2021][Kaifuku Jutsushi no Yarinaoshi][BDRIP][1080P][1-12Fin+SP]/[Kaifuku Jutsushi no Yarinaoshi][04][BDRIP][1080P][H264_FLAC].mkv", + "filename": "[Kaifuku Jutsushi no Yarinaoshi][04][BDRIP][1080P][H264_FLAC].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Kaifuku Jutsushi No Yarinaoshi][04][Bdrip][1080P][H264 Flac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Kaifuku Jutsushi No Yarinaoshi][04][Bdrip][1080P][H264 Flac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[2021][Kaifuku Jutsushi no Yarinaoshi][BDRIP][1080P][1-12Fin+SP]/[Kaifuku Jutsushi no Yarinaoshi][02][BDRIP][1080P][H264_FLAC].mkv", + "filename": "[Kaifuku Jutsushi no Yarinaoshi][02][BDRIP][1080P][H264_FLAC].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Kaifuku Jutsushi No Yarinaoshi][02][Bdrip][1080P][H264 Flac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Kaifuku Jutsushi No Yarinaoshi][02][Bdrip][1080P][H264 Flac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[2021][Kaifuku Jutsushi no Yarinaoshi][BDRIP][1080P][1-12Fin+SP]/[Kaifuku Jutsushi no Yarinaoshi][Vol.01][SP02][NCED][BDRIP][1080P][H264_FLAC].mkv", + "filename": "[Kaifuku Jutsushi no Yarinaoshi][Vol.01][SP02][NCED][BDRIP][1080P][H264_FLAC].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Kaifuku Jutsushi No Yarinaoshi][Vol 01][Sp02][Nced][Bdrip][1080P][H264 Flac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Kaifuku Jutsushi No Yarinaoshi][Vol 01][Sp02][Nced][Bdrip][1080P][H264 Flac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[2021][Kaifuku Jutsushi no Yarinaoshi][BDRIP][1080P][1-12Fin+SP]/[Kaifuku Jutsushi no Yarinaoshi][Vol.03][SP01][TV-CM][BDRIP][1080P][H264_FLAC].mkv", + "filename": "[Kaifuku Jutsushi no Yarinaoshi][Vol.03][SP01][TV-CM][BDRIP][1080P][H264_FLAC].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Kaifuku Jutsushi No Yarinaoshi][Vol 03][Sp01][Tv-Cm][Bdrip][1080P][H264 Flac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Kaifuku Jutsushi No Yarinaoshi][Vol 03][Sp01][Tv-Cm][Bdrip][1080P][H264 Flac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[2021][Kaifuku Jutsushi no Yarinaoshi][BDRIP][1080P][1-12Fin+SP]/[Kaifuku Jutsushi no Yarinaoshi][08][BDRIP][1080P][H264_FLAC].mkv", + "filename": "[Kaifuku Jutsushi no Yarinaoshi][08][BDRIP][1080P][H264_FLAC].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Kaifuku Jutsushi No Yarinaoshi][08][Bdrip][1080P][H264 Flac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Kaifuku Jutsushi No Yarinaoshi][08][Bdrip][1080P][H264 Flac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[2021][Kaifuku Jutsushi no Yarinaoshi][BDRIP][1080P][1-12Fin+SP]/[Kaifuku Jutsushi no Yarinaoshi][Vol.01][SP01][NCOP][BDRIP][1080P][H264_FLAC].mkv", + "filename": "[Kaifuku Jutsushi no Yarinaoshi][Vol.01][SP01][NCOP][BDRIP][1080P][H264_FLAC].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Kaifuku Jutsushi No Yarinaoshi][Vol 01][Sp01][Ncop][Bdrip][1080P][H264 Flac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Kaifuku Jutsushi No Yarinaoshi][Vol 01][Sp01][Ncop][Bdrip][1080P][H264 Flac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[2021][Kaifuku Jutsushi no Yarinaoshi][BDRIP][1080P][1-12Fin+SP]/[Kaifuku Jutsushi no Yarinaoshi][07][BDRIP][1080P][H264_FLAC].mkv", + "filename": "[Kaifuku Jutsushi no Yarinaoshi][07][BDRIP][1080P][H264_FLAC].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Kaifuku Jutsushi No Yarinaoshi][07][Bdrip][1080P][H264 Flac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Kaifuku Jutsushi No Yarinaoshi][07][Bdrip][1080P][H264 Flac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[2021][Kaifuku Jutsushi no Yarinaoshi][BDRIP][1080P][1-12Fin+SP]/[Kaifuku Jutsushi no Yarinaoshi][01][BDRIP][1080P][H264_FLAC].mkv", + "filename": "[Kaifuku Jutsushi no Yarinaoshi][01][BDRIP][1080P][H264_FLAC].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Kaifuku Jutsushi No Yarinaoshi][01][Bdrip][1080P][H264 Flac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Kaifuku Jutsushi No Yarinaoshi][01][Bdrip][1080P][H264 Flac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[2021][Kaifuku Jutsushi no Yarinaoshi][BDRIP][1080P][1-12Fin+SP]/[Kaifuku Jutsushi no Yarinaoshi][Logo][BDRIP][1080P][H264_FLAC].mkv", + "filename": "[Kaifuku Jutsushi no Yarinaoshi][Logo][BDRIP][1080P][H264_FLAC].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Kaifuku Jutsushi No Yarinaoshi][Logo][Bdrip][1080P][H264 Flac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Kaifuku Jutsushi No Yarinaoshi][Logo][Bdrip][1080P][H264 Flac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[2021][Kaifuku Jutsushi no Yarinaoshi][BDRIP][1080P][1-12Fin+SP]/[Kaifuku Jutsushi no Yarinaoshi][10][BDRIP][1080P][H264_FLAC].mkv", + "filename": "[Kaifuku Jutsushi no Yarinaoshi][10][BDRIP][1080P][H264_FLAC].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Kaifuku Jutsushi No Yarinaoshi][10][Bdrip][1080P][H264 Flac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Kaifuku Jutsushi No Yarinaoshi][10][Bdrip][1080P][H264 Flac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[2021][Kaifuku Jutsushi no Yarinaoshi][BDRIP][1080P][1-12Fin+SP]/[Kaifuku Jutsushi no Yarinaoshi][06][BDRIP][1080P][H264_FLAC].mkv", + "filename": "[Kaifuku Jutsushi no Yarinaoshi][06][BDRIP][1080P][H264_FLAC].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Kaifuku Jutsushi No Yarinaoshi][06][Bdrip][1080P][H264 Flac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Kaifuku Jutsushi No Yarinaoshi][06][Bdrip][1080P][H264 Flac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[2021][Kaifuku Jutsushi no Yarinaoshi][BDRIP][1080P][1-12Fin+SP]/[Kaifuku Jutsushi no Yarinaoshi][Producer Logo][BDRIP][1080P][H264_FLAC].mkv", + "filename": "[Kaifuku Jutsushi no Yarinaoshi][Producer Logo][BDRIP][1080P][H264_FLAC].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Kaifuku Jutsushi No Yarinaoshi][Producer Logo][Bdrip][1080P][H264 Flac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Kaifuku Jutsushi No Yarinaoshi][Producer Logo][Bdrip][1080P][H264 Flac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[2021][Kaifuku Jutsushi no Yarinaoshi][BDRIP][1080P][1-12Fin+SP]/[Kaifuku Jutsushi no Yarinaoshi][Vol.02][SP02][PV #02][BDRIP][1080P][H264_FLAC].mkv", + "filename": "[Kaifuku Jutsushi no Yarinaoshi][Vol.02][SP02][PV #02][BDRIP][1080P][H264_FLAC].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Kaifuku Jutsushi No Yarinaoshi][Vol 02][Sp02][Pv #02][Bdrip][1080P][H264 Flac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Kaifuku Jutsushi No Yarinaoshi][Vol 02][Sp02][Pv #02][Bdrip][1080P][H264 Flac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[2021][Kaifuku Jutsushi no Yarinaoshi][BDRIP][1080P][1-12Fin+SP]/[Kaifuku Jutsushi no Yarinaoshi][Vol.03][SP02][Blu-ray & DVD Selling Notice CM][BDRIP][1080P][H264_FLAC].mkv", + "filename": "[Kaifuku Jutsushi no Yarinaoshi][Vol.03][SP02][Blu-ray & DVD Selling Notice CM][BDRIP][1080P][H264_FLAC].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Kaifuku Jutsushi No Yarinaoshi][Vol 03][Sp02][Blu-Ray & Dvd Selling Notice Cm][Bdrip][1080P][H264 Flac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Kaifuku Jutsushi No Yarinaoshi][Vol 03][Sp02][Blu-Ray & Dvd Selling Notice Cm][Bdrip][1080P][H264 Flac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[2021][Kaifuku Jutsushi no Yarinaoshi][BDRIP][1080P][1-12Fin+SP]/[Kaifuku Jutsushi no Yarinaoshi][11][BDRIP][1080P][H264_FLAC].mkv", + "filename": "[Kaifuku Jutsushi no Yarinaoshi][11][BDRIP][1080P][H264_FLAC].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Kaifuku Jutsushi No Yarinaoshi][11][Bdrip][1080P][H264 Flac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Kaifuku Jutsushi No Yarinaoshi][11][Bdrip][1080P][H264 Flac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] Re:Monster - 07 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] Re:Monster - 07 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] Re:Monster - 07 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] Re:Monster - 07 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[BeanSub][Ao no Exorcist _Shimane Illuminati Hen][07][BIG5][1080P][x264_AAC].mp4", + "filename": "[BeanSub][Ao no Exorcist _Shimane Illuminati Hen][07][BIG5][1080P][x264_AAC].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Beansub][Ao No Exorcist Shimane Illuminati Hen][07][Big5][1080P][X264 Aac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Beansub][Ao No Exorcist Shimane Illuminati Hen][07][Big5][1080P][X264 Aac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 判處勇者刑 - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 判處勇者刑 - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 判處勇者刑 - 02 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 判處勇者刑 - 02 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 異世界的處置依社畜而定 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 異世界的處置依社畜而定 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 異世界的處置依社畜而定 - 01 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 異世界的處置依社畜而定 - 01 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "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", + "title": "[Ani] 素材採集家的異世界旅行記 - 07 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 素材採集家的異世界旅行記 - 07 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Pantheon.S02.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb/Pantheon.S02E04.Olivia.&.Farhad.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv", + "filename": "Pantheon.S02E04.Olivia.&.Farhad.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Pantheon S02E04 Olivia & Farhad 1080P Amzn Web-Dl Ddp5 1 H 264-Ntb", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Pantheon S02E04 Olivia & Farhad 1080P Amzn Web-Dl Ddp5 1 H 264-Ntb", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Pantheon.S02.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb/Pantheon.S02E07.The.World.to.Come.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv", + "filename": "Pantheon.S02E07.The.World.to.Come.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Pantheon S02E07 The World To Come 1080P Amzn Web-Dl Ddp5 1 H 264-Ntb", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Pantheon S02E07 The World To Come 1080P Amzn Web-Dl Ddp5 1 H 264-Ntb", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Pantheon.S02.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb/Pantheon.S02E03.Joey.Coupet.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv", + "filename": "Pantheon.S02E03.Joey.Coupet.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Pantheon S02E03 Joey Coupet 1080P Amzn Web-Dl Ddp5 1 H 264-Ntb", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Pantheon S02E03 Joey Coupet 1080P Amzn Web-Dl Ddp5 1 H 264-Ntb", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Pantheon.S02.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb/Pantheon.S02E01.The.Gods.Have.Not.Died.in.Vain.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv", + "filename": "Pantheon.S02E01.The.Gods.Have.Not.Died.in.Vain.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Pantheon S02E01 The Gods Have Not Died In Vain 1080P Amzn Web-Dl Ddp5 1 H 264-Ntb", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Pantheon S02E01 The Gods Have Not Died In Vain 1080P Amzn Web-Dl Ddp5 1 H 264-Ntb", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Pantheon.S02.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb/Pantheon.S02E08.Deep.Time.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv", + "filename": "Pantheon.S02E08.Deep.Time.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Pantheon S02E08 Deep Time 1080P Amzn Web-Dl Ddp5 1 H 264-Ntb", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Pantheon S02E08 Deep Time 1080P Amzn Web-Dl Ddp5 1 H 264-Ntb", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Pantheon.S02.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb/Pantheon.S02E05.Yair.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv", + "filename": "Pantheon.S02E05.Yair.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Pantheon S02E05 Yair 1080P Amzn Web-Dl Ddp5 1 H 264-Ntb", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Pantheon S02E05 Yair 1080P Amzn Web-Dl Ddp5 1 H 264-Ntb", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Pantheon.S02.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb/Pantheon.S02E02.Crack.Integrity.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv", + "filename": "Pantheon.S02E02.Crack.Integrity.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Pantheon S02E02 Crack Integrity 1080P Amzn Web-Dl Ddp5 1 H 264-Ntb", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Pantheon S02E02 Crack Integrity 1080P Amzn Web-Dl Ddp5 1 H 264-Ntb", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Pantheon.S02.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb/Pantheon.S02E06.Apokalypsis.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv", + "filename": "Pantheon.S02E06.Apokalypsis.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Pantheon S02E06 Apokalypsis 1080P Amzn Web-Dl Ddp5 1 H 264-Ntb", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Pantheon S02E06 Apokalypsis 1080P Amzn Web-Dl Ddp5 1 H 264-Ntb", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Mugen Gacha - 12 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "filename": "[LoliHouse] Mugen Gacha - 12 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Mugen Gacha - 12 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Mugen Gacha - 12 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "needs_review": true + }, + { + "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", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 青梅竹馬的戀愛喜劇無法成立 - 05 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 青梅竹馬的戀愛喜劇無法成立 - 05 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 男女之間存在純友情嗎?(不,不存在!) - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 男女之間存在純友情嗎?(不,不存在!) - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 男女之間存在純友情嗎?(不,不存在!) - 01 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 男女之間存在純友情嗎?(不,不存在!) - 01 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[BeanSub&FZSD][BLEACH_Sennen_Kessen-hen][39-40][GB][1080P][MP4]/[BeanSub&FZSD][BLEACH_Sennen_Kessen-hen][40][GB][1080P][x264_AAC].mp4", + "filename": "[BeanSub&FZSD][BLEACH_Sennen_Kessen-hen][40][GB][1080P][x264_AAC].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Beansub&Fzsd][Bleach Sennen Kessen-Hen][40][Gb][1080P][X264 Aac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Beansub&Fzsd][Bleach Sennen Kessen-Hen][40][Gb][1080P][X264 Aac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[BeanSub&FZSD][BLEACH_Sennen_Kessen-hen][39-40][GB][1080P][MP4]/[BeanSub&FZSD][BLEACH_Sennen_Kessen-hen][39][GB][1080P][x264_AAC].mp4", + "filename": "[BeanSub&FZSD][BLEACH_Sennen_Kessen-hen][39][GB][1080P][x264_AAC].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Beansub&Fzsd][Bleach Sennen Kessen-Hen][39][Gb][1080P][X264 Aac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Beansub&Fzsd][Bleach Sennen Kessen-Hen][39][Gb][1080P][X264 Aac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[HYSUB]Dungeon Meshi[15][BIG5_MP4][1920X1080].mp4", + "filename": "[HYSUB]Dungeon Meshi[15][BIG5_MP4][1920X1080].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Hysub]Dungeon Meshi[15][Big5 Mp4][1920X1080]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Hysub]Dungeon Meshi[15][Big5 Mp4][1920X1080]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] FARMAGIA 魔農傳記 - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] FARMAGIA 魔農傳記 - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] Farmagia 魔農傳記 - 02 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] Farmagia 魔農傳記 - 02 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Nekomoe kissaten&LoliHouse] Megami no Cafe Terrace - 14 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "filename": "[Nekomoe kissaten&LoliHouse] Megami no Cafe Terrace - 14 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Nekomoe Kissaten&Lolihouse] Megami No Cafe Terrace - 14 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Nekomoe Kissaten&Lolihouse] Megami No Cafe Terrace - 14 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Skymoon-Raws] Jujutsu Kaisen S2 - 01 [ViuTV][WEB-DL][CHT][1080p][AVC AAC][MP4+ASS]/[Skymoon-Raws] Jujutsu Kaisen S2 - 01 [ViuTV][WEB-DL][1080p][AVC AAC].mp4", + "filename": "[Skymoon-Raws] Jujutsu Kaisen S2 - 01 [ViuTV][WEB-DL][1080p][AVC AAC].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Skymoon-Raws] Jujutsu Kaisen S2 - 01 [Viutv][Web-Dl][1080P][Avc Aac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Skymoon-Raws] Jujutsu Kaisen S2 - 01 [Viutv][Web-Dl][1080P][Avc Aac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Nekomoe kissaten][Ishura][08][1080p][JPSC].mp4", + "filename": "[Nekomoe kissaten][Ishura][08][1080p][JPSC].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Nekomoe Kissaten][Ishura][08][1080P][Jpsc]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Nekomoe Kissaten][Ishura][08][1080P][Jpsc]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Nekomoe kissaten][Tower of God S2][19][1080p][CHT].mp4", + "filename": "[Nekomoe kissaten][Tower of God S2][19][1080p][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Nekomoe Kissaten][Tower Of God S2][19][1080P][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Nekomoe Kissaten][Tower Of God S2][19][1080P][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/《BLEACH 死神 千年血戰篇》#2/《BLEACH 死神 千年血戰篇》#2 (日語原聲)【Ani-One Asia ULTRA】.mp4", + "filename": "《BLEACH 死神 千年血戰篇》#2 (日語原聲)【Ani-One Asia ULTRA】.mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "《Bleach 死神 千年血戰篇》#2 (日語原聲)【Ani-One Asia Ultra】", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "《Bleach 死神 千年血戰篇》#2 (日語原聲)【Ani-One Asia Ultra】", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[BeanSub][Ao no Exorcist _Shimane Illuminati Hen][05][BIG5][1080P][x264_AAC].mp4", + "filename": "[BeanSub][Ao no Exorcist _Shimane Illuminati Hen][05][BIG5][1080P][x264_AAC].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Beansub][Ao No Exorcist Shimane Illuminati Hen][05][Big5][1080P][X264 Aac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Beansub][Ao No Exorcist Shimane Illuminati Hen][05][Big5][1080P][X264 Aac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Nekomoe kissaten][Ninja Kamui][01][1080p][CHS].mp4", + "filename": "[Nekomoe kissaten][Ninja Kamui][01][1080p][CHS].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Nekomoe Kissaten][Ninja Kamui][01][1080P][Chs]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Nekomoe Kissaten][Ninja Kamui][01][1080P][Chs]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] GNOSIA - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] GNOSIA - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] Gnosia - 01 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] Gnosia - 01 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 休假的壞人先生 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 休假的壞人先生 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 休假的壞人先生 - 01 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 休假的壞人先生 - 01 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Shangri-La Frontier - 32 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "filename": "[LoliHouse] Shangri-La Frontier - 32 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Shangri-La Frontier - 32 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Shangri-La Frontier - 32 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Ore dake Level Up na Ken - 09 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "filename": "[LoliHouse] Ore dake Level Up na Ken - 09 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Ore Dake Level Up Na Ken - 09 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Ore Dake Level Up Na Ken - 09 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 聽說你們要結婚!? - 08 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 聽說你們要結婚!? - 08 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 聽說你們要結婚!? - 08 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 聽說你們要結婚!? - 08 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[orion origin] Boukyaku Battery [09] [1080p] [H265 AAC] [CHT&JPN].mp4", + "filename": "[orion origin] Boukyaku Battery [09] [1080p] [H265 AAC] [CHT&JPN].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Orion Origin] Boukyaku Battery [09] [1080P] [H265 Aac] [Cht&Jpn]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Orion Origin] Boukyaku Battery [09] [1080P] [H265 Aac] [Cht&Jpn]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 不中用的前輩。 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 不中用的前輩。 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 不中用的前輩。 - 01 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 不中用的前輩。 - 01 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 我獨自升級 - 11 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 我獨自升級 - 11 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 我獨自升級 - 11 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 我獨自升級 - 11 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] Silent Witch 沉默魔女的祕密 - 06 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] Silent Witch 沉默魔女的祕密 - 06 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] Silent Witch 沉默魔女的祕密 - 06 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] Silent Witch 沉默魔女的祕密 - 06 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 歲月流逝飯菜依舊美味 - 08 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 歲月流逝飯菜依舊美味 - 08 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 歲月流逝飯菜依舊美味 - 08 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 歲月流逝飯菜依舊美味 - 08 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[HYSUB]The Fable[02][BIG5_MP4][1920X1080].mp4", + "filename": "[HYSUB]The Fable[02][BIG5_MP4][1920X1080].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Hysub]The Fable[02][Big5 Mp4][1920X1080]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Hysub]The Fable[02][Big5 Mp4][1920X1080]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 差點在迷宮深處被信任的夥伴殺掉,但靠著天賜技能「無限扭蛋」獲得等級 9999 的夥伴,我要向前隊友和世界展開復仇&「給他們好看!」 - 11 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 差點在迷宮深處被信任的夥伴殺掉,但靠著天賜技能「無限扭蛋」獲得等級 9999 的夥伴,我要向前隊友和世界展開復仇&「給他們好看!」 - 11 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 差點在迷宮深處被信任的夥伴殺掉,但靠著天賜技能「無限扭蛋」獲得等級 9999 的夥伴,我要向前隊友和世界展開復仇&「給他們好看!」 - 11 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 差點在迷宮深處被信任的夥伴殺掉,但靠著天賜技能「無限扭蛋」獲得等級 9999 的夥伴,我要向前隊友和世界展開復仇&「給他們好看!」 - 11 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Dymy][Kimetsu no Yaiba - Yuukaku Hen][01-11][BIG5][1920X1080]/[Dymy][Kimetsu no Yaiba - Yuukaku Hen][10][BIG5][1920X1080].mp4", + "filename": "[Dymy][Kimetsu no Yaiba - Yuukaku Hen][10][BIG5][1920X1080].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Dymy][Kimetsu No Yaiba - Yuukaku Hen][10][Big5][1920X1080]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Dymy][Kimetsu No Yaiba - Yuukaku Hen][10][Big5][1920X1080]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Dymy][Kimetsu no Yaiba - Yuukaku Hen][01-11][BIG5][1920X1080]/[Dymy][Kimetsu no Yaiba - Yuukaku Hen][06][BIG5][1920X1080].mp4", + "filename": "[Dymy][Kimetsu no Yaiba - Yuukaku Hen][06][BIG5][1920X1080].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Dymy][Kimetsu No Yaiba - Yuukaku Hen][06][Big5][1920X1080]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Dymy][Kimetsu No Yaiba - Yuukaku Hen][06][Big5][1920X1080]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Dymy][Kimetsu no Yaiba - Yuukaku Hen][01-11][BIG5][1920X1080]/[Dymy][Kimetsu no Yaiba - Yuukaku Hen][07][BIG5][1920X1080].mp4", + "filename": "[Dymy][Kimetsu no Yaiba - Yuukaku Hen][07][BIG5][1920X1080].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Dymy][Kimetsu No Yaiba - Yuukaku Hen][07][Big5][1920X1080]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Dymy][Kimetsu No Yaiba - Yuukaku Hen][07][Big5][1920X1080]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Dymy][Kimetsu no Yaiba - Yuukaku Hen][01-11][BIG5][1920X1080]/[Dymy][Kimetsu no Yaiba - Yuukaku Hen][01][BIG5][1920X1080].mp4", + "filename": "[Dymy][Kimetsu no Yaiba - Yuukaku Hen][01][BIG5][1920X1080].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Dymy][Kimetsu No Yaiba - Yuukaku Hen][01][Big5][1920X1080]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Dymy][Kimetsu No Yaiba - Yuukaku Hen][01][Big5][1920X1080]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Dymy][Kimetsu no Yaiba - Yuukaku Hen][01-11][BIG5][1920X1080]/[Dymy][Kimetsu no Yaiba - Yuukaku Hen][08][BIG5][1920X1080].mp4", + "filename": "[Dymy][Kimetsu no Yaiba - Yuukaku Hen][08][BIG5][1920X1080].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Dymy][Kimetsu No Yaiba - Yuukaku Hen][08][Big5][1920X1080]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Dymy][Kimetsu No Yaiba - Yuukaku Hen][08][Big5][1920X1080]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Dymy][Kimetsu no Yaiba - Yuukaku Hen][01-11][BIG5][1920X1080]/[Dymy][Kimetsu no Yaiba - Yuukaku Hen][02][BIG5][1920X1080].mp4", + "filename": "[Dymy][Kimetsu no Yaiba - Yuukaku Hen][02][BIG5][1920X1080].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Dymy][Kimetsu No Yaiba - Yuukaku Hen][02][Big5][1920X1080]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Dymy][Kimetsu No Yaiba - Yuukaku Hen][02][Big5][1920X1080]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Dymy][Kimetsu no Yaiba - Yuukaku Hen][01-11][BIG5][1920X1080]/[Dymy][Kimetsu no Yaiba - Yuukaku Hen][04][BIG5][1920X1080].mp4", + "filename": "[Dymy][Kimetsu no Yaiba - Yuukaku Hen][04][BIG5][1920X1080].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Dymy][Kimetsu No Yaiba - Yuukaku Hen][04][Big5][1920X1080]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Dymy][Kimetsu No Yaiba - Yuukaku Hen][04][Big5][1920X1080]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Dymy][Kimetsu no Yaiba - Yuukaku Hen][01-11][BIG5][1920X1080]/[Dymy][Kimetsu no Yaiba - Yuukaku Hen][09][BIG5][1920X1080].mp4", + "filename": "[Dymy][Kimetsu no Yaiba - Yuukaku Hen][09][BIG5][1920X1080].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Dymy][Kimetsu No Yaiba - Yuukaku Hen][09][Big5][1920X1080]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Dymy][Kimetsu No Yaiba - Yuukaku Hen][09][Big5][1920X1080]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Dymy][Kimetsu no Yaiba - Yuukaku Hen][01-11][BIG5][1920X1080]/[Dymy][Kimetsu no Yaiba - Yuukaku Hen][11][END][BIG5][1920X1080].mp4", + "filename": "[Dymy][Kimetsu no Yaiba - Yuukaku Hen][11][END][BIG5][1920X1080].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Dymy][Kimetsu No Yaiba - Yuukaku Hen][11][End][Big5][1920X1080]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Dymy][Kimetsu No Yaiba - Yuukaku Hen][11][End][Big5][1920X1080]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Dymy][Kimetsu no Yaiba - Yuukaku Hen][01-11][BIG5][1920X1080]/[Dymy][Kimetsu no Yaiba - Yuukaku Hen][03][BIG5][1920X1080].mp4", + "filename": "[Dymy][Kimetsu no Yaiba - Yuukaku Hen][03][BIG5][1920X1080].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Dymy][Kimetsu No Yaiba - Yuukaku Hen][03][Big5][1920X1080]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Dymy][Kimetsu No Yaiba - Yuukaku Hen][03][Big5][1920X1080]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Dymy][Kimetsu no Yaiba - Yuukaku Hen][01-11][BIG5][1920X1080]/[Dymy][Kimetsu no Yaiba - Yuukaku Hen][05][BIG5][1920X1080].mp4", + "filename": "[Dymy][Kimetsu no Yaiba - Yuukaku Hen][05][BIG5][1920X1080].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Dymy][Kimetsu No Yaiba - Yuukaku Hen][05][Big5][1920X1080]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Dymy][Kimetsu No Yaiba - Yuukaku Hen][05][Big5][1920X1080]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Izure Saikyou no Renkinjutsushi - 01 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "filename": "[LoliHouse] Izure Saikyou no Renkinjutsushi - 01 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Izure Saikyou No Renkinjutsushi - 01 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Izure Saikyou No Renkinjutsushi - 01 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] WIND BREAKER—防風少年— - 07 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] WIND BREAKER—防風少年— - 07 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] Wind Breaker—防風少年— - 07 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] Wind Breaker—防風少年— - 07 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[BeanSub&FZSD][Jigokuraku][17][GB][1080P][x264_AAC].mp4", + "filename": "[BeanSub&FZSD][Jigokuraku][17][GB][1080P][x264_AAC].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Beansub&Fzsd][Jigokuraku][17][Gb][1080P][X264 Aac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Beansub&Fzsd][Jigokuraku][17][Gb][1080P][X264 Aac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[HYSUB]Dungeon Meshi[23][BIG5_MP4][1920X1080].mp4", + "filename": "[HYSUB]Dungeon Meshi[23][BIG5_MP4][1920X1080].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Hysub]Dungeon Meshi[23][Big5 Mp4][1920X1080]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Hysub]Dungeon Meshi[23][Big5 Mp4][1920X1080]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 新人大叔冒險者,被最強隊伍操到死成無敵 - 08 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 新人大叔冒險者,被最強隊伍操到死成無敵 - 08 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 新人大叔冒險者,被最強隊伍操到死成無敵 - 08 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 新人大叔冒險者,被最強隊伍操到死成無敵 - 08 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 最後可以再拜託您一件事嗎? - 11 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 最後可以再拜託您一件事嗎? - 11 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 最後可以再拜託您一件事嗎? - 11 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 最後可以再拜託您一件事嗎? - 11 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 使人誤解的工房主~關於原英雄隊伍的雜役人員,實際上除了戰鬥能力外全是SSS的故事~ - 07 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 使人誤解的工房主~關於原英雄隊伍的雜役人員,實際上除了戰鬥能力外全是SSS的故事~ - 07 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 使人誤解的工房主~關於原英雄隊伍的雜役人員,實際上除了戰鬥能力外全是Sss的故事~ - 07 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 使人誤解的工房主~關於原英雄隊伍的雜役人員,實際上除了戰鬥能力外全是Sss的故事~ - 07 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Nekomoe kissaten][Ishura][11][1080p][JPSC].mp4", + "filename": "[Nekomoe kissaten][Ishura][11][1080p][JPSC].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Nekomoe Kissaten][Ishura][11][1080P][Jpsc]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Nekomoe Kissaten][Ishura][11][1080P][Jpsc]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Nekomoe kissaten][Dungeon Meshi][19][1080p][JPTC].mp4", + "filename": "[Nekomoe kissaten][Dungeon Meshi][19][1080p][JPTC].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Nekomoe Kissaten][Dungeon Meshi][19][1080P][Jptc]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Nekomoe Kissaten][Dungeon Meshi][19][1080P][Jptc]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[orion origin] Boukyaku Battery [04] [1080p] [H265 AAC] [CHT&JPN].mp4", + "filename": "[orion origin] Boukyaku Battery [04] [1080p] [H265 AAC] [CHT&JPN].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Orion Origin] Boukyaku Battery [04] [1080P] [H265 Aac] [Cht&Jpn]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Orion Origin] Boukyaku Battery [04] [1080P] [H265 Aac] [Cht&Jpn]", + "needs_review": true + }, + { + "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", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 我獨自升級 第二季 -起於闇影- - 14 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 我獨自升級 第二季 -起於闇影- - 14 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 素材採集家的異世界旅行記 - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 素材採集家的異世界旅行記 - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 素材採集家的異世界旅行記 - 02 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 素材採集家的異世界旅行記 - 02 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/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", + "filename": "Record.of.Ragnarok.S02E04.The.Final.Labor.1080p.NF.WEB-DL.DUAL.DDP2.0.H.264-SMURF.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Record Of Ragnarok S02E04 The Final Labor 1080P Nf Web-Dl Dual Ddp2 0 H 264-Smurf", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Record Of Ragnarok S02E04 The Final Labor 1080P Nf Web-Dl Dual Ddp2 0 H 264-Smurf", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Record.of.Ragnarok.S02E01.1080p.NF.WEB-DL.DUAL.DDP2.0.H.264-SMURF/Record.of.Ragnarok.S02E06.Conflicting.Motives.1080p.NF.WEB-DL.DUAL.DDP2.0.H.264-SMURF.mkv", + "filename": "Record.of.Ragnarok.S02E06.Conflicting.Motives.1080p.NF.WEB-DL.DUAL.DDP2.0.H.264-SMURF.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Record Of Ragnarok S02E06 Conflicting Motives 1080P Nf Web-Dl Dual Ddp2 0 H 264-Smurf", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Record Of Ragnarok S02E06 Conflicting Motives 1080P Nf Web-Dl Dual Ddp2 0 H 264-Smurf", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Record.of.Ragnarok.S02E01.1080p.NF.WEB-DL.DUAL.DDP2.0.H.264-SMURF/Record.of.Ragnarok.S02E05.Requiem.1080p.NF.WEB-DL.DUAL.DDP2.0.H.264-SMURF.mkv", + "filename": "Record.of.Ragnarok.S02E05.Requiem.1080p.NF.WEB-DL.DUAL.DDP2.0.H.264-SMURF.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Record Of Ragnarok S02E05 Requiem 1080P Nf Web-Dl Dual Ddp2 0 H 264-Smurf", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Record Of Ragnarok S02E05 Requiem 1080P Nf Web-Dl Dual Ddp2 0 H 264-Smurf", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Record.of.Ragnarok.S02E01.1080p.NF.WEB-DL.DUAL.DDP2.0.H.264-SMURF/Record.of.Ragnarok.S02E03.Birth.of.a.Monster.1080p.NF.WEB-DL.DUAL.DDP2.0.H.264-SMURF.mkv", + "filename": "Record.of.Ragnarok.S02E03.Birth.of.a.Monster.1080p.NF.WEB-DL.DUAL.DDP2.0.H.264-SMURF.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Record Of Ragnarok S02E03 Birth Of A Monster 1080P Nf Web-Dl Dual Ddp2 0 H 264-Smurf", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Record Of Ragnarok S02E03 Birth Of A Monster 1080P Nf Web-Dl Dual Ddp2 0 H 264-Smurf", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Record.of.Ragnarok.S02E01.1080p.NF.WEB-DL.DUAL.DDP2.0.H.264-SMURF/Record.of.Ragnarok.S02E01.Good.vs.Evil.1080p.NF.WEB-DL.DUAL.DDP2.0.H.264-SMURF.mkv", + "filename": "Record.of.Ragnarok.S02E01.Good.vs.Evil.1080p.NF.WEB-DL.DUAL.DDP2.0.H.264-SMURF.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Record Of Ragnarok S02E01 Good Vs Evil 1080P Nf Web-Dl Dual Ddp2 0 H 264-Smurf", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Record Of Ragnarok S02E01 Good Vs Evil 1080P Nf Web-Dl Dual Ddp2 0 H 264-Smurf", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Record.of.Ragnarok.S02E01.1080p.NF.WEB-DL.DUAL.DDP2.0.H.264-SMURF/Record.of.Ragnarok.S02E07.Hundred.Seals.1080p.NF.WEB-DL.DUAL.DDP2.0.H.264-SMURF.mkv", + "filename": "Record.of.Ragnarok.S02E07.Hundred.Seals.1080p.NF.WEB-DL.DUAL.DDP2.0.H.264-SMURF.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Record Of Ragnarok S02E07 Hundred Seals 1080P Nf Web-Dl Dual Ddp2 0 H 264-Smurf", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Record Of Ragnarok S02E07 Hundred Seals 1080P Nf Web-Dl Dual Ddp2 0 H 264-Smurf", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Record.of.Ragnarok.S02E01.1080p.NF.WEB-DL.DUAL.DDP2.0.H.264-SMURF/Record.of.Ragnarok.S02E09.Resonance.1080p.NF.WEB-DL.DUAL.DDP2.0.H.264-SMURF.mkv", + "filename": "Record.of.Ragnarok.S02E09.Resonance.1080p.NF.WEB-DL.DUAL.DDP2.0.H.264-SMURF.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Record Of Ragnarok S02E09 Resonance 1080P Nf Web-Dl Dual Ddp2 0 H 264-Smurf", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Record Of Ragnarok S02E09 Resonance 1080P Nf Web-Dl Dual Ddp2 0 H 264-Smurf", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Record.of.Ragnarok.S02E01.1080p.NF.WEB-DL.DUAL.DDP2.0.H.264-SMURF/Record.of.Ragnarok.S02E10.The.Brink.1080p.NF.WEB-DL.DUAL.DDP2.0.H.264-SMURF.mkv", + "filename": "Record.of.Ragnarok.S02E10.The.Brink.1080p.NF.WEB-DL.DUAL.DDP2.0.H.264-SMURF.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Record Of Ragnarok S02E10 The Brink 1080P Nf Web-Dl Dual Ddp2 0 H 264-Smurf", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Record Of Ragnarok S02E10 The Brink 1080P Nf Web-Dl Dual Ddp2 0 H 264-Smurf", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Record.of.Ragnarok.S02E01.1080p.NF.WEB-DL.DUAL.DDP2.0.H.264-SMURF/Record.of.Ragnarok.S02E02.The.Indomitable.War.God.1080p.NF.WEB-DL.DUAL.DDP2.0.H.264-SMURF.mkv", + "filename": "Record.of.Ragnarok.S02E02.The.Indomitable.War.God.1080p.NF.WEB-DL.DUAL.DDP2.0.H.264-SMURF.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Record Of Ragnarok S02E02 The Indomitable War God 1080P Nf Web-Dl Dual Ddp2 0 H 264-Smurf", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Record Of Ragnarok S02E02 The Indomitable War God 1080P Nf Web-Dl Dual Ddp2 0 H 264-Smurf", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Record.of.Ragnarok.S02E01.1080p.NF.WEB-DL.DUAL.DDP2.0.H.264-SMURF/Record.of.Ragnarok.S02E08.The.Pinnacle.of.1116.1080p.NF.WEB-DL.DUAL.DDP2.0.H.264-SMURF.mkv", + "filename": "Record.of.Ragnarok.S02E08.The.Pinnacle.of.1116.1080p.NF.WEB-DL.DUAL.DDP2.0.H.264-SMURF.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Record Of Ragnarok S02E08 The Pinnacle Of 1116 1080P Nf Web-Dl Dual Ddp2 0 H 264-Smurf", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Record Of Ragnarok S02E08 The Pinnacle Of 1116 1080P Nf Web-Dl Dual Ddp2 0 H 264-Smurf", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[KyokuSai] Adam's Sweet Agony [06][720P][WEB-DL][UNC].mp4", + "filename": "[KyokuSai] Adam's Sweet Agony [06][720P][WEB-DL][UNC].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Kyokusai] Adam'S Sweet Agony [06][720P][Web-Dl][Unc]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Kyokusai] Adam'S Sweet Agony [06][720P][Web-Dl][Unc]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 我要【招架】一切~反誤解的世界最強想成為冒險家~ - 11 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 我要【招架】一切~反誤解的世界最強想成為冒險家~ - 11 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 我要【招架】一切~反誤解的世界最強想成為冒險家~ - 11 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 我要【招架】一切~反誤解的世界最強想成為冒險家~ - 11 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Yuusha Kei ni Shosu Choubatsu Yuusha 9004-tai Keimu Kiroku - 01 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "filename": "[LoliHouse] Yuusha Kei ni Shosu Choubatsu Yuusha 9004-tai Keimu Kiroku - 01 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Yuusha Kei Ni Shosu Choubatsu Yuusha 9004-Tai Keimu Kiroku - 01 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Yuusha Kei Ni Shosu Choubatsu Yuusha 9004-Tai Keimu Kiroku - 01 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "needs_review": true + }, + { + "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", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 完美到難以接近的聖女遭到解除婚約後被賣到鄰國 - 05 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 完美到難以接近的聖女遭到解除婚約後被賣到鄰國 - 05 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Skymoon-Raws] Mushoku Tensei 2nd Season - 00 [ViuTV][WEB-DL][CHT][1080p][AVC AAC][MP4+ASS]/[Skymoon-Raws] Mushoku Tensei 2nd Season - 00 [ViuTV][WEB-DL][1080p][AVC AAC].mp4", + "filename": "[Skymoon-Raws] Mushoku Tensei 2nd Season - 00 [ViuTV][WEB-DL][1080p][AVC AAC].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Skymoon-Raws] Mushoku Tensei 2Nd Season - 00 [Viutv][Web-Dl][1080P][Avc Aac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Skymoon-Raws] Mushoku Tensei 2Nd Season - 00 [Viutv][Web-Dl][1080P][Avc Aac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Mobile.Suit.Gundam.Hathaway’s.Flash.2021.BluRay.1080p.10bit.TrueHD(Atmos).7.1.x265-beAst/Mobile.Suit.Gundam.Hathaway’s.Flash.2021.BluRay.1080p.10bit.TrueHD(Atmos).7.1.x265-beAst.mkv", + "filename": "Mobile.Suit.Gundam.Hathaway’s.Flash.2021.BluRay.1080p.10bit.TrueHD(Atmos).7.1.x265-beAst.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Mobile Suit Gundam Hathaway’S Flash 2021 Bluray 1080P 10Bit Truehd(Atmos) 7 1 X265-Beast", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Mobile Suit Gundam Hathaway’S Flash 2021 Bluray 1080P 10Bit Truehd(Atmos) 7 1 X265-Beast", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] Silent Witch 沉默魔女的祕密 - 03 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] Silent Witch 沉默魔女的祕密 - 03 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] Silent Witch 沉默魔女的祕密 - 03 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] Silent Witch 沉默魔女的祕密 - 03 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/The.Apothecary.Diaries.S02E16.Festering.Resentment.1080p.NF.WEB-DL.JPN.AAC2.0.H.264.MSubs-ToonsHub.mkv", + "filename": "The.Apothecary.Diaries.S02E16.Festering.Resentment.1080p.NF.WEB-DL.JPN.AAC2.0.H.264.MSubs-ToonsHub.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "The Apothecary Diaries S02E16 Festering Resentment 1080P Nf Web-Dl Jpn Aac2 0 H 264 Msubs-Toonshub", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "The Apothecary Diaries S02E16 Festering Resentment 1080P Nf Web-Dl Jpn Aac2 0 H 264 Msubs-Toonshub", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[CASO&Airota&LoliHouse] Spice and Wolf (2024) [01-25][WebRip 1080p HEVC-10bit AAC ASSx2]/[CASO&Airota&LoliHouse] Spice and Wolf (2024) - 13 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "filename": "[CASO&Airota&LoliHouse] Spice and Wolf (2024) - 13 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Caso&Airota&Lolihouse] Spice And Wolf (2024) - 13 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Caso&Airota&Lolihouse] Spice And Wolf (2024) - 13 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[CASO&Airota&LoliHouse] Spice and Wolf (2024) [01-25][WebRip 1080p HEVC-10bit AAC ASSx2]/[CASO&Airota&LoliHouse] Spice and Wolf (2024) - 08 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "filename": "[CASO&Airota&LoliHouse] Spice and Wolf (2024) - 08 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Caso&Airota&Lolihouse] Spice And Wolf (2024) - 08 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Caso&Airota&Lolihouse] Spice And Wolf (2024) - 08 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[CASO&Airota&LoliHouse] Spice and Wolf (2024) [01-25][WebRip 1080p HEVC-10bit AAC ASSx2]/[CASO&Airota&LoliHouse] Spice and Wolf (2024) - 17 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "filename": "[CASO&Airota&LoliHouse] Spice and Wolf (2024) - 17 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Caso&Airota&Lolihouse] Spice And Wolf (2024) - 17 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Caso&Airota&Lolihouse] Spice And Wolf (2024) - 17 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[CASO&Airota&LoliHouse] Spice and Wolf (2024) [01-25][WebRip 1080p HEVC-10bit AAC ASSx2]/[CASO&Airota&LoliHouse] Spice and Wolf (2024) - 04 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "filename": "[CASO&Airota&LoliHouse] Spice and Wolf (2024) - 04 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Caso&Airota&Lolihouse] Spice And Wolf (2024) - 04 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Caso&Airota&Lolihouse] Spice And Wolf (2024) - 04 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[CASO&Airota&LoliHouse] Spice and Wolf (2024) [01-25][WebRip 1080p HEVC-10bit AAC ASSx2]/[CASO&Airota&LoliHouse] Spice and Wolf (2024) - 23 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "filename": "[CASO&Airota&LoliHouse] Spice and Wolf (2024) - 23 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Caso&Airota&Lolihouse] Spice And Wolf (2024) - 23 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Caso&Airota&Lolihouse] Spice And Wolf (2024) - 23 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[CASO&Airota&LoliHouse] Spice and Wolf (2024) [01-25][WebRip 1080p HEVC-10bit AAC ASSx2]/[CASO&Airota&LoliHouse] Spice and Wolf (2024) - 05 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "filename": "[CASO&Airota&LoliHouse] Spice and Wolf (2024) - 05 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Caso&Airota&Lolihouse] Spice And Wolf (2024) - 05 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Caso&Airota&Lolihouse] Spice And Wolf (2024) - 05 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[CASO&Airota&LoliHouse] Spice and Wolf (2024) [01-25][WebRip 1080p HEVC-10bit AAC ASSx2]/[CASO&Airota&LoliHouse] Spice and Wolf (2024) - 22 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "filename": "[CASO&Airota&LoliHouse] Spice and Wolf (2024) - 22 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Caso&Airota&Lolihouse] Spice And Wolf (2024) - 22 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Caso&Airota&Lolihouse] Spice And Wolf (2024) - 22 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[CASO&Airota&LoliHouse] Spice and Wolf (2024) [01-25][WebRip 1080p HEVC-10bit AAC ASSx2]/[CASO&Airota&LoliHouse] Spice and Wolf (2024) - 01 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "filename": "[CASO&Airota&LoliHouse] Spice and Wolf (2024) - 01 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Caso&Airota&Lolihouse] Spice And Wolf (2024) - 01 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Caso&Airota&Lolihouse] Spice And Wolf (2024) - 01 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[CASO&Airota&LoliHouse] Spice and Wolf (2024) [01-25][WebRip 1080p HEVC-10bit AAC ASSx2]/[CASO&Airota&LoliHouse] Spice and Wolf (2024) - 09 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "filename": "[CASO&Airota&LoliHouse] Spice and Wolf (2024) - 09 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Caso&Airota&Lolihouse] Spice And Wolf (2024) - 09 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Caso&Airota&Lolihouse] Spice And Wolf (2024) - 09 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[CASO&Airota&LoliHouse] Spice and Wolf (2024) [01-25][WebRip 1080p HEVC-10bit AAC ASSx2]/[CASO&Airota&LoliHouse] Spice and Wolf (2024) - 12 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "filename": "[CASO&Airota&LoliHouse] Spice and Wolf (2024) - 12 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Caso&Airota&Lolihouse] Spice And Wolf (2024) - 12 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Caso&Airota&Lolihouse] Spice And Wolf (2024) - 12 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[CASO&Airota&LoliHouse] Spice and Wolf (2024) [01-25][WebRip 1080p HEVC-10bit AAC ASSx2]/[CASO&Airota&LoliHouse] Spice and Wolf (2024) - 16 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "filename": "[CASO&Airota&LoliHouse] Spice and Wolf (2024) - 16 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Caso&Airota&Lolihouse] Spice And Wolf (2024) - 16 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Caso&Airota&Lolihouse] Spice And Wolf (2024) - 16 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[CASO&Airota&LoliHouse] Spice and Wolf (2024) [01-25][WebRip 1080p HEVC-10bit AAC ASSx2]/[CASO&Airota&LoliHouse] Spice and Wolf (2024) - 20 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "filename": "[CASO&Airota&LoliHouse] Spice and Wolf (2024) - 20 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Caso&Airota&Lolihouse] Spice And Wolf (2024) - 20 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Caso&Airota&Lolihouse] Spice And Wolf (2024) - 20 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[CASO&Airota&LoliHouse] Spice and Wolf (2024) [01-25][WebRip 1080p HEVC-10bit AAC ASSx2]/[CASO&Airota&LoliHouse] Spice and Wolf (2024) - 07 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "filename": "[CASO&Airota&LoliHouse] Spice and Wolf (2024) - 07 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Caso&Airota&Lolihouse] Spice And Wolf (2024) - 07 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Caso&Airota&Lolihouse] Spice And Wolf (2024) - 07 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[CASO&Airota&LoliHouse] Spice and Wolf (2024) [01-25][WebRip 1080p HEVC-10bit AAC ASSx2]/[CASO&Airota&LoliHouse] Spice and Wolf (2024) - 24 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "filename": "[CASO&Airota&LoliHouse] Spice and Wolf (2024) - 24 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Caso&Airota&Lolihouse] Spice And Wolf (2024) - 24 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Caso&Airota&Lolihouse] Spice And Wolf (2024) - 24 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[CASO&Airota&LoliHouse] Spice and Wolf (2024) [01-25][WebRip 1080p HEVC-10bit AAC ASSx2]/[CASO&Airota&LoliHouse] Spice and Wolf (2024) - 03 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "filename": "[CASO&Airota&LoliHouse] Spice and Wolf (2024) - 03 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Caso&Airota&Lolihouse] Spice And Wolf (2024) - 03 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Caso&Airota&Lolihouse] Spice And Wolf (2024) - 03 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[CASO&Airota&LoliHouse] Spice and Wolf (2024) [01-25][WebRip 1080p HEVC-10bit AAC ASSx2]/[CASO&Airota&LoliHouse] Spice and Wolf (2024) - 18 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "filename": "[CASO&Airota&LoliHouse] Spice and Wolf (2024) - 18 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Caso&Airota&Lolihouse] Spice And Wolf (2024) - 18 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Caso&Airota&Lolihouse] Spice And Wolf (2024) - 18 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[CASO&Airota&LoliHouse] Spice and Wolf (2024) [01-25][WebRip 1080p HEVC-10bit AAC ASSx2]/[CASO&Airota&LoliHouse] Spice and Wolf (2024) - 10 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "filename": "[CASO&Airota&LoliHouse] Spice and Wolf (2024) - 10 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Caso&Airota&Lolihouse] Spice And Wolf (2024) - 10 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Caso&Airota&Lolihouse] Spice And Wolf (2024) - 10 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[CASO&Airota&LoliHouse] Spice and Wolf (2024) [01-25][WebRip 1080p HEVC-10bit AAC ASSx2]/[CASO&Airota&LoliHouse] Spice and Wolf (2024) - 14 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "filename": "[CASO&Airota&LoliHouse] Spice and Wolf (2024) - 14 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Caso&Airota&Lolihouse] Spice And Wolf (2024) - 14 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Caso&Airota&Lolihouse] Spice And Wolf (2024) - 14 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[CASO&Airota&LoliHouse] Spice and Wolf (2024) [01-25][WebRip 1080p HEVC-10bit AAC ASSx2]/[CASO&Airota&LoliHouse] Spice and Wolf (2024) - 11 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "filename": "[CASO&Airota&LoliHouse] Spice and Wolf (2024) - 11 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Caso&Airota&Lolihouse] Spice And Wolf (2024) - 11 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Caso&Airota&Lolihouse] Spice And Wolf (2024) - 11 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[CASO&Airota&LoliHouse] Spice and Wolf (2024) [01-25][WebRip 1080p HEVC-10bit AAC ASSx2]/[CASO&Airota&LoliHouse] Spice and Wolf (2024) - 15 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "filename": "[CASO&Airota&LoliHouse] Spice and Wolf (2024) - 15 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Caso&Airota&Lolihouse] Spice And Wolf (2024) - 15 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Caso&Airota&Lolihouse] Spice And Wolf (2024) - 15 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[CASO&Airota&LoliHouse] Spice and Wolf (2024) [01-25][WebRip 1080p HEVC-10bit AAC ASSx2]/[CASO&Airota&LoliHouse] Spice and Wolf (2024) - 21 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "filename": "[CASO&Airota&LoliHouse] Spice and Wolf (2024) - 21 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Caso&Airota&Lolihouse] Spice And Wolf (2024) - 21 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Caso&Airota&Lolihouse] Spice And Wolf (2024) - 21 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[CASO&Airota&LoliHouse] Spice and Wolf (2024) [01-25][WebRip 1080p HEVC-10bit AAC ASSx2]/[CASO&Airota&LoliHouse] Spice and Wolf (2024) - 06 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "filename": "[CASO&Airota&LoliHouse] Spice and Wolf (2024) - 06 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Caso&Airota&Lolihouse] Spice And Wolf (2024) - 06 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Caso&Airota&Lolihouse] Spice And Wolf (2024) - 06 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[CASO&Airota&LoliHouse] Spice and Wolf (2024) [01-25][WebRip 1080p HEVC-10bit AAC ASSx2]/[CASO&Airota&LoliHouse] Spice and Wolf (2024) - 25 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "filename": "[CASO&Airota&LoliHouse] Spice and Wolf (2024) - 25 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Caso&Airota&Lolihouse] Spice And Wolf (2024) - 25 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Caso&Airota&Lolihouse] Spice And Wolf (2024) - 25 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[CASO&Airota&LoliHouse] Spice and Wolf (2024) [01-25][WebRip 1080p HEVC-10bit AAC ASSx2]/[CASO&Airota&LoliHouse] Spice and Wolf (2024) - 19 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "filename": "[CASO&Airota&LoliHouse] Spice and Wolf (2024) - 19 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Caso&Airota&Lolihouse] Spice And Wolf (2024) - 19 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Caso&Airota&Lolihouse] Spice And Wolf (2024) - 19 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[CASO&Airota&LoliHouse] Spice and Wolf (2024) [01-25][WebRip 1080p HEVC-10bit AAC ASSx2]/[CASO&Airota&LoliHouse] Spice and Wolf (2024) - 02 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "filename": "[CASO&Airota&LoliHouse] Spice and Wolf (2024) - 02 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Caso&Airota&Lolihouse] Spice And Wolf (2024) - 02 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Caso&Airota&Lolihouse] Spice And Wolf (2024) - 02 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 膽大黨 - 11 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 膽大黨 - 11 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 膽大黨 - 11 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 膽大黨 - 11 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/KENGAN.ASHURA.S02.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG/KENGAN.ASHURA.S02E23.Wholehearted.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG.mkv", + "filename": "KENGAN.ASHURA.S02E23.Wholehearted.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Kengan Ashura S02E23 Wholehearted 1080P Nf Web-Dl Ddp5 1 H 264-Varyg", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Kengan Ashura S02E23 Wholehearted 1080P Nf Web-Dl Ddp5 1 H 264-Varyg", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/KENGAN.ASHURA.S02.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG/KENGAN.ASHURA.S02E11.Rebel.Flag.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG.mkv", + "filename": "KENGAN.ASHURA.S02E11.Rebel.Flag.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Kengan Ashura S02E11 Rebel Flag 1080P Nf Web-Dl Ddp5 1 H 264-Varyg", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Kengan Ashura S02E11 Rebel Flag 1080P Nf Web-Dl Ddp5 1 H 264-Varyg", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/KENGAN.ASHURA.S02.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG/KENGAN.ASHURA.S02E22.Wakatsuki.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG.mkv", + "filename": "KENGAN.ASHURA.S02E22.Wakatsuki.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Kengan Ashura S02E22 Wakatsuki 1080P Nf Web-Dl Ddp5 1 H 264-Varyg", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Kengan Ashura S02E22 Wakatsuki 1080P Nf Web-Dl Ddp5 1 H 264-Varyg", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/KENGAN.ASHURA.S02.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG/KENGAN.ASHURA.S02E26.The.Finals.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG.mkv", + "filename": "KENGAN.ASHURA.S02E26.The.Finals.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Kengan Ashura S02E26 The Finals 1080P Nf Web-Dl Ddp5 1 H 264-Varyg", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Kengan Ashura S02E26 The Finals 1080P Nf Web-Dl Ddp5 1 H 264-Varyg", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/KENGAN.ASHURA.S02.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG/KENGAN.ASHURA.S02E02.Blast.Core.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG.mkv", + "filename": "KENGAN.ASHURA.S02E02.Blast.Core.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Kengan Ashura S02E02 Blast Core 1080P Nf Web-Dl Ddp5 1 H 264-Varyg", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Kengan Ashura S02E02 Blast Core 1080P Nf Web-Dl Ddp5 1 H 264-Varyg", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/KENGAN.ASHURA.S02.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG/KENGAN.ASHURA.S02E25.Giant.Star.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG.mkv", + "filename": "KENGAN.ASHURA.S02E25.Giant.Star.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Kengan Ashura S02E25 Giant Star 1080P Nf Web-Dl Ddp5 1 H 264-Varyg", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Kengan Ashura S02E25 Giant Star 1080P Nf Web-Dl Ddp5 1 H 264-Varyg", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/KENGAN.ASHURA.S02.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG/KENGAN.ASHURA.S02E10.Life.and.Death.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG.mkv", + "filename": "KENGAN.ASHURA.S02E10.Life.and.Death.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Kengan Ashura S02E10 Life And Death 1080P Nf Web-Dl Ddp5 1 H 264-Varyg", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Kengan Ashura S02E10 Life And Death 1080P Nf Web-Dl Ddp5 1 H 264-Varyg", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/KENGAN.ASHURA.S02.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG/KENGAN.ASHURA.S02E03.The.Clown.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG.mkv", + "filename": "KENGAN.ASHURA.S02E03.The.Clown.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Kengan Ashura S02E03 The Clown 1080P Nf Web-Dl Ddp5 1 H 264-Varyg", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Kengan Ashura S02E03 The Clown 1080P Nf Web-Dl Ddp5 1 H 264-Varyg", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/KENGAN.ASHURA.S02.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG/KENGAN.ASHURA.S02E12.Melee.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG.mkv", + "filename": "KENGAN.ASHURA.S02E12.Melee.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Kengan Ashura S02E12 Melee 1080P Nf Web-Dl Ddp5 1 H 264-Varyg", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Kengan Ashura S02E12 Melee 1080P Nf Web-Dl Ddp5 1 H 264-Varyg", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/KENGAN.ASHURA.S02.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG/KENGAN.ASHURA.S02E01.Omen.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG.mkv", + "filename": "KENGAN.ASHURA.S02E01.Omen.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Kengan Ashura S02E01 Omen 1080P Nf Web-Dl Ddp5 1 H 264-Varyg", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Kengan Ashura S02E01 Omen 1080P Nf Web-Dl Ddp5 1 H 264-Varyg", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/KENGAN.ASHURA.S02.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG/KENGAN.ASHURA.S02E21.Farewell.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG.mkv", + "filename": "KENGAN.ASHURA.S02E21.Farewell.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Kengan Ashura S02E21 Farewell 1080P Nf Web-Dl Ddp5 1 H 264-Varyg", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Kengan Ashura S02E21 Farewell 1080P Nf Web-Dl Ddp5 1 H 264-Varyg", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/KENGAN.ASHURA.S02.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG/KENGAN.ASHURA.S02E06.An.Old.Friend.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG.mkv", + "filename": "KENGAN.ASHURA.S02E06.An.Old.Friend.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Kengan Ashura S02E06 An Old Friend 1080P Nf Web-Dl Ddp5 1 H 264-Varyg", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Kengan Ashura S02E06 An Old Friend 1080P Nf Web-Dl Ddp5 1 H 264-Varyg", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/KENGAN.ASHURA.S02.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG/KENGAN.ASHURA.S02E07.Hell.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG.mkv", + "filename": "KENGAN.ASHURA.S02E07.Hell.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Kengan Ashura S02E07 Hell 1080P Nf Web-Dl Ddp5 1 H 264-Varyg", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Kengan Ashura S02E07 Hell 1080P Nf Web-Dl Ddp5 1 H 264-Varyg", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/KENGAN.ASHURA.S02.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG/KENGAN.ASHURA.S02E28.Finale.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG.mkv", + "filename": "KENGAN.ASHURA.S02E28.Finale.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Kengan Ashura S02E28 Finale 1080P Nf Web-Dl Ddp5 1 H 264-Varyg", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Kengan Ashura S02E28 Finale 1080P Nf Web-Dl Ddp5 1 H 264-Varyg", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/KENGAN.ASHURA.S02.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG/KENGAN.ASHURA.S02E13.Headstrong.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG.mkv", + "filename": "KENGAN.ASHURA.S02E13.Headstrong.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Kengan Ashura S02E13 Headstrong 1080P Nf Web-Dl Ddp5 1 H 264-Varyg", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Kengan Ashura S02E13 Headstrong 1080P Nf Web-Dl Ddp5 1 H 264-Varyg", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/KENGAN.ASHURA.S02.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG/KENGAN.ASHURA.S02E05.Suicide.Attack.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG.mkv", + "filename": "KENGAN.ASHURA.S02E05.Suicide.Attack.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Kengan Ashura S02E05 Suicide Attack 1080P Nf Web-Dl Ddp5 1 H 264-Varyg", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Kengan Ashura S02E05 Suicide Attack 1080P Nf Web-Dl Ddp5 1 H 264-Varyg", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/KENGAN.ASHURA.S02.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG/KENGAN.ASHURA.S02E19.Predicament.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG.mkv", + "filename": "KENGAN.ASHURA.S02E19.Predicament.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Kengan Ashura S02E19 Predicament 1080P Nf Web-Dl Ddp5 1 H 264-Varyg", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Kengan Ashura S02E19 Predicament 1080P Nf Web-Dl Ddp5 1 H 264-Varyg", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/KENGAN.ASHURA.S02.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG/KENGAN.ASHURA.S02E09.Superiority.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG.mkv", + "filename": "KENGAN.ASHURA.S02E09.Superiority.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Kengan Ashura S02E09 Superiority 1080P Nf Web-Dl Ddp5 1 H 264-Varyg", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Kengan Ashura S02E09 Superiority 1080P Nf Web-Dl Ddp5 1 H 264-Varyg", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/KENGAN.ASHURA.S02.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG/KENGAN.ASHURA.S02E04.Dignity.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG.mkv", + "filename": "KENGAN.ASHURA.S02E04.Dignity.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Kengan Ashura S02E04 Dignity 1080P Nf Web-Dl Ddp5 1 H 264-Varyg", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Kengan Ashura S02E04 Dignity 1080P Nf Web-Dl Ddp5 1 H 264-Varyg", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/KENGAN.ASHURA.S02.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG/KENGAN.ASHURA.S02E27.Victory.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG.mkv", + "filename": "KENGAN.ASHURA.S02E27.Victory.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Kengan Ashura S02E27 Victory 1080P Nf Web-Dl Ddp5 1 H 264-Varyg", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Kengan Ashura S02E27 Victory 1080P Nf Web-Dl Ddp5 1 H 264-Varyg", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/KENGAN.ASHURA.S02.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG/KENGAN.ASHURA.S02E24.Supreme.Strength.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG.mkv", + "filename": "KENGAN.ASHURA.S02E24.Supreme.Strength.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Kengan Ashura S02E24 Supreme Strength 1080P Nf Web-Dl Ddp5 1 H 264-Varyg", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Kengan Ashura S02E24 Supreme Strength 1080P Nf Web-Dl Ddp5 1 H 264-Varyg", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/KENGAN.ASHURA.S02.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG/KENGAN.ASHURA.S02E08.Resurrection.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG.mkv", + "filename": "KENGAN.ASHURA.S02E08.Resurrection.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Kengan Ashura S02E08 Resurrection 1080P Nf Web-Dl Ddp5 1 H 264-Varyg", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Kengan Ashura S02E08 Resurrection 1080P Nf Web-Dl Ddp5 1 H 264-Varyg", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Sakurato] City the Animation [01][HEVC-10bit 1080P AAC][CHS&CHT].mkv", + "filename": "[Sakurato] City the Animation [01][HEVC-10bit 1080P AAC][CHS&CHT].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Sakurato] City The Animation [01][Hevc-10Bit 1080P Aac][Chs&Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Sakurato] City The Animation [01][Hevc-10Bit 1080P Aac][Chs&Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] GNOSIA - 04 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] GNOSIA - 04 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] Gnosia - 04 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] Gnosia - 04 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "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", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 靠廢柴技能【狀態異常】成為最強的我將蹂躪一切 - 05 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 靠廢柴技能【狀態異常】成為最強的我將蹂躪一切 - 05 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Psycho-Pass.Sinners.of.the.System.Case.1-3.2019.HK.1080p.BluRay.DualAudio.DTS-HD.MA.5.1.x265.10bit-monster6688/Psycho-Pass.Sinners.of.the.System.Case.1-3.2019.HK.1080p.BluRay.DualAudio.DTS-HD.MA.5.1.x265.10bit-monster6688.mkv", + "filename": "Psycho-Pass.Sinners.of.the.System.Case.1-3.2019.HK.1080p.BluRay.DualAudio.DTS-HD.MA.5.1.x265.10bit-monster6688.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Psycho-Pass Sinners Of The System Case 1-3 2019 Hk 1080P Bluray Dualaudio Dts-Hd Ma 5 1 X265 10Bit-Monster6688", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Psycho-Pass Sinners Of The System Case 1-3 2019 Hk 1080P Bluray Dualaudio Dts-Hd Ma 5 1 X265 10Bit-Monster6688", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Tsuki ga Michibiku Isekai Douchuu S2 - 12 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "filename": "[LoliHouse] Tsuki ga Michibiku Isekai Douchuu S2 - 12 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Tsuki Ga Michibiku Isekai Douchuu S2 - 12 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Tsuki Ga Michibiku Isekai Douchuu S2 - 12 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 膽大黨 第二季 - 23 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 膽大黨 第二季 - 23 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 膽大黨 第二季 - 23 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 膽大黨 第二季 - 23 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Skymoon-Raws] Mushoku Tensei 2nd Season - 03 [ViuTV][WEB-DL][CHT][1080p][AVC AAC][MP4+ASS]/[Skymoon-Raws] Mushoku Tensei 2nd Season - 03 [ViuTV][WEB-DL][1080p][AVC AAC].mp4", + "filename": "[Skymoon-Raws] Mushoku Tensei 2nd Season - 03 [ViuTV][WEB-DL][1080p][AVC AAC].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Skymoon-Raws] Mushoku Tensei 2Nd Season - 03 [Viutv][Web-Dl][1080P][Avc Aac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Skymoon-Raws] Mushoku Tensei 2Nd Season - 03 [Viutv][Web-Dl][1080P][Avc Aac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Skymoon-Raws] Bofuri S02 - 03 [ViuTV][CHT][WEB-DL][1080p][AVC AAC][MP4+ASS]/[Skymoon-Raws] Bofuri S02 - 03 [ViuTV][WEB-DL][1080p][AVC AAC].mp4", + "filename": "[Skymoon-Raws] Bofuri S02 - 03 [ViuTV][WEB-DL][1080p][AVC AAC].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Skymoon-Raws] Bofuri S02 - 03 [Viutv][Web-Dl][1080P][Avc Aac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Skymoon-Raws] Bofuri S02 - 03 [Viutv][Web-Dl][1080P][Avc Aac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[HYSUB]Sono Bisque Doll wa Koi wo Suru[20][BIG5_MP4][1920X1080].mp4", + "filename": "[HYSUB]Sono Bisque Doll wa Koi wo Suru[20][BIG5_MP4][1920X1080].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Hysub]Sono Bisque Doll Wa Koi Wo Suru[20][Big5 Mp4][1920X1080]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Hysub]Sono Bisque Doll Wa Koi Wo Suru[20][Big5 Mp4][1920X1080]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 永遠的黃昏 - 09 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 永遠的黃昏 - 09 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 永遠的黃昏 - 09 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 永遠的黃昏 - 09 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 地獄模式 ~喜歡挑戰特殊成就的玩家在廢設定的異世界成為無雙~ - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 地獄模式 ~喜歡挑戰特殊成就的玩家在廢設定的異世界成為無雙~ - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 地獄模式 ~喜歡挑戰特殊成就的玩家在廢設定的異世界成為無雙~ - 02 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 地獄模式 ~喜歡挑戰特殊成就的玩家在廢設定的異世界成為無雙~ - 02 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 孤單一人的異世界攻略 - 11 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 孤單一人的異世界攻略 - 11 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 孤單一人的異世界攻略 - 11 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 孤單一人的異世界攻略 - 11 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "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", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 異世界自殺突擊隊 - 05 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 異世界自殺突擊隊 - 05 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Shangri-La Frontier - 45 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "filename": "[LoliHouse] Shangri-La Frontier - 45 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Shangri-La Frontier - 45 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Shangri-La Frontier - 45 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Nekomoe kissaten][Your Forma][12][1080p][JPSC].mp4", + "filename": "[Nekomoe kissaten][Your Forma][12][1080p][JPSC].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Nekomoe Kissaten][Your Forma][12][1080P][Jpsc]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Nekomoe Kissaten][Your Forma][12][1080P][Jpsc]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] DanMachi S5 - 05 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "filename": "[LoliHouse] DanMachi S5 - 05 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Danmachi S5 - 05 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Danmachi S5 - 05 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 異國日記 - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 異國日記 - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 異國日記 - 02 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 異國日記 - 02 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 杖與劍的魔劍譚 - 04 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 杖與劍的魔劍譚 - 04 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 杖與劍的魔劍譚 - 04 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 杖與劍的魔劍譚 - 04 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 地下城中的人 - 04 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 地下城中的人 - 04 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 地下城中的人 - 04 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 地下城中的人 - 04 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 費馬的料理 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 費馬的料理 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 費馬的料理 - 01 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 費馬的料理 - 01 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Tensei Shitara Slime Datta Ken 3rd Season - 50 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "filename": "[LoliHouse] Tensei Shitara Slime Datta Ken 3rd Season - 50 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Tensei Shitara Slime Datta Ken 3Rd Season - 50 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Tensei Shitara Slime Datta Ken 3Rd Season - 50 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 貫徹輔助魔法支援弱小隊友的宮廷魔法師,慘遭驅逐後目標成為最強冒險者 - 10 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 貫徹輔助魔法支援弱小隊友的宮廷魔法師,慘遭驅逐後目標成為最強冒險者 - 10 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 貫徹輔助魔法支援弱小隊友的宮廷魔法師,慘遭驅逐後目標成為最強冒險者 - 10 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 貫徹輔助魔法支援弱小隊友的宮廷魔法師,慘遭驅逐後目標成為最強冒險者 - 10 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Around 40 Otoko no Isekai Tsuuhan - 02 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "filename": "[LoliHouse] Around 40 Otoko no Isekai Tsuuhan - 02 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Around 40 Otoko No Isekai Tsuuhan - 02 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Around 40 Otoko No Isekai Tsuuhan - 02 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 醜男真戰士 - 04 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 醜男真戰士 - 04 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 醜男真戰士 - 04 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 醜男真戰士 - 04 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Skymoon-Raws] Kaijuu 8 gou - 13 [ViuTV][WEB-DL][CHT][SRT][1080p][AVC AAC].mkv", + "filename": "[Skymoon-Raws] Kaijuu 8 gou - 13 [ViuTV][WEB-DL][CHT][SRT][1080p][AVC AAC].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Skymoon-Raws] Kaijuu 8 Gou - 13 [Viutv][Web-Dl][Cht][Srt][1080P][Avc Aac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Skymoon-Raws] Kaijuu 8 Gou - 13 [Viutv][Web-Dl][Cht][Srt][1080P][Avc Aac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[SweetSub&LoliHouse] Bâan - The Boundaries of Adulthood [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "filename": "[SweetSub&LoliHouse] Bâan - The Boundaries of Adulthood [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Sweetsub&Lolihouse] Bâan - The Boundaries Of Adulthood [Webrip 1080P Hevc-10Bit Aac Assx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Sweetsub&Lolihouse] Bâan - The Boundaries Of Adulthood [Webrip 1080P Hevc-10Bit Aac Assx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Nekomoe kissaten][Hibi wa Sugiredo Meshi Umashi][06][1080p][JPTC].mp4", + "filename": "[Nekomoe kissaten][Hibi wa Sugiredo Meshi Umashi][06][1080p][JPTC].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Nekomoe Kissaten][Hibi Wa Sugiredo Meshi Umashi][06][1080P][Jptc]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Nekomoe Kissaten][Hibi Wa Sugiredo Meshi Umashi][06][1080P][Jptc]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 被逐出隊伍的治癒師,其實是最強 - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 被逐出隊伍的治癒師,其實是最強 - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 被逐出隊伍的治癒師,其實是最強 - 02 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 被逐出隊伍的治癒師,其實是最強 - 02 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 刀劍神域外傳 Gun Gale Online II - 09 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 刀劍神域外傳 Gun Gale Online II - 09 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 刀劍神域外傳 Gun Gale Online Ii - 09 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 刀劍神域外傳 Gun Gale Online Ii - 09 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 一拳超人(第三季) - 36 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 一拳超人(第三季) - 36 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 一拳超人(第三季) - 36 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 一拳超人(第三季) - 36 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 結緣甘神神社 - 12 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 結緣甘神神社 - 12 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 結緣甘神神社 - 12 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 結緣甘神神社 - 12 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[H-Enc] Souryo to Majiwaru Shikiyoku no Yoru ni... (BDRip 1080p HEVC FLAC)/Souryo to Majiwaru Shikiyoku no Yoru ni... - 09.mkv", + "filename": "Souryo to Majiwaru Shikiyoku no Yoru ni... - 09.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Souryo To Majiwaru Shikiyoku No Yoru Ni - 09", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Souryo To Majiwaru Shikiyoku No Yoru Ni - 09", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[H-Enc] Souryo to Majiwaru Shikiyoku no Yoru ni... (BDRip 1080p HEVC FLAC)/Souryo to Majiwaru Shikiyoku no Yoru ni... - 07.mkv", + "filename": "Souryo to Majiwaru Shikiyoku no Yoru ni... - 07.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Souryo To Majiwaru Shikiyoku No Yoru Ni - 07", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Souryo To Majiwaru Shikiyoku No Yoru Ni - 07", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[H-Enc] Souryo to Majiwaru Shikiyoku no Yoru ni... (BDRip 1080p HEVC FLAC)/Souryo to Majiwaru Shikiyoku no Yoru ni... - 11.mkv", + "filename": "Souryo to Majiwaru Shikiyoku no Yoru ni... - 11.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Souryo To Majiwaru Shikiyoku No Yoru Ni - 11", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Souryo To Majiwaru Shikiyoku No Yoru Ni - 11", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[H-Enc] Souryo to Majiwaru Shikiyoku no Yoru ni... (BDRip 1080p HEVC FLAC)/Souryo to Majiwaru Shikiyoku no Yoru ni... - 06.mkv", + "filename": "Souryo to Majiwaru Shikiyoku no Yoru ni... - 06.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Souryo To Majiwaru Shikiyoku No Yoru Ni - 06", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Souryo To Majiwaru Shikiyoku No Yoru Ni - 06", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[H-Enc] Souryo to Majiwaru Shikiyoku no Yoru ni... (BDRip 1080p HEVC FLAC)/Souryo to Majiwaru Shikiyoku no Yoru ni... - 01.mkv", + "filename": "Souryo to Majiwaru Shikiyoku no Yoru ni... - 01.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Souryo To Majiwaru Shikiyoku No Yoru Ni - 01", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Souryo To Majiwaru Shikiyoku No Yoru Ni - 01", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[H-Enc] Souryo to Majiwaru Shikiyoku no Yoru ni... (BDRip 1080p HEVC FLAC)/Souryo to Majiwaru Shikiyoku no Yoru ni... - 08.mkv", + "filename": "Souryo to Majiwaru Shikiyoku no Yoru ni... - 08.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Souryo To Majiwaru Shikiyoku No Yoru Ni - 08", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Souryo To Majiwaru Shikiyoku No Yoru Ni - 08", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[H-Enc] Souryo to Majiwaru Shikiyoku no Yoru ni... (BDRip 1080p HEVC FLAC)/Souryo to Majiwaru Shikiyoku no Yoru ni... - 10.mkv", + "filename": "Souryo to Majiwaru Shikiyoku no Yoru ni... - 10.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Souryo To Majiwaru Shikiyoku No Yoru Ni - 10", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Souryo To Majiwaru Shikiyoku No Yoru Ni - 10", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[H-Enc] Souryo to Majiwaru Shikiyoku no Yoru ni... (BDRip 1080p HEVC FLAC)/Souryo to Majiwaru Shikiyoku no Yoru ni... - 02.mkv", + "filename": "Souryo to Majiwaru Shikiyoku no Yoru ni... - 02.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Souryo To Majiwaru Shikiyoku No Yoru Ni - 02", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Souryo To Majiwaru Shikiyoku No Yoru Ni - 02", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[H-Enc] Souryo to Majiwaru Shikiyoku no Yoru ni... (BDRip 1080p HEVC FLAC)/Souryo to Majiwaru Shikiyoku no Yoru ni... - 05.mkv", + "filename": "Souryo to Majiwaru Shikiyoku no Yoru ni... - 05.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Souryo To Majiwaru Shikiyoku No Yoru Ni - 05", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Souryo To Majiwaru Shikiyoku No Yoru Ni - 05", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[H-Enc] Souryo to Majiwaru Shikiyoku no Yoru ni... (BDRip 1080p HEVC FLAC)/Souryo to Majiwaru Shikiyoku no Yoru ni... - 12.mkv", + "filename": "Souryo to Majiwaru Shikiyoku no Yoru ni... - 12.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Souryo To Majiwaru Shikiyoku No Yoru Ni - 12", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Souryo To Majiwaru Shikiyoku No Yoru Ni - 12", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[H-Enc] Souryo to Majiwaru Shikiyoku no Yoru ni... (BDRip 1080p HEVC FLAC)/Souryo to Majiwaru Shikiyoku no Yoru ni... - 04.mkv", + "filename": "Souryo to Majiwaru Shikiyoku no Yoru ni... - 04.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Souryo To Majiwaru Shikiyoku No Yoru Ni - 04", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Souryo To Majiwaru Shikiyoku No Yoru Ni - 04", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[H-Enc] Souryo to Majiwaru Shikiyoku no Yoru ni... (BDRip 1080p HEVC FLAC)/Souryo to Majiwaru Shikiyoku no Yoru ni... - 03.mkv", + "filename": "Souryo to Majiwaru Shikiyoku no Yoru ni... - 03.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Souryo To Majiwaru Shikiyoku No Yoru Ni - 03", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Souryo To Majiwaru Shikiyoku No Yoru Ni - 03", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 在地下城尋求邂逅是否搞錯了什麼 第五季 - 15 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 在地下城尋求邂逅是否搞錯了什麼 第五季 - 15 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 在地下城尋求邂逅是否搞錯了什麼 第五季 - 15 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 在地下城尋求邂逅是否搞錯了什麼 第五季 - 15 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 治癒魔法的錯誤使用法 - 03 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 治癒魔法的錯誤使用法 - 03 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 治癒魔法的錯誤使用法 - 03 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 治癒魔法的錯誤使用法 - 03 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 無職轉生~到了異世界就拿出真本事 第二季 - 22 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 無職轉生~到了異世界就拿出真本事 第二季 - 22 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 無職轉生~到了異世界就拿出真本事 第二季 - 22 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 無職轉生~到了異世界就拿出真本事 第二季 - 22 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[orion origin] Kaijuu 8 Gou [12] [END] [1080p] [H265 AAC] [CHT&JPN].mp4", + "filename": "[orion origin] Kaijuu 8 Gou [12] [END] [1080p] [H265 AAC] [CHT&JPN].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Orion Origin] Kaijuu 8 Gou [12] [End] [1080P] [H265 Aac] [Cht&Jpn]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Orion Origin] Kaijuu 8 Gou [12] [End] [1080P] [H265 Aac] [Cht&Jpn]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Nekomoe kissaten][Your Forma][02][1080p][JPTC].mp4", + "filename": "[Nekomoe kissaten][Your Forma][02][1080p][JPTC].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Nekomoe Kissaten][Your Forma][02][1080P][Jptc]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Nekomoe Kissaten][Your Forma][02][1080P][Jptc]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Shin no Nakama 2nd - 09 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "filename": "[LoliHouse] Shin no Nakama 2nd - 09 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Shin No Nakama 2Nd - 09 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Shin No Nakama 2Nd - 09 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Katainaka no Ossan, Kensei ni Naru - 05 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "filename": "[LoliHouse] Katainaka no Ossan, Kensei ni Naru - 05 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Katainaka No Ossan, Kensei Ni Naru - 05 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Katainaka No Ossan, Kensei Ni Naru - 05 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 水屬性的魔法師 - 08 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 水屬性的魔法師 - 08 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 水屬性的魔法師 - 08 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 水屬性的魔法師 - 08 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 刀劍神域外傳 Gun Gale Online II - 12 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 刀劍神域外傳 Gun Gale Online II - 12 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 刀劍神域外傳 Gun Gale Online Ii - 12 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 刀劍神域外傳 Gun Gale Online Ii - 12 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 最狂輔助職業【話術士】世界最強戰團聽我號令 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 最狂輔助職業【話術士】世界最強戰團聽我號令 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 最狂輔助職業【話術士】世界最強戰團聽我號令 - 01 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 最狂輔助職業【話術士】世界最強戰團聽我號令 - 01 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 擁有超常技能的異世界流浪美食家 S2 - 15 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 擁有超常技能的異世界流浪美食家 S2 - 15 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 擁有超常技能的異世界流浪美食家 S2 - 15 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 擁有超常技能的異世界流浪美食家 S2 - 15 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 結緣甘神神社 - 09 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 結緣甘神神社 - 09 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 結緣甘神神社 - 09 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 結緣甘神神社 - 09 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Nekomoe kissaten&LoliHouse] Dosanko Gal wa Namara Menkoi - 05 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "filename": "[Nekomoe kissaten&LoliHouse] Dosanko Gal wa Namara Menkoi - 05 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Nekomoe Kissaten&Lolihouse] Dosanko Gal Wa Namara Menkoi - 05 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Nekomoe Kissaten&Lolihouse] Dosanko Gal Wa Namara Menkoi - 05 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Nekomoe kissaten][Kusuriya no Hitorigoto][18][1080p][JPTC].mp4", + "filename": "[Nekomoe kissaten][Kusuriya no Hitorigoto][18][1080p][JPTC].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Nekomoe Kissaten][Kusuriya No Hitorigoto][18][1080P][Jptc]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Nekomoe Kissaten][Kusuriya No Hitorigoto][18][1080P][Jptc]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] Re:從零開始的異世界生活 第三季 - 06 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] Re:從零開始的異世界生活 第三季 - 06 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] Re:從零開始的異世界生活 第三季 - 06 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] Re:從零開始的異世界生活 第三季 - 06 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[DMG][Sono_Bisque_Doll_wa_Koi_wo_Suru][01-12 END][1080P][HEVC_Ma10P][MKV]/[DMG][Sono_Bisque_Doll_wa_Koi_wo_Suru][05][1080P_Ma10P][HEVC_AAC](6D557DD3).mkv", + "filename": "[DMG][Sono_Bisque_Doll_wa_Koi_wo_Suru][05][1080P_Ma10P][HEVC_AAC](6D557DD3).mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Dmg][Sono Bisque Doll Wa Koi Wo Suru][05][1080P Ma10P][Hevc Aac](6D557Dd3)", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Dmg][Sono Bisque Doll Wa Koi Wo Suru][05][1080P Ma10P][Hevc Aac](6D557Dd3)", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[DMG][Sono_Bisque_Doll_wa_Koi_wo_Suru][01-12 END][1080P][HEVC_Ma10P][MKV]/[DMG][Sono_Bisque_Doll_wa_Koi_wo_Suru][07][1080P_Ma10P][HEVC_AAC](39D93280).mkv", + "filename": "[DMG][Sono_Bisque_Doll_wa_Koi_wo_Suru][07][1080P_Ma10P][HEVC_AAC](39D93280).mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Dmg][Sono Bisque Doll Wa Koi Wo Suru][07][1080P Ma10P][Hevc Aac](39D93280)", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Dmg][Sono Bisque Doll Wa Koi Wo Suru][07][1080P Ma10P][Hevc Aac](39D93280)", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[DMG][Sono_Bisque_Doll_wa_Koi_wo_Suru][01-12 END][1080P][HEVC_Ma10P][MKV]/[DMG][Sono_Bisque_Doll_wa_Koi_wo_Suru][11][1080P_Ma10P][HEVC_AAC](8FA0B618).mkv", + "filename": "[DMG][Sono_Bisque_Doll_wa_Koi_wo_Suru][11][1080P_Ma10P][HEVC_AAC](8FA0B618).mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Dmg][Sono Bisque Doll Wa Koi Wo Suru][11][1080P Ma10P][Hevc Aac](8Fa0B618)", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Dmg][Sono Bisque Doll Wa Koi Wo Suru][11][1080P Ma10P][Hevc Aac](8Fa0B618)", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[DMG][Sono_Bisque_Doll_wa_Koi_wo_Suru][01-12 END][1080P][HEVC_Ma10P][MKV]/[DMG][Sono_Bisque_Doll_wa_Koi_wo_Suru][10][1080P_Ma10P][HEVC_AAC](BC1C80E6).mkv", + "filename": "[DMG][Sono_Bisque_Doll_wa_Koi_wo_Suru][10][1080P_Ma10P][HEVC_AAC](BC1C80E6).mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Dmg][Sono Bisque Doll Wa Koi Wo Suru][10][1080P Ma10P][Hevc Aac](Bc1C80E6)", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Dmg][Sono Bisque Doll Wa Koi Wo Suru][10][1080P Ma10P][Hevc Aac](Bc1C80E6)", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[DMG][Sono_Bisque_Doll_wa_Koi_wo_Suru][01-12 END][1080P][HEVC_Ma10P][MKV]/[DMG][Sono_Bisque_Doll_wa_Koi_wo_Suru][03][1080P_Ma10P][HEVC_AAC](56DB4442).mkv", + "filename": "[DMG][Sono_Bisque_Doll_wa_Koi_wo_Suru][03][1080P_Ma10P][HEVC_AAC](56DB4442).mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Dmg][Sono Bisque Doll Wa Koi Wo Suru][03][1080P Ma10P][Hevc Aac](56Db4442)", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Dmg][Sono Bisque Doll Wa Koi Wo Suru][03][1080P Ma10P][Hevc Aac](56Db4442)", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[DMG][Sono_Bisque_Doll_wa_Koi_wo_Suru][01-12 END][1080P][HEVC_Ma10P][MKV]/[DMG][Sono_Bisque_Doll_wa_Koi_wo_Suru][12 END][1080P_Ma10P][HEVC_AAC](ECF54792).mkv", + "filename": "[DMG][Sono_Bisque_Doll_wa_Koi_wo_Suru][12 END][1080P_Ma10P][HEVC_AAC](ECF54792).mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Dmg][Sono Bisque Doll Wa Koi Wo Suru][12 End][1080P Ma10P][Hevc Aac](Ecf54792)", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Dmg][Sono Bisque Doll Wa Koi Wo Suru][12 End][1080P Ma10P][Hevc Aac](Ecf54792)", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[DMG][Sono_Bisque_Doll_wa_Koi_wo_Suru][01-12 END][1080P][HEVC_Ma10P][MKV]/[DMG][Sono_Bisque_Doll_wa_Koi_wo_Suru][09][1080P_Ma10P][HEVC_AAC](8E806DDE).mkv", + "filename": "[DMG][Sono_Bisque_Doll_wa_Koi_wo_Suru][09][1080P_Ma10P][HEVC_AAC](8E806DDE).mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Dmg][Sono Bisque Doll Wa Koi Wo Suru][09][1080P Ma10P][Hevc Aac](8E806Dde)", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Dmg][Sono Bisque Doll Wa Koi Wo Suru][09][1080P Ma10P][Hevc Aac](8E806Dde)", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[DMG][Sono_Bisque_Doll_wa_Koi_wo_Suru][01-12 END][1080P][HEVC_Ma10P][MKV]/[DMG][Sono_Bisque_Doll_wa_Koi_wo_Suru][08][1080P_Ma10P][HEVC_AAC](42BD6F4D).mkv", + "filename": "[DMG][Sono_Bisque_Doll_wa_Koi_wo_Suru][08][1080P_Ma10P][HEVC_AAC](42BD6F4D).mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Dmg][Sono Bisque Doll Wa Koi Wo Suru][08][1080P Ma10P][Hevc Aac](42Bd6F4D)", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Dmg][Sono Bisque Doll Wa Koi Wo Suru][08][1080P Ma10P][Hevc Aac](42Bd6F4D)", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[DMG][Sono_Bisque_Doll_wa_Koi_wo_Suru][01-12 END][1080P][HEVC_Ma10P][MKV]/[DMG][Sono_Bisque_Doll_wa_Koi_wo_Suru][06][1080P_Ma10P][HEVC_AAC](B2AC1FF9).mkv", + "filename": "[DMG][Sono_Bisque_Doll_wa_Koi_wo_Suru][06][1080P_Ma10P][HEVC_AAC](B2AC1FF9).mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Dmg][Sono Bisque Doll Wa Koi Wo Suru][06][1080P Ma10P][Hevc Aac](B2Ac1Ff9)", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Dmg][Sono Bisque Doll Wa Koi Wo Suru][06][1080P Ma10P][Hevc Aac](B2Ac1Ff9)", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[DMG][Sono_Bisque_Doll_wa_Koi_wo_Suru][01-12 END][1080P][HEVC_Ma10P][MKV]/[DMG][Sono_Bisque_Doll_wa_Koi_wo_Suru][02][1080P_Ma10P][HEVC_AAC](54121EBD).mkv", + "filename": "[DMG][Sono_Bisque_Doll_wa_Koi_wo_Suru][02][1080P_Ma10P][HEVC_AAC](54121EBD).mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Dmg][Sono Bisque Doll Wa Koi Wo Suru][02][1080P Ma10P][Hevc Aac](54121Ebd)", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Dmg][Sono Bisque Doll Wa Koi Wo Suru][02][1080P Ma10P][Hevc Aac](54121Ebd)", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[DMG][Sono_Bisque_Doll_wa_Koi_wo_Suru][01-12 END][1080P][HEVC_Ma10P][MKV]/[DMG][Sono_Bisque_Doll_wa_Koi_wo_Suru][01][1080P_Ma10P][HEVC_AAC](6EDD0A83).mkv", + "filename": "[DMG][Sono_Bisque_Doll_wa_Koi_wo_Suru][01][1080P_Ma10P][HEVC_AAC](6EDD0A83).mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Dmg][Sono Bisque Doll Wa Koi Wo Suru][01][1080P Ma10P][Hevc Aac](6Edd0A83)", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Dmg][Sono Bisque Doll Wa Koi Wo Suru][01][1080P Ma10P][Hevc Aac](6Edd0A83)", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[DMG][Sono_Bisque_Doll_wa_Koi_wo_Suru][01-12 END][1080P][HEVC_Ma10P][MKV]/[DMG][Sono_Bisque_Doll_wa_Koi_wo_Suru][04][1080P_Ma10P][HEVC_AAC](994D2BE2).mkv", + "filename": "[DMG][Sono_Bisque_Doll_wa_Koi_wo_Suru][04][1080P_Ma10P][HEVC_AAC](994D2BE2).mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Dmg][Sono Bisque Doll Wa Koi Wo Suru][04][1080P Ma10P][Hevc Aac](994D2Be2)", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Dmg][Sono Bisque Doll Wa Koi Wo Suru][04][1080P Ma10P][Hevc Aac](994D2Be2)", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 葬送的芙莉蓮 - 21 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 葬送的芙莉蓮 - 21 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 葬送的芙莉蓮 - 21 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 葬送的芙莉蓮 - 21 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Nekomoe kissaten&LoliHouse] Tokidoki Bosotto Russia-go de Dereru Tonari no Alya-san - 07 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "filename": "[Nekomoe kissaten&LoliHouse] Tokidoki Bosotto Russia-go de Dereru Tonari no Alya-san - 07 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Nekomoe Kissaten&Lolihouse] Tokidoki Bosotto Russia-Go De Dereru Tonari No Alya-San - 07 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Nekomoe Kissaten&Lolihouse] Tokidoki Bosotto Russia-Go De Dereru Tonari No Alya-San - 07 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] Fate/strange Fake - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] Fate/strange Fake - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] Fate/Strange Fake - 02 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] Fate/Strange Fake - 02 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 怪獸 8 號 第二季 - 21 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 怪獸 8 號 第二季 - 21 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 怪獸 8 號 第二季 - 21 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 怪獸 8 號 第二季 - 21 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[DMG&LoliHouse] Spy x Family [01-25][WebRip 1080p HEVC-10bit AAC ASSx2]/[DMG&LoliHouse] Spy x Family - 25 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "filename": "[DMG&LoliHouse] Spy x Family - 25 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Dmg&Lolihouse] Spy X Family - 25 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Dmg&Lolihouse] Spy X Family - 25 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[DMG&LoliHouse] Spy x Family [01-25][WebRip 1080p HEVC-10bit AAC ASSx2]/[DMG&LoliHouse] Spy x Family - 02 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "filename": "[DMG&LoliHouse] Spy x Family - 02 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Dmg&Lolihouse] Spy X Family - 02 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Dmg&Lolihouse] Spy X Family - 02 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[DMG&LoliHouse] Spy x Family [01-25][WebRip 1080p HEVC-10bit AAC ASSx2]/[DMG&LoliHouse] Spy x Family - 19 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "filename": "[DMG&LoliHouse] Spy x Family - 19 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Dmg&Lolihouse] Spy X Family - 19 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Dmg&Lolihouse] Spy X Family - 19 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[DMG&LoliHouse] Spy x Family [01-25][WebRip 1080p HEVC-10bit AAC ASSx2]/[DMG&LoliHouse] Spy x Family - 21 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "filename": "[DMG&LoliHouse] Spy x Family - 21 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Dmg&Lolihouse] Spy X Family - 21 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Dmg&Lolihouse] Spy X Family - 21 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[DMG&LoliHouse] Spy x Family [01-25][WebRip 1080p HEVC-10bit AAC ASSx2]/[DMG&LoliHouse] Spy x Family - 06 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "filename": "[DMG&LoliHouse] Spy x Family - 06 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Dmg&Lolihouse] Spy X Family - 06 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Dmg&Lolihouse] Spy X Family - 06 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[DMG&LoliHouse] Spy x Family [01-25][WebRip 1080p HEVC-10bit AAC ASSx2]/[DMG&LoliHouse] Spy x Family - 15 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "filename": "[DMG&LoliHouse] Spy x Family - 15 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Dmg&Lolihouse] Spy X Family - 15 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Dmg&Lolihouse] Spy X Family - 15 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[DMG&LoliHouse] Spy x Family [01-25][WebRip 1080p HEVC-10bit AAC ASSx2]/[DMG&LoliHouse] Spy x Family - 11 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "filename": "[DMG&LoliHouse] Spy x Family - 11 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Dmg&Lolihouse] Spy X Family - 11 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Dmg&Lolihouse] Spy X Family - 11 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[DMG&LoliHouse] Spy x Family [01-25][WebRip 1080p HEVC-10bit AAC ASSx2]/[DMG&LoliHouse] Spy x Family - 14 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "filename": "[DMG&LoliHouse] Spy x Family - 14 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Dmg&Lolihouse] Spy X Family - 14 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Dmg&Lolihouse] Spy X Family - 14 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[DMG&LoliHouse] Spy x Family [01-25][WebRip 1080p HEVC-10bit AAC ASSx2]/[DMG&LoliHouse] Spy x Family - 10 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "filename": "[DMG&LoliHouse] Spy x Family - 10 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Dmg&Lolihouse] Spy X Family - 10 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Dmg&Lolihouse] Spy X Family - 10 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[DMG&LoliHouse] Spy x Family [01-25][WebRip 1080p HEVC-10bit AAC ASSx2]/[DMG&LoliHouse] Spy x Family - 24 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "filename": "[DMG&LoliHouse] Spy x Family - 24 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Dmg&Lolihouse] Spy X Family - 24 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Dmg&Lolihouse] Spy X Family - 24 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[DMG&LoliHouse] Spy x Family [01-25][WebRip 1080p HEVC-10bit AAC ASSx2]/[DMG&LoliHouse] Spy x Family - 18 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "filename": "[DMG&LoliHouse] Spy x Family - 18 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Dmg&Lolihouse] Spy X Family - 18 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Dmg&Lolihouse] Spy X Family - 18 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[DMG&LoliHouse] Spy x Family [01-25][WebRip 1080p HEVC-10bit AAC ASSx2]/[DMG&LoliHouse] Spy x Family - 03 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "filename": "[DMG&LoliHouse] Spy x Family - 03 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Dmg&Lolihouse] Spy X Family - 03 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Dmg&Lolihouse] Spy X Family - 03 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[DMG&LoliHouse] Spy x Family [01-25][WebRip 1080p HEVC-10bit AAC ASSx2]/[DMG&LoliHouse] Spy x Family - 20 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "filename": "[DMG&LoliHouse] Spy x Family - 20 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Dmg&Lolihouse] Spy X Family - 20 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Dmg&Lolihouse] Spy X Family - 20 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[DMG&LoliHouse] Spy x Family [01-25][WebRip 1080p HEVC-10bit AAC ASSx2]/[DMG&LoliHouse] Spy x Family - 07 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "filename": "[DMG&LoliHouse] Spy x Family - 07 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Dmg&Lolihouse] Spy X Family - 07 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Dmg&Lolihouse] Spy X Family - 07 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[DMG&LoliHouse] Spy x Family [01-25][WebRip 1080p HEVC-10bit AAC ASSx2]/[DMG&LoliHouse] Spy x Family - 16 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "filename": "[DMG&LoliHouse] Spy x Family - 16 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Dmg&Lolihouse] Spy X Family - 16 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Dmg&Lolihouse] Spy X Family - 16 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[DMG&LoliHouse] Spy x Family [01-25][WebRip 1080p HEVC-10bit AAC ASSx2]/[DMG&LoliHouse] Spy x Family - 12 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "filename": "[DMG&LoliHouse] Spy x Family - 12 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Dmg&Lolihouse] Spy X Family - 12 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Dmg&Lolihouse] Spy X Family - 12 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[DMG&LoliHouse] Spy x Family [01-25][WebRip 1080p HEVC-10bit AAC ASSx2]/[DMG&LoliHouse] Spy x Family - 09 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "filename": "[DMG&LoliHouse] Spy x Family - 09 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Dmg&Lolihouse] Spy X Family - 09 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Dmg&Lolihouse] Spy X Family - 09 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[DMG&LoliHouse] Spy x Family [01-25][WebRip 1080p HEVC-10bit AAC ASSx2]/[DMG&LoliHouse] Spy x Family - 01 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "filename": "[DMG&LoliHouse] Spy x Family - 01 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Dmg&Lolihouse] Spy X Family - 01 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Dmg&Lolihouse] Spy X Family - 01 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[DMG&LoliHouse] Spy x Family [01-25][WebRip 1080p HEVC-10bit AAC ASSx2]/[DMG&LoliHouse] Spy x Family - 05 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "filename": "[DMG&LoliHouse] Spy x Family - 05 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Dmg&Lolihouse] Spy X Family - 05 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Dmg&Lolihouse] Spy X Family - 05 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[DMG&LoliHouse] Spy x Family [01-25][WebRip 1080p HEVC-10bit AAC ASSx2]/[DMG&LoliHouse] Spy x Family - 22 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "filename": "[DMG&LoliHouse] Spy x Family - 22 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Dmg&Lolihouse] Spy X Family - 22 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Dmg&Lolihouse] Spy X Family - 22 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[DMG&LoliHouse] Spy x Family [01-25][WebRip 1080p HEVC-10bit AAC ASSx2]/[DMG&LoliHouse] Spy x Family - 04 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "filename": "[DMG&LoliHouse] Spy x Family - 04 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Dmg&Lolihouse] Spy X Family - 04 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Dmg&Lolihouse] Spy X Family - 04 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[DMG&LoliHouse] Spy x Family [01-25][WebRip 1080p HEVC-10bit AAC ASSx2]/[DMG&LoliHouse] Spy x Family - 23 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "filename": "[DMG&LoliHouse] Spy x Family - 23 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Dmg&Lolihouse] Spy X Family - 23 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Dmg&Lolihouse] Spy X Family - 23 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[DMG&LoliHouse] Spy x Family [01-25][WebRip 1080p HEVC-10bit AAC ASSx2]/[DMG&LoliHouse] Spy x Family - 17 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "filename": "[DMG&LoliHouse] Spy x Family - 17 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Dmg&Lolihouse] Spy X Family - 17 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Dmg&Lolihouse] Spy X Family - 17 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[DMG&LoliHouse] Spy x Family [01-25][WebRip 1080p HEVC-10bit AAC ASSx2]/[DMG&LoliHouse] Spy x Family - 08 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "filename": "[DMG&LoliHouse] Spy x Family - 08 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Dmg&Lolihouse] Spy X Family - 08 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Dmg&Lolihouse] Spy X Family - 08 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[DMG&LoliHouse] Spy x Family [01-25][WebRip 1080p HEVC-10bit AAC ASSx2]/[DMG&LoliHouse] Spy x Family - 13 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "filename": "[DMG&LoliHouse] Spy x Family - 13 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Dmg&Lolihouse] Spy X Family - 13 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Dmg&Lolihouse] Spy X Family - 13 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 香格里拉・開拓異境~糞作獵手挑戰神作~ - 21 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 香格里拉・開拓異境~糞作獵手挑戰神作~ - 21 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 香格里拉・開拓異境~糞作獵手挑戰神作~ - 21 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 香格里拉・開拓異境~糞作獵手挑戰神作~ - 21 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Airota][ZatsuTabi][01][1080p HEVC-10bit AAC ASS].mkv", + "filename": "[Airota][ZatsuTabi][01][1080p HEVC-10bit AAC ASS].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Airota][Zatsutabi][01][1080P Hevc-10Bit Aac Ass]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Airota][Zatsutabi][01][1080P Hevc-10Bit Aac Ass]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 異世界自殺突擊隊 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 異世界自殺突擊隊 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 異世界自殺突擊隊 - 01 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 異世界自殺突擊隊 - 01 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Sakurato][20230703] Fuufu Koukan: Modorenai Yoru [01-08 Fin][TVRip][1080p][CHS]/[Sakurato] Fuufu Koukan: Modorenai Yoru [06][AVC-8bit 1080p AAC][CHS].mp4", + "filename": "[Sakurato] Fuufu Koukan: Modorenai Yoru [06][AVC-8bit 1080p AAC][CHS].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Sakurato] Fuufu Koukan: Modorenai Yoru [06][Avc-8Bit 1080P Aac][Chs]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Sakurato] Fuufu Koukan: Modorenai Yoru [06][Avc-8Bit 1080P Aac][Chs]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Sakurato][20230703] Fuufu Koukan: Modorenai Yoru [01-08 Fin][TVRip][1080p][CHS]/[Sakurato] Fuufu Koukan: Modorenai Yoru [08v2][AVC-8bit 1080p AAC][CHS].mp4", + "filename": "[Sakurato] Fuufu Koukan: Modorenai Yoru [08v2][AVC-8bit 1080p AAC][CHS].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Sakurato] Fuufu Koukan: Modorenai Yoru [08V2][Avc-8Bit 1080P Aac][Chs]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Sakurato] Fuufu Koukan: Modorenai Yoru [08V2][Avc-8Bit 1080P Aac][Chs]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Sakurato][20230703] Fuufu Koukan: Modorenai Yoru [01-08 Fin][TVRip][1080p][CHS]/[Sakurato] Fuufu Koukan: Modorenai Yoru [07][AVC-8bit 1080p AAC][CHS].mp4", + "filename": "[Sakurato] Fuufu Koukan: Modorenai Yoru [07][AVC-8bit 1080p AAC][CHS].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Sakurato] Fuufu Koukan: Modorenai Yoru [07][Avc-8Bit 1080P Aac][Chs]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Sakurato] Fuufu Koukan: Modorenai Yoru [07][Avc-8Bit 1080P Aac][Chs]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Sakurato][20230703] Fuufu Koukan: Modorenai Yoru [01-08 Fin][TVRip][1080p][CHS]/[Sakurato] Fuufu Koukan: Modorenai Yoru [01][AVC-8bit 1080p AAC][CHS].mp4", + "filename": "[Sakurato] Fuufu Koukan: Modorenai Yoru [01][AVC-8bit 1080p AAC][CHS].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Sakurato] Fuufu Koukan: Modorenai Yoru [01][Avc-8Bit 1080P Aac][Chs]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Sakurato] Fuufu Koukan: Modorenai Yoru [01][Avc-8Bit 1080P Aac][Chs]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Sakurato][20230703] Fuufu Koukan: Modorenai Yoru [01-08 Fin][TVRip][1080p][CHS]/[Sakurato] Fuufu Koukan: Modorenai Yoru [04][AVC-8bit 1080p AAC][CHS].mp4", + "filename": "[Sakurato] Fuufu Koukan: Modorenai Yoru [04][AVC-8bit 1080p AAC][CHS].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Sakurato] Fuufu Koukan: Modorenai Yoru [04][Avc-8Bit 1080P Aac][Chs]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Sakurato] Fuufu Koukan: Modorenai Yoru [04][Avc-8Bit 1080P Aac][Chs]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Sakurato][20230703] Fuufu Koukan: Modorenai Yoru [01-08 Fin][TVRip][1080p][CHS]/[Sakurato] Fuufu Koukan: Modorenai Yoru [02][AVC-8bit 1080p AAC][CHS].mp4", + "filename": "[Sakurato] Fuufu Koukan: Modorenai Yoru [02][AVC-8bit 1080p AAC][CHS].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Sakurato] Fuufu Koukan: Modorenai Yoru [02][Avc-8Bit 1080P Aac][Chs]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Sakurato] Fuufu Koukan: Modorenai Yoru [02][Avc-8Bit 1080P Aac][Chs]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Sakurato][20230703] Fuufu Koukan: Modorenai Yoru [01-08 Fin][TVRip][1080p][CHS]/[Sakurato] Fuufu Koukan: Modorenai Yoru [05][AVC-8bit 1080p AAC][CHS].mp4", + "filename": "[Sakurato] Fuufu Koukan: Modorenai Yoru [05][AVC-8bit 1080p AAC][CHS].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Sakurato] Fuufu Koukan: Modorenai Yoru [05][Avc-8Bit 1080P Aac][Chs]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Sakurato] Fuufu Koukan: Modorenai Yoru [05][Avc-8Bit 1080P Aac][Chs]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Sakurato][20230703] Fuufu Koukan: Modorenai Yoru [01-08 Fin][TVRip][1080p][CHS]/[Sakurato] Fuufu Koukan: Modorenai Yoru [03][AVC-8bit 1080p AAC][CHS].mp4", + "filename": "[Sakurato] Fuufu Koukan: Modorenai Yoru [03][AVC-8bit 1080p AAC][CHS].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Sakurato] Fuufu Koukan: Modorenai Yoru [03][Avc-8Bit 1080P Aac][Chs]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Sakurato] Fuufu Koukan: Modorenai Yoru [03][Avc-8Bit 1080P Aac][Chs]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Made.in.Abyss.Wandering.Twilight.2019.1080p.BluRay.x264.DTS-WiKi/Sample/Made.in.Abyss.Wandering.Twilight.2019.1080p.BluRay.x264.DTS-WiKi.sample.mkv", + "filename": "Made.in.Abyss.Wandering.Twilight.2019.1080p.BluRay.x264.DTS-WiKi.sample.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Made In Abyss Wandering Twilight 2019 1080P Bluray X264 Dts-Wiki Sample", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Made In Abyss Wandering Twilight 2019 1080P Bluray X264 Dts-Wiki Sample", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Made.in.Abyss.Wandering.Twilight.2019.1080p.BluRay.x264.DTS-WiKi/Made.in.Abyss.Wandering.Twilight.2019.1080p.BluRay.x264.DTS-WiKi.mkv", + "filename": "Made.in.Abyss.Wandering.Twilight.2019.1080p.BluRay.x264.DTS-WiKi.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Made In Abyss Wandering Twilight 2019 1080P Bluray X264 Dts-Wiki", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Made In Abyss Wandering Twilight 2019 1080P Bluray X264 Dts-Wiki", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] LAZARUS 拉撒路 - 13 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] LAZARUS 拉撒路 - 13 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] Lazarus 拉撒路 - 13 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] Lazarus 拉撒路 - 13 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 妻子變成小學生。 - 11 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 妻子變成小學生。 - 11 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 妻子變成小學生。 - 11 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 妻子變成小學生。 - 11 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 葬送的芙莉蓮 - 19 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 葬送的芙莉蓮 - 19 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 葬送的芙莉蓮 - 19 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 葬送的芙莉蓮 - 19 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 異國日記 - 06 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 異國日記 - 06 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 異國日記 - 06 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 異國日記 - 06 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 香格里拉・開拓異境~糞作獵手挑戰神作~ - 19 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 香格里拉・開拓異境~糞作獵手挑戰神作~ - 19 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 香格里拉・開拓異境~糞作獵手挑戰神作~ - 19 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 香格里拉・開拓異境~糞作獵手挑戰神作~ - 19 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Skymoon-Raws] Re:Zero kara Hajimeru Isekai Seikatsu 3rd Season - 10 [ViuTV][WEB-DL][CHT][SRT][1080p][AVC AAC].mkv", + "filename": "[Skymoon-Raws] Re:Zero kara Hajimeru Isekai Seikatsu 3rd Season - 10 [ViuTV][WEB-DL][CHT][SRT][1080p][AVC AAC].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Skymoon-Raws] Re:Zero Kara Hajimeru Isekai Seikatsu 3Rd Season - 10 [Viutv][Web-Dl][Cht][Srt][1080P][Avc Aac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Skymoon-Raws] Re:Zero Kara Hajimeru Isekai Seikatsu 3Rd Season - 10 [Viutv][Web-Dl][Cht][Srt][1080P][Avc Aac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 記憶縫線 YOUR FORMA - 10 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 記憶縫線 YOUR FORMA - 10 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 記憶縫線 Your Forma - 10 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 記憶縫線 Your Forma - 10 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[UHA-WINGS][Overtake!][x264 1080p][CHT]/[UHA-WINGS][Overtake!][10][x264 1080p][CHT].mp4", + "filename": "[UHA-WINGS][Overtake!][10][x264 1080p][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Uha-Wings][Overtake!][10][X264 1080P][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Uha-Wings][Overtake!][10][X264 1080P][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[UHA-WINGS][Overtake!][x264 1080p][CHT]/[UHA-WINGS][Overtake!][06][x264 1080p][CHT].mp4", + "filename": "[UHA-WINGS][Overtake!][06][x264 1080p][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Uha-Wings][Overtake!][06][X264 1080P][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Uha-Wings][Overtake!][06][X264 1080P][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[UHA-WINGS][Overtake!][x264 1080p][CHT]/[UHA-WINGS][Overtake!][11][x264 1080p][CHT].mp4", + "filename": "[UHA-WINGS][Overtake!][11][x264 1080p][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Uha-Wings][Overtake!][11][X264 1080P][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Uha-Wings][Overtake!][11][X264 1080P][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[UHA-WINGS][Overtake!][x264 1080p][CHT]/[UHA-WINGS][Overtake!][01][x264 1080p][CHT].mp4", + "filename": "[UHA-WINGS][Overtake!][01][x264 1080p][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Uha-Wings][Overtake!][01][X264 1080P][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Uha-Wings][Overtake!][01][X264 1080P][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[UHA-WINGS][Overtake!][x264 1080p][CHT]/[UHA-WINGS][Overtake!][07][x264 1080p][CHT].mp4", + "filename": "[UHA-WINGS][Overtake!][07][x264 1080p][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Uha-Wings][Overtake!][07][X264 1080P][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Uha-Wings][Overtake!][07][X264 1080P][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[UHA-WINGS][Overtake!][x264 1080p][CHT]/[UHA-WINGS][Overtake!][12][x264 1080p][CHT].mp4", + "filename": "[UHA-WINGS][Overtake!][12][x264 1080p][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Uha-Wings][Overtake!][12][X264 1080P][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Uha-Wings][Overtake!][12][X264 1080P][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[UHA-WINGS][Overtake!][x264 1080p][CHT]/[UHA-WINGS][Overtake!][04][x264 1080p][CHT].mp4", + "filename": "[UHA-WINGS][Overtake!][04][x264 1080p][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Uha-Wings][Overtake!][04][X264 1080P][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Uha-Wings][Overtake!][04][X264 1080P][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[UHA-WINGS][Overtake!][x264 1080p][CHT]/[UHA-WINGS][Overtake!][02][x264 1080p][CHT].mp4", + "filename": "[UHA-WINGS][Overtake!][02][x264 1080p][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Uha-Wings][Overtake!][02][X264 1080P][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Uha-Wings][Overtake!][02][X264 1080P][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[UHA-WINGS][Overtake!][x264 1080p][CHT]/[UHA-WINGS][Overtake!][08][x264 1080p][CHT].mp4", + "filename": "[UHA-WINGS][Overtake!][08][x264 1080p][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Uha-Wings][Overtake!][08][X264 1080P][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Uha-Wings][Overtake!][08][X264 1080P][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[UHA-WINGS][Overtake!][x264 1080p][CHT]/[UHA-WINGS][Overtake!][05][x264 1080p][CHT].mp4", + "filename": "[UHA-WINGS][Overtake!][05][x264 1080p][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Uha-Wings][Overtake!][05][X264 1080P][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Uha-Wings][Overtake!][05][X264 1080P][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[UHA-WINGS][Overtake!][x264 1080p][CHT]/[UHA-WINGS][Overtake!][03][x264 1080p][CHT].mp4", + "filename": "[UHA-WINGS][Overtake!][03][x264 1080p][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Uha-Wings][Overtake!][03][X264 1080P][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Uha-Wings][Overtake!][03][X264 1080P][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[UHA-WINGS][Overtake!][x264 1080p][CHT]/[UHA-WINGS][Overtake!][09][x264 1080p][CHT].mp4", + "filename": "[UHA-WINGS][Overtake!][09][x264 1080p][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Uha-Wings][Overtake!][09][X264 1080P][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Uha-Wings][Overtake!][09][X264 1080P][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 忍者與殺手的兩人生活 - 06 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 忍者與殺手的兩人生活 - 06 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 忍者與殺手的兩人生活 - 06 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 忍者與殺手的兩人生活 - 06 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "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", + "title": "[Ani] 瞬間治癒卻被當成廢物踢出隊伍的天才治療師,改當無照治療師快樂過活 - 07 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 瞬間治癒卻被當成廢物踢出隊伍的天才治療師,改當無照治療師快樂過活 - 07 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] LAZARUS 拉撒路 - 08 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] LAZARUS 拉撒路 - 08 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] Lazarus 拉撒路 - 08 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] Lazarus 拉撒路 - 08 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Amagami-san Chi no Enmusubi - 04 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "filename": "[LoliHouse] Amagami-san Chi no Enmusubi - 04 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Amagami-San Chi No Enmusubi - 04 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Amagami-San Chi No Enmusubi - 04 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 我的妻子不具感情 - 03 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 我的妻子不具感情 - 03 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 我的妻子不具感情 - 03 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 我的妻子不具感情 - 03 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 轉生貴族憑鑑定技能扭轉人生 - 03 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 轉生貴族憑鑑定技能扭轉人生 - 03 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 轉生貴族憑鑑定技能扭轉人生 - 03 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 轉生貴族憑鑑定技能扭轉人生 - 03 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Shin Samurai-den YAIBA - 07 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "filename": "[LoliHouse] Shin Samurai-den YAIBA - 07 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Shin Samurai-Den Yaiba - 07 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Shin Samurai-Den Yaiba - 07 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Around 40 Otoko no Isekai Tsuuhan - 06 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "filename": "[LoliHouse] Around 40 Otoko no Isekai Tsuuhan - 06 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Around 40 Otoko No Isekai Tsuuhan - 06 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Around 40 Otoko No Isekai Tsuuhan - 06 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Made.in.Abyss.Dawn.of.the.Deep.Soul.2020.1080p.BluRay.x264-WiKi/Sample/Made.in.Abyss.Dawn.of.the.Deep.Soul.2020.1080p.BluRay.x264-WiKi.Sample.mkv", + "filename": "Made.in.Abyss.Dawn.of.the.Deep.Soul.2020.1080p.BluRay.x264-WiKi.Sample.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Made In Abyss Dawn Of The Deep Soul 2020 1080P Bluray X264-Wiki Sample", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Made In Abyss Dawn Of The Deep Soul 2020 1080P Bluray X264-Wiki Sample", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Made.in.Abyss.Dawn.of.the.Deep.Soul.2020.1080p.BluRay.x264-WiKi/Made.in.Abyss.Dawn.of.the.Deep.Soul.2020.1080p.BluRay.x264-WiKi.mkv", + "filename": "Made.in.Abyss.Dawn.of.the.Deep.Soul.2020.1080p.BluRay.x264-WiKi.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Made In Abyss Dawn Of The Deep Soul 2020 1080P Bluray X264-Wiki", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Made In Abyss Dawn Of The Deep Soul 2020 1080P Bluray X264-Wiki", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[BeanSub&FZSD][Jujutsu_Kaisen][51][GB][1080P][x264_AAC].mp4", + "filename": "[BeanSub&FZSD][Jujutsu_Kaisen][51][GB][1080P][x264_AAC].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Beansub&Fzsd][Jujutsu Kaisen][51][Gb][1080P][X264 Aac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Beansub&Fzsd][Jujutsu Kaisen][51][Gb][1080P][X264 Aac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 勇氣爆發 BANG BRAVERN - 04 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 勇氣爆發 BANG BRAVERN - 04 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 勇氣爆發 Bang Bravern - 04 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 勇氣爆發 Bang Bravern - 04 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Nekomoe kissaten&LoliHouse] Dungeon Meshi - 17 [WebRip 1080p HEVC-10bit AAC EAC3 ASSx2].mkv", + "filename": "[Nekomoe kissaten&LoliHouse] Dungeon Meshi - 17 [WebRip 1080p HEVC-10bit AAC EAC3 ASSx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Nekomoe Kissaten&Lolihouse] Dungeon Meshi - 17 [Webrip 1080P Hevc-10Bit Aac Eac3 Assx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Nekomoe Kissaten&Lolihouse] Dungeon Meshi - 17 [Webrip 1080P Hevc-10Bit Aac Eac3 Assx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 一拳超人(第三季) - 32 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 一拳超人(第三季) - 32 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 一拳超人(第三季) - 32 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 一拳超人(第三季) - 32 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 在地下城尋求邂逅是否搞錯了什麼 第五季 - 11 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 在地下城尋求邂逅是否搞錯了什麼 第五季 - 11 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 在地下城尋求邂逅是否搞錯了什麼 第五季 - 11 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 在地下城尋求邂逅是否搞錯了什麼 第五季 - 11 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Lilith-Raws] Rinkai! - 01 [Baha][WebDL 1080p AVC AAC][CHT].mp4", + "filename": "[Lilith-Raws] Rinkai! - 01 [Baha][WebDL 1080p AVC AAC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lilith-Raws] Rinkai! - 01 [Baha][Webdl 1080P Avc Aac][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lilith-Raws] Rinkai! - 01 [Baha][Webdl 1080P Avc Aac][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 被逐出隊伍的治癒師,其實是最強 - 06 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 被逐出隊伍的治癒師,其實是最強 - 06 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 被逐出隊伍的治癒師,其實是最強 - 06 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 被逐出隊伍的治癒師,其實是最強 - 06 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[BeanSub&FZSD][Jigokuraku][14][GB][1080P][x264_AAC].mp4", + "filename": "[BeanSub&FZSD][Jigokuraku][14][GB][1080P][x264_AAC].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Beansub&Fzsd][Jigokuraku][14][Gb][1080P][X264 Aac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Beansub&Fzsd][Jigokuraku][14][Gb][1080P][X264 Aac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 終末起點 - 11 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 終末起點 - 11 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 終末起點 - 11 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 終末起點 - 11 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Grand Blue S2 - 02 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "filename": "[LoliHouse] Grand Blue S2 - 02 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Grand Blue S2 - 02 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Grand Blue S2 - 02 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 黃昏光影 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 黃昏光影 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 黃昏光影 - 01 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 黃昏光影 - 01 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "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", + "title": "[Ani] 治癒魔法的錯誤使用法 - 07 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 治癒魔法的錯誤使用法 - 07 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 一拳超人(第三季) - 29 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 一拳超人(第三季) - 29 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 一拳超人(第三季) - 29 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 一拳超人(第三季) - 29 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 遲早是最強的鍊金術師? - 10 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 遲早是最強的鍊金術師? - 10 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 遲早是最強的鍊金術師? - 10 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 遲早是最強的鍊金術師? - 10 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Sakurato][20220107] Shuumatsu no Harem [1-11 Fin][TV][AVC-8bit 1080P AAC][CHT]/[Sakurato] Shuumatsu no Harem [05][AVC-8bit 1080P AAC][CHT].mp4", + "filename": "[Sakurato] Shuumatsu no Harem [05][AVC-8bit 1080P AAC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Sakurato] Shuumatsu No Harem [05][Avc-8Bit 1080P Aac][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Sakurato] Shuumatsu No Harem [05][Avc-8Bit 1080P Aac][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Sakurato][20220107] Shuumatsu no Harem [1-11 Fin][TV][AVC-8bit 1080P AAC][CHT]/[Sakurato] Shuumatsu no Harem [03][AVC-8bit 1080P AAC][CHT].mp4", + "filename": "[Sakurato] Shuumatsu no Harem [03][AVC-8bit 1080P AAC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Sakurato] Shuumatsu No Harem [03][Avc-8Bit 1080P Aac][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Sakurato] Shuumatsu No Harem [03][Avc-8Bit 1080P Aac][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Sakurato][20220107] Shuumatsu no Harem [1-11 Fin][TV][AVC-8bit 1080P AAC][CHT]/[Sakurato] Shuumatsu no Harem [09][AVC-8bit 1080P AAC][CHT].mp4", + "filename": "[Sakurato] Shuumatsu no Harem [09][AVC-8bit 1080P AAC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Sakurato] Shuumatsu No Harem [09][Avc-8Bit 1080P Aac][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Sakurato] Shuumatsu No Harem [09][Avc-8Bit 1080P Aac][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Sakurato][20220107] Shuumatsu no Harem [1-11 Fin][TV][AVC-8bit 1080P AAC][CHT]/[Sakurato] Shuumatsu no Harem [04][AVC-8bit 1080P AAC][CHT].mp4", + "filename": "[Sakurato] Shuumatsu no Harem [04][AVC-8bit 1080P AAC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Sakurato] Shuumatsu No Harem [04][Avc-8Bit 1080P Aac][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Sakurato] Shuumatsu No Harem [04][Avc-8Bit 1080P Aac][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Sakurato][20220107] Shuumatsu no Harem [1-11 Fin][TV][AVC-8bit 1080P AAC][CHT]/[Sakurato] Shuumatsu no Harem [02][AVC-8bit 1080P AAC][CHT].mp4", + "filename": "[Sakurato] Shuumatsu no Harem [02][AVC-8bit 1080P AAC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Sakurato] Shuumatsu No Harem [02][Avc-8Bit 1080P Aac][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Sakurato] Shuumatsu No Harem [02][Avc-8Bit 1080P Aac][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Sakurato][20220107] Shuumatsu no Harem [1-11 Fin][TV][AVC-8bit 1080P AAC][CHT]/[Sakurato] Shuumatsu no Harem [08][AVC-8bit 1080P AAC][CHT].mp4", + "filename": "[Sakurato] Shuumatsu no Harem [08][AVC-8bit 1080P AAC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Sakurato] Shuumatsu No Harem [08][Avc-8Bit 1080P Aac][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Sakurato] Shuumatsu No Harem [08][Avc-8Bit 1080P Aac][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Sakurato][20220107] Shuumatsu no Harem [1-11 Fin][TV][AVC-8bit 1080P AAC][CHT]/[Sakurato] Shuumatsu no Harem [07][AVC-8bit 1080P AAC][CHT].mp4", + "filename": "[Sakurato] Shuumatsu no Harem [07][AVC-8bit 1080P AAC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Sakurato] Shuumatsu No Harem [07][Avc-8Bit 1080P Aac][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Sakurato] Shuumatsu No Harem [07][Avc-8Bit 1080P Aac][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Sakurato][20220107] Shuumatsu no Harem [1-11 Fin][TV][AVC-8bit 1080P AAC][CHT]/[Sakurato] Shuumatsu no Harem [01][AVC-8bit 1080P AAC][CHT].mp4", + "filename": "[Sakurato] Shuumatsu no Harem [01][AVC-8bit 1080P AAC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Sakurato] Shuumatsu No Harem [01][Avc-8Bit 1080P Aac][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Sakurato] Shuumatsu No Harem [01][Avc-8Bit 1080P Aac][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Sakurato][20220107] Shuumatsu no Harem [1-11 Fin][TV][AVC-8bit 1080P AAC][CHT]/[Sakurato] Shuumatsu no Harem [10][AVC-8bit 1080P AAC][CHT].mp4", + "filename": "[Sakurato] Shuumatsu no Harem [10][AVC-8bit 1080P AAC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Sakurato] Shuumatsu No Harem [10][Avc-8Bit 1080P Aac][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Sakurato] Shuumatsu No Harem [10][Avc-8Bit 1080P Aac][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Sakurato][20220107] Shuumatsu no Harem [1-11 Fin][TV][AVC-8bit 1080P AAC][CHT]/[Sakurato] Shuumatsu no Harem [06][AVC-8bit 1080P AAC][CHT].mp4", + "filename": "[Sakurato] Shuumatsu no Harem [06][AVC-8bit 1080P AAC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Sakurato] Shuumatsu No Harem [06][Avc-8Bit 1080P Aac][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Sakurato] Shuumatsu No Harem [06][Avc-8Bit 1080P Aac][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Sakurato][20220107] Shuumatsu no Harem [1-11 Fin][TV][AVC-8bit 1080P AAC][CHT]/[Sakurato] Shuumatsu no Harem [11][AVC-8bit 1080P AAC][CHT].mp4", + "filename": "[Sakurato] Shuumatsu no Harem [11][AVC-8bit 1080P AAC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Sakurato] Shuumatsu No Harem [11][Avc-8Bit 1080P Aac][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Sakurato] Shuumatsu No Harem [11][Avc-8Bit 1080P Aac][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Nekomoe kissaten&LoliHouse] Dosanko Gal wa Namara Menkoi - 01 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "filename": "[Nekomoe kissaten&LoliHouse] Dosanko Gal wa Namara Menkoi - 01 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Nekomoe Kissaten&Lolihouse] Dosanko Gal Wa Namara Menkoi - 01 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Nekomoe Kissaten&Lolihouse] Dosanko Gal Wa Namara Menkoi - 01 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] Re:從零開始的異世界生活 第三季 - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] Re:從零開始的異世界生活 第三季 - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] Re:從零開始的異世界生活 第三季 - 02 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] Re:從零開始的異世界生活 第三季 - 02 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Skymoon-Raws] SPY×FAMILY - 23 [ViuTV][WEB-DL][CHT][1080p][AVC AAC][MP4+ASS]/[Skymoon-Raws] SPY×FAMILY - 23 [ViuTV][WEB-DL][1080p][AVC AAC].mp4", + "filename": "[Skymoon-Raws] SPY×FAMILY - 23 [ViuTV][WEB-DL][1080p][AVC AAC].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Skymoon-Raws] Spy×Family - 23 [Viutv][Web-Dl][1080P][Avc Aac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Skymoon-Raws] Spy×Family - 23 [Viutv][Web-Dl][1080P][Avc Aac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Katainaka no Ossan, Kensei ni Naru - 01 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "filename": "[LoliHouse] Katainaka no Ossan, Kensei ni Naru - 01 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Katainaka No Ossan, Kensei Ni Naru - 01 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Katainaka No Ossan, Kensei Ni Naru - 01 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[BeanSub&FZSD][Kimetsu_no_Yaiba][62][BIG5][1080P][x264_AAC].mp4", + "filename": "[BeanSub&FZSD][Kimetsu_no_Yaiba][62][BIG5][1080P][x264_AAC].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Beansub&Fzsd][Kimetsu No Yaiba][62][Big5][1080P][X264 Aac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Beansub&Fzsd][Kimetsu No Yaiba][62][Big5][1080P][X264 Aac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 香格里拉・開拓異境~糞作獵手挑戰神作~ - 25 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 香格里拉・開拓異境~糞作獵手挑戰神作~ - 25 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 香格里拉・開拓異境~糞作獵手挑戰神作~ - 25 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 香格里拉・開拓異境~糞作獵手挑戰神作~ - 25 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "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", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 香格里拉・開拓異境~糞作獵手挑戰神作~ 第二季 - 14 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 香格里拉・開拓異境~糞作獵手挑戰神作~ 第二季 - 14 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 葬送的芙莉蓮 - 25 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 葬送的芙莉蓮 - 25 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 葬送的芙莉蓮 - 25 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 葬送的芙莉蓮 - 25 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 29 歲單身中堅冒險家的日常 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 29 歲單身中堅冒險家的日常 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 29 歲單身中堅冒險家的日常 - 01 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 29 歲單身中堅冒險家的日常 - 01 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 野原廣志 午餐的流派 - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 野原廣志 午餐的流派 - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 野原廣志 午餐的流派 - 02 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 野原廣志 午餐的流派 - 02 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Izure Saikyou no Renkinjutsushi - 05 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "filename": "[LoliHouse] Izure Saikyou no Renkinjutsushi - 05 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Izure Saikyou No Renkinjutsushi - 05 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Izure Saikyou No Renkinjutsushi - 05 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Nekomoe kissaten][Boku no Kokoro no Yabai Yatsu][22][1080p][JPSC].mp4", + "filename": "[Nekomoe kissaten][Boku no Kokoro no Yabai Yatsu][22][1080p][JPSC].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Nekomoe Kissaten][Boku No Kokoro No Yabai Yatsu][22][1080P][Jpsc]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Nekomoe Kissaten][Boku No Kokoro No Yabai Yatsu][22][1080P][Jpsc]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Nekomoe kissaten&LoliHouse] Pon no Michi - 07 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "filename": "[Nekomoe kissaten&LoliHouse] Pon no Michi - 07 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Nekomoe Kissaten&Lolihouse] Pon No Michi - 07 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Nekomoe Kissaten&Lolihouse] Pon No Michi - 07 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/《盾之勇者成名錄 第二季》#12/《盾之勇者成名錄 第二季》#12 (日語原聲)【Ani-One ULTRA】.mp4", + "filename": "《盾之勇者成名錄 第二季》#12 (日語原聲)【Ani-One ULTRA】.mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "《盾之勇者成名錄 第二季》#12 (日語原聲)【Ani-One Ultra】", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "《盾之勇者成名錄 第二季》#12 (日語原聲)【Ani-One Ultra】", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Nekomoe kissaten][Ame to Kimi to][05][1080p][JPSC].mp4", + "filename": "[Nekomoe kissaten][Ame to Kimi to][05][1080p][JPSC].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Nekomoe Kissaten][Ame To Kimi To][05][1080P][Jpsc]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Nekomoe Kissaten][Ame To Kimi To][05][1080P][Jpsc]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Nekomoe kissaten][Chi. Chikyuu no Undou ni Tsuite][01][1080p][JPSC].mp4", + "filename": "[Nekomoe kissaten][Chi. Chikyuu no Undou ni Tsuite][01][1080p][JPSC].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Nekomoe Kissaten][Chi Chikyuu No Undou Ni Tsuite][01][1080P][Jpsc]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Nekomoe Kissaten][Chi Chikyuu No Undou Ni Tsuite][01][1080P][Jpsc]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Baki.2018.S01.Part1.1080p.NF.WEB-DL.AAC.H.264@BWE/[第 1 部分.Ep6] 刃牙 - 片平警官的报告.mkv", + "filename": "[第 1 部分.Ep6] 刃牙 - 片平警官的报告.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[第 1 部分 Ep6] 刃牙 - 片平警官的报告", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[第 1 部分 Ep6] 刃牙 - 片平警官的报告", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Baki.2018.S01.Part1.1080p.NF.WEB-DL.AAC.H.264@BWE/[第 1 部分.Ep9] 刃牙 - 激愤的神心会.mkv", + "filename": "[第 1 部分.Ep9] 刃牙 - 激愤的神心会.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[第 1 部分 Ep9] 刃牙 - 激愤的神心会", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[第 1 部分 Ep9] 刃牙 - 激愤的神心会", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Baki.2018.S01.Part1.1080p.NF.WEB-DL.AAC.H.264@BWE/[第 1 部分.Ep5] 刃牙 - 想要更多吗?.mkv", + "filename": "[第 1 部分.Ep5] 刃牙 - 想要更多吗?.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[第 1 部分 Ep5] 刃牙 - 想要更多吗?", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[第 1 部分 Ep5] 刃牙 - 想要更多吗?", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Baki.2018.S01.Part1.1080p.NF.WEB-DL.AAC.H.264@BWE/[第 1 部分.Ep13] 刃牙 - 奥利弗先生.mkv", + "filename": "[第 1 部分.Ep13] 刃牙 - 奥利弗先生.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[第 1 部分 Ep13] 刃牙 - 奥利弗先生", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[第 1 部分 Ep13] 刃牙 - 奥利弗先生", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Baki.2018.S01.Part1.1080p.NF.WEB-DL.AAC.H.264@BWE/[第 1 部分.Ep7] 刃牙 - 最强的组合.mkv", + "filename": "[第 1 部分.Ep7] 刃牙 - 最强的组合.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[第 1 部分 Ep7] 刃牙 - 最强的组合", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[第 1 部分 Ep7] 刃牙 - 最强的组合", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Baki.2018.S01.Part1.1080p.NF.WEB-DL.AAC.H.264@BWE/[第 1 部分.Ep8] 刃牙 - 比赛与决斗.mkv", + "filename": "[第 1 部分.Ep8] 刃牙 - 比赛与决斗.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[第 1 部分 Ep8] 刃牙 - 比赛与决斗", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[第 1 部分 Ep8] 刃牙 - 比赛与决斗", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Baki.2018.S01.Part1.1080p.NF.WEB-DL.AAC.H.264@BWE/[第 1 部分.Ep12] 刃牙 - 糖果.mkv", + "filename": "[第 1 部分.Ep12] 刃牙 - 糖果.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[第 1 部分 Ep12] 刃牙 - 糖果", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[第 1 部分 Ep12] 刃牙 - 糖果", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Baki.2018.S01.Part1.1080p.NF.WEB-DL.AAC.H.264@BWE/[第 1 部分.Ep10] 刃牙 - 空中决战.mkv", + "filename": "[第 1 部分.Ep10] 刃牙 - 空中决战.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[第 1 部分 Ep10] 刃牙 - 空中决战", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[第 1 部分 Ep10] 刃牙 - 空中决战", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Baki.2018.S01.Part1.1080p.NF.WEB-DL.AAC.H.264@BWE/[第 1 部分.Ep3] 刃牙 - 他们终于来了!.mkv", + "filename": "[第 1 部分.Ep3] 刃牙 - 他们终于来了!.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[第 1 部分 Ep3] 刃牙 - 他们终于来了!", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[第 1 部分 Ep3] 刃牙 - 他们终于来了!", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Baki.2018.S01.Part1.1080p.NF.WEB-DL.AAC.H.264@BWE/[第 1 部分.Ep2] 刃牙 - 黑格斗.mkv", + "filename": "[第 1 部分.Ep2] 刃牙 - 黑格斗.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[第 1 部分 Ep2] 刃牙 - 黑格斗", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[第 1 部分 Ep2] 刃牙 - 黑格斗", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Baki.2018.S01.Part1.1080p.NF.WEB-DL.AAC.H.264@BWE/[第 1 部分.Ep1] 刃牙 - 共时现象.mkv", + "filename": "[第 1 部分.Ep1] 刃牙 - 共时现象.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[第 1 部分 Ep1] 刃牙 - 共时现象", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[第 1 部分 Ep1] 刃牙 - 共时现象", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Baki.2018.S01.Part1.1080p.NF.WEB-DL.AAC.H.264@BWE/[第 1 部分.Ep4] 刃牙 - 比赛开始.mkv", + "filename": "[第 1 部分.Ep4] 刃牙 - 比赛开始.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[第 1 部分 Ep4] 刃牙 - 比赛开始", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[第 1 部分 Ep4] 刃牙 - 比赛开始", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Baki.2018.S01.Part1.1080p.NF.WEB-DL.AAC.H.264@BWE/[第 1 部分.Ep11] 刃牙 - 虎杀.mkv", + "filename": "[第 1 部分.Ep11] 刃牙 - 虎杀.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[第 1 部分 Ep11] 刃牙 - 虎杀", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[第 1 部分 Ep11] 刃牙 - 虎杀", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/《不要欺負我,長瀞同學 2nd Attack》#1/《不要欺負我,長瀞同學 2nd Attack》#1 (日語原聲)【Ani-One Asia】.mp4", + "filename": "《不要欺負我,長瀞同學 2nd Attack》#1 (日語原聲)【Ani-One Asia】.mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "《不要欺負我,長瀞同學 2Nd Attack》#1 (日語原聲)【Ani-One Asia】", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "《不要欺負我,長瀞同學 2Nd Attack》#1 (日語原聲)【Ani-One Asia】", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Lilith-Raws] Re:Monster - 01 [Baha][WebDL 1080p AVC AAC][CHT].mp4", + "filename": "[Lilith-Raws] Re:Monster - 01 [Baha][WebDL 1080p AVC AAC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lilith-Raws] Re:Monster - 01 [Baha][Webdl 1080P Avc Aac][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lilith-Raws] Re:Monster - 01 [Baha][Webdl 1080P Avc Aac][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 身為暗殺者的我明顯比勇者還強 - 04 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 身為暗殺者的我明顯比勇者還強 - 04 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 身為暗殺者的我明顯比勇者還強 - 04 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 身為暗殺者的我明顯比勇者還強 - 04 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 素材採集家的異世界旅行記 - 06 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 素材採集家的異世界旅行記 - 06 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 素材採集家的異世界旅行記 - 06 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 素材採集家的異世界旅行記 - 06 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[orion origin] Boukyaku Battery [08] [1080p] [H265 AAC] [CHT&JPN].mp4", + "filename": "[orion origin] Boukyaku Battery [08] [1080p] [H265 AAC] [CHT&JPN].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Orion Origin] Boukyaku Battery [08] [1080P] [H265 Aac] [Cht&Jpn]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Orion Origin] Boukyaku Battery [08] [1080P] [H265 Aac] [Cht&Jpn]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/KENGAN.ASHURA.S02.Part2.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG/KENGAN.ASHURA.S02E21.Farewell.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG.mkv", + "filename": "KENGAN.ASHURA.S02E21.Farewell.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Kengan Ashura S02E21 Farewell 1080P Nf Web-Dl Ddp5 1 H 264-Varyg", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Kengan Ashura S02E21 Farewell 1080P Nf Web-Dl Ddp5 1 H 264-Varyg", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/KENGAN.ASHURA.S02.Part2.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG/KENGAN.ASHURA.S02E22.Wakatsuki.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG.mkv", + "filename": "KENGAN.ASHURA.S02E22.Wakatsuki.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Kengan Ashura S02E22 Wakatsuki 1080P Nf Web-Dl Ddp5 1 H 264-Varyg", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Kengan Ashura S02E22 Wakatsuki 1080P Nf Web-Dl Ddp5 1 H 264-Varyg", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/KENGAN.ASHURA.S02.Part2.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG/KENGAN.ASHURA.S02E23.Wholehearted.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG.mkv", + "filename": "KENGAN.ASHURA.S02E23.Wholehearted.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Kengan Ashura S02E23 Wholehearted 1080P Nf Web-Dl Ddp5 1 H 264-Varyg", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Kengan Ashura S02E23 Wholehearted 1080P Nf Web-Dl Ddp5 1 H 264-Varyg", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/KENGAN.ASHURA.S02.Part2.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG/KENGAN.ASHURA.S02E24.Supreme.Strength.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG.mkv", + "filename": "KENGAN.ASHURA.S02E24.Supreme.Strength.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Kengan Ashura S02E24 Supreme Strength 1080P Nf Web-Dl Ddp5 1 H 264-Varyg", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Kengan Ashura S02E24 Supreme Strength 1080P Nf Web-Dl Ddp5 1 H 264-Varyg", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/KENGAN.ASHURA.S02.Part2.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG/KENGAN.ASHURA.S02E26.The.Finals.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG.mkv", + "filename": "KENGAN.ASHURA.S02E26.The.Finals.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Kengan Ashura S02E26 The Finals 1080P Nf Web-Dl Ddp5 1 H 264-Varyg", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Kengan Ashura S02E26 The Finals 1080P Nf Web-Dl Ddp5 1 H 264-Varyg", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/KENGAN.ASHURA.S02.Part2.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG/KENGAN.ASHURA.S02E25.Giant.Star.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG.mkv", + "filename": "KENGAN.ASHURA.S02E25.Giant.Star.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Kengan Ashura S02E25 Giant Star 1080P Nf Web-Dl Ddp5 1 H 264-Varyg", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Kengan Ashura S02E25 Giant Star 1080P Nf Web-Dl Ddp5 1 H 264-Varyg", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/KENGAN.ASHURA.S02.Part2.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG/KENGAN.ASHURA.S02E27.Victory.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG.mkv", + "filename": "KENGAN.ASHURA.S02E27.Victory.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Kengan Ashura S02E27 Victory 1080P Nf Web-Dl Ddp5 1 H 264-Varyg", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Kengan Ashura S02E27 Victory 1080P Nf Web-Dl Ddp5 1 H 264-Varyg", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/KENGAN.ASHURA.S02.Part2.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG/KENGAN.ASHURA.S02E16.Culmination.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG.mkv", + "filename": "KENGAN.ASHURA.S02E16.Culmination.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Kengan Ashura S02E16 Culmination 1080P Nf Web-Dl Ddp5 1 H 264-Varyg", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Kengan Ashura S02E16 Culmination 1080P Nf Web-Dl Ddp5 1 H 264-Varyg", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/KENGAN.ASHURA.S02.Part2.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG/KENGAN.ASHURA.S02E19.Predicament.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG.mkv", + "filename": "KENGAN.ASHURA.S02E19.Predicament.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Kengan Ashura S02E19 Predicament 1080P Nf Web-Dl Ddp5 1 H 264-Varyg", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Kengan Ashura S02E19 Predicament 1080P Nf Web-Dl Ddp5 1 H 264-Varyg", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/KENGAN.ASHURA.S02.Part2.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG/KENGAN.ASHURA.S02E20.Demon.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG.mkv", + "filename": "KENGAN.ASHURA.S02E20.Demon.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Kengan Ashura S02E20 Demon 1080P Nf Web-Dl Ddp5 1 H 264-Varyg", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Kengan Ashura S02E20 Demon 1080P Nf Web-Dl Ddp5 1 H 264-Varyg", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/KENGAN.ASHURA.S02.Part2.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG/KENGAN.ASHURA.S02E28.Finale.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG.mkv", + "filename": "KENGAN.ASHURA.S02E28.Finale.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Kengan Ashura S02E28 Finale 1080P Nf Web-Dl Ddp5 1 H 264-Varyg", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Kengan Ashura S02E28 Finale 1080P Nf Web-Dl Ddp5 1 H 264-Varyg", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/KENGAN.ASHURA.S02.Part2.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG/KENGAN.ASHURA.S02E17.Gathering.Clouds.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG.mkv", + "filename": "KENGAN.ASHURA.S02E17.Gathering.Clouds.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Kengan Ashura S02E17 Gathering Clouds 1080P Nf Web-Dl Ddp5 1 H 264-Varyg", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Kengan Ashura S02E17 Gathering Clouds 1080P Nf Web-Dl Ddp5 1 H 264-Varyg", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/KENGAN.ASHURA.S02.Part2.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG/KENGAN.ASHURA.S02E14.Reflecting.Water.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG.mkv", + "filename": "KENGAN.ASHURA.S02E14.Reflecting.Water.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Kengan Ashura S02E14 Reflecting Water 1080P Nf Web-Dl Ddp5 1 H 264-Varyg", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Kengan Ashura S02E14 Reflecting Water 1080P Nf Web-Dl Ddp5 1 H 264-Varyg", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/KENGAN.ASHURA.S02.Part2.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG/KENGAN.ASHURA.S02E13.Headstrong.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG.mkv", + "filename": "KENGAN.ASHURA.S02E13.Headstrong.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Kengan Ashura S02E13 Headstrong 1080P Nf Web-Dl Ddp5 1 H 264-Varyg", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Kengan Ashura S02E13 Headstrong 1080P Nf Web-Dl Ddp5 1 H 264-Varyg", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/KENGAN.ASHURA.S02.Part2.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG/KENGAN.ASHURA.S02E18.The.Floating.Cloud.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG.mkv", + "filename": "KENGAN.ASHURA.S02E18.The.Floating.Cloud.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Kengan Ashura S02E18 The Floating Cloud 1080P Nf Web-Dl Ddp5 1 H 264-Varyg", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Kengan Ashura S02E18 The Floating Cloud 1080P Nf Web-Dl Ddp5 1 H 264-Varyg", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/KENGAN.ASHURA.S02.Part2.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG/KENGAN.ASHURA.S02E15.Ace.In.The.Hole.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG.mkv", + "filename": "KENGAN.ASHURA.S02E15.Ace.In.The.Hole.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Kengan Ashura S02E15 Ace In The Hole 1080P Nf Web-Dl Ddp5 1 H 264-Varyg", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Kengan Ashura S02E15 Ace In The Hole 1080P Nf Web-Dl Ddp5 1 H 264-Varyg", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 判處勇者刑 - 03 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 判處勇者刑 - 03 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 判處勇者刑 - 03 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 判處勇者刑 - 03 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[orion origin] Lv2 kara Cheat datta Moto Yuusha Kouho no Mattari Isekai Life [03] [1080p] [H265 AAC] [CHT&JPN].mp4", + "filename": "[orion origin] Lv2 kara Cheat datta Moto Yuusha Kouho no Mattari Isekai Life [03] [1080p] [H265 AAC] [CHT&JPN].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Orion Origin] Lv2 Kara Cheat Datta Moto Yuusha Kouho No Mattari Isekai Life [03] [1080P] [H265 Aac] [Cht&Jpn]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Orion Origin] Lv2 Kara Cheat Datta Moto Yuusha Kouho No Mattari Isekai Life [03] [1080P] [H265 Aac] [Cht&Jpn]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] Silent Witch 沉默魔女的祕密 - 07 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] Silent Witch 沉默魔女的祕密 - 07 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] Silent Witch 沉默魔女的祕密 - 07 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] Silent Witch 沉默魔女的祕密 - 07 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 歲月流逝飯菜依舊美味 - 09 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 歲月流逝飯菜依舊美味 - 09 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 歲月流逝飯菜依舊美味 - 09 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 歲月流逝飯菜依舊美味 - 09 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 我獨自升級 - 10 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 我獨自升級 - 10 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 我獨自升級 - 10 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 我獨自升級 - 10 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 我內心的糟糕念頭 第二季 - 23 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 我內心的糟糕念頭 第二季 - 23 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 我內心的糟糕念頭 第二季 - 23 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 我內心的糟糕念頭 第二季 - 23 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Skymoon-Raws] Shin Samurai-den YAIBA - 03 [ViuTV][WEB-DL][CHT][SRT][1080p][AVC AAC].mkv", + "filename": "[Skymoon-Raws] Shin Samurai-den YAIBA - 03 [ViuTV][WEB-DL][CHT][SRT][1080p][AVC AAC].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Skymoon-Raws] Shin Samurai-Den Yaiba - 03 [Viutv][Web-Dl][Cht][Srt][1080P][Avc Aac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Skymoon-Raws] Shin Samurai-Den Yaiba - 03 [Viutv][Web-Dl][Cht][Srt][1080P][Avc Aac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 差點在迷宮深處被信任的夥伴殺掉,但靠著天賜技能「無限扭蛋」獲得等級 9999 的夥伴,我要向前隊友和世界展開復仇&「給他們好看!」 - 10 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 差點在迷宮深處被信任的夥伴殺掉,但靠著天賜技能「無限扭蛋」獲得等級 9999 的夥伴,我要向前隊友和世界展開復仇&「給他們好看!」 - 10 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 差點在迷宮深處被信任的夥伴殺掉,但靠著天賜技能「無限扭蛋」獲得等級 9999 的夥伴,我要向前隊友和世界展開復仇&「給他們好看!」 - 10 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 差點在迷宮深處被信任的夥伴殺掉,但靠著天賜技能「無限扭蛋」獲得等級 9999 的夥伴,我要向前隊友和世界展開復仇&「給他們好看!」 - 10 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 聽說你們要結婚!? - 12 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 聽說你們要結婚!? - 12 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 聽說你們要結婚!? - 12 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 聽說你們要結婚!? - 12 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 戀上換裝娃娃 Season 2 - 21 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 戀上換裝娃娃 Season 2 - 21 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 戀上換裝娃娃 Season 2 - 21 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 戀上換裝娃娃 Season 2 - 21 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/The.Legend.of.Vox.Machina.S01.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb/The.Legend.of.Vox.Machina.S01E07.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv", + "filename": "The.Legend.of.Vox.Machina.S01E07.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "The Legend Of Vox Machina S01E07 1080P Amzn Web-Dl Ddp5 1 H 264-Ntb", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "The Legend Of Vox Machina S01E07 1080P Amzn Web-Dl Ddp5 1 H 264-Ntb", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/The.Legend.of.Vox.Machina.S01.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb/The.Legend.of.Vox.Machina.S01E03.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv", + "filename": "The.Legend.of.Vox.Machina.S01E03.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "The Legend Of Vox Machina S01E03 1080P Amzn Web-Dl Ddp5 1 H 264-Ntb", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "The Legend Of Vox Machina S01E03 1080P Amzn Web-Dl Ddp5 1 H 264-Ntb", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/The.Legend.of.Vox.Machina.S01.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb/The.Legend.of.Vox.Machina.S01E12.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv", + "filename": "The.Legend.of.Vox.Machina.S01E12.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "The Legend Of Vox Machina S01E12 1080P Amzn Web-Dl Ddp5 1 H 264-Ntb", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "The Legend Of Vox Machina S01E12 1080P Amzn Web-Dl Ddp5 1 H 264-Ntb", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/The.Legend.of.Vox.Machina.S01.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb/The.Legend.of.Vox.Machina.S01E02.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv", + "filename": "The.Legend.of.Vox.Machina.S01E02.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "The Legend Of Vox Machina S01E02 1080P Amzn Web-Dl Ddp5 1 H 264-Ntb", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "The Legend Of Vox Machina S01E02 1080P Amzn Web-Dl Ddp5 1 H 264-Ntb", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/The.Legend.of.Vox.Machina.S01.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb/The.Legend.of.Vox.Machina.S01E06.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv", + "filename": "The.Legend.of.Vox.Machina.S01E06.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "The Legend Of Vox Machina S01E06 1080P Amzn Web-Dl Ddp5 1 H 264-Ntb", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "The Legend Of Vox Machina S01E06 1080P Amzn Web-Dl Ddp5 1 H 264-Ntb", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/The.Legend.of.Vox.Machina.S01.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb/The.Legend.of.Vox.Machina.S01E11.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv", + "filename": "The.Legend.of.Vox.Machina.S01E11.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "The Legend Of Vox Machina S01E11 1080P Amzn Web-Dl Ddp5 1 H 264-Ntb", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "The Legend Of Vox Machina S01E11 1080P Amzn Web-Dl Ddp5 1 H 264-Ntb", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/The.Legend.of.Vox.Machina.S01.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb/The.Legend.of.Vox.Machina.S01E09.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv", + "filename": "The.Legend.of.Vox.Machina.S01E09.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "The Legend Of Vox Machina S01E09 1080P Amzn Web-Dl Ddp5 1 H 264-Ntb", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "The Legend Of Vox Machina S01E09 1080P Amzn Web-Dl Ddp5 1 H 264-Ntb", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/The.Legend.of.Vox.Machina.S01.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb/The.Legend.of.Vox.Machina.S01E04.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv", + "filename": "The.Legend.of.Vox.Machina.S01E04.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "The Legend Of Vox Machina S01E04 1080P Amzn Web-Dl Ddp5 1 H 264-Ntb", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "The Legend Of Vox Machina S01E04 1080P Amzn Web-Dl Ddp5 1 H 264-Ntb", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/The.Legend.of.Vox.Machina.S01.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb/The.Legend.of.Vox.Machina.S01E05.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv", + "filename": "The.Legend.of.Vox.Machina.S01E05.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "The Legend Of Vox Machina S01E05 1080P Amzn Web-Dl Ddp5 1 H 264-Ntb", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "The Legend Of Vox Machina S01E05 1080P Amzn Web-Dl Ddp5 1 H 264-Ntb", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/The.Legend.of.Vox.Machina.S01.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb/The.Legend.of.Vox.Machina.S01E01.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv", + "filename": "The.Legend.of.Vox.Machina.S01E01.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "The Legend Of Vox Machina S01E01 1080P Amzn Web-Dl Ddp5 1 H 264-Ntb", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "The Legend Of Vox Machina S01E01 1080P Amzn Web-Dl Ddp5 1 H 264-Ntb", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/The.Legend.of.Vox.Machina.S01.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb/The.Legend.of.Vox.Machina.S01E08.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv", + "filename": "The.Legend.of.Vox.Machina.S01E08.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "The Legend Of Vox Machina S01E08 1080P Amzn Web-Dl Ddp5 1 H 264-Ntb", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "The Legend Of Vox Machina S01E08 1080P Amzn Web-Dl Ddp5 1 H 264-Ntb", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/The.Legend.of.Vox.Machina.S01.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb/The.Legend.of.Vox.Machina.S01E10.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv", + "filename": "The.Legend.of.Vox.Machina.S01E10.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "The Legend Of Vox Machina S01E10 1080P Amzn Web-Dl Ddp5 1 H 264-Ntb", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "The Legend Of Vox Machina S01E10 1080P Amzn Web-Dl Ddp5 1 H 264-Ntb", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 歲月流逝飯菜依舊美味 - 12 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 歲月流逝飯菜依舊美味 - 12 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 歲月流逝飯菜依舊美味 - 12 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 歲月流逝飯菜依舊美味 - 12 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Nekomoe kissaten&LoliHouse] Dandadan - 24 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "filename": "[Nekomoe kissaten&LoliHouse] Dandadan - 24 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Nekomoe Kissaten&Lolihouse] Dandadan - 24 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Nekomoe Kissaten&Lolihouse] Dandadan - 24 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Sakurato.sub][Tensei Shitara Slime Datta Ken][OVA01][BIG5][1080P]/[Sakurato.sub][Tensei Shitara Slime Datta Ken][OVA01][BIG5][1080P].mp4", + "filename": "[Sakurato.sub][Tensei Shitara Slime Datta Ken][OVA01][BIG5][1080P].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Sakurato Sub][Tensei Shitara Slime Datta Ken][Ova01][Big5][1080P]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Sakurato Sub][Tensei Shitara Slime Datta Ken][Ova01][Big5][1080P]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Record.of.Ragnarok.S02.1080p.NF.WEB-DL.AAC2.0.H.264-VARYG/Record.of.Ragnarok.S02E01.Good.vs.Evil.1080p.NF.WEB-DL.AAC2.0.H.264-VARYG.mkv", + "filename": "Record.of.Ragnarok.S02E01.Good.vs.Evil.1080p.NF.WEB-DL.AAC2.0.H.264-VARYG.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Record Of Ragnarok S02E01 Good Vs Evil 1080P Nf Web-Dl Aac2 0 H 264-Varyg", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Record Of Ragnarok S02E01 Good Vs Evil 1080P Nf Web-Dl Aac2 0 H 264-Varyg", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Record.of.Ragnarok.S02.1080p.NF.WEB-DL.AAC2.0.H.264-VARYG/Record.of.Ragnarok.S02E03.Birth.of.a.Monster.1080p.NF.WEB-DL.AAC2.0.H.264-VARYG.mkv", + "filename": "Record.of.Ragnarok.S02E03.Birth.of.a.Monster.1080p.NF.WEB-DL.AAC2.0.H.264-VARYG.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Record Of Ragnarok S02E03 Birth Of A Monster 1080P Nf Web-Dl Aac2 0 H 264-Varyg", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Record Of Ragnarok S02E03 Birth Of A Monster 1080P Nf Web-Dl Aac2 0 H 264-Varyg", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Record.of.Ragnarok.S02.1080p.NF.WEB-DL.AAC2.0.H.264-VARYG/Record.of.Ragnarok.S02E09.Resonance.1080p.NF.WEB-DL.AAC2.0.H.264-VARYG.mkv", + "filename": "Record.of.Ragnarok.S02E09.Resonance.1080p.NF.WEB-DL.AAC2.0.H.264-VARYG.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Record Of Ragnarok S02E09 Resonance 1080P Nf Web-Dl Aac2 0 H 264-Varyg", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Record Of Ragnarok S02E09 Resonance 1080P Nf Web-Dl Aac2 0 H 264-Varyg", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Record.of.Ragnarok.S02.1080p.NF.WEB-DL.AAC2.0.H.264-VARYG/Record.of.Ragnarok.S02E13.The.strongest.puberty.in.history.1080p.NF.WEB-DL.AAC2.0.H.264-VARYG.mkv", + "filename": "Record.of.Ragnarok.S02E13.The.strongest.puberty.in.history.1080p.NF.WEB-DL.AAC2.0.H.264-VARYG.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Record Of Ragnarok S02E13 The Strongest Puberty In History 1080P Nf Web-Dl Aac2 0 H 264-Varyg", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Record Of Ragnarok S02E13 The Strongest Puberty In History 1080P Nf Web-Dl Aac2 0 H 264-Varyg", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Record.of.Ragnarok.S02.1080p.NF.WEB-DL.AAC2.0.H.264-VARYG/Record.of.Ragnarok.S02E07.Hundred.Seals.1080p.NF.WEB-DL.AAC2.0.H.264-VARYG.mkv", + "filename": "Record.of.Ragnarok.S02E07.Hundred.Seals.1080p.NF.WEB-DL.AAC2.0.H.264-VARYG.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Record Of Ragnarok S02E07 Hundred Seals 1080P Nf Web-Dl Aac2 0 H 264-Varyg", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Record Of Ragnarok S02E07 Hundred Seals 1080P Nf Web-Dl Aac2 0 H 264-Varyg", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Record.of.Ragnarok.S02.1080p.NF.WEB-DL.AAC2.0.H.264-VARYG/Record.of.Ragnarok.S02E15.The.Way.of.Light.1080p.NF.WEB-DL.AAC2.0.H.264-VARYG.mkv", + "filename": "Record.of.Ragnarok.S02E15.The.Way.of.Light.1080p.NF.WEB-DL.AAC2.0.H.264-VARYG.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Record Of Ragnarok S02E15 The Way Of Light 1080P Nf Web-Dl Aac2 0 H 264-Varyg", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Record Of Ragnarok S02E15 The Way Of Light 1080P Nf Web-Dl Aac2 0 H 264-Varyg", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Record.of.Ragnarok.S02.1080p.NF.WEB-DL.AAC2.0.H.264-VARYG/Record.of.Ragnarok.S02E04.The.Final.Labor.1080p.NF.WEB-DL.AAC2.0.H.264-VARYG.mkv", + "filename": "Record.of.Ragnarok.S02E04.The.Final.Labor.1080p.NF.WEB-DL.AAC2.0.H.264-VARYG.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Record Of Ragnarok S02E04 The Final Labor 1080P Nf Web-Dl Aac2 0 H 264-Varyg", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Record Of Ragnarok S02E04 The Final Labor 1080P Nf Web-Dl Aac2 0 H 264-Varyg", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Record.of.Ragnarok.S02.1080p.NF.WEB-DL.AAC2.0.H.264-VARYG/Record.of.Ragnarok.S02E11.Round.Six.1080p.NF.WEB-DL.AAC2.0.H.264-VARYG.mkv", + "filename": "Record.of.Ragnarok.S02E11.Round.Six.1080p.NF.WEB-DL.AAC2.0.H.264-VARYG.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Record Of Ragnarok S02E11 Round Six 1080P Nf Web-Dl Aac2 0 H 264-Varyg", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Record Of Ragnarok S02E11 Round Six 1080P Nf Web-Dl Aac2 0 H 264-Varyg", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Record.of.Ragnarok.S02.1080p.NF.WEB-DL.AAC2.0.H.264-VARYG/Record.of.Ragnarok.S02E02.The.Indomitable.War.God.1080p.NF.WEB-DL.AAC2.0.H.264-VARYG.mkv", + "filename": "Record.of.Ragnarok.S02E02.The.Indomitable.War.God.1080p.NF.WEB-DL.AAC2.0.H.264-VARYG.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Record Of Ragnarok S02E02 The Indomitable War God 1080P Nf Web-Dl Aac2 0 H 264-Varyg", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Record Of Ragnarok S02E02 The Indomitable War God 1080P Nf Web-Dl Aac2 0 H 264-Varyg", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Record.of.Ragnarok.S02.1080p.NF.WEB-DL.AAC2.0.H.264-VARYG/Record.of.Ragnarok.S02E14.Legend.of.the.Underworld.1080p.NF.WEB-DL.AAC2.0.H.264-VARYG.mkv", + "filename": "Record.of.Ragnarok.S02E14.Legend.of.the.Underworld.1080p.NF.WEB-DL.AAC2.0.H.264-VARYG.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Record Of Ragnarok S02E14 Legend Of The Underworld 1080P Nf Web-Dl Aac2 0 H 264-Varyg", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Record Of Ragnarok S02E14 Legend Of The Underworld 1080P Nf Web-Dl Aac2 0 H 264-Varyg", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Record.of.Ragnarok.S02.1080p.NF.WEB-DL.AAC2.0.H.264-VARYG/Record.of.Ragnarok.S02E12.Zero.1080p.NF.WEB-DL.AAC2.0.H.264-VARYG.mkv", + "filename": "Record.of.Ragnarok.S02E12.Zero.1080p.NF.WEB-DL.AAC2.0.H.264-VARYG.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Record Of Ragnarok S02E12 Zero 1080P Nf Web-Dl Aac2 0 H 264-Varyg", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Record Of Ragnarok S02E12 Zero 1080P Nf Web-Dl Aac2 0 H 264-Varyg", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Record.of.Ragnarok.S02.1080p.NF.WEB-DL.AAC2.0.H.264-VARYG/Record.of.Ragnarok.S02E10.The.Brink.1080p.NF.WEB-DL.AAC2.0.H.264-VARYG.mkv", + "filename": "Record.of.Ragnarok.S02E10.The.Brink.1080p.NF.WEB-DL.AAC2.0.H.264-VARYG.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Record Of Ragnarok S02E10 The Brink 1080P Nf Web-Dl Aac2 0 H 264-Varyg", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Record Of Ragnarok S02E10 The Brink 1080P Nf Web-Dl Aac2 0 H 264-Varyg", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Record.of.Ragnarok.S02.1080p.NF.WEB-DL.AAC2.0.H.264-VARYG/Record.of.Ragnarok.S02E05.Requiem.1080p.NF.WEB-DL.AAC2.0.H.264-VARYG.mkv", + "filename": "Record.of.Ragnarok.S02E05.Requiem.1080p.NF.WEB-DL.AAC2.0.H.264-VARYG.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Record Of Ragnarok S02E05 Requiem 1080P Nf Web-Dl Aac2 0 H 264-Varyg", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Record Of Ragnarok S02E05 Requiem 1080P Nf Web-Dl Aac2 0 H 264-Varyg", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Record.of.Ragnarok.S02.1080p.NF.WEB-DL.AAC2.0.H.264-VARYG/Record.of.Ragnarok.S02E06.Conflicting.Motives.1080p.NF.WEB-DL.AAC2.0.H.264-VARYG.mkv", + "filename": "Record.of.Ragnarok.S02E06.Conflicting.Motives.1080p.NF.WEB-DL.AAC2.0.H.264-VARYG.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Record Of Ragnarok S02E06 Conflicting Motives 1080P Nf Web-Dl Aac2 0 H 264-Varyg", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Record Of Ragnarok S02E06 Conflicting Motives 1080P Nf Web-Dl Aac2 0 H 264-Varyg", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Record.of.Ragnarok.S02.1080p.NF.WEB-DL.AAC2.0.H.264-VARYG/Record.of.Ragnarok.S02E08.The.Pinnacle.of.1116.1080p.NF.WEB-DL.AAC2.0.H.264-VARYG.mkv", + "filename": "Record.of.Ragnarok.S02E08.The.Pinnacle.of.1116.1080p.NF.WEB-DL.AAC2.0.H.264-VARYG.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Record Of Ragnarok S02E08 The Pinnacle Of 1116 1080P Nf Web-Dl Aac2 0 H 264-Varyg", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Record Of Ragnarok S02E08 The Pinnacle Of 1116 1080P Nf Web-Dl Aac2 0 H 264-Varyg", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Nekomoe kissaten][Ao no Hako][20][1080p][JPTC].mp4", + "filename": "[Nekomoe kissaten][Ao no Hako][20][1080p][JPTC].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Nekomoe Kissaten][Ao No Hako][20][1080P][Jptc]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Nekomoe Kissaten][Ao No Hako][20][1080P][Jptc]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Sakurato.sub][Psycho-Pass 3][08][CHT][1080P]/[Sakurato.sub][Psycho-Pass 3][08][CHT][1080P].mp4", + "filename": "[Sakurato.sub][Psycho-Pass 3][08][CHT][1080P].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Sakurato Sub][Psycho-Pass 3][08][Cht][1080P]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Sakurato Sub][Psycho-Pass 3][08][Cht][1080P]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 聽說你們要結婚!? - 09 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 聽說你們要結婚!? - 09 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 聽說你們要結婚!? - 09 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 聽說你們要結婚!? - 09 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Nekomoe kissaten][Chi. Chikyuu no Undou ni Tsuite][04][1080p][JPTC].mp4", + "filename": "[Nekomoe kissaten][Chi. Chikyuu no Undou ni Tsuite][04][1080p][JPTC].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Nekomoe Kissaten][Chi Chikyuu No Undou Ni Tsuite][04][1080P][Jptc]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Nekomoe Kissaten][Chi Chikyuu No Undou Ni Tsuite][04][1080P][Jptc]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 靠廢柴技能【狀態異常】成為最強的我將蹂躪一切 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 靠廢柴技能【狀態異常】成為最強的我將蹂躪一切 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 靠廢柴技能【狀態異常】成為最強的我將蹂躪一切 - 01 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 靠廢柴技能【狀態異常】成為最強的我將蹂躪一切 - 01 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 怪獸 8 號 第二季 - 特別篇 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 怪獸 8 號 第二季 - 特別篇 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 怪獸 8 號 第二季 - 特別篇 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 怪獸 8 號 第二季 - 特別篇 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Tsuki ga Michibiku Isekai Douchuu S2 - 16 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "filename": "[LoliHouse] Tsuki ga Michibiku Isekai Douchuu S2 - 16 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Tsuki Ga Michibiku Isekai Douchuu S2 - 16 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Tsuki Ga Michibiku Isekai Douchuu S2 - 16 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 我的妻子不具感情 - 10 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 我的妻子不具感情 - 10 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 我的妻子不具感情 - 10 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 我的妻子不具感情 - 10 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Shin Samurai-den YAIBA - 14 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "filename": "[LoliHouse] Shin Samurai-den YAIBA - 14 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Shin Samurai-Den Yaiba - 14 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Shin Samurai-Den Yaiba - 14 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[DMG&LoliHouse] Spy x Family - 19/[DMG&LoliHouse] Spy x Family - 19 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "filename": "[DMG&LoliHouse] Spy x Family - 19 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Dmg&Lolihouse] Spy X Family - 19 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Dmg&Lolihouse] Spy X Family - 19 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 杖與劍的魔劍譚 - 08 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 杖與劍的魔劍譚 - 08 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 杖與劍的魔劍譚 - 08 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 杖與劍的魔劍譚 - 08 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Sakurato] Haite Kudasai, Takamine-san [06][AVC-8bit 1080p AAC][CHT&JPN].mp4", + "filename": "[Sakurato] Haite Kudasai, Takamine-san [06][AVC-8bit 1080p AAC][CHT&JPN].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Sakurato] Haite Kudasai, Takamine-San [06][Avc-8Bit 1080P Aac][Cht&Jpn]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Sakurato] Haite Kudasai, Takamine-San [06][Avc-8Bit 1080P Aac][Cht&Jpn]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] DanMachi S5 - 09 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "filename": "[LoliHouse] DanMachi S5 - 09 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Danmachi S5 - 09 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Danmachi S5 - 09 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 香格里拉・開拓異境~糞作獵手挑戰神作~ 第二季 - 20 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 香格里拉・開拓異境~糞作獵手挑戰神作~ 第二季 - 20 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 香格里拉・開拓異境~糞作獵手挑戰神作~ 第二季 - 20 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 香格里拉・開拓異境~糞作獵手挑戰神作~ 第二季 - 20 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Dont be a simp] Ao no Hako - 23 [NF WebRip 1080p HEVC-10bit E-AC-3 Multi-Subs].mkv", + "filename": "[Dont be a simp] Ao no Hako - 23 [NF WebRip 1080p HEVC-10bit E-AC-3 Multi-Subs].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Dont Be A Simp] Ao No Hako - 23 [Nf Webrip 1080P Hevc-10Bit E-Ac-3 Multi-Subs]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Dont Be A Simp] Ao No Hako - 23 [Nf Webrip 1080P Hevc-10Bit E-Ac-3 Multi-Subs]", + "needs_review": true + }, + { + "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", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 永遠的黃昏 - 05 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 永遠的黃昏 - 05 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] NUKITASHI 住在拔作島上的我該如何是好? [年齡限制版] - 03 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] NUKITASHI 住在拔作島上的我該如何是好? [年齡限制版] - 03 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] Nukitashi 住在拔作島上的我該如何是好? [年齡限制版] - 03 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] Nukitashi 住在拔作島上的我該如何是好? [年齡限制版] - 03 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "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", + "title": "[Ani] 貫徹輔助魔法支援弱小隊友的宮廷魔法師,慘遭驅逐後目標成為最強冒險者 - 07 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 貫徹輔助魔法支援弱小隊友的宮廷魔法師,慘遭驅逐後目標成為最強冒險者 - 07 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Mars.Express.2023.1080p.BluRay.x265.10bit.DTS-WiKi/Mars.Express.2023.1080p.BluRay.x265.10bit.DTS-WiKi.mkv", + "filename": "Mars.Express.2023.1080p.BluRay.x265.10bit.DTS-WiKi.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Mars Express 2023 1080P Bluray X265 10Bit Dts-Wiki", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Mars Express 2023 1080P Bluray X265 10Bit Dts-Wiki", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Nekomoe kissaten][Chi. Chikyuu no Undou ni Tsuite][02][1080p][JPTC].mp4", + "filename": "[Nekomoe kissaten][Chi. Chikyuu no Undou ni Tsuite][02][1080p][JPTC].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Nekomoe Kissaten][Chi Chikyuu No Undou Ni Tsuite][02][1080P][Jptc]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Nekomoe Kissaten][Chi Chikyuu No Undou Ni Tsuite][02][1080P][Jptc]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 妻子變成小學生。 - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 妻子變成小學生。 - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 妻子變成小學生。 - 02 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 妻子變成小學生。 - 02 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Nekomoe kissaten&LoliHouse] Shoushimin Series - 01 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "filename": "[Nekomoe kissaten&LoliHouse] Shoushimin Series - 01 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Nekomoe Kissaten&Lolihouse] Shoushimin Series - 01 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Nekomoe Kissaten&Lolihouse] Shoushimin Series - 01 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[猫眼三姐妹].Cats.Eye.S01.2025.1080p.DSNP.WEB-DL.H264.AAC-CMCTV/[猫眼三姐妹].Cats.Eye.S01E06.2025.1080p.DSNP.WEB-DL.H264.AAC-CMCTV.mkv", + "filename": "[猫眼三姐妹].Cats.Eye.S01E06.2025.1080p.DSNP.WEB-DL.H264.AAC-CMCTV.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[猫眼三姐妹] Cats Eye S01E06 2025 1080P Dsnp Web-Dl H264 Aac-Cmctv", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[猫眼三姐妹] Cats Eye S01E06 2025 1080P Dsnp Web-Dl H264 Aac-Cmctv", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[猫眼三姐妹].Cats.Eye.S01.2025.1080p.DSNP.WEB-DL.H264.AAC-CMCTV/[猫眼三姐妹].Cats.Eye.S01E09.2025.1080p.DSNP.WEB-DL.H264.AAC-CMCTV.mkv", + "filename": "[猫眼三姐妹].Cats.Eye.S01E09.2025.1080p.DSNP.WEB-DL.H264.AAC-CMCTV.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[猫眼三姐妹] Cats Eye S01E09 2025 1080P Dsnp Web-Dl H264 Aac-Cmctv", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[猫眼三姐妹] Cats Eye S01E09 2025 1080P Dsnp Web-Dl H264 Aac-Cmctv", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[猫眼三姐妹].Cats.Eye.S01.2025.1080p.DSNP.WEB-DL.H264.AAC-CMCTV/[猫眼三姐妹].Cats.Eye.S01E11.2025.1080p.DSNP.WEB-DL.H264.AAC-CMCTV.mkv", + "filename": "[猫眼三姐妹].Cats.Eye.S01E11.2025.1080p.DSNP.WEB-DL.H264.AAC-CMCTV.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[猫眼三姐妹] Cats Eye S01E11 2025 1080P Dsnp Web-Dl H264 Aac-Cmctv", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[猫眼三姐妹] Cats Eye S01E11 2025 1080P Dsnp Web-Dl H264 Aac-Cmctv", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[猫眼三姐妹].Cats.Eye.S01.2025.1080p.DSNP.WEB-DL.H264.AAC-CMCTV/[猫眼三姐妹].Cats.Eye.S01E01.2025.1080p.DSNP.WEB-DL.H264.AAC-CMCTV.mkv", + "filename": "[猫眼三姐妹].Cats.Eye.S01E01.2025.1080p.DSNP.WEB-DL.H264.AAC-CMCTV.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[猫眼三姐妹] Cats Eye S01E01 2025 1080P Dsnp Web-Dl H264 Aac-Cmctv", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[猫眼三姐妹] Cats Eye S01E01 2025 1080P Dsnp Web-Dl H264 Aac-Cmctv", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[猫眼三姐妹].Cats.Eye.S01.2025.1080p.DSNP.WEB-DL.H264.AAC-CMCTV/[猫眼三姐妹].Cats.Eye.S01E07.2025.1080p.DSNP.WEB-DL.H264.AAC-CMCTV.mkv", + "filename": "[猫眼三姐妹].Cats.Eye.S01E07.2025.1080p.DSNP.WEB-DL.H264.AAC-CMCTV.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[猫眼三姐妹] Cats Eye S01E07 2025 1080P Dsnp Web-Dl H264 Aac-Cmctv", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[猫眼三姐妹] Cats Eye S01E07 2025 1080P Dsnp Web-Dl H264 Aac-Cmctv", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[猫眼三姐妹].Cats.Eye.S01.2025.1080p.DSNP.WEB-DL.H264.AAC-CMCTV/[猫眼三姐妹].Cats.Eye.S01E10.2025.1080p.DSNP.WEB-DL.H264.AAC-CMCTV.mkv", + "filename": "[猫眼三姐妹].Cats.Eye.S01E10.2025.1080p.DSNP.WEB-DL.H264.AAC-CMCTV.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[猫眼三姐妹] Cats Eye S01E10 2025 1080P Dsnp Web-Dl H264 Aac-Cmctv", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[猫眼三姐妹] Cats Eye S01E10 2025 1080P Dsnp Web-Dl H264 Aac-Cmctv", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[猫眼三姐妹].Cats.Eye.S01.2025.1080p.DSNP.WEB-DL.H264.AAC-CMCTV/[猫眼三姐妹].Cats.Eye.S01E08.2025.1080p.DSNP.WEB-DL.H264.AAC-CMCTV.mkv", + "filename": "[猫眼三姐妹].Cats.Eye.S01E08.2025.1080p.DSNP.WEB-DL.H264.AAC-CMCTV.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[猫眼三姐妹] Cats Eye S01E08 2025 1080P Dsnp Web-Dl H264 Aac-Cmctv", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[猫眼三姐妹] Cats Eye S01E08 2025 1080P Dsnp Web-Dl H264 Aac-Cmctv", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[猫眼三姐妹].Cats.Eye.S01.2025.1080p.DSNP.WEB-DL.H264.AAC-CMCTV/[猫眼三姐妹].Cats.Eye.S01E03.2025.1080p.DSNP.WEB-DL.H264.AAC-CMCTV.mkv", + "filename": "[猫眼三姐妹].Cats.Eye.S01E03.2025.1080p.DSNP.WEB-DL.H264.AAC-CMCTV.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[猫眼三姐妹] Cats Eye S01E03 2025 1080P Dsnp Web-Dl H264 Aac-Cmctv", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[猫眼三姐妹] Cats Eye S01E03 2025 1080P Dsnp Web-Dl H264 Aac-Cmctv", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[猫眼三姐妹].Cats.Eye.S01.2025.1080p.DSNP.WEB-DL.H264.AAC-CMCTV/[猫眼三姐妹].Cats.Eye.S01E04.2025.1080p.DSNP.WEB-DL.H264.AAC-CMCTV.mkv", + "filename": "[猫眼三姐妹].Cats.Eye.S01E04.2025.1080p.DSNP.WEB-DL.H264.AAC-CMCTV.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[猫眼三姐妹] Cats Eye S01E04 2025 1080P Dsnp Web-Dl H264 Aac-Cmctv", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[猫眼三姐妹] Cats Eye S01E04 2025 1080P Dsnp Web-Dl H264 Aac-Cmctv", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[猫眼三姐妹].Cats.Eye.S01.2025.1080p.DSNP.WEB-DL.H264.AAC-CMCTV/[猫眼三姐妹].Cats.Eye.S01E02.2025.1080p.DSNP.WEB-DL.H264.AAC-CMCTV.mkv", + "filename": "[猫眼三姐妹].Cats.Eye.S01E02.2025.1080p.DSNP.WEB-DL.H264.AAC-CMCTV.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[猫眼三姐妹] Cats Eye S01E02 2025 1080P Dsnp Web-Dl H264 Aac-Cmctv", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[猫眼三姐妹] Cats Eye S01E02 2025 1080P Dsnp Web-Dl H264 Aac-Cmctv", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[猫眼三姐妹].Cats.Eye.S01.2025.1080p.DSNP.WEB-DL.H264.AAC-CMCTV/[猫眼三姐妹].Cats.Eye.S01E12.2025.1080p.DSNP.WEB-DL.H264.AAC-CMCTV.mkv", + "filename": "[猫眼三姐妹].Cats.Eye.S01E12.2025.1080p.DSNP.WEB-DL.H264.AAC-CMCTV.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[猫眼三姐妹] Cats Eye S01E12 2025 1080P Dsnp Web-Dl H264 Aac-Cmctv", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[猫眼三姐妹] Cats Eye S01E12 2025 1080P Dsnp Web-Dl H264 Aac-Cmctv", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[猫眼三姐妹].Cats.Eye.S01.2025.1080p.DSNP.WEB-DL.H264.AAC-CMCTV/[猫眼三姐妹].Cats.Eye.S01E05.2025.1080p.DSNP.WEB-DL.H264.AAC-CMCTV.mkv", + "filename": "[猫眼三姐妹].Cats.Eye.S01E05.2025.1080p.DSNP.WEB-DL.H264.AAC-CMCTV.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[猫眼三姐妹] Cats Eye S01E05 2025 1080P Dsnp Web-Dl H264 Aac-Cmctv", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[猫眼三姐妹] Cats Eye S01E05 2025 1080P Dsnp Web-Dl H264 Aac-Cmctv", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Nekomoe kissaten][Tower of God S2][14][1080p][CHS].mp4", + "filename": "[Nekomoe kissaten][Tower of God S2][14][1080p][CHS].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Nekomoe Kissaten][Tower Of God S2][14][1080P][Chs]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Nekomoe Kissaten][Tower Of God S2][14][1080P][Chs]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Nekomoe kissaten][Tower of God S2][08][1080p][CHT].mp4", + "filename": "[Nekomoe kissaten][Tower of God S2][08][1080p][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Nekomoe Kissaten][Tower Of God S2][08][1080P][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Nekomoe Kissaten][Tower Of God S2][08][1080P][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Oshi no Ko - 15 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "filename": "[LoliHouse] Oshi no Ko - 15 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Oshi No Ko - 15 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Oshi No Ko - 15 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] Let′s Play 充滿挑戰的人生 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] Let′s Play 充滿挑戰的人生 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] Let′S Play 充滿挑戰的人生 - 01 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] Let′S Play 充滿挑戰的人生 - 01 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 結緣甘神神社 - 22 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 結緣甘神神社 - 22 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 結緣甘神神社 - 22 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 結緣甘神神社 - 22 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 地下城中的人 - 08 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 地下城中的人 - 08 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 地下城中的人 - 08 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 地下城中的人 - 08 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[BeanSub&FZSD][BLEACH_Sennen_Kessen-hen][32][GB][1080P][x264_AAC].mp4", + "filename": "[BeanSub&FZSD][BLEACH_Sennen_Kessen-hen][32][GB][1080P][x264_AAC].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Beansub&Fzsd][Bleach Sennen Kessen-Hen][32][Gb][1080P][X264 Aac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Beansub&Fzsd][Bleach Sennen Kessen-Hen][32][Gb][1080P][X264 Aac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Kaijuu 8-gou - 19 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "filename": "[LoliHouse] Kaijuu 8-gou - 19 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Kaijuu 8-Gou - 19 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Kaijuu 8-Gou - 19 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/《咒術迴戰 第二季》- 閑話 - 後編/《咒術迴戰 第二季》- 閑話 - 後編 (日語原聲)【Ani-One Asia ULTRA】.mp4", + "filename": "《咒術迴戰 第二季》- 閑話 - 後編 (日語原聲)【Ani-One Asia ULTRA】.mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "《咒術迴戰 第二季》- 閑話 - 後編 (日語原聲)【Ani-One Asia Ultra】", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "《咒術迴戰 第二季》- 閑話 - 後編 (日語原聲)【Ani-One Asia Ultra】", + "needs_review": true + }, + { + "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", + "title": "[Ani] 香格里拉・開拓異境~糞作獵手挑戰神作~ 第二季 - 07 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 香格里拉・開拓異境~糞作獵手挑戰神作~ 第二季 - 07 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Nekomoe kissaten][Chi. Chikyuu no Undou ni Tsuite][07][1080p][JPSC].mp4", + "filename": "[Nekomoe kissaten][Chi. Chikyuu no Undou ni Tsuite][07][1080p][JPSC].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Nekomoe Kissaten][Chi Chikyuu No Undou Ni Tsuite][07][1080P][Jpsc]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Nekomoe Kissaten][Chi Chikyuu No Undou Ni Tsuite][07][1080P][Jpsc]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Nekomoe kissaten][Ao no Hako][19][1080p][JPTC].mp4", + "filename": "[Nekomoe kissaten][Ao no Hako][19][1080p][JPTC].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Nekomoe Kissaten][Ao No Hako][19][1080P][Jptc]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Nekomoe Kissaten][Ao No Hako][19][1080P][Jptc]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/《夫婦以上,戀人未滿。》#11/《夫婦以上,戀人未滿。》#11 (日語原聲)【Ani-One Asia】.mp4", + "filename": "《夫婦以上,戀人未滿。》#11 (日語原聲)【Ani-One Asia】.mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "《夫婦以上,戀人未滿。》#11 (日語原聲)【Ani-One Asia】", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "《夫婦以上,戀人未滿。》#11 (日語原聲)【Ani-One Asia】", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 九龍大眾浪漫 - 12 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 九龍大眾浪漫 - 12 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 九龍大眾浪漫 - 12 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 九龍大眾浪漫 - 12 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Tensei Shitara Slime Datta Ken 3rd Season - 60 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "filename": "[LoliHouse] Tensei Shitara Slime Datta Ken 3rd Season - 60 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Tensei Shitara Slime Datta Ken 3Rd Season - 60 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Tensei Shitara Slime Datta Ken 3Rd Season - 60 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Nozomanu Fushi no Boukensha - 01 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "filename": "[LoliHouse] Nozomanu Fushi no Boukensha - 01 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Nozomanu Fushi No Boukensha - 01 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Nozomanu Fushi No Boukensha - 01 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] Re:從零開始的異世界生活 第三季 - 11 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] Re:從零開始的異世界生活 第三季 - 11 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] Re:從零開始的異世界生活 第三季 - 11 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] Re:從零開始的異世界生活 第三季 - 11 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 關於我轉生變成史萊姆這檔事 第三季 - 70 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 關於我轉生變成史萊姆這檔事 第三季 - 70 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 關於我轉生變成史萊姆這檔事 第三季 - 70 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 關於我轉生變成史萊姆這檔事 第三季 - 70 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 刀劍神域外傳 Gun Gale Online II - 05 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 刀劍神域外傳 Gun Gale Online II - 05 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 刀劍神域外傳 Gun Gale Online Ii - 05 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 刀劍神域外傳 Gun Gale Online Ii - 05 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Katainaka no Ossan, Kensei ni Naru - 12 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "filename": "[LoliHouse] Katainaka no Ossan, Kensei ni Naru - 12 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Katainaka No Ossan, Kensei Ni Naru - 12 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Katainaka No Ossan, Kensei Ni Naru - 12 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Nekomoe kissaten&VCB-Studio] ODDTAXI [Ma10p_1080p]/[Nekomoe kissaten&VCB-Studio] ODDTAXI [12][Ma10p_1080p][x265_flac_aac].mkv", + "filename": "[Nekomoe kissaten&VCB-Studio] ODDTAXI [12][Ma10p_1080p][x265_flac_aac].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Nekomoe Kissaten&Vcb-Studio] Oddtaxi [12][Ma10P 1080P][X265 Flac Aac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Nekomoe Kissaten&Vcb-Studio] Oddtaxi [12][Ma10P 1080P][X265 Flac Aac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Nekomoe kissaten&VCB-Studio] ODDTAXI [Ma10p_1080p]/[Nekomoe kissaten&VCB-Studio] ODDTAXI [05][Ma10p_1080p][x265_flac_aac].mkv", + "filename": "[Nekomoe kissaten&VCB-Studio] ODDTAXI [05][Ma10p_1080p][x265_flac_aac].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Nekomoe Kissaten&Vcb-Studio] Oddtaxi [05][Ma10P 1080P][X265 Flac Aac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Nekomoe Kissaten&Vcb-Studio] Oddtaxi [05][Ma10P 1080P][X265 Flac Aac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Nekomoe kissaten&VCB-Studio] ODDTAXI [Ma10p_1080p]/[Nekomoe kissaten&VCB-Studio] ODDTAXI [08][Ma10p_1080p][x265_flac_aac].mkv", + "filename": "[Nekomoe kissaten&VCB-Studio] ODDTAXI [08][Ma10p_1080p][x265_flac_aac].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Nekomoe Kissaten&Vcb-Studio] Oddtaxi [08][Ma10P 1080P][X265 Flac Aac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Nekomoe Kissaten&Vcb-Studio] Oddtaxi [08][Ma10P 1080P][X265 Flac Aac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Nekomoe kissaten&VCB-Studio] ODDTAXI [Ma10p_1080p]/[Nekomoe kissaten&VCB-Studio] ODDTAXI [01][Ma10p_1080p][x265_flac_aac].mkv", + "filename": "[Nekomoe kissaten&VCB-Studio] ODDTAXI [01][Ma10p_1080p][x265_flac_aac].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Nekomoe Kissaten&Vcb-Studio] Oddtaxi [01][Ma10P 1080P][X265 Flac Aac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Nekomoe Kissaten&Vcb-Studio] Oddtaxi [01][Ma10P 1080P][X265 Flac Aac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Nekomoe kissaten&VCB-Studio] ODDTAXI [Ma10p_1080p]/[Nekomoe kissaten&VCB-Studio] ODDTAXI [09][Ma10p_1080p][x265_flac_aac].mkv", + "filename": "[Nekomoe kissaten&VCB-Studio] ODDTAXI [09][Ma10p_1080p][x265_flac_aac].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Nekomoe Kissaten&Vcb-Studio] Oddtaxi [09][Ma10P 1080P][X265 Flac Aac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Nekomoe Kissaten&Vcb-Studio] Oddtaxi [09][Ma10P 1080P][X265 Flac Aac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Nekomoe kissaten&VCB-Studio] ODDTAXI [Ma10p_1080p]/[Nekomoe kissaten&VCB-Studio] ODDTAXI [13][Ma10p_1080p][x265_flac_aac].mkv", + "filename": "[Nekomoe kissaten&VCB-Studio] ODDTAXI [13][Ma10p_1080p][x265_flac_aac].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Nekomoe Kissaten&Vcb-Studio] Oddtaxi [13][Ma10P 1080P][X265 Flac Aac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Nekomoe Kissaten&Vcb-Studio] Oddtaxi [13][Ma10P 1080P][X265 Flac Aac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Nekomoe kissaten&VCB-Studio] ODDTAXI [Ma10p_1080p]/[Nekomoe kissaten&VCB-Studio] ODDTAXI [04][Ma10p_1080p][x265_flac_aac].mkv", + "filename": "[Nekomoe kissaten&VCB-Studio] ODDTAXI [04][Ma10p_1080p][x265_flac_aac].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Nekomoe Kissaten&Vcb-Studio] Oddtaxi [04][Ma10P 1080P][X265 Flac Aac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Nekomoe Kissaten&Vcb-Studio] Oddtaxi [04][Ma10P 1080P][X265 Flac Aac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Nekomoe kissaten&VCB-Studio] ODDTAXI [Ma10p_1080p]/[Nekomoe kissaten&VCB-Studio] ODDTAXI [02][Ma10p_1080p][x265_flac_aac].mkv", + "filename": "[Nekomoe kissaten&VCB-Studio] ODDTAXI [02][Ma10p_1080p][x265_flac_aac].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Nekomoe Kissaten&Vcb-Studio] Oddtaxi [02][Ma10P 1080P][X265 Flac Aac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Nekomoe Kissaten&Vcb-Studio] Oddtaxi [02][Ma10P 1080P][X265 Flac Aac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Nekomoe kissaten&VCB-Studio] ODDTAXI [Ma10p_1080p]/[Nekomoe kissaten&VCB-Studio] ODDTAXI [11][Ma10p_1080p][x265_flac_aac].mkv", + "filename": "[Nekomoe kissaten&VCB-Studio] ODDTAXI [11][Ma10p_1080p][x265_flac_aac].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Nekomoe Kissaten&Vcb-Studio] Oddtaxi [11][Ma10P 1080P][X265 Flac Aac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Nekomoe Kissaten&Vcb-Studio] Oddtaxi [11][Ma10P 1080P][X265 Flac Aac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Nekomoe kissaten&VCB-Studio] ODDTAXI [Ma10p_1080p]/[Nekomoe kissaten&VCB-Studio] ODDTAXI [06][Ma10p_1080p][x265_flac_aac].mkv", + "filename": "[Nekomoe kissaten&VCB-Studio] ODDTAXI [06][Ma10p_1080p][x265_flac_aac].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Nekomoe Kissaten&Vcb-Studio] Oddtaxi [06][Ma10P 1080P][X265 Flac Aac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Nekomoe Kissaten&Vcb-Studio] Oddtaxi [06][Ma10P 1080P][X265 Flac Aac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Nekomoe kissaten&VCB-Studio] ODDTAXI [Ma10p_1080p]/SPs/[Nekomoe kissaten&VCB-Studio] ODDTAXI [Audio Drama 02.5][Ma10p_1080p][x265_flac].mkv", + "filename": "[Nekomoe kissaten&VCB-Studio] ODDTAXI [Audio Drama 02.5][Ma10p_1080p][x265_flac].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Nekomoe Kissaten&Vcb-Studio] Oddtaxi [Audio Drama 02 5][Ma10P 1080P][X265 Flac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Nekomoe Kissaten&Vcb-Studio] Oddtaxi [Audio Drama 02 5][Ma10P 1080P][X265 Flac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Nekomoe kissaten&VCB-Studio] ODDTAXI [Ma10p_1080p]/SPs/[Nekomoe kissaten&VCB-Studio] ODDTAXI [Audio Drama 07.8][Ma10p_1080p][x265_flac].mkv", + "filename": "[Nekomoe kissaten&VCB-Studio] ODDTAXI [Audio Drama 07.8][Ma10p_1080p][x265_flac].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Nekomoe Kissaten&Vcb-Studio] Oddtaxi [Audio Drama 07 8][Ma10P 1080P][X265 Flac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Nekomoe Kissaten&Vcb-Studio] Oddtaxi [Audio Drama 07 8][Ma10P 1080P][X265 Flac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Nekomoe kissaten&VCB-Studio] ODDTAXI [Ma10p_1080p]/SPs/[Nekomoe kissaten&VCB-Studio] ODDTAXI [Audio Drama 03.5][Ma10p_1080p][x265_flac].mkv", + "filename": "[Nekomoe kissaten&VCB-Studio] ODDTAXI [Audio Drama 03.5][Ma10p_1080p][x265_flac].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Nekomoe Kissaten&Vcb-Studio] Oddtaxi [Audio Drama 03 5][Ma10P 1080P][X265 Flac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Nekomoe Kissaten&Vcb-Studio] Oddtaxi [Audio Drama 03 5][Ma10P 1080P][X265 Flac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Nekomoe kissaten&VCB-Studio] ODDTAXI [Ma10p_1080p]/SPs/[Nekomoe kissaten&VCB-Studio] ODDTAXI [Picture Drama][Ma10p_1080p][x265_flac].mkv", + "filename": "[Nekomoe kissaten&VCB-Studio] ODDTAXI [Picture Drama][Ma10p_1080p][x265_flac].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Nekomoe Kissaten&Vcb-Studio] Oddtaxi [Picture Drama][Ma10P 1080P][X265 Flac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Nekomoe Kissaten&Vcb-Studio] Oddtaxi [Picture Drama][Ma10P 1080P][X265 Flac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Nekomoe kissaten&VCB-Studio] ODDTAXI [Ma10p_1080p]/SPs/[Nekomoe kissaten&VCB-Studio] ODDTAXI [NCOP][Ma10p_1080p][x265_flac].mkv", + "filename": "[Nekomoe kissaten&VCB-Studio] ODDTAXI [NCOP][Ma10p_1080p][x265_flac].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Nekomoe Kissaten&Vcb-Studio] Oddtaxi [Ncop][Ma10P 1080P][X265 Flac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Nekomoe Kissaten&Vcb-Studio] Oddtaxi [Ncop][Ma10P 1080P][X265 Flac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Nekomoe kissaten&VCB-Studio] ODDTAXI [Ma10p_1080p]/SPs/[Nekomoe kissaten&VCB-Studio] ODDTAXI [Audio Drama 06.7][Ma10p_1080p][x265_flac].mkv", + "filename": "[Nekomoe kissaten&VCB-Studio] ODDTAXI [Audio Drama 06.7][Ma10p_1080p][x265_flac].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Nekomoe Kissaten&Vcb-Studio] Oddtaxi [Audio Drama 06 7][Ma10P 1080P][X265 Flac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Nekomoe Kissaten&Vcb-Studio] Oddtaxi [Audio Drama 06 7][Ma10P 1080P][X265 Flac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Nekomoe kissaten&VCB-Studio] ODDTAXI [Ma10p_1080p]/SPs/[Nekomoe kissaten&VCB-Studio] ODDTAXI [Audio Drama 01.3][Ma10p_1080p][x265_flac].mkv", + "filename": "[Nekomoe kissaten&VCB-Studio] ODDTAXI [Audio Drama 01.3][Ma10p_1080p][x265_flac].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Nekomoe Kissaten&Vcb-Studio] Oddtaxi [Audio Drama 01 3][Ma10P 1080P][X265 Flac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Nekomoe Kissaten&Vcb-Studio] Oddtaxi [Audio Drama 01 3][Ma10P 1080P][X265 Flac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Nekomoe kissaten&VCB-Studio] ODDTAXI [Ma10p_1080p]/SPs/[Nekomoe kissaten&VCB-Studio] ODDTAXI [Audio Drama 12.11][Ma10p_1080p][x265_flac].mkv", + "filename": "[Nekomoe kissaten&VCB-Studio] ODDTAXI [Audio Drama 12.11][Ma10p_1080p][x265_flac].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Nekomoe Kissaten&Vcb-Studio] Oddtaxi [Audio Drama 12 11][Ma10P 1080P][X265 Flac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Nekomoe Kissaten&Vcb-Studio] Oddtaxi [Audio Drama 12 11][Ma10P 1080P][X265 Flac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Nekomoe kissaten&VCB-Studio] ODDTAXI [Ma10p_1080p]/SPs/[Nekomoe kissaten&VCB-Studio] ODDTAXI [CM02][Ma10p_1080p][x265_flac].mkv", + "filename": "[Nekomoe kissaten&VCB-Studio] ODDTAXI [CM02][Ma10p_1080p][x265_flac].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Nekomoe Kissaten&Vcb-Studio] Oddtaxi [Cm02][Ma10P 1080P][X265 Flac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Nekomoe Kissaten&Vcb-Studio] Oddtaxi [Cm02][Ma10P 1080P][X265 Flac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Nekomoe kissaten&VCB-Studio] ODDTAXI [Ma10p_1080p]/SPs/[Nekomoe kissaten&VCB-Studio] ODDTAXI [Audio Drama 04.6][Ma10p_1080p][x265_flac].mkv", + "filename": "[Nekomoe kissaten&VCB-Studio] ODDTAXI [Audio Drama 04.6][Ma10p_1080p][x265_flac].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Nekomoe Kissaten&Vcb-Studio] Oddtaxi [Audio Drama 04 6][Ma10P 1080P][X265 Flac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Nekomoe Kissaten&Vcb-Studio] Oddtaxi [Audio Drama 04 6][Ma10P 1080P][X265 Flac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Nekomoe kissaten&VCB-Studio] ODDTAXI [Ma10p_1080p]/SPs/[Nekomoe kissaten&VCB-Studio] ODDTAXI [Audio Drama 11.10][Ma10p_1080p][x265_flac].mkv", + "filename": "[Nekomoe kissaten&VCB-Studio] ODDTAXI [Audio Drama 11.10][Ma10p_1080p][x265_flac].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Nekomoe Kissaten&Vcb-Studio] Oddtaxi [Audio Drama 11 10][Ma10P 1080P][X265 Flac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Nekomoe Kissaten&Vcb-Studio] Oddtaxi [Audio Drama 11 10][Ma10P 1080P][X265 Flac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Nekomoe kissaten&VCB-Studio] ODDTAXI [Ma10p_1080p]/SPs/[Nekomoe kissaten&VCB-Studio] ODDTAXI [Audio Drama 10.10][Ma10p_1080p][x265_flac].mkv", + "filename": "[Nekomoe kissaten&VCB-Studio] ODDTAXI [Audio Drama 10.10][Ma10p_1080p][x265_flac].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Nekomoe Kissaten&Vcb-Studio] Oddtaxi [Audio Drama 10 10][Ma10P 1080P][X265 Flac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Nekomoe Kissaten&Vcb-Studio] Oddtaxi [Audio Drama 10 10][Ma10P 1080P][X265 Flac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Nekomoe kissaten&VCB-Studio] ODDTAXI [Ma10p_1080p]/SPs/[Nekomoe kissaten&VCB-Studio] ODDTAXI [NCED][Ma10p_1080p][x265_flac].mkv", + "filename": "[Nekomoe kissaten&VCB-Studio] ODDTAXI [NCED][Ma10p_1080p][x265_flac].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Nekomoe Kissaten&Vcb-Studio] Oddtaxi [Nced][Ma10P 1080P][X265 Flac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Nekomoe Kissaten&Vcb-Studio] Oddtaxi [Nced][Ma10P 1080P][X265 Flac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Nekomoe kissaten&VCB-Studio] ODDTAXI [Ma10p_1080p]/SPs/[Nekomoe kissaten&VCB-Studio] ODDTAXI [Audio Drama 08.8][Ma10p_1080p][x265_flac].mkv", + "filename": "[Nekomoe kissaten&VCB-Studio] ODDTAXI [Audio Drama 08.8][Ma10p_1080p][x265_flac].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Nekomoe Kissaten&Vcb-Studio] Oddtaxi [Audio Drama 08 8][Ma10P 1080P][X265 Flac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Nekomoe Kissaten&Vcb-Studio] Oddtaxi [Audio Drama 08 8][Ma10P 1080P][X265 Flac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Nekomoe kissaten&VCB-Studio] ODDTAXI [Ma10p_1080p]/SPs/[Nekomoe kissaten&VCB-Studio] ODDTAXI [Audio Drama 13.13][Ma10p_1080p][x265_flac].mkv", + "filename": "[Nekomoe kissaten&VCB-Studio] ODDTAXI [Audio Drama 13.13][Ma10p_1080p][x265_flac].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Nekomoe Kissaten&Vcb-Studio] Oddtaxi [Audio Drama 13 13][Ma10P 1080P][X265 Flac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Nekomoe Kissaten&Vcb-Studio] Oddtaxi [Audio Drama 13 13][Ma10P 1080P][X265 Flac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Nekomoe kissaten&VCB-Studio] ODDTAXI [Ma10p_1080p]/SPs/[Nekomoe kissaten&VCB-Studio] ODDTAXI [Audio Drama 05.6][Ma10p_1080p][x265_flac].mkv", + "filename": "[Nekomoe kissaten&VCB-Studio] ODDTAXI [Audio Drama 05.6][Ma10p_1080p][x265_flac].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Nekomoe Kissaten&Vcb-Studio] Oddtaxi [Audio Drama 05 6][Ma10P 1080P][X265 Flac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Nekomoe Kissaten&Vcb-Studio] Oddtaxi [Audio Drama 05 6][Ma10P 1080P][X265 Flac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Nekomoe kissaten&VCB-Studio] ODDTAXI [Ma10p_1080p]/SPs/[Nekomoe kissaten&VCB-Studio] ODDTAXI [Audio Drama 09.9][Ma10p_1080p][x265_flac].mkv", + "filename": "[Nekomoe kissaten&VCB-Studio] ODDTAXI [Audio Drama 09.9][Ma10p_1080p][x265_flac].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Nekomoe Kissaten&Vcb-Studio] Oddtaxi [Audio Drama 09 9][Ma10P 1080P][X265 Flac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Nekomoe Kissaten&Vcb-Studio] Oddtaxi [Audio Drama 09 9][Ma10P 1080P][X265 Flac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Nekomoe kissaten&VCB-Studio] ODDTAXI [Ma10p_1080p]/SPs/[Nekomoe kissaten&VCB-Studio] ODDTAXI [CM01][Ma10p_1080p][x265_flac].mkv", + "filename": "[Nekomoe kissaten&VCB-Studio] ODDTAXI [CM01][Ma10p_1080p][x265_flac].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Nekomoe Kissaten&Vcb-Studio] Oddtaxi [Cm01][Ma10P 1080P][X265 Flac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Nekomoe Kissaten&Vcb-Studio] Oddtaxi [Cm01][Ma10P 1080P][X265 Flac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Nekomoe kissaten&VCB-Studio] ODDTAXI [Ma10p_1080p]/[Nekomoe kissaten&VCB-Studio] ODDTAXI [10][Ma10p_1080p][x265_flac_aac].mkv", + "filename": "[Nekomoe kissaten&VCB-Studio] ODDTAXI [10][Ma10p_1080p][x265_flac_aac].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Nekomoe Kissaten&Vcb-Studio] Oddtaxi [10][Ma10P 1080P][X265 Flac Aac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Nekomoe Kissaten&Vcb-Studio] Oddtaxi [10][Ma10P 1080P][X265 Flac Aac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Nekomoe kissaten&VCB-Studio] ODDTAXI [Ma10p_1080p]/[Nekomoe kissaten&VCB-Studio] ODDTAXI [07][Ma10p_1080p][x265_flac_aac].mkv", + "filename": "[Nekomoe kissaten&VCB-Studio] ODDTAXI [07][Ma10p_1080p][x265_flac_aac].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Nekomoe Kissaten&Vcb-Studio] Oddtaxi [07][Ma10P 1080P][X265 Flac Aac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Nekomoe Kissaten&Vcb-Studio] Oddtaxi [07][Ma10P 1080P][X265 Flac Aac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Nekomoe kissaten&VCB-Studio] ODDTAXI [Ma10p_1080p]/[Nekomoe kissaten&VCB-Studio] ODDTAXI [03][Ma10p_1080p][x265_flac_aac].mkv", + "filename": "[Nekomoe kissaten&VCB-Studio] ODDTAXI [03][Ma10p_1080p][x265_flac_aac].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Nekomoe Kissaten&Vcb-Studio] Oddtaxi [03][Ma10P 1080P][X265 Flac Aac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Nekomoe Kissaten&Vcb-Studio] Oddtaxi [03][Ma10P 1080P][X265 Flac Aac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Skymoon-Raws] Hoshi no Samidare - 01 [ViuTV][WEB-DL][CHT][1080p][AVC AAC][MP4+ASS]/[Skymoon-Raws] Hoshi no Samidare - 01 [ViuTV][WEB-DL][1080p][AVC AAC].mp4", + "filename": "[Skymoon-Raws] Hoshi no Samidare - 01 [ViuTV][WEB-DL][1080p][AVC AAC].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Skymoon-Raws] Hoshi No Samidare - 01 [Viutv][Web-Dl][1080P][Avc Aac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Skymoon-Raws] Hoshi No Samidare - 01 [Viutv][Web-Dl][1080P][Avc Aac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 名湯「異世界溫泉」開拓記~30 多歲溫泉狂熱者,轉生到悠閒的溫泉天國~ - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 名湯「異世界溫泉」開拓記~30 多歲溫泉狂熱者,轉生到悠閒的溫泉天國~ - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 名湯「異世界溫泉」開拓記~30 多歲溫泉狂熱者,轉生到悠閒的溫泉天國~ - 01 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 名湯「異世界溫泉」開拓記~30 多歲溫泉狂熱者,轉生到悠閒的溫泉天國~ - 01 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[orion origin] Ore wa Subete wo Parry Suru ~Gyaku Kanchigai no Sekai Saikyou wa Boukensha ni Naritai~ [01] [1080p] [H265 AAC] [CHT&JPN].mp4", + "filename": "[orion origin] Ore wa Subete wo Parry Suru ~Gyaku Kanchigai no Sekai Saikyou wa Boukensha ni Naritai~ [01] [1080p] [H265 AAC] [CHT&JPN].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Orion Origin] Ore Wa Subete Wo Parry Suru ~Gyaku Kanchigai No Sekai Saikyou Wa Boukensha Ni Naritai~ [01] [1080P] [H265 Aac] [Cht&Jpn]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Orion Origin] Ore Wa Subete Wo Parry Suru ~Gyaku Kanchigai No Sekai Saikyou Wa Boukensha Ni Naritai~ [01] [1080P] [H265 Aac] [Cht&Jpn]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 最強肉盾的迷宮攻略~擁有稀少技能體力 9999 的肉盾,被勇者隊伍辭退了~ - 04 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 最強肉盾的迷宮攻略~擁有稀少技能體力 9999 的肉盾,被勇者隊伍辭退了~ - 04 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 最強肉盾的迷宮攻略~擁有稀少技能體力 9999 的肉盾,被勇者隊伍辭退了~ - 04 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 最強肉盾的迷宮攻略~擁有稀少技能體力 9999 的肉盾,被勇者隊伍辭退了~ - 04 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] S 級怪獸《貝希摩斯》被誤認成小貓,成為精靈女孩的騎士(寵物)一起生活 - 09 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] S 級怪獸《貝希摩斯》被誤認成小貓,成為精靈女孩的騎士(寵物)一起生活 - 09 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] S 級怪獸《貝希摩斯》被誤認成小貓,成為精靈女孩的騎士(寵物)一起生活 - 09 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] S 級怪獸《貝希摩斯》被誤認成小貓,成為精靈女孩的騎士(寵物)一起生活 - 09 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 咒術迴戰 死滅迴游 前篇 - 50 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 咒術迴戰 死滅迴游 前篇 - 50 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 咒術迴戰 死滅迴游 前篇 - 50 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 咒術迴戰 死滅迴游 前篇 - 50 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Nekomoe kissaten&LoliHouse] 30-sai made Doutei dato Mahoutsukai ni Nareru Rashii - 01 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "filename": "[Nekomoe kissaten&LoliHouse] 30-sai made Doutei dato Mahoutsukai ni Nareru Rashii - 01 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Nekomoe Kissaten&Lolihouse] 30-Sai Made Doutei Dato Mahoutsukai Ni Nareru Rashii - 01 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Nekomoe Kissaten&Lolihouse] 30-Sai Made Doutei Dato Mahoutsukai Ni Nareru Rashii - 01 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Kekkon suru tte, Hontou desu ka - 02 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "filename": "[LoliHouse] Kekkon suru tte, Hontou desu ka - 02 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Kekkon Suru Tte, Hontou Desu Ka - 02 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Kekkon Suru Tte, Hontou Desu Ka - 02 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 在地下城尋求邂逅是否搞錯了什麼 第五季 - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 在地下城尋求邂逅是否搞錯了什麼 第五季 - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 在地下城尋求邂逅是否搞錯了什麼 第五季 - 02 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 在地下城尋求邂逅是否搞錯了什麼 第五季 - 02 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 葬送的芙莉蓮 第二季 - 30 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 葬送的芙莉蓮 第二季 - 30 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 葬送的芙莉蓮 第二季 - 30 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 葬送的芙莉蓮 第二季 - 30 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Shin no Nakama 2nd - 05 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "filename": "[LoliHouse] Shin no Nakama 2nd - 05 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Shin No Nakama 2Nd - 05 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Shin No Nakama 2Nd - 05 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Sakurato] Haite Kudasai, Takamine-san [12][AVC-8bit 1080p AAC][CHS&JPN].mp4", + "filename": "[Sakurato] Haite Kudasai, Takamine-san [12][AVC-8bit 1080p AAC][CHS&JPN].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Sakurato] Haite Kudasai, Takamine-San [12][Avc-8Bit 1080P Aac][Chs&Jpn]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Sakurato] Haite Kudasai, Takamine-San [12][Avc-8Bit 1080P Aac][Chs&Jpn]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[orion origin] Boukyaku Battery [10] [1080p] [H265 AAC] [CHT&JPN].mp4", + "filename": "[orion origin] Boukyaku Battery [10] [1080p] [H265 AAC] [CHT&JPN].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Orion Origin] Boukyaku Battery [10] [1080P] [H265 Aac] [Cht&Jpn]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Orion Origin] Boukyaku Battery [10] [1080P] [H265 Aac] [Cht&Jpn]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 水屬性的魔法師 - 04 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 水屬性的魔法師 - 04 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 水屬性的魔法師 - 04 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 水屬性的魔法師 - 04 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Katainaka no Ossan, Kensei ni Naru - 09 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "filename": "[LoliHouse] Katainaka no Ossan, Kensei ni Naru - 09 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Katainaka No Ossan, Kensei Ni Naru - 09 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Katainaka No Ossan, Kensei Ni Naru - 09 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Skymoon-Raws] Shin Samurai-den YAIBA - 12 [ViuTV][WEB-DL][CHT][SRT][1080p][AVC AAC].mkv", + "filename": "[Skymoon-Raws] Shin Samurai-den YAIBA - 12 [ViuTV][WEB-DL][CHT][SRT][1080p][AVC AAC].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Skymoon-Raws] Shin Samurai-Den Yaiba - 12 [Viutv][Web-Dl][Cht][Srt][1080P][Avc Aac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Skymoon-Raws] Shin Samurai-Den Yaiba - 12 [Viutv][Web-Dl][Cht][Srt][1080P][Avc Aac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 終末起點 - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 終末起點 - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 終末起點 - 02 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 終末起點 - 02 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 我要【招架】一切~反誤解的世界最強想成為冒險家~ - 06 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 我要【招架】一切~反誤解的世界最強想成為冒險家~ - 06 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 我要【招架】一切~反誤解的世界最強想成為冒險家~ - 06 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 我要【招架】一切~反誤解的世界最強想成為冒險家~ - 06 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[BeanSub&FZSD][BLEACH_Sennen_Kessen-hen][28v2][GB][1080P][x264_AAC].mp4", + "filename": "[BeanSub&FZSD][BLEACH_Sennen_Kessen-hen][28v2][GB][1080P][x264_AAC].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Beansub&Fzsd][Bleach Sennen Kessen-Hen][28V2][Gb][1080P][X264 Aac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Beansub&Fzsd][Bleach Sennen Kessen-Hen][28V2][Gb][1080P][X264 Aac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Tsuki ga Michibiku Isekai Douchuu S2 - 22 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "filename": "[LoliHouse] Tsuki ga Michibiku Isekai Douchuu S2 - 22 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Tsuki Ga Michibiku Isekai Douchuu S2 - 22 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Tsuki Ga Michibiku Isekai Douchuu S2 - 22 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 膽大黨 第二季 - 13 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 膽大黨 第二季 - 13 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 膽大黨 第二季 - 13 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 膽大黨 第二季 - 13 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Mobile.Suit.Gundam.GQuuuuuuX.S01E01.The.Red.Gundam.1080p.AMZN.WEB-DL.MULTi.DDP2.0.H.264-VARYG.mkv", + "filename": "Mobile.Suit.Gundam.GQuuuuuuX.S01E01.The.Red.Gundam.1080p.AMZN.WEB-DL.MULTi.DDP2.0.H.264-VARYG.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Mobile Suit Gundam Gquuuuuux S01E01 The Red Gundam 1080P Amzn Web-Dl Multi Ddp2 0 H 264-Varyg", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Mobile Suit Gundam Gquuuuuux S01E01 The Red Gundam 1080P Amzn Web-Dl Multi Ddp2 0 H 264-Varyg", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 轉生後的我成了英雄爸爸和精靈媽媽的女兒 - 03 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 轉生後的我成了英雄爸爸和精靈媽媽的女兒 - 03 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 轉生後的我成了英雄爸爸和精靈媽媽的女兒 - 03 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 轉生後的我成了英雄爸爸和精靈媽媽的女兒 - 03 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[KyokuSai] Adam's Sweet Agony [08][720P][WEB-DL].mp4", + "filename": "[KyokuSai] Adam's Sweet Agony [08][720P][WEB-DL].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Kyokusai] Adam'S Sweet Agony [08][720P][Web-Dl]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Kyokusai] Adam'S Sweet Agony [08][720P][Web-Dl]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 新人大叔冒險者,被最強隊伍操到死成無敵 - 04 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 新人大叔冒險者,被最強隊伍操到死成無敵 - 04 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 新人大叔冒險者,被最強隊伍操到死成無敵 - 04 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 新人大叔冒險者,被最強隊伍操到死成無敵 - 04 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Nekomoe kissaten][Ao no Hako][17][1080p][JPSC].mp4", + "filename": "[Nekomoe kissaten][Ao no Hako][17][1080p][JPSC].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Nekomoe Kissaten][Ao No Hako][17][1080P][Jpsc]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Nekomoe Kissaten][Ao No Hako][17][1080P][Jpsc]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Sword Art Online Alternative - Gun Gale Online II - 04 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "filename": "[LoliHouse] Sword Art Online Alternative - Gun Gale Online II - 04 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Sword Art Online Alternative - Gun Gale Online Ii - 04 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Sword Art Online Alternative - Gun Gale Online Ii - 04 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[FZSD][Hime-sama Goumon no Jikan Desu][13][BIG5][1080P][x264_AAC].mp4", + "filename": "[FZSD][Hime-sama Goumon no Jikan Desu][13][BIG5][1080P][x264_AAC].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Fzsd][Hime-Sama Goumon No Jikan Desu][13][Big5][1080P][X264 Aac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Fzsd][Hime-Sama Goumon No Jikan Desu][13][Big5][1080P][X264 Aac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/晚安世界.Good.Night.World.2023.S01.1080p.NF.WEB-DL.x264.DDP5.1-PTerWEB/Good.Night.World.2023.S01E03.1080p.NF.WEB-DL.x264.DDP5.1-PTerWEB.mkv", + "filename": "Good.Night.World.2023.S01E03.1080p.NF.WEB-DL.x264.DDP5.1-PTerWEB.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Good Night World 2023 S01E03 1080P Nf Web-Dl X264 Ddp5 1-Pterweb", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Good Night World 2023 S01E03 1080P Nf Web-Dl X264 Ddp5 1-Pterweb", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/晚安世界.Good.Night.World.2023.S01.1080p.NF.WEB-DL.x264.DDP5.1-PTerWEB/Good.Night.World.2023.S01E07.1080p.NF.WEB-DL.x264.DDP5.1-PTerWEB.mkv", + "filename": "Good.Night.World.2023.S01E07.1080p.NF.WEB-DL.x264.DDP5.1-PTerWEB.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Good Night World 2023 S01E07 1080P Nf Web-Dl X264 Ddp5 1-Pterweb", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Good Night World 2023 S01E07 1080P Nf Web-Dl X264 Ddp5 1-Pterweb", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/晚安世界.Good.Night.World.2023.S01.1080p.NF.WEB-DL.x264.DDP5.1-PTerWEB/Good.Night.World.2023.S01E10.1080p.NF.WEB-DL.x264.DDP5.1-PTerWEB.mkv", + "filename": "Good.Night.World.2023.S01E10.1080p.NF.WEB-DL.x264.DDP5.1-PTerWEB.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Good Night World 2023 S01E10 1080P Nf Web-Dl X264 Ddp5 1-Pterweb", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Good Night World 2023 S01E10 1080P Nf Web-Dl X264 Ddp5 1-Pterweb", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/晚安世界.Good.Night.World.2023.S01.1080p.NF.WEB-DL.x264.DDP5.1-PTerWEB/Good.Night.World.2023.S01E11.1080p.NF.WEB-DL.x264.DDP5.1-PTerWEB.mkv", + "filename": "Good.Night.World.2023.S01E11.1080p.NF.WEB-DL.x264.DDP5.1-PTerWEB.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Good Night World 2023 S01E11 1080P Nf Web-Dl X264 Ddp5 1-Pterweb", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Good Night World 2023 S01E11 1080P Nf Web-Dl X264 Ddp5 1-Pterweb", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/晚安世界.Good.Night.World.2023.S01.1080p.NF.WEB-DL.x264.DDP5.1-PTerWEB/Good.Night.World.2023.S01E02.1080p.NF.WEB-DL.x264.DDP5.1-PTerWEB.mkv", + "filename": "Good.Night.World.2023.S01E02.1080p.NF.WEB-DL.x264.DDP5.1-PTerWEB.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Good Night World 2023 S01E02 1080P Nf Web-Dl X264 Ddp5 1-Pterweb", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Good Night World 2023 S01E02 1080P Nf Web-Dl X264 Ddp5 1-Pterweb", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/晚安世界.Good.Night.World.2023.S01.1080p.NF.WEB-DL.x264.DDP5.1-PTerWEB/Good.Night.World.2023.S01E06.1080p.NF.WEB-DL.x264.DDP5.1-PTerWEB.mkv", + "filename": "Good.Night.World.2023.S01E06.1080p.NF.WEB-DL.x264.DDP5.1-PTerWEB.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Good Night World 2023 S01E06 1080P Nf Web-Dl X264 Ddp5 1-Pterweb", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Good Night World 2023 S01E06 1080P Nf Web-Dl X264 Ddp5 1-Pterweb", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/晚安世界.Good.Night.World.2023.S01.1080p.NF.WEB-DL.x264.DDP5.1-PTerWEB/Good.Night.World.2023.S01E08.1080p.NF.WEB-DL.x264.DDP5.1-PTerWEB.mkv", + "filename": "Good.Night.World.2023.S01E08.1080p.NF.WEB-DL.x264.DDP5.1-PTerWEB.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Good Night World 2023 S01E08 1080P Nf Web-Dl X264 Ddp5 1-Pterweb", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Good Night World 2023 S01E08 1080P Nf Web-Dl X264 Ddp5 1-Pterweb", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/晚安世界.Good.Night.World.2023.S01.1080p.NF.WEB-DL.x264.DDP5.1-PTerWEB/Good.Night.World.2023.S01E04.1080p.NF.WEB-DL.x264.DDP5.1-PTerWEB.mkv", + "filename": "Good.Night.World.2023.S01E04.1080p.NF.WEB-DL.x264.DDP5.1-PTerWEB.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Good Night World 2023 S01E04 1080P Nf Web-Dl X264 Ddp5 1-Pterweb", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Good Night World 2023 S01E04 1080P Nf Web-Dl X264 Ddp5 1-Pterweb", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/晚安世界.Good.Night.World.2023.S01.1080p.NF.WEB-DL.x264.DDP5.1-PTerWEB/Good.Night.World.2023.S01E01.1080p.NF.WEB-DL.x264.DDP5.1-PTerWEB.mkv", + "filename": "Good.Night.World.2023.S01E01.1080p.NF.WEB-DL.x264.DDP5.1-PTerWEB.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Good Night World 2023 S01E01 1080P Nf Web-Dl X264 Ddp5 1-Pterweb", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Good Night World 2023 S01E01 1080P Nf Web-Dl X264 Ddp5 1-Pterweb", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/晚安世界.Good.Night.World.2023.S01.1080p.NF.WEB-DL.x264.DDP5.1-PTerWEB/Good.Night.World.2023.S01E05.1080p.NF.WEB-DL.x264.DDP5.1-PTerWEB.mkv", + "filename": "Good.Night.World.2023.S01E05.1080p.NF.WEB-DL.x264.DDP5.1-PTerWEB.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Good Night World 2023 S01E05 1080P Nf Web-Dl X264 Ddp5 1-Pterweb", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Good Night World 2023 S01E05 1080P Nf Web-Dl X264 Ddp5 1-Pterweb", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/晚安世界.Good.Night.World.2023.S01.1080p.NF.WEB-DL.x264.DDP5.1-PTerWEB/Good.Night.World.2023.S01E12.1080p.NF.WEB-DL.x264.DDP5.1-PTerWEB.mkv", + "filename": "Good.Night.World.2023.S01E12.1080p.NF.WEB-DL.x264.DDP5.1-PTerWEB.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Good Night World 2023 S01E12 1080P Nf Web-Dl X264 Ddp5 1-Pterweb", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Good Night World 2023 S01E12 1080P Nf Web-Dl X264 Ddp5 1-Pterweb", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/晚安世界.Good.Night.World.2023.S01.1080p.NF.WEB-DL.x264.DDP5.1-PTerWEB/Good.Night.World.2023.S01E09.1080p.NF.WEB-DL.x264.DDP5.1-PTerWEB.mkv", + "filename": "Good.Night.World.2023.S01E09.1080p.NF.WEB-DL.x264.DDP5.1-PTerWEB.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Good Night World 2023 S01E09 1080P Nf Web-Dl X264 Ddp5 1-Pterweb", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Good Night World 2023 S01E09 1080P Nf Web-Dl X264 Ddp5 1-Pterweb", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[orion origin] Benriya Saitou-san, Isekai ni Iku [01-12] [WebRip] [1080p] [H265 AAC] [CHT]/[orion origin] Benriya Saitou-san, Isekai ni Iku [08] [1080p] [H265 AAC] [CHT].mp4", + "filename": "[orion origin] Benriya Saitou-san, Isekai ni Iku [08] [1080p] [H265 AAC] [CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Orion Origin] Benriya Saitou-San, Isekai Ni Iku [08] [1080P] [H265 Aac] [Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Orion Origin] Benriya Saitou-San, Isekai Ni Iku [08] [1080P] [H265 Aac] [Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[orion origin] Benriya Saitou-san, Isekai ni Iku [01-12] [WebRip] [1080p] [H265 AAC] [CHT]/[orion origin] Benriya Saitou-san, Isekai ni Iku [02] [1080p] [H265 AAC] [CHT].mp4", + "filename": "[orion origin] Benriya Saitou-san, Isekai ni Iku [02] [1080p] [H265 AAC] [CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Orion Origin] Benriya Saitou-San, Isekai Ni Iku [02] [1080P] [H265 Aac] [Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Orion Origin] Benriya Saitou-San, Isekai Ni Iku [02] [1080P] [H265 Aac] [Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[orion origin] Benriya Saitou-san, Isekai ni Iku [01-12] [WebRip] [1080p] [H265 AAC] [CHT]/[orion origin] Benriya Saitou-san, Isekai ni Iku [04] [1080p] [H265 AAC] [CHT].mp4", + "filename": "[orion origin] Benriya Saitou-san, Isekai ni Iku [04] [1080p] [H265 AAC] [CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Orion Origin] Benriya Saitou-San, Isekai Ni Iku [04] [1080P] [H265 Aac] [Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Orion Origin] Benriya Saitou-San, Isekai Ni Iku [04] [1080P] [H265 Aac] [Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[orion origin] Benriya Saitou-san, Isekai ni Iku [01-12] [WebRip] [1080p] [H265 AAC] [CHT]/[orion origin] Benriya Saitou-san, Isekai ni Iku [09] [1080p] [H265 AAC] [CHT].mp4", + "filename": "[orion origin] Benriya Saitou-san, Isekai ni Iku [09] [1080p] [H265 AAC] [CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Orion Origin] Benriya Saitou-San, Isekai Ni Iku [09] [1080P] [H265 Aac] [Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Orion Origin] Benriya Saitou-San, Isekai Ni Iku [09] [1080P] [H265 Aac] [Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[orion origin] Benriya Saitou-san, Isekai ni Iku [01-12] [WebRip] [1080p] [H265 AAC] [CHT]/[orion origin] Benriya Saitou-san, Isekai ni Iku [03] [1080p] [H265 AAC] [CHT].mp4", + "filename": "[orion origin] Benriya Saitou-san, Isekai ni Iku [03] [1080p] [H265 AAC] [CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Orion Origin] Benriya Saitou-San, Isekai Ni Iku [03] [1080P] [H265 Aac] [Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Orion Origin] Benriya Saitou-San, Isekai Ni Iku [03] [1080P] [H265 Aac] [Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[orion origin] Benriya Saitou-san, Isekai ni Iku [01-12] [WebRip] [1080p] [H265 AAC] [CHT]/[orion origin] Benriya Saitou-san, Isekai ni Iku [05] [1080p] [H265 AAC] [CHT].mp4", + "filename": "[orion origin] Benriya Saitou-san, Isekai ni Iku [05] [1080p] [H265 AAC] [CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Orion Origin] Benriya Saitou-San, Isekai Ni Iku [05] [1080P] [H265 Aac] [Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Orion Origin] Benriya Saitou-San, Isekai Ni Iku [05] [1080P] [H265 Aac] [Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[orion origin] Benriya Saitou-san, Isekai ni Iku [01-12] [WebRip] [1080p] [H265 AAC] [CHT]/[orion origin] Benriya Saitou-san, Isekai ni Iku [11] [1080p] [H265 AAC] [CHT].mp4", + "filename": "[orion origin] Benriya Saitou-san, Isekai ni Iku [11] [1080p] [H265 AAC] [CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Orion Origin] Benriya Saitou-San, Isekai Ni Iku [11] [1080P] [H265 Aac] [Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Orion Origin] Benriya Saitou-San, Isekai Ni Iku [11] [1080P] [H265 Aac] [Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[orion origin] Benriya Saitou-san, Isekai ni Iku [01-12] [WebRip] [1080p] [H265 AAC] [CHT]/[orion origin] Benriya Saitou-san, Isekai ni Iku [12] [END] [1080p] [H265 AAC] [CHT].mp4", + "filename": "[orion origin] Benriya Saitou-san, Isekai ni Iku [12] [END] [1080p] [H265 AAC] [CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Orion Origin] Benriya Saitou-San, Isekai Ni Iku [12] [End] [1080P] [H265 Aac] [Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Orion Origin] Benriya Saitou-San, Isekai Ni Iku [12] [End] [1080P] [H265 Aac] [Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[orion origin] Benriya Saitou-san, Isekai ni Iku [01-12] [WebRip] [1080p] [H265 AAC] [CHT]/[orion origin] Benriya Saitou-san, Isekai ni Iku [06] [1080p] [H265 AAC] [CHT].mp4", + "filename": "[orion origin] Benriya Saitou-san, Isekai ni Iku [06] [1080p] [H265 AAC] [CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Orion Origin] Benriya Saitou-San, Isekai Ni Iku [06] [1080P] [H265 Aac] [Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Orion Origin] Benriya Saitou-San, Isekai Ni Iku [06] [1080P] [H265 Aac] [Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[orion origin] Benriya Saitou-san, Isekai ni Iku [01-12] [WebRip] [1080p] [H265 AAC] [CHT]/[orion origin] Benriya Saitou-san, Isekai ni Iku [10] [1080p] [H265 AAC] [CHT].mp4", + "filename": "[orion origin] Benriya Saitou-san, Isekai ni Iku [10] [1080p] [H265 AAC] [CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Orion Origin] Benriya Saitou-San, Isekai Ni Iku [10] [1080P] [H265 Aac] [Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Orion Origin] Benriya Saitou-San, Isekai Ni Iku [10] [1080P] [H265 Aac] [Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[orion origin] Benriya Saitou-san, Isekai ni Iku [01-12] [WebRip] [1080p] [H265 AAC] [CHT]/[orion origin] Benriya Saitou-san, Isekai ni Iku [01] [1080p] [H265 AAC] [CHT].mp4", + "filename": "[orion origin] Benriya Saitou-san, Isekai ni Iku [01] [1080p] [H265 AAC] [CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Orion Origin] Benriya Saitou-San, Isekai Ni Iku [01] [1080P] [H265 Aac] [Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Orion Origin] Benriya Saitou-San, Isekai Ni Iku [01] [1080P] [H265 Aac] [Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[orion origin] Benriya Saitou-san, Isekai ni Iku [01-12] [WebRip] [1080p] [H265 AAC] [CHT]/[orion origin] Benriya Saitou-san, Isekai ni Iku [07] [1080p] [H265 AAC] [CHT].mp4", + "filename": "[orion origin] Benriya Saitou-san, Isekai ni Iku [07] [1080p] [H265 AAC] [CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Orion Origin] Benriya Saitou-San, Isekai Ni Iku [07] [1080P] [H265 Aac] [Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Orion Origin] Benriya Saitou-San, Isekai Ni Iku [07] [1080P] [H265 Aac] [Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 盾之勇者成名錄 Season 4 - 03 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 盾之勇者成名錄 Season 4 - 03 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 盾之勇者成名錄 Season 4 - 03 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 盾之勇者成名錄 Season 4 - 03 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 使人誤解的工房主~關於原英雄隊伍的雜役人員,實際上除了戰鬥能力外全是SSS的故事~ - 10 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 使人誤解的工房主~關於原英雄隊伍的雜役人員,實際上除了戰鬥能力外全是SSS的故事~ - 10 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 使人誤解的工房主~關於原英雄隊伍的雜役人員,實際上除了戰鬥能力外全是Sss的故事~ - 10 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 使人誤解的工房主~關於原英雄隊伍的雜役人員,實際上除了戰鬥能力外全是Sss的故事~ - 10 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[HYSUB]Dungeon Meshi[19][BIG5_MP4][1920X1080].mp4", + "filename": "[HYSUB]Dungeon Meshi[19][BIG5_MP4][1920X1080].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Hysub]Dungeon Meshi[19][Big5 Mp4][1920X1080]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Hysub]Dungeon Meshi[19][Big5 Mp4][1920X1080]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 陰陽迴天 Re:Birth Verse - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 陰陽迴天 Re:Birth Verse - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 陰陽迴天 Re:Birth Verse - 01 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 陰陽迴天 Re:Birth Verse - 01 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 我與尼特女忍者的莫名同居生活 - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 我與尼特女忍者的莫名同居生活 - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 我與尼特女忍者的莫名同居生活 - 02 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 我與尼特女忍者的莫名同居生活 - 02 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 最後可以再拜託您一件事嗎? - 06 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 最後可以再拜託您一件事嗎? - 06 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 最後可以再拜託您一件事嗎? - 06 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 最後可以再拜託您一件事嗎? - 06 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 我獨自升級 第二季 -起於闇影- - 18 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 我獨自升級 第二季 -起於闇影- - 18 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 我獨自升級 第二季 -起於闇影- - 18 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 我獨自升級 第二季 -起於闇影- - 18 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] WIND BREAKER—防風少年— - 10 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] WIND BREAKER—防風少年— - 10 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] Wind Breaker—防風少年— - 10 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] Wind Breaker—防風少年— - 10 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 我內心的糟糕念頭 第二季 - 17 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 我內心的糟糕念頭 第二季 - 17 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 我內心的糟糕念頭 第二季 - 17 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 我內心的糟糕念頭 第二季 - 17 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 輝夜姬想讓人告白 邁向大人的階梯 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 輝夜姬想讓人告白 邁向大人的階梯 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 輝夜姬想讓人告白 邁向大人的階梯 - 01 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 輝夜姬想讓人告白 邁向大人的階梯 - 01 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Nekomoe kissaten&LoliHouse] Ame to Kimi to - 01 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "filename": "[Nekomoe kissaten&LoliHouse] Ame to Kimi to - 01 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Nekomoe Kissaten&Lolihouse] Ame To Kimi To - 01 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Nekomoe Kissaten&Lolihouse] Ame To Kimi To - 01 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 我獨自升級 第二季 -起於闇影- - 24 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 我獨自升級 第二季 -起於闇影- - 24 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 我獨自升級 第二季 -起於闇影- - 24 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 我獨自升級 第二季 -起於闇影- - 24 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 靠廢柴技能【狀態異常】成為最強的我將蹂躪一切 - 12 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 靠廢柴技能【狀態異常】成為最強的我將蹂躪一切 - 12 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 靠廢柴技能【狀態異常】成為最強的我將蹂躪一切 - 12 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 靠廢柴技能【狀態異常】成為最強的我將蹂躪一切 - 12 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 膽大黨 - 06 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 膽大黨 - 06 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 膽大黨 - 06 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 膽大黨 - 06 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Nekomoe kissaten&LoliHouse] Ao no Hako - 01 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "filename": "[Nekomoe kissaten&LoliHouse] Ao no Hako - 01 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Nekomoe Kissaten&Lolihouse] Ao No Hako - 01 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Nekomoe Kissaten&Lolihouse] Ao No Hako - 01 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 聽說你們要結婚!? - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 聽說你們要結婚!? - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 聽說你們要結婚!? - 01 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 聽說你們要結婚!? - 01 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[orion origin] Ore wa Subete wo Parry Suru ~Gyaku Kanchigai no Sekai Saikyou wa Boukensha ni Naritai~ [05] [1080p] [H265 AAC] [CHT&JPN].mp4", + "filename": "[orion origin] Ore wa Subete wo Parry Suru ~Gyaku Kanchigai no Sekai Saikyou wa Boukensha ni Naritai~ [05] [1080p] [H265 AAC] [CHT&JPN].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Orion Origin] Ore Wa Subete Wo Parry Suru ~Gyaku Kanchigai No Sekai Saikyou Wa Boukensha Ni Naritai~ [05] [1080P] [H265 Aac] [Cht&Jpn]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Orion Origin] Ore Wa Subete Wo Parry Suru ~Gyaku Kanchigai No Sekai Saikyou Wa Boukensha Ni Naritai~ [05] [1080P] [H265 Aac] [Cht&Jpn]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 靠廢柴技能【狀態異常】成為最強的我將蹂躪一切 - 09 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 靠廢柴技能【狀態異常】成為最強的我將蹂躪一切 - 09 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 靠廢柴技能【狀態異常】成為最強的我將蹂躪一切 - 09 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 靠廢柴技能【狀態異常】成為最強的我將蹂躪一切 - 09 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Nekomoe kissaten][Ao no Hako][12][1080p][JPTC].mp4", + "filename": "[Nekomoe kissaten][Ao no Hako][12][1080p][JPTC].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Nekomoe Kissaten][Ao No Hako][12][1080P][Jptc]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Nekomoe Kissaten][Ao No Hako][12][1080P][Jptc]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Pluto.S01.1080p.NF.WEB-DL.DDP5.1.H.264-QUiNTESSENCE/Pluto.S01E02.1080p.WEB.h264-QUiNTESSENCE.mkv", + "filename": "Pluto.S01E02.1080p.WEB.h264-QUiNTESSENCE.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Pluto S01E02 1080P Web H264-Quintessence", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Pluto S01E02 1080P Web H264-Quintessence", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Pluto.S01.1080p.NF.WEB-DL.DDP5.1.H.264-QUiNTESSENCE/Pluto.S01E03.1080p.WEB.h264-QUiNTESSENCE.mkv", + "filename": "Pluto.S01E03.1080p.WEB.h264-QUiNTESSENCE.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Pluto S01E03 1080P Web H264-Quintessence", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Pluto S01E03 1080P Web H264-Quintessence", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Pluto.S01.1080p.NF.WEB-DL.DDP5.1.H.264-QUiNTESSENCE/Pluto.S01E01.1080p.WEB.h264-QUiNTESSENCE.mkv", + "filename": "Pluto.S01E01.1080p.WEB.h264-QUiNTESSENCE.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Pluto S01E01 1080P Web H264-Quintessence", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Pluto S01E01 1080P Web H264-Quintessence", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Pluto.S01.1080p.NF.WEB-DL.DDP5.1.H.264-QUiNTESSENCE/Pluto.S01E04.1080p.WEB.h264-QUiNTESSENCE.mkv", + "filename": "Pluto.S01E04.1080p.WEB.h264-QUiNTESSENCE.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Pluto S01E04 1080P Web H264-Quintessence", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Pluto S01E04 1080P Web H264-Quintessence", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Pluto.S01.1080p.NF.WEB-DL.DDP5.1.H.264-QUiNTESSENCE/Pluto.S01E05.1080p.WEB.h264-QUiNTESSENCE.mkv", + "filename": "Pluto.S01E05.1080p.WEB.h264-QUiNTESSENCE.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Pluto S01E05 1080P Web H264-Quintessence", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Pluto S01E05 1080P Web H264-Quintessence", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Pluto.S01.1080p.NF.WEB-DL.DDP5.1.H.264-QUiNTESSENCE/Pluto.S01E07.1080p.WEB.h264-QUiNTESSENCE.mkv", + "filename": "Pluto.S01E07.1080p.WEB.h264-QUiNTESSENCE.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Pluto S01E07 1080P Web H264-Quintessence", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Pluto S01E07 1080P Web H264-Quintessence", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Pluto.S01.1080p.NF.WEB-DL.DDP5.1.H.264-QUiNTESSENCE/Pluto.S01E06.1080p.WEB.h264-QUiNTESSENCE.mkv", + "filename": "Pluto.S01E06.1080p.WEB.h264-QUiNTESSENCE.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Pluto S01E06 1080P Web H264-Quintessence", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Pluto S01E06 1080P Web H264-Quintessence", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Pluto.S01.1080p.NF.WEB-DL.DDP5.1.H.264-QUiNTESSENCE/Pluto.S01E08.1080p.WEB.h264-QUiNTESSENCE.mkv", + "filename": "Pluto.S01E08.1080p.WEB.h264-QUiNTESSENCE.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Pluto S01E08 1080P Web H264-Quintessence", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Pluto S01E08 1080P Web H264-Quintessence", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 我獨自升級 - 03 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 我獨自升級 - 03 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 我獨自升級 - 03 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 我獨自升級 - 03 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Re Monster - 06 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "filename": "[LoliHouse] Re Monster - 06 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Re Monster - 06 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Re Monster - 06 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[SweetSub&LoliHouse] Horimiya Piece [WebRip 1080p HEVC-10bit AAC ASSx2]/Bonus/[SweetSub&LoliHouse] Horimiya Piece - Web Preview 09 [Web-DL 1080p AVC-8bit AAC ASSx2].mkv", + "filename": "[SweetSub&LoliHouse] Horimiya Piece - Web Preview 09 [Web-DL 1080p AVC-8bit AAC ASSx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Sweetsub&Lolihouse] Horimiya Piece - Web Preview 09 [Web-Dl 1080P Avc-8Bit Aac Assx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Sweetsub&Lolihouse] Horimiya Piece - Web Preview 09 [Web-Dl 1080P Avc-8Bit Aac Assx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[SweetSub&LoliHouse] Horimiya Piece [WebRip 1080p HEVC-10bit AAC ASSx2]/Bonus/[SweetSub&LoliHouse] Horimiya Piece - Web Preview 08 [Web-DL 1080p AVC-8bit AAC ASSx2].mkv", + "filename": "[SweetSub&LoliHouse] Horimiya Piece - Web Preview 08 [Web-DL 1080p AVC-8bit AAC ASSx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Sweetsub&Lolihouse] Horimiya Piece - Web Preview 08 [Web-Dl 1080P Avc-8Bit Aac Assx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Sweetsub&Lolihouse] Horimiya Piece - Web Preview 08 [Web-Dl 1080P Avc-8Bit Aac Assx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[SweetSub&LoliHouse] Horimiya Piece [WebRip 1080p HEVC-10bit AAC ASSx2]/Bonus/[SweetSub&LoliHouse] Horimiya Piece - Web Preview 07 [Web-DL 1080p AVC-8bit AAC ASSx2].mkv", + "filename": "[SweetSub&LoliHouse] Horimiya Piece - Web Preview 07 [Web-DL 1080p AVC-8bit AAC ASSx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Sweetsub&Lolihouse] Horimiya Piece - Web Preview 07 [Web-Dl 1080P Avc-8Bit Aac Assx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Sweetsub&Lolihouse] Horimiya Piece - Web Preview 07 [Web-Dl 1080P Avc-8Bit Aac Assx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[SweetSub&LoliHouse] Horimiya Piece [WebRip 1080p HEVC-10bit AAC ASSx2]/Bonus/[SweetSub&LoliHouse] Horimiya Piece - Web Preview 11 [Web-DL 1080p AVC-8bit AAC ASSx2].mkv", + "filename": "[SweetSub&LoliHouse] Horimiya Piece - Web Preview 11 [Web-DL 1080p AVC-8bit AAC ASSx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Sweetsub&Lolihouse] Horimiya Piece - Web Preview 11 [Web-Dl 1080P Avc-8Bit Aac Assx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Sweetsub&Lolihouse] Horimiya Piece - Web Preview 11 [Web-Dl 1080P Avc-8Bit Aac Assx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[SweetSub&LoliHouse] Horimiya Piece [WebRip 1080p HEVC-10bit AAC ASSx2]/Bonus/[SweetSub&LoliHouse] Horimiya Piece - Web Preview 06 [Web-DL 1080p AVC-8bit AAC ASSx2].mkv", + "filename": "[SweetSub&LoliHouse] Horimiya Piece - Web Preview 06 [Web-DL 1080p AVC-8bit AAC ASSx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Sweetsub&Lolihouse] Horimiya Piece - Web Preview 06 [Web-Dl 1080P Avc-8Bit Aac Assx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Sweetsub&Lolihouse] Horimiya Piece - Web Preview 06 [Web-Dl 1080P Avc-8Bit Aac Assx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[SweetSub&LoliHouse] Horimiya Piece [WebRip 1080p HEVC-10bit AAC ASSx2]/Bonus/[SweetSub&LoliHouse] Horimiya Piece - Web Preview 10 [Web-DL 1080p AVC-8bit AAC ASSx2].mkv", + "filename": "[SweetSub&LoliHouse] Horimiya Piece - Web Preview 10 [Web-DL 1080p AVC-8bit AAC ASSx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Sweetsub&Lolihouse] Horimiya Piece - Web Preview 10 [Web-Dl 1080P Avc-8Bit Aac Assx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Sweetsub&Lolihouse] Horimiya Piece - Web Preview 10 [Web-Dl 1080P Avc-8Bit Aac Assx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[SweetSub&LoliHouse] Horimiya Piece [WebRip 1080p HEVC-10bit AAC ASSx2]/Bonus/[SweetSub&LoliHouse] Horimiya Piece - Web Preview 05 [Web-DL 1080p AVC-8bit AAC ASSx2].mkv", + "filename": "[SweetSub&LoliHouse] Horimiya Piece - Web Preview 05 [Web-DL 1080p AVC-8bit AAC ASSx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Sweetsub&Lolihouse] Horimiya Piece - Web Preview 05 [Web-Dl 1080P Avc-8Bit Aac Assx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Sweetsub&Lolihouse] Horimiya Piece - Web Preview 05 [Web-Dl 1080P Avc-8Bit Aac Assx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[SweetSub&LoliHouse] Horimiya Piece [WebRip 1080p HEVC-10bit AAC ASSx2]/Bonus/[SweetSub&LoliHouse] Horimiya Piece - Web Preview 13 [Web-DL 1080p AVC-8bit AAC ASSx2].mkv", + "filename": "[SweetSub&LoliHouse] Horimiya Piece - Web Preview 13 [Web-DL 1080p AVC-8bit AAC ASSx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Sweetsub&Lolihouse] Horimiya Piece - Web Preview 13 [Web-Dl 1080P Avc-8Bit Aac Assx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Sweetsub&Lolihouse] Horimiya Piece - Web Preview 13 [Web-Dl 1080P Avc-8Bit Aac Assx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[SweetSub&LoliHouse] Horimiya Piece [WebRip 1080p HEVC-10bit AAC ASSx2]/Bonus/[SweetSub&LoliHouse] Horimiya Piece - Web Preview 04 [Web-DL 1080p AVC-8bit AAC ASSx2].mkv", + "filename": "[SweetSub&LoliHouse] Horimiya Piece - Web Preview 04 [Web-DL 1080p AVC-8bit AAC ASSx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Sweetsub&Lolihouse] Horimiya Piece - Web Preview 04 [Web-Dl 1080P Avc-8Bit Aac Assx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Sweetsub&Lolihouse] Horimiya Piece - Web Preview 04 [Web-Dl 1080P Avc-8Bit Aac Assx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[SweetSub&LoliHouse] Horimiya Piece [WebRip 1080p HEVC-10bit AAC ASSx2]/Bonus/[SweetSub&LoliHouse] Horimiya Piece - Web Preview 12 [Web-DL 1080p AVC-8bit AAC ASSx2].mkv", + "filename": "[SweetSub&LoliHouse] Horimiya Piece - Web Preview 12 [Web-DL 1080p AVC-8bit AAC ASSx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Sweetsub&Lolihouse] Horimiya Piece - Web Preview 12 [Web-Dl 1080P Avc-8Bit Aac Assx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Sweetsub&Lolihouse] Horimiya Piece - Web Preview 12 [Web-Dl 1080P Avc-8Bit Aac Assx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[SweetSub&LoliHouse] Horimiya Piece [WebRip 1080p HEVC-10bit AAC ASSx2]/Bonus/[SweetSub&LoliHouse] Horimiya Piece - Final PV [Web-DL 1080p AVC-8bit AAC ASSx2].mkv", + "filename": "[SweetSub&LoliHouse] Horimiya Piece - Final PV [Web-DL 1080p AVC-8bit AAC ASSx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Sweetsub&Lolihouse] Horimiya Piece - Final Pv [Web-Dl 1080P Avc-8Bit Aac Assx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Sweetsub&Lolihouse] Horimiya Piece - Final Pv [Web-Dl 1080P Avc-8Bit Aac Assx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[SweetSub&LoliHouse] Horimiya Piece [WebRip 1080p HEVC-10bit AAC ASSx2]/Bonus/[SweetSub&LoliHouse] Horimiya Piece - Web Preview 03 [Web-DL 1080p AVC-8bit AAC ASSx2].mkv", + "filename": "[SweetSub&LoliHouse] Horimiya Piece - Web Preview 03 [Web-DL 1080p AVC-8bit AAC ASSx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Sweetsub&Lolihouse] Horimiya Piece - Web Preview 03 [Web-Dl 1080P Avc-8Bit Aac Assx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Sweetsub&Lolihouse] Horimiya Piece - Web Preview 03 [Web-Dl 1080P Avc-8Bit Aac Assx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[SweetSub&LoliHouse] Horimiya Piece [WebRip 1080p HEVC-10bit AAC ASSx2]/Bonus/[SweetSub&LoliHouse] Horimiya Piece - Web Preview 02 [Web-DL 1080p AVC-8bit AAC ASSx2].mkv", + "filename": "[SweetSub&LoliHouse] Horimiya Piece - Web Preview 02 [Web-DL 1080p AVC-8bit AAC ASSx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Sweetsub&Lolihouse] Horimiya Piece - Web Preview 02 [Web-Dl 1080P Avc-8Bit Aac Assx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Sweetsub&Lolihouse] Horimiya Piece - Web Preview 02 [Web-Dl 1080P Avc-8Bit Aac Assx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[SweetSub&LoliHouse] Horimiya Piece [WebRip 1080p HEVC-10bit AAC ASSx2]/Bonus/[SweetSub&LoliHouse] Horimiya Piece - Web Preview 01 [Web-DL 1080p AVC-8bit AAC ASSx2].mkv", + "filename": "[SweetSub&LoliHouse] Horimiya Piece - Web Preview 01 [Web-DL 1080p AVC-8bit AAC ASSx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Sweetsub&Lolihouse] Horimiya Piece - Web Preview 01 [Web-Dl 1080P Avc-8Bit Aac Assx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Sweetsub&Lolihouse] Horimiya Piece - Web Preview 01 [Web-Dl 1080P Avc-8Bit Aac Assx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[SweetSub&LoliHouse] Horimiya Piece [WebRip 1080p HEVC-10bit AAC ASSx2]/[SweetSub&LoliHouse] Horimiya Piece - 07 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "filename": "[SweetSub&LoliHouse] Horimiya Piece - 07 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Sweetsub&Lolihouse] Horimiya Piece - 07 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Sweetsub&Lolihouse] Horimiya Piece - 07 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[SweetSub&LoliHouse] Horimiya Piece [WebRip 1080p HEVC-10bit AAC ASSx2]/[SweetSub&LoliHouse] Horimiya Piece - 03 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "filename": "[SweetSub&LoliHouse] Horimiya Piece - 03 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Sweetsub&Lolihouse] Horimiya Piece - 03 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Sweetsub&Lolihouse] Horimiya Piece - 03 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[SweetSub&LoliHouse] Horimiya Piece [WebRip 1080p HEVC-10bit AAC ASSx2]/[SweetSub&LoliHouse] Horimiya Piece - 10 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "filename": "[SweetSub&LoliHouse] Horimiya Piece - 10 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Sweetsub&Lolihouse] Horimiya Piece - 10 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Sweetsub&Lolihouse] Horimiya Piece - 10 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[SweetSub&LoliHouse] Horimiya Piece [WebRip 1080p HEVC-10bit AAC ASSx2]/[SweetSub&LoliHouse] Horimiya Piece - 11 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "filename": "[SweetSub&LoliHouse] Horimiya Piece - 11 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Sweetsub&Lolihouse] Horimiya Piece - 11 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Sweetsub&Lolihouse] Horimiya Piece - 11 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[SweetSub&LoliHouse] Horimiya Piece [WebRip 1080p HEVC-10bit AAC ASSx2]/[SweetSub&LoliHouse] Horimiya Piece - 06 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "filename": "[SweetSub&LoliHouse] Horimiya Piece - 06 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Sweetsub&Lolihouse] Horimiya Piece - 06 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Sweetsub&Lolihouse] Horimiya Piece - 06 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[SweetSub&LoliHouse] Horimiya Piece [WebRip 1080p HEVC-10bit AAC ASSx2]/[SweetSub&LoliHouse] Horimiya Piece - 02 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "filename": "[SweetSub&LoliHouse] Horimiya Piece - 02 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Sweetsub&Lolihouse] Horimiya Piece - 02 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Sweetsub&Lolihouse] Horimiya Piece - 02 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[SweetSub&LoliHouse] Horimiya Piece [WebRip 1080p HEVC-10bit AAC ASSx2]/[SweetSub&LoliHouse] Horimiya Piece - 13 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "filename": "[SweetSub&LoliHouse] Horimiya Piece - 13 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Sweetsub&Lolihouse] Horimiya Piece - 13 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Sweetsub&Lolihouse] Horimiya Piece - 13 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[SweetSub&LoliHouse] Horimiya Piece [WebRip 1080p HEVC-10bit AAC ASSx2]/[SweetSub&LoliHouse] Horimiya Piece - 08 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "filename": "[SweetSub&LoliHouse] Horimiya Piece - 08 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Sweetsub&Lolihouse] Horimiya Piece - 08 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Sweetsub&Lolihouse] Horimiya Piece - 08 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[SweetSub&LoliHouse] Horimiya Piece [WebRip 1080p HEVC-10bit AAC ASSx2]/[SweetSub&LoliHouse] Horimiya Piece - 04 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "filename": "[SweetSub&LoliHouse] Horimiya Piece - 04 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Sweetsub&Lolihouse] Horimiya Piece - 04 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Sweetsub&Lolihouse] Horimiya Piece - 04 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[SweetSub&LoliHouse] Horimiya Piece [WebRip 1080p HEVC-10bit AAC ASSx2]/[SweetSub&LoliHouse] Horimiya Piece - 05 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "filename": "[SweetSub&LoliHouse] Horimiya Piece - 05 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Sweetsub&Lolihouse] Horimiya Piece - 05 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Sweetsub&Lolihouse] Horimiya Piece - 05 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[SweetSub&LoliHouse] Horimiya Piece [WebRip 1080p HEVC-10bit AAC ASSx2]/[SweetSub&LoliHouse] Horimiya Piece - 01 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "filename": "[SweetSub&LoliHouse] Horimiya Piece - 01 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Sweetsub&Lolihouse] Horimiya Piece - 01 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Sweetsub&Lolihouse] Horimiya Piece - 01 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[SweetSub&LoliHouse] Horimiya Piece [WebRip 1080p HEVC-10bit AAC ASSx2]/[SweetSub&LoliHouse] Horimiya Piece - 09 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "filename": "[SweetSub&LoliHouse] Horimiya Piece - 09 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Sweetsub&Lolihouse] Horimiya Piece - 09 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Sweetsub&Lolihouse] Horimiya Piece - 09 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[SweetSub&LoliHouse] Horimiya Piece [WebRip 1080p HEVC-10bit AAC ASSx2]/[SweetSub&LoliHouse] Horimiya Piece - 12 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "filename": "[SweetSub&LoliHouse] Horimiya Piece - 12 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Sweetsub&Lolihouse] Horimiya Piece - 12 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Sweetsub&Lolihouse] Horimiya Piece - 12 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 膽大黨 第二季 - 17 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 膽大黨 第二季 - 17 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 膽大黨 第二季 - 17 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 膽大黨 第二季 - 17 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 我要【招架】一切~反誤解的世界最強想成為冒險家~ - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 我要【招架】一切~反誤解的世界最強想成為冒險家~ - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 我要【招架】一切~反誤解的世界最強想成為冒險家~ - 02 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 我要【招架】一切~反誤解的世界最強想成為冒險家~ - 02 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 素材採集家的異世界旅行記 - 11 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 素材採集家的異世界旅行記 - 11 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 素材採集家的異世界旅行記 - 11 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 素材採集家的異世界旅行記 - 11 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Amagami-san Chi no Enmusubi [01-24][WebRip 1080p HEVC-10bit AAC]/[LoliHouse] Amagami-san Chi no Enmusubi - 11 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "filename": "[LoliHouse] Amagami-san Chi no Enmusubi - 11 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Amagami-San Chi No Enmusubi - 11 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Amagami-San Chi No Enmusubi - 11 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Amagami-san Chi no Enmusubi [01-24][WebRip 1080p HEVC-10bit AAC]/[LoliHouse] Amagami-san Chi no Enmusubi - 15 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "filename": "[LoliHouse] Amagami-san Chi no Enmusubi - 15 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Amagami-San Chi No Enmusubi - 15 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Amagami-San Chi No Enmusubi - 15 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Amagami-san Chi no Enmusubi [01-24][WebRip 1080p HEVC-10bit AAC]/[LoliHouse] Amagami-san Chi no Enmusubi - 06 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "filename": "[LoliHouse] Amagami-san Chi no Enmusubi - 06 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Amagami-San Chi No Enmusubi - 06 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Amagami-San Chi No Enmusubi - 06 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Amagami-san Chi no Enmusubi [01-24][WebRip 1080p HEVC-10bit AAC]/[LoliHouse] Amagami-san Chi no Enmusubi - 21 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "filename": "[LoliHouse] Amagami-san Chi no Enmusubi - 21 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Amagami-San Chi No Enmusubi - 21 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Amagami-San Chi No Enmusubi - 21 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Amagami-san Chi no Enmusubi [01-24][WebRip 1080p HEVC-10bit AAC]/[LoliHouse] Amagami-san Chi no Enmusubi - 02 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "filename": "[LoliHouse] Amagami-san Chi no Enmusubi - 02 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Amagami-San Chi No Enmusubi - 02 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Amagami-San Chi No Enmusubi - 02 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Amagami-san Chi no Enmusubi [01-24][WebRip 1080p HEVC-10bit AAC]/[LoliHouse] Amagami-san Chi no Enmusubi - 19 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "filename": "[LoliHouse] Amagami-san Chi no Enmusubi - 19 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Amagami-San Chi No Enmusubi - 19 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Amagami-San Chi No Enmusubi - 19 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Amagami-san Chi no Enmusubi [01-24][WebRip 1080p HEVC-10bit AAC]/[LoliHouse] Amagami-san Chi no Enmusubi - 07 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "filename": "[LoliHouse] Amagami-san Chi no Enmusubi - 07 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Amagami-San Chi No Enmusubi - 07 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Amagami-San Chi No Enmusubi - 07 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Amagami-san Chi no Enmusubi [01-24][WebRip 1080p HEVC-10bit AAC]/[LoliHouse] Amagami-san Chi no Enmusubi - 20 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "filename": "[LoliHouse] Amagami-san Chi no Enmusubi - 20 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Amagami-San Chi No Enmusubi - 20 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Amagami-San Chi No Enmusubi - 20 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Amagami-san Chi no Enmusubi [01-24][WebRip 1080p HEVC-10bit AAC]/[LoliHouse] Amagami-san Chi no Enmusubi - 18 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "filename": "[LoliHouse] Amagami-san Chi no Enmusubi - 18 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Amagami-San Chi No Enmusubi - 18 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Amagami-San Chi No Enmusubi - 18 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Amagami-san Chi no Enmusubi [01-24][WebRip 1080p HEVC-10bit AAC]/[LoliHouse] Amagami-san Chi no Enmusubi - 03 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "filename": "[LoliHouse] Amagami-san Chi no Enmusubi - 03 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Amagami-San Chi No Enmusubi - 03 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Amagami-San Chi No Enmusubi - 03 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Amagami-san Chi no Enmusubi [01-24][WebRip 1080p HEVC-10bit AAC]/[LoliHouse] Amagami-san Chi no Enmusubi - 24 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "filename": "[LoliHouse] Amagami-san Chi no Enmusubi - 24 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Amagami-San Chi No Enmusubi - 24 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Amagami-San Chi No Enmusubi - 24 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Amagami-san Chi no Enmusubi [01-24][WebRip 1080p HEVC-10bit AAC]/[LoliHouse] Amagami-san Chi no Enmusubi - 10 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "filename": "[LoliHouse] Amagami-san Chi no Enmusubi - 10 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Amagami-San Chi No Enmusubi - 10 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Amagami-San Chi No Enmusubi - 10 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Amagami-san Chi no Enmusubi [01-24][WebRip 1080p HEVC-10bit AAC]/[LoliHouse] Amagami-san Chi no Enmusubi - 14 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "filename": "[LoliHouse] Amagami-san Chi no Enmusubi - 14 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Amagami-San Chi No Enmusubi - 14 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Amagami-San Chi No Enmusubi - 14 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Amagami-san Chi no Enmusubi [01-24][WebRip 1080p HEVC-10bit AAC]/[LoliHouse] Amagami-san Chi no Enmusubi - 22 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "filename": "[LoliHouse] Amagami-san Chi no Enmusubi - 22 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Amagami-San Chi No Enmusubi - 22 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Amagami-San Chi No Enmusubi - 22 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Amagami-san Chi no Enmusubi [01-24][WebRip 1080p HEVC-10bit AAC]/[LoliHouse] Amagami-san Chi no Enmusubi - 05 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "filename": "[LoliHouse] Amagami-san Chi no Enmusubi - 05 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Amagami-San Chi No Enmusubi - 05 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Amagami-San Chi No Enmusubi - 05 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Amagami-san Chi no Enmusubi [01-24][WebRip 1080p HEVC-10bit AAC]/[LoliHouse] Amagami-san Chi no Enmusubi - 01 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "filename": "[LoliHouse] Amagami-san Chi no Enmusubi - 01 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Amagami-San Chi No Enmusubi - 01 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Amagami-San Chi No Enmusubi - 01 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Amagami-san Chi no Enmusubi [01-24][WebRip 1080p HEVC-10bit AAC]/[LoliHouse] Amagami-san Chi no Enmusubi - 12 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "filename": "[LoliHouse] Amagami-san Chi no Enmusubi - 12 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Amagami-San Chi No Enmusubi - 12 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Amagami-San Chi No Enmusubi - 12 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Amagami-san Chi no Enmusubi [01-24][WebRip 1080p HEVC-10bit AAC]/[LoliHouse] Amagami-san Chi no Enmusubi - 09 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "filename": "[LoliHouse] Amagami-san Chi no Enmusubi - 09 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Amagami-San Chi No Enmusubi - 09 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Amagami-San Chi No Enmusubi - 09 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Amagami-san Chi no Enmusubi [01-24][WebRip 1080p HEVC-10bit AAC]/[LoliHouse] Amagami-san Chi no Enmusubi - 16 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "filename": "[LoliHouse] Amagami-san Chi no Enmusubi - 16 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Amagami-San Chi No Enmusubi - 16 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Amagami-San Chi No Enmusubi - 16 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Amagami-san Chi no Enmusubi [01-24][WebRip 1080p HEVC-10bit AAC]/[LoliHouse] Amagami-san Chi no Enmusubi - 08 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "filename": "[LoliHouse] Amagami-san Chi no Enmusubi - 08 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Amagami-San Chi No Enmusubi - 08 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Amagami-San Chi No Enmusubi - 08 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Amagami-san Chi no Enmusubi [01-24][WebRip 1080p HEVC-10bit AAC]/[LoliHouse] Amagami-san Chi no Enmusubi - 13 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "filename": "[LoliHouse] Amagami-san Chi no Enmusubi - 13 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Amagami-San Chi No Enmusubi - 13 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Amagami-San Chi No Enmusubi - 13 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Amagami-san Chi no Enmusubi [01-24][WebRip 1080p HEVC-10bit AAC]/[LoliHouse] Amagami-san Chi no Enmusubi - 17 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "filename": "[LoliHouse] Amagami-san Chi no Enmusubi - 17 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Amagami-San Chi No Enmusubi - 17 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Amagami-San Chi No Enmusubi - 17 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Amagami-san Chi no Enmusubi [01-24][WebRip 1080p HEVC-10bit AAC]/[LoliHouse] Amagami-san Chi no Enmusubi - 23 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "filename": "[LoliHouse] Amagami-san Chi no Enmusubi - 23 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Amagami-San Chi No Enmusubi - 23 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Amagami-San Chi No Enmusubi - 23 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Amagami-san Chi no Enmusubi [01-24][WebRip 1080p HEVC-10bit AAC]/[LoliHouse] Amagami-san Chi no Enmusubi - 04 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "filename": "[LoliHouse] Amagami-san Chi no Enmusubi - 04 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Amagami-San Chi No Enmusubi - 04 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Amagami-San Chi No Enmusubi - 04 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 和機器人啪啪啪能算在經驗人數裡嗎?? [年齡限制版] - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 和機器人啪啪啪能算在經驗人數裡嗎?? [年齡限制版] - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 和機器人啪啪啪能算在經驗人數裡嗎?? [年齡限制版] - 02 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 和機器人啪啪啪能算在經驗人數裡嗎?? [年齡限制版] - 02 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Nekomoe kissaten][Megami no Cafe Terrace][06-09][1080p][JPTC]/[Nekomoe kissaten][Megami no Cafe Terrace][06][1080p][JPTC].mp4", + "filename": "[Nekomoe kissaten][Megami no Cafe Terrace][06][1080p][JPTC].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Nekomoe Kissaten][Megami No Cafe Terrace][06][1080P][Jptc]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Nekomoe Kissaten][Megami No Cafe Terrace][06][1080P][Jptc]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Nekomoe kissaten][Megami no Cafe Terrace][06-09][1080p][JPTC]/[Nekomoe kissaten][Megami no Cafe Terrace][07][1080p][JPTC].mp4", + "filename": "[Nekomoe kissaten][Megami no Cafe Terrace][07][1080p][JPTC].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Nekomoe Kissaten][Megami No Cafe Terrace][07][1080P][Jptc]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Nekomoe Kissaten][Megami No Cafe Terrace][07][1080P][Jptc]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Nekomoe kissaten][Megami no Cafe Terrace][06-09][1080p][JPTC]/[Nekomoe kissaten][Megami no Cafe Terrace][09][1080p][JPTC].mp4", + "filename": "[Nekomoe kissaten][Megami no Cafe Terrace][09][1080p][JPTC].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Nekomoe Kissaten][Megami No Cafe Terrace][09][1080P][Jptc]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Nekomoe Kissaten][Megami No Cafe Terrace][09][1080P][Jptc]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Nekomoe kissaten][Megami no Cafe Terrace][06-09][1080p][JPTC]/[Nekomoe kissaten][Megami no Cafe Terrace][08][1080p][JPTC].mp4", + "filename": "[Nekomoe kissaten][Megami no Cafe Terrace][08][1080p][JPTC].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Nekomoe Kissaten][Megami No Cafe Terrace][08][1080P][Jptc]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Nekomoe Kissaten][Megami No Cafe Terrace][08][1080P][Jptc]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 盾之勇者成名錄 Season 4 - 07 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 盾之勇者成名錄 Season 4 - 07 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 盾之勇者成名錄 Season 4 - 07 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 盾之勇者成名錄 Season 4 - 07 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Nekomoe kissaten][Watanare][01][1080p][JPTC].mp4", + "filename": "[Nekomoe kissaten][Watanare][01][1080p][JPTC].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Nekomoe Kissaten][Watanare][01][1080P][Jptc]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Nekomoe Kissaten][Watanare][01][1080P][Jptc]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Eternal][Modaete yo, Adam-kun][03.5][GB][720P][Onair].mp4", + "filename": "[Eternal][Modaete yo, Adam-kun][03.5][GB][720P][Onair].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Eternal][Modaete Yo, Adam-Kun][03 5][Gb][720P][Onair]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Eternal][Modaete Yo, Adam-Kun][03 5][Gb][720P][Onair]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] Re:Monster - 11 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] Re:Monster - 11 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] Re:Monster - 11 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] Re:Monster - 11 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Bastard.Heavy.Metal.Dark.Fantasy.S01.JAPANESE.1080p.NF.WEBRip.DDP2.0.x264-E.N.D[rartv]/Bastard.Heavy.Metal.Dark.Fantasy.S01E22.Conclusion.1080p.NF.WEB-DL.DUAL.DDP2.0.H.264-E.N.D.mkv", + "filename": "Bastard.Heavy.Metal.Dark.Fantasy.S01E22.Conclusion.1080p.NF.WEB-DL.DUAL.DDP2.0.H.264-E.N.D.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Bastard Heavy Metal Dark Fantasy S01E22 Conclusion 1080P Nf Web-Dl Dual Ddp2 0 H 264-E N D", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Bastard Heavy Metal Dark Fantasy S01E22 Conclusion 1080P Nf Web-Dl Dual Ddp2 0 H 264-E N D", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Bastard.Heavy.Metal.Dark.Fantasy.S01.JAPANESE.1080p.NF.WEBRip.DDP2.0.x264-E.N.D[rartv]/Bastard.Heavy.Metal.Dark.Fantasy.S01E07.The.Demon.Beast.1080p.NF.WEB-DL.DUAL.DDP2.0.H.264-E.N.D.mkv", + "filename": "Bastard.Heavy.Metal.Dark.Fantasy.S01E07.The.Demon.Beast.1080p.NF.WEB-DL.DUAL.DDP2.0.H.264-E.N.D.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Bastard Heavy Metal Dark Fantasy S01E07 The Demon Beast 1080P Nf Web-Dl Dual Ddp2 0 H 264-E N D", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Bastard Heavy Metal Dark Fantasy S01E07 The Demon Beast 1080P Nf Web-Dl Dual Ddp2 0 H 264-E N D", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Bastard.Heavy.Metal.Dark.Fantasy.S01.JAPANESE.1080p.NF.WEBRip.DDP2.0.x264-E.N.D[rartv]/Bastard.Heavy.Metal.Dark.Fantasy.S01E05.Showdown.1080p.NF.WEB-DL.DUAL.DDP2.0.H.264-E.N.D.mkv", + "filename": "Bastard.Heavy.Metal.Dark.Fantasy.S01E05.Showdown.1080p.NF.WEB-DL.DUAL.DDP2.0.H.264-E.N.D.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Bastard Heavy Metal Dark Fantasy S01E05 Showdown 1080P Nf Web-Dl Dual Ddp2 0 H 264-E N D", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Bastard Heavy Metal Dark Fantasy S01E05 Showdown 1080P Nf Web-Dl Dual Ddp2 0 H 264-E N D", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Bastard.Heavy.Metal.Dark.Fantasy.S01.JAPANESE.1080p.NF.WEBRip.DDP2.0.x264-E.N.D[rartv]/Bastard.Heavy.Metal.Dark.Fantasy.S01E17.Ring.1080p.NF.WEB-DL.DUAL.DDP2.0.H.264-E.N.D.mkv", + "filename": "Bastard.Heavy.Metal.Dark.Fantasy.S01E17.Ring.1080p.NF.WEB-DL.DUAL.DDP2.0.H.264-E.N.D.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Bastard Heavy Metal Dark Fantasy S01E17 Ring 1080P Nf Web-Dl Dual Ddp2 0 H 264-E N D", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Bastard Heavy Metal Dark Fantasy S01E17 Ring 1080P Nf Web-Dl Dual Ddp2 0 H 264-E N D", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Bastard.Heavy.Metal.Dark.Fantasy.S01.JAPANESE.1080p.NF.WEBRip.DDP2.0.x264-E.N.D[rartv]/Bastard.Heavy.Metal.Dark.Fantasy.S01E06.Destiny.1080p.NF.WEB-DL.DUAL.DDP2.0.H.264-E.N.D.mkv", + "filename": "Bastard.Heavy.Metal.Dark.Fantasy.S01E06.Destiny.1080p.NF.WEB-DL.DUAL.DDP2.0.H.264-E.N.D.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Bastard Heavy Metal Dark Fantasy S01E06 Destiny 1080P Nf Web-Dl Dual Ddp2 0 H 264-E N D", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Bastard Heavy Metal Dark Fantasy S01E06 Destiny 1080P Nf Web-Dl Dual Ddp2 0 H 264-E N D", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Bastard.Heavy.Metal.Dark.Fantasy.S01.JAPANESE.1080p.NF.WEBRip.DDP2.0.x264-E.N.D[rartv]/Bastard.Heavy.Metal.Dark.Fantasy.S01E19.Empress.of.Thunder.1080p.NF.WEB-DL.DUAL.DDP2.0.H.264-E.N.D.mkv", + "filename": "Bastard.Heavy.Metal.Dark.Fantasy.S01E19.Empress.of.Thunder.1080p.NF.WEB-DL.DUAL.DDP2.0.H.264-E.N.D.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Bastard Heavy Metal Dark Fantasy S01E19 Empress Of Thunder 1080P Nf Web-Dl Dual Ddp2 0 H 264-E N D", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Bastard Heavy Metal Dark Fantasy S01E19 Empress Of Thunder 1080P Nf Web-Dl Dual Ddp2 0 H 264-E N D", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Bastard.Heavy.Metal.Dark.Fantasy.S01.JAPANESE.1080p.NF.WEBRip.DDP2.0.x264-E.N.D[rartv]/Bastard.Heavy.Metal.Dark.Fantasy.S01E23.Annihilation.1080p.NF.WEB-DL.DUAL.DDP2.0.H.264-E.N.D.mkv", + "filename": "Bastard.Heavy.Metal.Dark.Fantasy.S01E23.Annihilation.1080p.NF.WEB-DL.DUAL.DDP2.0.H.264-E.N.D.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Bastard Heavy Metal Dark Fantasy S01E23 Annihilation 1080P Nf Web-Dl Dual Ddp2 0 H 264-E N D", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Bastard Heavy Metal Dark Fantasy S01E23 Annihilation 1080P Nf Web-Dl Dual Ddp2 0 H 264-E N D", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Bastard.Heavy.Metal.Dark.Fantasy.S01.JAPANESE.1080p.NF.WEBRip.DDP2.0.x264-E.N.D[rartv]/Bastard.Heavy.Metal.Dark.Fantasy.S01E08.The.Progenitor.1080p.NF.WEB-DL.DUAL.DDP2.0.H.264-E.N.D.mkv", + "filename": "Bastard.Heavy.Metal.Dark.Fantasy.S01E08.The.Progenitor.1080p.NF.WEB-DL.DUAL.DDP2.0.H.264-E.N.D.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Bastard Heavy Metal Dark Fantasy S01E08 The Progenitor 1080P Nf Web-Dl Dual Ddp2 0 H 264-E N D", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Bastard Heavy Metal Dark Fantasy S01E08 The Progenitor 1080P Nf Web-Dl Dual Ddp2 0 H 264-E N D", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Bastard.Heavy.Metal.Dark.Fantasy.S01.JAPANESE.1080p.NF.WEBRip.DDP2.0.x264-E.N.D[rartv]/Bastard.Heavy.Metal.Dark.Fantasy.S01E21.Fierce.Battle.1080p.NF.WEB-DL.DUAL.DDP2.0.H.264-E.N.D.mkv", + "filename": "Bastard.Heavy.Metal.Dark.Fantasy.S01E21.Fierce.Battle.1080p.NF.WEB-DL.DUAL.DDP2.0.H.264-E.N.D.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Bastard Heavy Metal Dark Fantasy S01E21 Fierce Battle 1080P Nf Web-Dl Dual Ddp2 0 H 264-E N D", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Bastard Heavy Metal Dark Fantasy S01E21 Fierce Battle 1080P Nf Web-Dl Dual Ddp2 0 H 264-E N D", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Bastard.Heavy.Metal.Dark.Fantasy.S01.JAPANESE.1080p.NF.WEBRip.DDP2.0.x264-E.N.D[rartv]/Bastard.Heavy.Metal.Dark.Fantasy.S01E15.Triumphant.Return.1080p.NF.WEB-DL.DUAL.DDP2.0.H.264-E.N.D.mkv", + "filename": "Bastard.Heavy.Metal.Dark.Fantasy.S01E15.Triumphant.Return.1080p.NF.WEB-DL.DUAL.DDP2.0.H.264-E.N.D.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Bastard Heavy Metal Dark Fantasy S01E15 Triumphant Return 1080P Nf Web-Dl Dual Ddp2 0 H 264-E N D", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Bastard Heavy Metal Dark Fantasy S01E15 Triumphant Return 1080P Nf Web-Dl Dual Ddp2 0 H 264-E N D", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Bastard.Heavy.Metal.Dark.Fantasy.S01.JAPANESE.1080p.NF.WEBRip.DDP2.0.x264-E.N.D[rartv]/Bastard.Heavy.Metal.Dark.Fantasy.S01E11.Prophecy.1080p.NF.WEB-DL.DUAL.DDP2.0.H.264-E.N.D.mkv", + "filename": "Bastard.Heavy.Metal.Dark.Fantasy.S01E11.Prophecy.1080p.NF.WEB-DL.DUAL.DDP2.0.H.264-E.N.D.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Bastard Heavy Metal Dark Fantasy S01E11 Prophecy 1080P Nf Web-Dl Dual Ddp2 0 H 264-E N D", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Bastard Heavy Metal Dark Fantasy S01E11 Prophecy 1080P Nf Web-Dl Dual Ddp2 0 H 264-E N D", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Bastard.Heavy.Metal.Dark.Fantasy.S01.JAPANESE.1080p.NF.WEBRip.DDP2.0.x264-E.N.D[rartv]/Bastard.Heavy.Metal.Dark.Fantasy.S01E09.Blue.Nail.1080p.NF.WEB-DL.DUAL.DDP2.0.H.264-E.N.D.mkv", + "filename": "Bastard.Heavy.Metal.Dark.Fantasy.S01E09.Blue.Nail.1080p.NF.WEB-DL.DUAL.DDP2.0.H.264-E.N.D.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Bastard Heavy Metal Dark Fantasy S01E09 Blue Nail 1080P Nf Web-Dl Dual Ddp2 0 H 264-E N D", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Bastard Heavy Metal Dark Fantasy S01E09 Blue Nail 1080P Nf Web-Dl Dual Ddp2 0 H 264-E N D", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Bastard.Heavy.Metal.Dark.Fantasy.S01.JAPANESE.1080p.NF.WEBRip.DDP2.0.x264-E.N.D[rartv]/Bastard.Heavy.Metal.Dark.Fantasy.S01E18.Secrets.of.the.Sword.1080p.NF.WEB-DL.DUAL.DDP2.0.H.264-E.N.D.mkv", + "filename": "Bastard.Heavy.Metal.Dark.Fantasy.S01E18.Secrets.of.the.Sword.1080p.NF.WEB-DL.DUAL.DDP2.0.H.264-E.N.D.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Bastard Heavy Metal Dark Fantasy S01E18 Secrets Of The Sword 1080P Nf Web-Dl Dual Ddp2 0 H 264-E N D", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Bastard Heavy Metal Dark Fantasy S01E18 Secrets Of The Sword 1080P Nf Web-Dl Dual Ddp2 0 H 264-E N D", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Bastard.Heavy.Metal.Dark.Fantasy.S01.JAPANESE.1080p.NF.WEBRip.DDP2.0.x264-E.N.D[rartv]/Bastard.Heavy.Metal.Dark.Fantasy.S01E03.Abduction.1080p.NF.WEB-DL.DUAL.DDP2.0.H.264-E.N.D.mkv", + "filename": "Bastard.Heavy.Metal.Dark.Fantasy.S01E03.Abduction.1080p.NF.WEB-DL.DUAL.DDP2.0.H.264-E.N.D.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Bastard Heavy Metal Dark Fantasy S01E03 Abduction 1080P Nf Web-Dl Dual Ddp2 0 H 264-E N D", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Bastard Heavy Metal Dark Fantasy S01E03 Abduction 1080P Nf Web-Dl Dual Ddp2 0 H 264-E N D", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Bastard.Heavy.Metal.Dark.Fantasy.S01.JAPANESE.1080p.NF.WEBRip.DDP2.0.x264-E.N.D[rartv]/Bastard.Heavy.Metal.Dark.Fantasy.S01E01.The.Arrival.1080p.NF.WEB-DL.DUAL.DDP2.0.H.264-E.N.D.mkv", + "filename": "Bastard.Heavy.Metal.Dark.Fantasy.S01E01.The.Arrival.1080p.NF.WEB-DL.DUAL.DDP2.0.H.264-E.N.D.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Bastard Heavy Metal Dark Fantasy S01E01 The Arrival 1080P Nf Web-Dl Dual Ddp2 0 H 264-E N D", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Bastard Heavy Metal Dark Fantasy S01E01 The Arrival 1080P Nf Web-Dl Dual Ddp2 0 H 264-E N D", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Bastard.Heavy.Metal.Dark.Fantasy.S01.JAPANESE.1080p.NF.WEBRip.DDP2.0.x264-E.N.D[rartv]/Bastard.Heavy.Metal.Dark.Fantasy.S01E20.Tyranny.1080p.NF.WEB-DL.DUAL.DDP2.0.H.264-E.N.D.mkv", + "filename": "Bastard.Heavy.Metal.Dark.Fantasy.S01E20.Tyranny.1080p.NF.WEB-DL.DUAL.DDP2.0.H.264-E.N.D.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Bastard Heavy Metal Dark Fantasy S01E20 Tyranny 1080P Nf Web-Dl Dual Ddp2 0 H 264-E N D", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Bastard Heavy Metal Dark Fantasy S01E20 Tyranny 1080P Nf Web-Dl Dual Ddp2 0 H 264-E N D", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Bastard.Heavy.Metal.Dark.Fantasy.S01.JAPANESE.1080p.NF.WEBRip.DDP2.0.x264-E.N.D[rartv]/Bastard.Heavy.Metal.Dark.Fantasy.S01E10.The.Goddess.of.Thunder.1080p.NF.WEB-DL.DUAL.DDP2.0.H.264-E.N.D.mkv", + "filename": "Bastard.Heavy.Metal.Dark.Fantasy.S01E10.The.Goddess.of.Thunder.1080p.NF.WEB-DL.DUAL.DDP2.0.H.264-E.N.D.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Bastard Heavy Metal Dark Fantasy S01E10 The Goddess Of Thunder 1080P Nf Web-Dl Dual Ddp2 0 H 264-E N D", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Bastard Heavy Metal Dark Fantasy S01E10 The Goddess Of Thunder 1080P Nf Web-Dl Dual Ddp2 0 H 264-E N D", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Bastard.Heavy.Metal.Dark.Fantasy.S01.JAPANESE.1080p.NF.WEBRip.DDP2.0.x264-E.N.D[rartv]/Bastard.Heavy.Metal.Dark.Fantasy.S01E24.End.1080p.NF.WEB-DL.DUAL.DDP2.0.H.264-E.N.D.mkv", + "filename": "Bastard.Heavy.Metal.Dark.Fantasy.S01E24.End.1080p.NF.WEB-DL.DUAL.DDP2.0.H.264-E.N.D.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Bastard Heavy Metal Dark Fantasy S01E24 End 1080P Nf Web-Dl Dual Ddp2 0 H 264-E N D", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Bastard Heavy Metal Dark Fantasy S01E24 End 1080P Nf Web-Dl Dual Ddp2 0 H 264-E N D", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Bastard.Heavy.Metal.Dark.Fantasy.S01.JAPANESE.1080p.NF.WEBRip.DDP2.0.x264-E.N.D[rartv]/Bastard.Heavy.Metal.Dark.Fantasy.S01E16.Incantation.1080p.NF.WEB-DL.DUAL.DDP2.0.H.264-E.N.D.mkv", + "filename": "Bastard.Heavy.Metal.Dark.Fantasy.S01E16.Incantation.1080p.NF.WEB-DL.DUAL.DDP2.0.H.264-E.N.D.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Bastard Heavy Metal Dark Fantasy S01E16 Incantation 1080P Nf Web-Dl Dual Ddp2 0 H 264-E N D", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Bastard Heavy Metal Dark Fantasy S01E16 Incantation 1080P Nf Web-Dl Dual Ddp2 0 H 264-E N D", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Bastard.Heavy.Metal.Dark.Fantasy.S01.JAPANESE.1080p.NF.WEBRip.DDP2.0.x264-E.N.D[rartv]/Bastard.Heavy.Metal.Dark.Fantasy.S01E12.Life.or.Death.1080p.NF.WEB-DL.DUAL.DDP2.0.H.264-E.N.D.mkv", + "filename": "Bastard.Heavy.Metal.Dark.Fantasy.S01E12.Life.or.Death.1080p.NF.WEB-DL.DUAL.DDP2.0.H.264-E.N.D.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Bastard Heavy Metal Dark Fantasy S01E12 Life Or Death 1080P Nf Web-Dl Dual Ddp2 0 H 264-E N D", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Bastard Heavy Metal Dark Fantasy S01E12 Life Or Death 1080P Nf Web-Dl Dual Ddp2 0 H 264-E N D", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Bastard.Heavy.Metal.Dark.Fantasy.S01.JAPANESE.1080p.NF.WEBRip.DDP2.0.x264-E.N.D[rartv]/Bastard.Heavy.Metal.Dark.Fantasy.S01E14.Moved.to.Tears.1080p.NF.WEB-DL.DUAL.DDP2.0.H.264-E.N.D.mkv", + "filename": "Bastard.Heavy.Metal.Dark.Fantasy.S01E14.Moved.to.Tears.1080p.NF.WEB-DL.DUAL.DDP2.0.H.264-E.N.D.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Bastard Heavy Metal Dark Fantasy S01E14 Moved To Tears 1080P Nf Web-Dl Dual Ddp2 0 H 264-E N D", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Bastard Heavy Metal Dark Fantasy S01E14 Moved To Tears 1080P Nf Web-Dl Dual Ddp2 0 H 264-E N D", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Bastard.Heavy.Metal.Dark.Fantasy.S01.JAPANESE.1080p.NF.WEBRip.DDP2.0.x264-E.N.D[rartv]/Bastard.Heavy.Metal.Dark.Fantasy.S01E13.Wavering.1080p.NF.WEB-DL.DUAL.DDP2.0.H.264-E.N.D.mkv", + "filename": "Bastard.Heavy.Metal.Dark.Fantasy.S01E13.Wavering.1080p.NF.WEB-DL.DUAL.DDP2.0.H.264-E.N.D.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Bastard Heavy Metal Dark Fantasy S01E13 Wavering 1080P Nf Web-Dl Dual Ddp2 0 H 264-E N D", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Bastard Heavy Metal Dark Fantasy S01E13 Wavering 1080P Nf Web-Dl Dual Ddp2 0 H 264-E N D", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Bastard.Heavy.Metal.Dark.Fantasy.S01.JAPANESE.1080p.NF.WEBRip.DDP2.0.x264-E.N.D[rartv]/Bastard.Heavy.Metal.Dark.Fantasy.S01E04.Invasion.1080p.NF.WEB-DL.DUAL.DDP2.0.H.264-E.N.D.mkv", + "filename": "Bastard.Heavy.Metal.Dark.Fantasy.S01E04.Invasion.1080p.NF.WEB-DL.DUAL.DDP2.0.H.264-E.N.D.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Bastard Heavy Metal Dark Fantasy S01E04 Invasion 1080P Nf Web-Dl Dual Ddp2 0 H 264-E N D", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Bastard Heavy Metal Dark Fantasy S01E04 Invasion 1080P Nf Web-Dl Dual Ddp2 0 H 264-E N D", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/Bastard.Heavy.Metal.Dark.Fantasy.S01.JAPANESE.1080p.NF.WEBRip.DDP2.0.x264-E.N.D[rartv]/Bastard.Heavy.Metal.Dark.Fantasy.S01E02.Rampage.1080p.NF.WEB-DL.DUAL.DDP2.0.H.264-E.N.D.mkv", + "filename": "Bastard.Heavy.Metal.Dark.Fantasy.S01E02.Rampage.1080p.NF.WEB-DL.DUAL.DDP2.0.H.264-E.N.D.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "Bastard Heavy Metal Dark Fantasy S01E02 Rampage 1080P Nf Web-Dl Dual Ddp2 0 H 264-E N D", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "Bastard Heavy Metal Dark Fantasy S01E02 Rampage 1080P Nf Web-Dl Dual Ddp2 0 H 264-E N D", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 我與尼特女忍者的莫名同居生活 - 06 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 我與尼特女忍者的莫名同居生活 - 06 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 我與尼特女忍者的莫名同居生活 - 06 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 我與尼特女忍者的莫名同居生活 - 06 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Eternal][Modaete yo, Adam-kun][05][GB][720P][Uncensored].mp4", + "filename": "[Eternal][Modaete yo, Adam-kun][05][GB][720P][Uncensored].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Eternal][Modaete Yo, Adam-Kun][05][Gb][720P][Uncensored]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Eternal][Modaete Yo, Adam-Kun][05][Gb][720P][Uncensored]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 身為暗殺者的我明顯比勇者還強 - 08 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 身為暗殺者的我明顯比勇者還強 - 08 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 身為暗殺者的我明顯比勇者還強 - 08 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 身為暗殺者的我明顯比勇者還強 - 08 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 秒殺外掛太強了,異世界的傢伙們根本就不是對手。 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 秒殺外掛太強了,異世界的傢伙們根本就不是對手。 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 秒殺外掛太強了,異世界的傢伙們根本就不是對手。 - 01 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 秒殺外掛太強了,異世界的傢伙們根本就不是對手。 - 01 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Izure Saikyou no Renkinjutsushi - 12 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "filename": "[LoliHouse] Izure Saikyou no Renkinjutsushi - 12 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Izure Saikyou No Renkinjutsushi - 12 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Izure Saikyou No Renkinjutsushi - 12 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 我內心的糟糕念頭 第二季 - 13 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 我內心的糟糕念頭 第二季 - 13 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 我內心的糟糕念頭 第二季 - 13 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 我內心的糟糕念頭 第二季 - 13 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Nekomoe kissaten][Dungeon Meshi][14][1080p][JPTC].mp4", + "filename": "[Nekomoe kissaten][Dungeon Meshi][14][1080p][JPTC].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Nekomoe Kissaten][Dungeon Meshi][14][1080P][Jptc]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Nekomoe Kissaten][Dungeon Meshi][14][1080P][Jptc]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 我獨自升級 第二季 -起於闇影- - 20 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 我獨自升級 第二季 -起於闇影- - 20 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 我獨自升級 第二季 -起於闇影- - 20 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 我獨自升級 第二季 -起於闇影- - 20 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 膽大黨 - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 膽大黨 - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 膽大黨 - 02 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 膽大黨 - 02 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 最近的偵探真沒用 - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 最近的偵探真沒用 - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 最近的偵探真沒用 - 02 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 最近的偵探真沒用 - 02 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 我獨自升級 - 07.5 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 我獨自升級 - 07.5 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 我獨自升級 - 07 5 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 我獨自升級 - 07 5 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "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", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 歲月流逝飯菜依舊美味 - 05 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 歲月流逝飯菜依舊美味 - 05 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[HYSUB]Sono Bisque Doll wa Koi wo Suru[19][BIG5_MP4][1920X1080].mp4", + "filename": "[HYSUB]Sono Bisque Doll wa Koi wo Suru[19][BIG5_MP4][1920X1080].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Hysub]Sono Bisque Doll Wa Koi Wo Suru[19][Big5 Mp4][1920X1080]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Hysub]Sono Bisque Doll Wa Koi Wo Suru[19][Big5 Mp4][1920X1080]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Tensei Kizoku, Kantei Skill de Nariagaru - 02 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "filename": "[LoliHouse] Tensei Kizoku, Kantei Skill de Nariagaru - 02 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Tensei Kizoku, Kantei Skill De Nariagaru - 02 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Tensei Kizoku, Kantei Skill De Nariagaru - 02 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Nekomoe kissaten][Tower of God S2][09][1080p][CHT].mp4", + "filename": "[Nekomoe kissaten][Tower of God S2][09][1080p][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Nekomoe Kissaten][Tower Of God S2][09][1080P][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Nekomoe Kissaten][Tower Of God S2][09][1080P][Cht]", + "needs_review": true + }, + { + "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", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 聽說你們要結婚!? - 05 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 聽說你們要結婚!? - 05 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "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", + "title": "[Ani] 我獨自升級 - 07 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 我獨自升級 - 07 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[BeanSub&FZSD][BLEACH_Sennen_Kessen-hen][31][GB][1080P][x264_AAC].mp4", + "filename": "[BeanSub&FZSD][BLEACH_Sennen_Kessen-hen][31][GB][1080P][x264_AAC].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Beansub&Fzsd][Bleach Sennen Kessen-Hen][31][Gb][1080P][X264 Aac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Beansub&Fzsd][Bleach Sennen Kessen-Hen][31][Gb][1080P][X264 Aac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 怪獸 8 號 第二季 - 15 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 怪獸 8 號 第二季 - 15 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 怪獸 8 號 第二季 - 15 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 怪獸 8 號 第二季 - 15 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 香格里拉・開拓異境~糞作獵手挑戰神作~ 第二季 - 24 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 香格里拉・開拓異境~糞作獵手挑戰神作~ 第二季 - 24 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 香格里拉・開拓異境~糞作獵手挑戰神作~ 第二季 - 24 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 香格里拉・開拓異境~糞作獵手挑戰神作~ 第二季 - 24 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 香格里拉・開拓異境~糞作獵手挑戰神作~ - 15 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 香格里拉・開拓異境~糞作獵手挑戰神作~ - 15 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 香格里拉・開拓異境~糞作獵手挑戰神作~ - 15 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 香格里拉・開拓異境~糞作獵手挑戰神作~ - 15 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Skymoon-Raws] Shangri-La Frontier 2nd Season - 05 [ViuTV][WEB-DL][CHT][SRT][1080p][AVC AAC].mkv", + "filename": "[Skymoon-Raws] Shangri-La Frontier 2nd Season - 05 [ViuTV][WEB-DL][CHT][SRT][1080p][AVC AAC].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Skymoon-Raws] Shangri-La Frontier 2Nd Season - 05 [Viutv][Web-Dl][Cht][Srt][1080P][Avc Aac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Skymoon-Raws] Shangri-La Frontier 2Nd Season - 05 [Viutv][Web-Dl][Cht][Srt][1080P][Avc Aac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Nekomoe kissaten][Dungeon Meshi][20][1080p][JPTC].mp4", + "filename": "[Nekomoe kissaten][Dungeon Meshi][20][1080p][JPTC].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Nekomoe Kissaten][Dungeon Meshi][20][1080P][Jptc]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Nekomoe Kissaten][Dungeon Meshi][20][1080P][Jptc]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Shin Samurai-den YAIBA - 10 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "filename": "[LoliHouse] Shin Samurai-den YAIBA - 10 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Shin Samurai-Den Yaiba - 10 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Shin Samurai-Den Yaiba - 10 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Fate strange Fake - 06 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "filename": "[LoliHouse] Fate strange Fake - 06 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Fate Strange Fake - 06 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Fate Strange Fake - 06 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 永遠的黃昏 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 永遠的黃昏 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 永遠的黃昏 - 01 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 永遠的黃昏 - 01 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 忍者與殺手的兩人生活 - 11 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 忍者與殺手的兩人生活 - 11 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 忍者與殺手的兩人生活 - 11 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 忍者與殺手的兩人生活 - 11 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 擁有超常技能的異世界流浪美食家 S2 - 21 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 擁有超常技能的異世界流浪美食家 S2 - 21 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 擁有超常技能的異世界流浪美食家 S2 - 21 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 擁有超常技能的異世界流浪美食家 S2 - 21 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 瞬間治癒卻被當成廢物踢出隊伍的天才治療師,改當無照治療師快樂過活 - 10 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 瞬間治癒卻被當成廢物踢出隊伍的天才治療師,改當無照治療師快樂過活 - 10 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 瞬間治癒卻被當成廢物踢出隊伍的天才治療師,改當無照治療師快樂過活 - 10 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 瞬間治癒卻被當成廢物踢出隊伍的天才治療師,改當無照治療師快樂過活 - 10 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 貫徹輔助魔法支援弱小隊友的宮廷魔法師,慘遭驅逐後目標成為最強冒險者 - 03 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 貫徹輔助魔法支援弱小隊友的宮廷魔法師,慘遭驅逐後目標成為最強冒險者 - 03 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 貫徹輔助魔法支援弱小隊友的宮廷魔法師,慘遭驅逐後目標成為最強冒險者 - 03 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 貫徹輔助魔法支援弱小隊友的宮廷魔法師,慘遭驅逐後目標成為最強冒險者 - 03 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] NUKITASHI 住在拔作島上的我該如何是好? [年齡限制版] - 07 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] NUKITASHI 住在拔作島上的我該如何是好? [年齡限制版] - 07 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] Nukitashi 住在拔作島上的我該如何是好? [年齡限制版] - 07 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] Nukitashi 住在拔作島上的我該如何是好? [年齡限制版] - 07 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Nekomoe kissaten&LoliHouse] Ishura - 07 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "filename": "[Nekomoe kissaten&LoliHouse] Ishura - 07 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Nekomoe Kissaten&Lolihouse] Ishura - 07 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Nekomoe Kissaten&Lolihouse] Ishura - 07 [Webrip 1080P Hevc-10Bit Aac Assx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 魔都精兵的奴隸 第二季 - 03 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 魔都精兵的奴隸 第二季 - 03 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 魔都精兵的奴隸 第二季 - 03 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 魔都精兵的奴隸 第二季 - 03 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[orion origin] Wind Breaker [01] [1080p] [H265 AAC] [CHT&JPN].mp4", + "filename": "[orion origin] Wind Breaker [01] [1080p] [H265 AAC] [CHT&JPN].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Orion Origin] Wind Breaker [01] [1080P] [H265 Aac] [Cht&Jpn]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Orion Origin] Wind Breaker [01] [1080P] [H265 Aac] [Cht&Jpn]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 記憶縫線 YOUR FORMA - 07 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 記憶縫線 YOUR FORMA - 07 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 記憶縫線 Your Forma - 07 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 記憶縫線 Your Forma - 07 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Lilith-Raws] Kantei Skill - 10 [Baha][WebDL 1080p AVC AAC][CHT].mp4", + "filename": "[Lilith-Raws] Kantei Skill - 10 [Baha][WebDL 1080p AVC AAC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lilith-Raws] Kantei Skill - 10 [Baha][Webdl 1080P Avc Aac][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lilith-Raws] Kantei Skill - 10 [Baha][Webdl 1080P Avc Aac][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 勇氣爆發 BANG BRAVERN - 08 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 勇氣爆發 BANG BRAVERN - 08 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 勇氣爆發 Bang Bravern - 08 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 勇氣爆發 Bang Bravern - 08 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Lolihouse] Ghost in the Shell SAC_2045 Season2 [WebRip 1080p HEVC-10bit AAC EAC3]/[Lolihouse] Ghost in the Shell SAC_2045 Season2 - 08 [WebRip 1080p HEVC-10bit AAC EAC3 SRTx4].mkv", + "filename": "[Lolihouse] Ghost in the Shell SAC_2045 Season2 - 08 [WebRip 1080p HEVC-10bit AAC EAC3 SRTx4].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Ghost In The Shell Sac 2045 Season2 - 08 [Webrip 1080P Hevc-10Bit Aac Eac3 Srtx4]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Ghost In The Shell Sac 2045 Season2 - 08 [Webrip 1080P Hevc-10Bit Aac Eac3 Srtx4]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Lolihouse] Ghost in the Shell SAC_2045 Season2 [WebRip 1080p HEVC-10bit AAC EAC3]/[Lolihouse] Ghost in the Shell SAC_2045 Season2 - 04 [WebRip 1080p HEVC-10bit AAC EAC3 SRTx4].mkv", + "filename": "[Lolihouse] Ghost in the Shell SAC_2045 Season2 - 04 [WebRip 1080p HEVC-10bit AAC EAC3 SRTx4].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Ghost In The Shell Sac 2045 Season2 - 04 [Webrip 1080P Hevc-10Bit Aac Eac3 Srtx4]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Ghost In The Shell Sac 2045 Season2 - 04 [Webrip 1080P Hevc-10Bit Aac Eac3 Srtx4]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Lolihouse] Ghost in the Shell SAC_2045 Season2 [WebRip 1080p HEVC-10bit AAC EAC3]/[Lolihouse] Ghost in the Shell SAC_2045 Season2 - 01 [WebRip 1080p HEVC-10bit AAC EAC3 SRTx4].mkv", + "filename": "[Lolihouse] Ghost in the Shell SAC_2045 Season2 - 01 [WebRip 1080p HEVC-10bit AAC EAC3 SRTx4].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Ghost In The Shell Sac 2045 Season2 - 01 [Webrip 1080P Hevc-10Bit Aac Eac3 Srtx4]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Ghost In The Shell Sac 2045 Season2 - 01 [Webrip 1080P Hevc-10Bit Aac Eac3 Srtx4]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Lolihouse] Ghost in the Shell SAC_2045 Season2 [WebRip 1080p HEVC-10bit AAC EAC3]/[Lolihouse] Ghost in the Shell SAC_2045 Season2 - 05 [WebRip 1080p HEVC-10bit AAC EAC3 SRTx4].mkv", + "filename": "[Lolihouse] Ghost in the Shell SAC_2045 Season2 - 05 [WebRip 1080p HEVC-10bit AAC EAC3 SRTx4].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Ghost In The Shell Sac 2045 Season2 - 05 [Webrip 1080P Hevc-10Bit Aac Eac3 Srtx4]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Ghost In The Shell Sac 2045 Season2 - 05 [Webrip 1080P Hevc-10Bit Aac Eac3 Srtx4]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Lolihouse] Ghost in the Shell SAC_2045 Season2 [WebRip 1080p HEVC-10bit AAC EAC3]/[Lolihouse] Ghost in the Shell SAC_2045 Season2 - 12 [WebRip 1080p HEVC-10bit AAC EAC3 SRTx4].mkv", + "filename": "[Lolihouse] Ghost in the Shell SAC_2045 Season2 - 12 [WebRip 1080p HEVC-10bit AAC EAC3 SRTx4].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Ghost In The Shell Sac 2045 Season2 - 12 [Webrip 1080P Hevc-10Bit Aac Eac3 Srtx4]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Ghost In The Shell Sac 2045 Season2 - 12 [Webrip 1080P Hevc-10Bit Aac Eac3 Srtx4]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Lolihouse] Ghost in the Shell SAC_2045 Season2 [WebRip 1080p HEVC-10bit AAC EAC3]/[Lolihouse] Ghost in the Shell SAC_2045 Season2 - 09 [WebRip 1080p HEVC-10bit AAC EAC3 SRTx4].mkv", + "filename": "[Lolihouse] Ghost in the Shell SAC_2045 Season2 - 09 [WebRip 1080p HEVC-10bit AAC EAC3 SRTx4].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Ghost In The Shell Sac 2045 Season2 - 09 [Webrip 1080P Hevc-10Bit Aac Eac3 Srtx4]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Ghost In The Shell Sac 2045 Season2 - 09 [Webrip 1080P Hevc-10Bit Aac Eac3 Srtx4]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Lolihouse] Ghost in the Shell SAC_2045 Season2 [WebRip 1080p HEVC-10bit AAC EAC3]/[Lolihouse] Ghost in the Shell SAC_2045 Season2 - 03 [WebRip 1080p HEVC-10bit AAC EAC3 SRTx4].mkv", + "filename": "[Lolihouse] Ghost in the Shell SAC_2045 Season2 - 03 [WebRip 1080p HEVC-10bit AAC EAC3 SRTx4].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Ghost In The Shell Sac 2045 Season2 - 03 [Webrip 1080P Hevc-10Bit Aac Eac3 Srtx4]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Ghost In The Shell Sac 2045 Season2 - 03 [Webrip 1080P Hevc-10Bit Aac Eac3 Srtx4]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Lolihouse] Ghost in the Shell SAC_2045 Season2 [WebRip 1080p HEVC-10bit AAC EAC3]/[Lolihouse] Ghost in the Shell SAC_2045 Season2 - 07 [WebRip 1080p HEVC-10bit AAC EAC3 SRTx4].mkv", + "filename": "[Lolihouse] Ghost in the Shell SAC_2045 Season2 - 07 [WebRip 1080p HEVC-10bit AAC EAC3 SRTx4].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Ghost In The Shell Sac 2045 Season2 - 07 [Webrip 1080P Hevc-10Bit Aac Eac3 Srtx4]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Ghost In The Shell Sac 2045 Season2 - 07 [Webrip 1080P Hevc-10Bit Aac Eac3 Srtx4]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Lolihouse] Ghost in the Shell SAC_2045 Season2 [WebRip 1080p HEVC-10bit AAC EAC3]/[Lolihouse] Ghost in the Shell SAC_2045 Season2 - 10 [WebRip 1080p HEVC-10bit AAC EAC3 SRTx4].mkv", + "filename": "[Lolihouse] Ghost in the Shell SAC_2045 Season2 - 10 [WebRip 1080p HEVC-10bit AAC EAC3 SRTx4].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Ghost In The Shell Sac 2045 Season2 - 10 [Webrip 1080P Hevc-10Bit Aac Eac3 Srtx4]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Ghost In The Shell Sac 2045 Season2 - 10 [Webrip 1080P Hevc-10Bit Aac Eac3 Srtx4]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Lolihouse] Ghost in the Shell SAC_2045 Season2 [WebRip 1080p HEVC-10bit AAC EAC3]/[Lolihouse] Ghost in the Shell SAC_2045 Season2 - 11 [WebRip 1080p HEVC-10bit AAC EAC3 SRTx4].mkv", + "filename": "[Lolihouse] Ghost in the Shell SAC_2045 Season2 - 11 [WebRip 1080p HEVC-10bit AAC EAC3 SRTx4].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Ghost In The Shell Sac 2045 Season2 - 11 [Webrip 1080P Hevc-10Bit Aac Eac3 Srtx4]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Ghost In The Shell Sac 2045 Season2 - 11 [Webrip 1080P Hevc-10Bit Aac Eac3 Srtx4]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Lolihouse] Ghost in the Shell SAC_2045 Season2 [WebRip 1080p HEVC-10bit AAC EAC3]/[Lolihouse] Ghost in the Shell SAC_2045 Season2 - 02 [WebRip 1080p HEVC-10bit AAC EAC3 SRTx4].mkv", + "filename": "[Lolihouse] Ghost in the Shell SAC_2045 Season2 - 02 [WebRip 1080p HEVC-10bit AAC EAC3 SRTx4].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Ghost In The Shell Sac 2045 Season2 - 02 [Webrip 1080P Hevc-10Bit Aac Eac3 Srtx4]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Ghost In The Shell Sac 2045 Season2 - 02 [Webrip 1080P Hevc-10Bit Aac Eac3 Srtx4]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Lolihouse] Ghost in the Shell SAC_2045 Season2 [WebRip 1080p HEVC-10bit AAC EAC3]/[Lolihouse] Ghost in the Shell SAC_2045 Season2 - 06 [WebRip 1080p HEVC-10bit AAC EAC3 SRTx4].mkv", + "filename": "[Lolihouse] Ghost in the Shell SAC_2045 Season2 - 06 [WebRip 1080p HEVC-10bit AAC EAC3 SRTx4].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Ghost In The Shell Sac 2045 Season2 - 06 [Webrip 1080P Hevc-10Bit Aac Eac3 Srtx4]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Ghost In The Shell Sac 2045 Season2 - 06 [Webrip 1080P Hevc-10Bit Aac Eac3 Srtx4]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 無職轉生~到了異世界就拿出真本事 第二季 - 16 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 無職轉生~到了異世界就拿出真本事 第二季 - 16 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 無職轉生~到了異世界就拿出真本事 第二季 - 16 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 無職轉生~到了異世界就拿出真本事 第二季 - 16 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Dont be a simp] Ao no Hako - 25 [NF WebRip 1080p HEVC-10bit E-AC-3 Multi-Subs].mkv", + "filename": "[Dont be a simp] Ao no Hako - 25 [NF WebRip 1080p HEVC-10bit E-AC-3 Multi-Subs].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Dont Be A Simp] Ao No Hako - 25 [Nf Webrip 1080P Hevc-10Bit E-Ac-3 Multi-Subs]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Dont Be A Simp] Ao No Hako - 25 [Nf Webrip 1080P Hevc-10Bit E-Ac-3 Multi-Subs]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Nekomoe kissaten&LoliHouse] Dungeon Meshi - 04 [WebRip 1080p HEVC-10bit AAC EAC3 ASSx2].mkv", + "filename": "[Nekomoe kissaten&LoliHouse] Dungeon Meshi - 04 [WebRip 1080p HEVC-10bit AAC EAC3 ASSx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Nekomoe Kissaten&Lolihouse] Dungeon Meshi - 04 [Webrip 1080P Hevc-10Bit Aac Eac3 Assx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Nekomoe Kissaten&Lolihouse] Dungeon Meshi - 04 [Webrip 1080P Hevc-10Bit Aac Eac3 Assx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Eternal][Modaete yo, Adam-kun][05][GB][720P][Premium].mp4", + "filename": "[Eternal][Modaete yo, Adam-kun][05][GB][720P][Premium].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Eternal][Modaete Yo, Adam-Kun][05][Gb][720P][Premium]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Eternal][Modaete Yo, Adam-Kun][05][Gb][720P][Premium]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] LAZARUS 拉撒路 - 04 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] LAZARUS 拉撒路 - 04 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] Lazarus 拉撒路 - 04 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] Lazarus 拉撒路 - 04 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 香格里拉・開拓異境~糞作獵手挑戰神作~ 第二季 - 03 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 香格里拉・開拓異境~糞作獵手挑戰神作~ 第二季 - 03 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 香格里拉・開拓異境~糞作獵手挑戰神作~ 第二季 - 03 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 香格里拉・開拓異境~糞作獵手挑戰神作~ 第二季 - 03 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/The.First.Slam.Dunk.2022.2160p.BluRay.DoVi.x265.10bit.Atmos.TrueHD7.1-WiKi/The.First.Slam.Dunk.2022.2160p.BluRay.DoVi.x265.10bit.Atmos.TrueHD7.1-WiKi.mkv", + "filename": "The.First.Slam.Dunk.2022.2160p.BluRay.DoVi.x265.10bit.Atmos.TrueHD7.1-WiKi.mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "The First Slam Dunk 2022 2160P Bluray Dovi X265 10Bit Atmos Truehd7 1-Wiki", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "The First Slam Dunk 2022 2160P Bluray Dovi X265 10Bit Atmos Truehd7 1-Wiki", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 刀劍神域外傳 Gun Gale Online II - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 刀劍神域外傳 Gun Gale Online II - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 刀劍神域外傳 Gun Gale Online Ii - 01 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 刀劍神域外傳 Gun Gale Online Ii - 01 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Nekomoe kissaten][Ishura][02][1080p][JPSC].mp4", + "filename": "[Nekomoe kissaten][Ishura][02][1080p][JPSC].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Nekomoe Kissaten][Ishura][02][1080P][Jpsc]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Nekomoe Kissaten][Ishura][02][1080P][Jpsc]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Tensei Shitara Slime Datta Ken 3rd Season - 64 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "filename": "[LoliHouse] Tensei Shitara Slime Datta Ken 3rd Season - 64 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Tensei Shitara Slime Datta Ken 3Rd Season - 64 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Tensei Shitara Slime Datta Ken 3Rd Season - 64 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "needs_review": true + }, + { + "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", + "title": "[Ani] 遲早是最強的鍊金術師? - 07 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 遲早是最強的鍊金術師? - 07 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[KissSub][Dosanko Gal wa Namara Menkoi][09][1080P][GB][MP4].mp4", + "filename": "[KissSub][Dosanko Gal wa Namara Menkoi][09][1080P][GB][MP4].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Kisssub][Dosanko Gal Wa Namara Menkoi][09][1080P][Gb][Mp4]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Kisssub][Dosanko Gal Wa Namara Menkoi][09][1080P][Gb][Mp4]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 殺手旅店 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 殺手旅店 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 殺手旅店 - 01 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 殺手旅店 - 01 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] Re:從零開始的異世界生活 第三季 - 15 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] Re:從零開始的異世界生活 第三季 - 15 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] Re:從零開始的異世界生活 第三季 - 15 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] Re:從零開始的異世界生活 第三季 - 15 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 治癒魔法的錯誤使用法 - 10 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 治癒魔法的錯誤使用法 - 10 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 治癒魔法的錯誤使用法 - 10 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 治癒魔法的錯誤使用法 - 10 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 群花綻放、彷如修羅 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 群花綻放、彷如修羅 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 群花綻放、彷如修羅 - 01 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 群花綻放、彷如修羅 - 01 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 尋神的旅途 - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 尋神的旅途 - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 尋神的旅途 - 02 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 尋神的旅途 - 02 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 香格里拉・開拓異境~糞作獵手挑戰神作~ 第二季 - 18 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 香格里拉・開拓異境~糞作獵手挑戰神作~ 第二季 - 18 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 香格里拉・開拓異境~糞作獵手挑戰神作~ 第二季 - 18 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 香格里拉・開拓異境~糞作獵手挑戰神作~ 第二季 - 18 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Nekomoe kissaten] Appare-Ranman! [BDRip]/[Nekomoe kissaten] Appare-Ranman! [04][BDRip 1080p HEVC-10bit FLAC].mkv", + "filename": "[Nekomoe kissaten] Appare-Ranman! [04][BDRip 1080p HEVC-10bit FLAC].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Nekomoe Kissaten] Appare-Ranman! [04][Bdrip 1080P Hevc-10Bit Flac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Nekomoe Kissaten] Appare-Ranman! [04][Bdrip 1080P Hevc-10Bit Flac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Nekomoe kissaten] Appare-Ranman! [BDRip]/[Nekomoe kissaten] Appare-Ranman! [07][BDRip 1080p HEVC-10bit FLAC].mkv", + "filename": "[Nekomoe kissaten] Appare-Ranman! [07][BDRip 1080p HEVC-10bit FLAC].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Nekomoe Kissaten] Appare-Ranman! [07][Bdrip 1080P Hevc-10Bit Flac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Nekomoe Kissaten] Appare-Ranman! [07][Bdrip 1080P Hevc-10Bit Flac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Nekomoe kissaten] Appare-Ranman! [BDRip]/[Nekomoe kissaten] Appare-Ranman! [02][BDRip 1080p HEVC-10bit FLAC].mkv", + "filename": "[Nekomoe kissaten] Appare-Ranman! [02][BDRip 1080p HEVC-10bit FLAC].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Nekomoe Kissaten] Appare-Ranman! [02][Bdrip 1080P Hevc-10Bit Flac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Nekomoe Kissaten] Appare-Ranman! [02][Bdrip 1080P Hevc-10Bit Flac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Nekomoe kissaten] Appare-Ranman! [BDRip]/[Nekomoe kissaten] Appare-Ranman! [01][BDRip 1080p HEVC-10bit FLAC].mkv", + "filename": "[Nekomoe kissaten] Appare-Ranman! [01][BDRip 1080p HEVC-10bit FLAC].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Nekomoe Kissaten] Appare-Ranman! [01][Bdrip 1080P Hevc-10Bit Flac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Nekomoe Kissaten] Appare-Ranman! [01][Bdrip 1080P Hevc-10Bit Flac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Nekomoe kissaten] Appare-Ranman! [BDRip]/[Nekomoe kissaten] Appare-Ranman! [08][BDRip 1080p HEVC-10bit FLAC].mkv", + "filename": "[Nekomoe kissaten] Appare-Ranman! [08][BDRip 1080p HEVC-10bit FLAC].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Nekomoe Kissaten] Appare-Ranman! [08][Bdrip 1080P Hevc-10Bit Flac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Nekomoe Kissaten] Appare-Ranman! [08][Bdrip 1080P Hevc-10Bit Flac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Nekomoe kissaten] Appare-Ranman! [BDRip]/[Nekomoe kissaten] Appare-Ranman! [13][BDRip 1080p HEVC-10bit FLAC].mkv", + "filename": "[Nekomoe kissaten] Appare-Ranman! [13][BDRip 1080p HEVC-10bit FLAC].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Nekomoe Kissaten] Appare-Ranman! [13][Bdrip 1080P Hevc-10Bit Flac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Nekomoe Kissaten] Appare-Ranman! [13][Bdrip 1080P Hevc-10Bit Flac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Nekomoe kissaten] Appare-Ranman! [BDRip]/[Nekomoe kissaten] Appare-Ranman! [10][BDRip 1080p HEVC-10bit FLAC].mkv", + "filename": "[Nekomoe kissaten] Appare-Ranman! [10][BDRip 1080p HEVC-10bit FLAC].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Nekomoe Kissaten] Appare-Ranman! [10][Bdrip 1080P Hevc-10Bit Flac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Nekomoe Kissaten] Appare-Ranman! [10][Bdrip 1080P Hevc-10Bit Flac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Nekomoe kissaten] Appare-Ranman! [BDRip]/SPs/[Nekomoe kissaten] Appare-Ranman! [BDCMs][BDRip 1080p HEVC-10bit FLAC].mkv", + "filename": "[Nekomoe kissaten] Appare-Ranman! [BDCMs][BDRip 1080p HEVC-10bit FLAC].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Nekomoe Kissaten] Appare-Ranman! [Bdcms][Bdrip 1080P Hevc-10Bit Flac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Nekomoe Kissaten] Appare-Ranman! [Bdcms][Bdrip 1080P Hevc-10Bit Flac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Nekomoe kissaten] Appare-Ranman! [BDRip]/SPs/[Nekomoe kissaten] Appare-Ranman! [PV][03][BDRip 1080p HEVC-10bit FLAC].mkv", + "filename": "[Nekomoe kissaten] Appare-Ranman! [PV][03][BDRip 1080p HEVC-10bit FLAC].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Nekomoe Kissaten] Appare-Ranman! [Pv][03][Bdrip 1080P Hevc-10Bit Flac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Nekomoe Kissaten] Appare-Ranman! [Pv][03][Bdrip 1080P Hevc-10Bit Flac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Nekomoe kissaten] Appare-Ranman! [BDRip]/SPs/[Nekomoe kissaten] Appare-Ranman! [TVCMs][BDRip 1080p HEVC-10bit FLAC].mkv", + "filename": "[Nekomoe kissaten] Appare-Ranman! [TVCMs][BDRip 1080p HEVC-10bit FLAC].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Nekomoe Kissaten] Appare-Ranman! [Tvcms][Bdrip 1080P Hevc-10Bit Flac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Nekomoe Kissaten] Appare-Ranman! [Tvcms][Bdrip 1080P Hevc-10Bit Flac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Nekomoe kissaten] Appare-Ranman! [BDRip]/SPs/[Nekomoe kissaten] Appare-Ranman! [NCED][BDRip 1080p HEVC-10bit FLAC].mkv", + "filename": "[Nekomoe kissaten] Appare-Ranman! [NCED][BDRip 1080p HEVC-10bit FLAC].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Nekomoe Kissaten] Appare-Ranman! [Nced][Bdrip 1080P Hevc-10Bit Flac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Nekomoe Kissaten] Appare-Ranman! [Nced][Bdrip 1080P Hevc-10Bit Flac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Nekomoe kissaten] Appare-Ranman! [BDRip]/SPs/[Nekomoe kissaten] Appare-Ranman! [NCOP][BDRip 1080p HEVC-10bit FLAC].mkv", + "filename": "[Nekomoe kissaten] Appare-Ranman! [NCOP][BDRip 1080p HEVC-10bit FLAC].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Nekomoe Kissaten] Appare-Ranman! [Ncop][Bdrip 1080P Hevc-10Bit Flac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Nekomoe Kissaten] Appare-Ranman! [Ncop][Bdrip 1080P Hevc-10Bit Flac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Nekomoe kissaten] Appare-Ranman! [BDRip]/SPs/[Nekomoe kissaten] Appare-Ranman! [OST Making][BDRip 1080p HEVC-10bit FLAC].mkv", + "filename": "[Nekomoe kissaten] Appare-Ranman! [OST Making][BDRip 1080p HEVC-10bit FLAC].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Nekomoe Kissaten] Appare-Ranman! [Ost Making][Bdrip 1080P Hevc-10Bit Flac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Nekomoe Kissaten] Appare-Ranman! [Ost Making][Bdrip 1080P Hevc-10Bit Flac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Nekomoe kissaten] Appare-Ranman! [BDRip]/SPs/[Nekomoe kissaten] Appare-Ranman! [PV][01][BDRip 1080p HEVC-10bit FLAC].mkv", + "filename": "[Nekomoe kissaten] Appare-Ranman! [PV][01][BDRip 1080p HEVC-10bit FLAC].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Nekomoe Kissaten] Appare-Ranman! [Pv][01][Bdrip 1080P Hevc-10Bit Flac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Nekomoe Kissaten] Appare-Ranman! [Pv][01][Bdrip 1080P Hevc-10Bit Flac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Nekomoe kissaten] Appare-Ranman! [BDRip]/SPs/[Nekomoe kissaten] Appare-Ranman! [PV][02][BDRip 1080p HEVC-10bit FLAC].mkv", + "filename": "[Nekomoe kissaten] Appare-Ranman! [PV][02][BDRip 1080p HEVC-10bit FLAC].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Nekomoe Kissaten] Appare-Ranman! [Pv][02][Bdrip 1080P Hevc-10Bit Flac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Nekomoe Kissaten] Appare-Ranman! [Pv][02][Bdrip 1080P Hevc-10Bit Flac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Nekomoe kissaten] Appare-Ranman! [BDRip]/[Nekomoe kissaten] Appare-Ranman! [06][BDRip 1080p HEVC-10bit FLAC].mkv", + "filename": "[Nekomoe kissaten] Appare-Ranman! [06][BDRip 1080p HEVC-10bit FLAC].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Nekomoe Kissaten] Appare-Ranman! [06][Bdrip 1080P Hevc-10Bit Flac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Nekomoe Kissaten] Appare-Ranman! [06][Bdrip 1080P Hevc-10Bit Flac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Nekomoe kissaten] Appare-Ranman! [BDRip]/[Nekomoe kissaten] Appare-Ranman! [05][BDRip 1080p HEVC-10bit FLAC].mkv", + "filename": "[Nekomoe kissaten] Appare-Ranman! [05][BDRip 1080p HEVC-10bit FLAC].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Nekomoe Kissaten] Appare-Ranman! [05][Bdrip 1080P Hevc-10Bit Flac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Nekomoe Kissaten] Appare-Ranman! [05][Bdrip 1080P Hevc-10Bit Flac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Nekomoe kissaten] Appare-Ranman! [BDRip]/[Nekomoe kissaten] Appare-Ranman! [03][BDRip 1080p HEVC-10bit FLAC].mkv", + "filename": "[Nekomoe kissaten] Appare-Ranman! [03][BDRip 1080p HEVC-10bit FLAC].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Nekomoe Kissaten] Appare-Ranman! [03][Bdrip 1080P Hevc-10Bit Flac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Nekomoe Kissaten] Appare-Ranman! [03][Bdrip 1080P Hevc-10Bit Flac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Nekomoe kissaten] Appare-Ranman! [BDRip]/[Nekomoe kissaten] Appare-Ranman! [11][BDRip 1080p HEVC-10bit FLAC].mkv", + "filename": "[Nekomoe kissaten] Appare-Ranman! [11][BDRip 1080p HEVC-10bit FLAC].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Nekomoe Kissaten] Appare-Ranman! [11][Bdrip 1080P Hevc-10Bit Flac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Nekomoe Kissaten] Appare-Ranman! [11][Bdrip 1080P Hevc-10Bit Flac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Nekomoe kissaten] Appare-Ranman! [BDRip]/[Nekomoe kissaten] Appare-Ranman! [09][BDRip 1080p HEVC-10bit FLAC].mkv", + "filename": "[Nekomoe kissaten] Appare-Ranman! [09][BDRip 1080p HEVC-10bit FLAC].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Nekomoe Kissaten] Appare-Ranman! [09][Bdrip 1080P Hevc-10Bit Flac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Nekomoe Kissaten] Appare-Ranman! [09][Bdrip 1080P Hevc-10Bit Flac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[Nekomoe kissaten] Appare-Ranman! [BDRip]/[Nekomoe kissaten] Appare-Ranman! [12][BDRip 1080p HEVC-10bit FLAC].mkv", + "filename": "[Nekomoe kissaten] Appare-Ranman! [12][BDRip 1080p HEVC-10bit FLAC].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Nekomoe Kissaten] Appare-Ranman! [12][Bdrip 1080P Hevc-10Bit Flac]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Nekomoe Kissaten] Appare-Ranman! [12][Bdrip 1080P Hevc-10Bit Flac]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 怪獸 8 號 - 08 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 怪獸 8 號 - 08 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 怪獸 8 號 - 08 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 怪獸 8 號 - 08 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 終末起點 - 06 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 終末起點 - 06 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 終末起點 - 06 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 終末起點 - 06 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 一拳超人(第三季) - 25 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 一拳超人(第三季) - 25 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 一拳超人(第三季) - 25 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 一拳超人(第三季) - 25 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[LoliHouse] Kekkon suru tte, Hontou desu ka - 06 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "filename": "[LoliHouse] Kekkon suru tte, Hontou desu ka - 06 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Lolihouse] Kekkon Suru Tte, Hontou Desu Ka - 06 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Lolihouse] Kekkon Suru Tte, Hontou Desu Ka - 06 [Webrip 1080P Hevc-10Bit Aac Srtx2]", + "needs_review": true + }, + { + "path": "/mnt/Downloads/anime/[ANi] 在地下城尋求邂逅是否搞錯了什麼 第五季 - 06 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 在地下城尋求邂逅是否搞錯了什麼 第五季 - 06 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1", + "title": "[Ani] 在地下城尋求邂逅是否搞錯了什麼 第五季 - 06 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "canonical_id": null, + "title_zh": null, + "title_en": null, + "translation_source": null, + "reputation_score": null, + "reputation_votes": null, + "reputation_source": null, + "review_status": "pending", + "enrichment_confidence": 0.0, + "provider_metadata": {}, + "display_title": "[Ani] 在地下城尋求邂逅是否搞錯了什麼 第五季 - 06 [1080P][Baha][Web-Dl][Aac Avc][Cht]", + "needs_review": true + } + ], + "other": [ + { + "path": "/mnt/Downloads/others/STARS-993/hhd800.com@STARS-993.mp4", + "filename": "hhd800.com@STARS-993.mp4", + "category": "other", + "note": "Not categorized for parsing" + }, + { + "path": "/mnt/Downloads/others/STARS-766/hhd800.com@STARS-766.mp4", + "filename": "hhd800.com@STARS-766.mp4", + "category": "other", + "note": "Not categorized for parsing" + }, + { + "path": "/mnt/Downloads/others/SSIS-951/hhd800.com@SSIS-951.mp4", + "filename": "hhd800.com@SSIS-951.mp4", + "category": "other", + "note": "Not categorized for parsing" + }, + { + "path": "/mnt/Downloads/others/YMDD-199.mp4", + "filename": "YMDD-199.mp4", + "category": "other", + "note": "Not categorized for parsing" + }, + { + "path": "/mnt/Downloads/others/STARS-851/hhd800.com@STARS-851.mp4", + "filename": "hhd800.com@STARS-851.mp4", + "category": "other", + "note": "Not categorized for parsing" + }, + { + "path": "/mnt/Downloads/others/DVAJ-633/hhd800.com@DVAJ-633.mp4", + "filename": "hhd800.com@DVAJ-633.mp4", + "category": "other", + "note": "Not categorized for parsing" + }, + { + "path": "/mnt/Downloads/others/START-373/hhd800.com@START-373.mp4", + "filename": "hhd800.com@START-373.mp4", + "category": "other", + "note": "Not categorized for parsing" + }, + { + "path": "/mnt/Downloads/others/PFES-005_uncensored/hhd800.com@PFES-005_uncensored.mp4", + "filename": "hhd800.com@PFES-005_uncensored.mp4", + "category": "other", + "note": "Not categorized for parsing" + }, + { + "path": "/mnt/Downloads/others/KWBD-396/hhd800.com@KWBD-396.mp4", + "filename": "hhd800.com@KWBD-396.mp4", + "category": "other", + "note": "Not categorized for parsing" + }, + { + "path": "/mnt/Downloads/others/JUL-834/hhd800.com@JUL-834.mp4", + "filename": "hhd800.com@JUL-834.mp4", + "category": "other", + "note": "Not categorized for parsing" + }, + { + "path": "/mnt/Downloads/others/PRED-465/hhd800.com@PRED-465.mp4", + "filename": "hhd800.com@PRED-465.mp4", + "category": "other", + "note": "Not categorized for parsing" + }, + { + "path": "/mnt/Downloads/others/MIDV-824-C_GG5/gg5.co@MIDV-824-C_GG5.mp4", + "filename": "gg5.co@MIDV-824-C_GG5.mp4", + "category": "other", + "note": "Not categorized for parsing" + }, + { + "path": "/mnt/Downloads/others/c800.me@MXGS-910_nomask/hhd000.com_免翻_墙免费访问全球最大情_色网站P_ornhub_可看收费内容_MXGS-910.mp4", + "filename": "hhd000.com_免翻_墙免费访问全球最大情_色网站P_ornhub_可看收费内容_MXGS-910.mp4", + "category": "other", + "note": "Not categorized for parsing" + }, + { + "path": "/mnt/Downloads/others/ADN-115_uncensored.mp4", + "filename": "ADN-115_uncensored.mp4", + "category": "other", + "note": "Not categorized for parsing" + }, + { + "path": "/mnt/Downloads/others/START-194/hhd800.com@START-194.mp4", + "filename": "hhd800.com@START-194.mp4", + "category": "other", + "note": "Not categorized for parsing" + }, + { + "path": "/mnt/Downloads/others/STARS-817/hhd800.com@STARS-817.mp4", + "filename": "hhd800.com@STARS-817.mp4", + "category": "other", + "note": "Not categorized for parsing" + }, + { + "path": "/mnt/Downloads/others/IPZZ-708/hhd800.com@IPZZ-708.mp4", + "filename": "hhd800.com@IPZZ-708.mp4", + "category": "other", + "note": "Not categorized for parsing" + }, + { + "path": "/mnt/Downloads/others/IPZZ-708/18+游戏大全(996gg.cc)-七龍珠H版-三國志H版-三國群淫傳等.mp4", + "filename": "18+游戏大全(996gg.cc)-七龍珠H版-三國志H版-三國群淫傳等.mp4", + "category": "other", + "note": "Not categorized for parsing" + }, + { + "path": "/mnt/Downloads/others/STARS-918/hhd800.com@STARS-918.mp4", + "filename": "hhd800.com@STARS-918.mp4", + "category": "other", + "note": "Not categorized for parsing" + }, + { + "path": "/mnt/Downloads/others/SSIS-532-C_X1080X/hhd800.com@SSIS-532-C_X1080X.mp4", + "filename": "hhd800.com@SSIS-532-C_X1080X.mp4", + "category": "other", + "note": "Not categorized for parsing" + }, + { + "path": "/mnt/Downloads/others/STARS-703/hhd800.com@STARS-703.mp4", + "filename": "hhd800.com@STARS-703.mp4", + "category": "other", + "note": "Not categorized for parsing" + }, + { + "path": "/mnt/Downloads/others/FWAY-065/hhd800.com@FWAY-065.mp4", + "filename": "hhd800.com@FWAY-065.mp4", + "category": "other", + "note": "Not categorized for parsing" + }, + { + "path": "/mnt/Downloads/others/SSIS-745-C_GG5/gg5.co@SSIS-745-C_GG5.mp4", + "filename": "gg5.co@SSIS-745-C_GG5.mp4", + "category": "other", + "note": "Not categorized for parsing" + }, + { + "path": "/mnt/Downloads/others/EBWH-044-C_GG5/gg5.co@EBWH-044-C_GG5.mp4", + "filename": "gg5.co@EBWH-044-C_GG5.mp4", + "category": "other", + "note": "Not categorized for parsing" + }, + { + "path": "/mnt/Downloads/others/STARS-729-C_X1080X/hhd800.com@STARS-729-C_X1080X.mp4", + "filename": "hhd800.com@STARS-729-C_X1080X.mp4", + "category": "other", + "note": "Not categorized for parsing" + }, + { + "path": "/mnt/Downloads/others/PBD-460/hhd800.com@PBD-460.mp4", + "filename": "hhd800.com@PBD-460.mp4", + "category": "other", + "note": "Not categorized for parsing" + }, + { + "path": "/mnt/Downloads/others/EBWH-066-C_GG5/gg5.co@EBWH-066-C_GG5.mp4", + "filename": "gg5.co@EBWH-066-C_GG5.mp4", + "category": "other", + "note": "Not categorized for parsing" + }, + { + "path": "/mnt/Downloads/others/MIDE-733.mp4", + "filename": "MIDE-733.mp4", + "category": "other", + "note": "Not categorized for parsing" + }, + { + "path": "/mnt/Downloads/others/JUR-390ch/JUR-390ch.mp4", + "filename": "JUR-390ch.mp4", + "category": "other", + "note": "Not categorized for parsing" + }, + { + "path": "/mnt/Downloads/others/SSIS-531/hhd800.com@SSIS-531.mp4", + "filename": "hhd800.com@SSIS-531.mp4", + "category": "other", + "note": "Not categorized for parsing" + }, + { + "path": "/mnt/Downloads/others/STARS-796-C_GG5/gg5.co@STARS-796-C_GG5.mp4", + "filename": "gg5.co@STARS-796-C_GG5.mp4", + "category": "other", + "note": "Not categorized for parsing" + }, + { + "path": "/mnt/Downloads/others/JUR-442/hhd800.com@JUR-442.mp4", + "filename": "hhd800.com@JUR-442.mp4", + "category": "other", + "note": "Not categorized for parsing" + }, + { + "path": "/mnt/Downloads/others/IPZZ-729ch/IPZZ-729ch.mp4", + "filename": "IPZZ-729ch.mp4", + "category": "other", + "note": "Not categorized for parsing" + }, + { + "path": "/mnt/Downloads/others/CAWD-658/hhd800.com@CAWD-658.mp4", + "filename": "hhd800.com@CAWD-658.mp4", + "category": "other", + "note": "Not categorized for parsing" + }, + { + "path": "/mnt/Downloads/others/hdd600.com@KMHRS-023_UNCENSORED_LEAKED_NOWATERMARK.mp4", + "filename": "hdd600.com@KMHRS-023_UNCENSORED_LEAKED_NOWATERMARK.mp4", + "category": "other", + "note": "Not categorized for parsing" + }, + { + "path": "/mnt/Downloads/others/SONE-785ch/SONE-785ch.mp4", + "filename": "SONE-785ch.mp4", + "category": "other", + "note": "Not categorized for parsing" + }, + { + "path": "/mnt/Downloads/others/STARS-638/hhd800.com@STARS-638.mp4", + "filename": "hhd800.com@STARS-638.mp4", + "category": "other", + "note": "Not categorized for parsing" + } + ] +} \ No newline at end of file diff --git a/inventory.csv b/inventory.csv new file mode 100644 index 0000000..303b762 --- /dev/null +++ b/inventory.csv @@ -0,0 +1,4672 @@ +# Generated: 2026-02-09T15:56:02 +# 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 +"/mnt/Downloads/anime/[LoliHouse] Tensei Kizoku, Kantei Skill de Nariagaru - 13 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv","[LoliHouse] Tensei Kizoku, Kantei Skill de Nariagaru - 13 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv",436797016,2024-10-06T00:26:12,anime,1920x1080,hevc,1420.016,2460 +/mnt/Downloads/anime/[ANi] 最近的偵探真沒用 - 08 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 最近的偵探真沒用 - 08 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,472675655,2025-08-19T23:23:22,anime,1920x1080,h264,1420.074667,2662 +/mnt/Downloads/anime/[ANi] 膽大黨 - 08 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 膽大黨 - 08 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,732981104,2024-11-22T00:38:25,anime,1920x1080,h264,1421.9832,4123 +/mnt/Downloads/anime/[LoliHouse] Beheneko - 02 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,[LoliHouse] Beheneko - 02 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,493732628,2025-01-14T12:20:44,anime,1920x1080,hevc,1422.463,2776 +/mnt/Downloads/anime/[ANi] 靠廢柴技能【狀態異常】成為最強的我將蹂躪一切 - 07 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 靠廢柴技能【狀態異常】成為最強的我將蹂躪一切 - 07 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,449838132,2024-08-22T23:31:39,anime,1920x1080,h264,1450.026667,2481 +/mnt/Downloads/anime/[LoliHouse] Shangri-La Frontier - 35 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,[LoliHouse] Shangri-La Frontier - 35 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,839159633,2024-12-15T23:55:44,anime,1920x1080,hevc,1421.897,4721 +/mnt/Downloads/anime/[ANi] 轉生貴族憑鑑定技能扭轉人生 第二季 - 19 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 轉生貴族憑鑑定技能扭轉人生 第二季 - 19 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,432999595,2024-11-17T23:57:10,anime,1920x1080,h264,1420.032,2439 +/mnt/Downloads/anime/[ANi] 膽大黨 第二季 - 21 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 膽大黨 第二季 - 21 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,635617566,2025-08-28T23:25:03,anime,1920x1080,h264,1432.034911,3550 +"/mnt/Downloads/anime/[LoliHouse] Tensei Kizoku, Kantei Skill de Nariagaru - 08 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv","[LoliHouse] Tensei Kizoku, Kantei Skill de Nariagaru - 08 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv",445586395,2024-05-29T11:02:41,anime,1920x1080,hevc,1420.109,2510 +/mnt/Downloads/anime/[ANi] SI-VIS:英雄之聲 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] SI-VIS:英雄之聲 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,843455000,2025-10-06T03:08:52,anime,1920x1080,h264,1424.9862,4735 +/mnt/Downloads/anime/[ANi] GNOSIA - 06 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] GNOSIA - 06 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,693678907,2025-11-16T00:36:26,anime,1920x1080,h264,1565.084489,3545 +/mnt/Downloads/anime/[Lilith-Raws] Date A Live S05 - 02 [Baha][WebDL 1080p AVC AAC][CHT].mp4,[Lilith-Raws] Date A Live S05 - 02 [Baha][WebDL 1080p AVC AAC][CHT].mp4,504048135,2024-06-02T02:06:03,anime,1920x1080,h264,1420.053333,2839 +/mnt/Downloads/anime/[ANi] Acro Trip 頂尖惡路 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] Acro Trip 頂尖惡路 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,426705810,2024-10-02T14:39:01,anime,1920x1080,h264,1420.032,2403 +/mnt/Downloads/anime/[ANi] 我要【招架】一切~反誤解的世界最強想成為冒險家~ - 08 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 我要【招架】一切~反誤解的世界最強想成為冒險家~ - 08 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,434293496,2024-08-22T23:33:16,anime,1920x1080,h264,1419.9812,2446 +/mnt/Downloads/anime/[HYSUB]Dungeon Meshi[11][BIG5_MP4][1920X1080].mp4,[HYSUB]Dungeon Meshi[11][BIG5_MP4][1920X1080].mp4,273568417,2024-03-15T00:09:04,anime,1920x1080,h264,1440.128,1519 +/mnt/Downloads/anime/[Nekomoe kissaten&LoliHouse] Pon no Michi - 01 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,[Nekomoe kissaten&LoliHouse] Pon no Michi - 01 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,438027709,2024-01-12T11:57:52,anime,1920x1080,hevc,1464.021,2393 +/mnt/Downloads/anime/[Nekomoe kissaten][Ninja Kamui][08][1080p][CHS].mp4,[Nekomoe kissaten][Ninja Kamui][08][1080p][CHS].mp4,390186653,2024-04-01T14:05:14,anime,1920x1080,h264,1379.753333,2262 +/mnt/Downloads/anime/[LoliHouse] Izure Saikyou no Renkinjutsushi - 03 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,[LoliHouse] Izure Saikyou no Renkinjutsushi - 03 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,364225793,2025-01-16T10:52:50,anime,1920x1080,hevc,1420.017,2051 +/mnt/Downloads/anime/[orion origin] Boukyaku Battery [02] [1080p] [H265 AAC] [CHT&JPN].mp4,[orion origin] Boukyaku Battery [02] [1080p] [H265 AAC] [CHT&JPN].mp4,445317655,2024-06-27T12:12:14,anime,1920x1080,hevc,1434.992993,2482 +/mnt/Downloads/anime/[ANi] 判處勇者刑 - 05 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 判處勇者刑 - 05 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,503327668,2026-02-05T14:22:33,anime,1920x1080,h264,1470.122667,2738 +/mnt/Downloads/anime/[Skymoon-Raws] Shangri-La Frontier 2nd Season - 23 [ViuTV][WEB-DL][CHT][SRT][1080p][AVC AAC].mkv,[Skymoon-Raws] Shangri-La Frontier 2nd Season - 23 [ViuTV][WEB-DL][CHT][SRT][1080p][AVC AAC].mkv,533353709,2025-03-16T23:27:34,anime,1920x1080,h264,1572.446,2713 +/mnt/Downloads/anime/[ANi] DDDD 惡魔的破壞 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] DDDD 惡魔的破壞 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,568692557,2024-06-20T23:34:53,anime,1920x1080,h264,1430.037333,3181 +/mnt/Downloads/anime/[ANi] 身為暗殺者的我明顯比勇者還強 - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 身為暗殺者的我明顯比勇者還強 - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,669625552,2025-10-21T05:36:00,anime,1920x1080,h264,1429.9912,3746 +/mnt/Downloads/anime/[ANi] 新人大叔冒險者,被最強隊伍操到死成無敵 - 11 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 新人大叔冒險者,被最強隊伍操到死成無敵 - 11 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,459465740,2024-09-16T22:42:44,anime,1920x1080,h264,1424.944489,2579 +/mnt/Downloads/anime/[HYSUB]Magic Maker ~Isekai Mahou no Tsukurikata~[04][BIG5_MP4][1920X1080].mp4,[HYSUB]Magic Maker ~Isekai Mahou no Tsukurikata~[04][BIG5_MP4][1920X1080].mp4,338743227,2025-02-04T10:24:04,anime,1920x1080,h264,1420.015011,1908 +/mnt/Downloads/anime/[ANi] 無職轉生~到了異世界就拿出真本事 第二季 - 20 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 無職轉生~到了異世界就拿出真本事 第二季 - 20 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,745668735,2024-06-02T15:46:48,anime,1920x1080,h264,1420.022911,4200 +/mnt/Downloads/anime/[ANi] 治癒魔法的錯誤使用法 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 治癒魔法的錯誤使用法 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,579945288,2024-01-06T02:45:28,anime,1920x1080,h264,1420.022911,3267 +/mnt/Downloads/anime/[LoliHouse] Grand Blue S2 - 04 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,[LoliHouse] Grand Blue S2 - 04 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,421951732,2025-07-29T23:38:11,anime,1920x1080,hevc,1440.032,2344 +/mnt/Downloads/anime/[ANi] 最強肉盾的迷宮攻略~擁有稀少技能體力 9999 的肉盾,被勇者隊伍辭退了~ - 11 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 最強肉盾的迷宮攻略~擁有稀少技能體力 9999 的肉盾,被勇者隊伍辭退了~ - 11 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,380049220,2024-03-17T00:11:27,anime,1920x1080,h264,1404.010667,2165 +/mnt/Downloads/anime/[ANi] 香格里拉・開拓異境~糞作獵手挑戰神作~ 第二季 - 09 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 香格里拉・開拓異境~糞作獵手挑戰神作~ 第二季 - 09 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,620130282,2024-12-08T14:52:39,anime,1920x1080,h264,1430.366578,3468 +/mnt/Downloads/anime/《BLEACH 死神 千年血戰篇-訣別譚-》#19/《BLEACH 死神 千年血戰篇-訣別譚-》#19 (日語原聲)【Ani-One Asia ULTRA】.mp4,《BLEACH 死神 千年血戰篇-訣別譚-》#19 (日語原聲)【Ani-One Asia ULTRA】.mp4,295107031,2023-08-12T16:30:47,anime,1920x1080,h264,1440.055147,1639 +/mnt/Downloads/anime/[Nekomoe kissaten&LoliHouse] Hibi wa Sugiredo Meshi Umashi - 07 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,[Nekomoe kissaten&LoliHouse] Hibi wa Sugiredo Meshi Umashi - 07 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,739922712,2025-05-29T08:26:05,anime,1920x1080,hevc,1439.939,4110 +/mnt/Downloads/anime/[ANi] 水屬性的魔法師 - 11 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 水屬性的魔法師 - 11 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,321313833,2025-09-18T23:08:47,anime,1920x1080,h264,1455.018667,1766 +/mnt/Downloads/anime/[ANi] 結緣甘神神社 - 10 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 結緣甘神神社 - 10 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,384681335,2024-12-03T23:48:51,anime,1920x1080,h264,1420.117333,2167 +/mnt/Downloads/anime/[ANi] 一拳超人(第三季) - 34 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 一拳超人(第三季) - 34 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,507020110,2025-12-14T23:35:26,anime,1920x1080,h264,1441.0022,2814 +/mnt/Downloads/anime/[ANi] 異世界悠閒紀行~邊養娃邊當冒險者~ - 06 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 異世界悠閒紀行~邊養娃邊當冒險者~ - 06 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,322367881,2024-08-04T23:27:56,anime,1920x1080,h264,1429.949489,1803 +/mnt/Downloads/anime/[ANi] 葬送的芙莉蓮 - 23 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 葬送的芙莉蓮 - 23 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,718594545,2024-02-16T15:19:47,anime,1920x1080,h264,1470.0312,3910 +/mnt/Downloads/anime/[ANi] 九龍大眾浪漫 - 07 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 九龍大眾浪漫 - 07 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,279071278,2025-05-17T16:25:47,anime,1920x1080,h264,1430.037333,1561 +/mnt/Downloads/anime/[ANi] 現在的是哪一個多聞!? - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 現在的是哪一個多聞!? - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,505286591,2026-01-01T01:19:45,anime,1920x1080,h264,1419.989333,2846 +/mnt/Downloads/anime/[ANi] 怪獸 8 號 第二季 - 23 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 怪獸 8 號 第二季 - 23 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,711411085,2025-09-27T15:55:27,anime,1920x1080,h264,1420.032,4007 +/mnt/Downloads/anime/[ANi] 香格里拉・開拓異境~糞作獵手挑戰神作~ 第二季 - 12 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 香格里拉・開拓異境~糞作獵手挑戰神作~ 第二季 - 12 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,870317954,2024-12-29T11:12:53,anime,1920x1080,h264,1421.899789,4896 +/mnt/Downloads/anime/[ANi] 香格里拉・開拓異境~糞作獵手挑戰神作~ - 23 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 香格里拉・開拓異境~糞作獵手挑戰神作~ - 23 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,809188470,2024-03-17T10:18:17,anime,1920x1080,h264,1416.310867,4570 +"/mnt/Downloads/anime/[LoliHouse] Katainaka no Ossan, Kensei ni Naru - 07 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv","[LoliHouse] Katainaka no Ossan, Kensei ni Naru - 07 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv",522663717,2025-05-17T23:22:39,anime,1920x1080,hevc,1441.087,2901 +/mnt/Downloads/anime/[ANi] 刀劍神域外傳 Gun Gale Online II - 10 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 刀劍神域外傳 Gun Gale Online II - 10 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,454437258,2024-12-07T00:21:21,anime,1920x1080,h264,1425.027911,2551 +/mnt/Downloads/anime/[ANi] 擁有超常技能的異世界流浪美食家 S2 - 17 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 擁有超常技能的異世界流浪美食家 S2 - 17 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,454167718,2025-11-04T23:44:49,anime,1920x1080,h264,1434.954489,2532 +/mnt/Downloads/anime/[ANi] Re:從零開始的異世界生活 第三季 - 04 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] Re:從零開始的異世界生活 第三季 - 04 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,374799914,2024-10-24T01:12:40,anime,1920x1080,h264,1419.9812,2111 +"/mnt/Downloads/anime/[LoliHouse] Haite Kudasai, Takamine-san - 02 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv","[LoliHouse] Haite Kudasai, Takamine-san - 02 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv",570390763,2025-04-11T10:31:56,anime,1920x1080,hevc,1420.109,3213 +/mnt/Downloads/anime/[ANi] 鬼人幻燈抄 - 09 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 鬼人幻燈抄 - 09 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,300933437,2025-05-27T00:10:34,anime,1920x1080,h264,1422.037333,1692 +/mnt/Downloads/anime/[Nekomoe kissaten][Tower of God S2][05][1080p][CHT].mp4,[Nekomoe kissaten][Tower of God S2][05][1080p][CHT].mp4,490218504,2024-08-06T13:17:42,anime,1920x1080,h264,1421.014785,2759 +/mnt/Downloads/anime/[ANi] 杖與劍的魔劍譚 - 06 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 杖與劍的魔劍譚 - 06 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,479606228,2024-08-18T09:04:50,anime,1920x1080,h264,1426.112322,2690 +/mnt/Downloads/anime/[LoliHouse] Kowloon Generic Romance - 01 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,[LoliHouse] Kowloon Generic Romance - 01 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,428049088,2025-04-10T01:31:22,anime,1920x1080,hevc,1520.025,2252 +/mnt/Downloads/anime/[LoliHouse] Tensei Shitara Slime Datta Ken 3rd Season - 49 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,[LoliHouse] Tensei Shitara Slime Datta Ken 3rd Season - 49 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,396952211,2024-04-06T01:48:52,anime,1920x1080,hevc,1470.032,2160 +/mnt/Downloads/anime/[ANi] 異世界自殺突擊隊 - 07 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 異世界自殺突擊隊 - 07 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,524291124,2024-07-27T03:21:11,anime,1920x1080,h264,1444.096,2904 +/mnt/Downloads/anime/[ANi] 勇氣爆發 BANG BRAVERN - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 勇氣爆發 BANG BRAVERN - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,686632636,2024-01-26T00:04:47,anime,1920x1080,h264,1419.989333,3868 +/mnt/Downloads/anime/[orion origin] Boukyaku Battery [06] [1080p] [H265 AAC] [CHT&JPN].mp4,[orion origin] Boukyaku Battery [06] [1080p] [H265 AAC] [CHT&JPN].mp4,435828695,2024-06-27T23:17:56,anime,1920x1080,hevc,1434.992993,2429 +/mnt/Downloads/anime/[ANi] 轉生貴族憑鑑定技能扭轉人生 - 05 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 轉生貴族憑鑑定技能扭轉人生 - 05 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,434217264,2024-05-06T00:04:07,anime,1920x1080,h264,1420.032,2446 +/mnt/Downloads/anime/[LoliHouse] Kaijuu 8-gou - 17 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,[LoliHouse] Kaijuu 8-gou - 17 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,808803796,2025-08-16T16:36:38,anime,1920x1080,hevc,1420.109,4556 +/mnt/Downloads/anime/[LoliHouse] Tensei Shitara Slime Datta Ken 3rd Season - 52 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,[LoliHouse] Tensei Shitara Slime Datta Ken 3rd Season - 52 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,466683231,2024-04-27T09:12:21,anime,1920x1080,hevc,1470.102,2539 +/mnt/Downloads/anime/[ANi] 永遠的黃昏 - 10 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 永遠的黃昏 - 10 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,344970532,2025-12-05T00:08:20,anime,1920x1080,h264,1435.008,1923 +/mnt/Downloads/anime/[Nekomoe kissaten][Boku no Kokoro no Yabai Yatsu][21][1080p][JPSC].mp4,[Nekomoe kissaten][Boku no Kokoro no Yabai Yatsu][21][1080p][JPSC].mp4,282553780,2024-03-03T13:58:24,anime,1920x1080,h264,1383.06,1634 +/mnt/Downloads/anime/[Feibanyama] Fate-strange Fake -Whispers of Dawn- [CR WebRip 1080p HEVC OPUS Multi-Subs].mkv,[Feibanyama] Fate-strange Fake -Whispers of Dawn- [CR WebRip 1080p HEVC OPUS Multi-Subs].mkv,1066075857,2026-01-06T00:19:01,anime,1920x1080,hevc,3354.083,2542 +/mnt/Downloads/anime/[ANi] 地下城中的人 - 06 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 地下城中的人 - 06 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,339165450,2024-08-17T00:47:53,anime,1920x1080,h264,1467.114667,1849 +/mnt/Downloads/anime/[LoliHouse] Amagami-san Chi no Enmusubi - 02 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,[LoliHouse] Amagami-san Chi no Enmusubi - 02 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,395982330,2024-10-29T01:31:24,anime,1920x1080,hevc,1420.017,2230 +/mnt/Downloads/anime/[MMSUB][Goblin Slayer Goblin's Crown][Movie][BDRip 1080p HEVC-10bit FLAC]/[MMSUB][Goblin Slayer Goblin's Crown][Movie][BDRip 1080p HEVC-10bit FLAC].mkv,[MMSUB][Goblin Slayer Goblin's Crown][Movie][BDRip 1080p HEVC-10bit FLAC].mkv,2246823832,2020-07-31T13:32:55,anime,1920x1080,hevc,3604.622,4986 +/mnt/Downloads/anime/[BeanSub][Ao no Exorcist _Yosuga Hen][01][GB][1080P][x264_AAC].mp4,[BeanSub][Ao no Exorcist _Yosuga Hen][01][GB][1080P][x264_AAC].mp4,331538806,2025-01-05T05:44:42,anime,1920x1080,h264,1420.062766,1867 +/mnt/Downloads/anime/[ANi] 孤單一人的異世界攻略 - 08 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 孤單一人的異世界攻略 - 08 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,502426157,2024-11-15T01:15:06,anime,1920x1080,h264,1420.064622,2830 +/mnt/Downloads/anime/[ANi] 瞬間治癒卻被當成廢物踢出隊伍的天才治療師,改當無照治療師快樂過活 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 瞬間治癒卻被當成廢物踢出隊伍的天才治療師,改當無照治療師快樂過活 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,401557123,2025-04-11T00:00:45,anime,1920x1080,h264,1440.085333,2230 +/mnt/Downloads/anime/[LoliHouse] Shinmai Ossan - 06 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,[LoliHouse] Shinmai Ossan - 06 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,464528110,2024-08-15T23:40:52,anime,1920x1080,hevc,1425.055,2607 +/mnt/Downloads/anime/[KyokuSai] Adam's Sweet Agony [01][1080P][WEBRip][HEVC 10bit].mkv,[KyokuSai] Adam's Sweet Agony [01][1080P][WEBRip][HEVC 10bit].mkv,292764324,2024-01-31T11:14:53,anime,1920x1080,hevc,392.417,5968 +/mnt/Downloads/anime/[ANi] 中禪寺老師妖怪講義錄 解謎就交給老師 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 中禪寺老師妖怪講義錄 解謎就交給老師 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,310413866,2025-04-08T02:17:34,anime,1920x1080,h264,1432.042667,1734 +/mnt/Downloads/anime/《BLEACH 死神 千年血戰篇》#13/《BLEACH 死神 千年血戰篇》#13 (日語原聲)【Ani-One Asia ULTRA】.mp4,《BLEACH 死神 千年血戰篇》#13 (日語原聲)【Ani-One Asia ULTRA】.mp4,319395194,2022-12-27T01:26:49,anime,1920x1080,h264,1438.54585,1776 +/mnt/Downloads/anime/[ANi] 遲早是最強的鍊金術師? - 09 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 遲早是最強的鍊金術師? - 09 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,309489769,2025-02-27T00:16:20,anime,1920x1080,h264,1420.117333,1743 +/mnt/Downloads/anime/[ANi] 一拳超人(第三季) - 30 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 一拳超人(第三季) - 30 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,388055867,2025-11-16T23:37:59,anime,1920x1080,h264,1440.960489,2154 +/mnt/Downloads/anime/[ANi] 在地下城尋求邂逅是否搞錯了什麼 第五季 - 13 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 在地下城尋求邂逅是否搞錯了什麼 第五季 - 13 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,384167240,2025-02-07T14:10:50,anime,1920x1080,h264,1420.064622,2164 +/mnt/Downloads/anime/[ANi] 異世界悠閒紀行~邊養娃邊當冒險者~ - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 異世界悠閒紀行~邊養娃邊當冒險者~ - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,357186881,2024-07-07T23:44:31,anime,1920x1080,h264,1430.074622,1998 +/mnt/Downloads/anime/[ANi] 被逐出隊伍的治癒師,其實是最強 - 04 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 被逐出隊伍的治癒師,其實是最強 - 04 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,338884991,2024-10-27T00:54:25,anime,1920x1080,h264,1404.010667,1930 +/mnt/Downloads/anime/[ANi] 魔女與野獸 - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 魔女與野獸 - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,511883113,2024-01-18T23:36:50,anime,1920x1080,h264,1450.026667,2824 +/mnt/Downloads/anime/[ANi] Fate/strange Fake - 04 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] Fate/strange Fake - 04 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,530541373,2026-01-24T17:05:02,anime,1920x1080,h264,1425.027911,2978 +/mnt/Downloads/anime/[Lilith-Raws] Mushoku Tensei S02 - 21 [Baha][WebDL 1080p AVC AAC][CHT].mp4,[Lilith-Raws] Mushoku Tensei S02 - 21 [Baha][WebDL 1080p AVC AAC][CHT].mp4,526460311,2024-06-09T15:50:19,anime,1920x1080,h264,1420.053333,2965 +/mnt/Downloads/anime/[Skymoon-Raws] SPY×FAMILY - 14 [ViuTV][WEB-DL][CHT][1080p][AVC AAC][MP4+ASS]/[Skymoon-Raws] SPY×FAMILY - 14 [ViuTV][WEB-DL][1080p][AVC AAC].mp4,[Skymoon-Raws] SPY×FAMILY - 14 [ViuTV][WEB-DL][1080p][AVC AAC].mp4,408825792,2022-10-09T11:38:58,anime,1920x1080,h264,1450.005333,2255 +/mnt/Downloads/anime/[ANi] 29 歲單身中堅冒險家的日常 - 03 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 29 歲單身中堅冒險家的日常 - 03 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,421660728,2026-01-22T01:41:35,anime,1920x1080,h264,1425.111322,2367 +/mnt/Downloads/anime/[ANi] 葬送的芙莉蓮 - 27 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 葬送的芙莉蓮 - 27 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,653383540,2024-03-16T01:48:49,anime,1920x1080,h264,1469.989489,3555 +/mnt/Downloads/anime/[ANi] 九龍大眾浪漫 - 03 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 九龍大眾浪漫 - 03 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,358102214,2025-04-20T01:39:28,anime,1920x1080,h264,1430.122667,2003 +/mnt/Downloads/anime/[ANi] 擁有超常技能的異世界流浪美食家 S2 - 13 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 擁有超常技能的異世界流浪美食家 S2 - 13 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,436463305,2025-10-07T23:21:19,anime,1920x1080,h264,1435.079622,2433 +/mnt/Downloads/anime/[ANi] 在地下城尋求邂逅是否搞錯了什麼 第五季 - 08 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 在地下城尋求邂逅是否搞錯了什麼 第五季 - 08 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,349154858,2024-11-22T00:38:24,anime,1920x1080,h264,1420.064622,1966 +/mnt/Downloads/anime/[ANi] 怪獸 8 號 - 06 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 怪獸 8 號 - 06 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,753732132,2024-05-18T15:36:06,anime,1920x1080,h264,1420.032,4246 +/mnt/Downloads/anime/[ANi] 終末起點 - 08 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 終末起點 - 08 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,439836918,2025-05-22T00:42:00,anime,1920x1080,h264,1370.152542,2568 +"/mnt/Downloads/anime/[LoliHouse] Katainaka no Ossan, Kensei ni Naru - 03 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv","[LoliHouse] Katainaka no Ossan, Kensei ni Naru - 03 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv",625330337,2025-04-20T01:39:34,anime,1920x1080,hevc,1441.13,3471 +/mnt/Downloads/anime/[Nekomoe kissaten][Kusuriya no Hitorigoto][15][1080p][JPSC].mp4,[Nekomoe kissaten][Kusuriya no Hitorigoto][15][1080p][JPSC].mp4,391315724,2024-01-25T04:40:41,anime,1920x1080,h264,1370.046667,2284 +/mnt/Downloads/anime/阿基拉 Akira(1988)[BDRIP][1920x1080][movie][x264_m4a][10bit]加刘景长压制/阿基拉 Akira(1988)1080P.mkv,阿基拉 Akira(1988)1080P.mkv,1127610842,2020-03-02T01:16:55,anime,1888x1016,h264,7468.49,1207 +/mnt/Downloads/anime/[ANi] 杖與劍的魔劍譚 - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 杖與劍的魔劍譚 - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,473048415,2024-07-14T15:16:40,anime,1920x1080,h264,1426.070622,2653 +/mnt/Downloads/anime/[LoliHouse] Kowloon Generic Romance - 05 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,[LoliHouse] Kowloon Generic Romance - 05 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,377833262,2025-05-05T11:01:55,anime,1920x1080,hevc,1430.116,2113 +/mnt/Downloads/anime/Mirai.2018.1080p.BluRay.x264.DTS-WiKi/Sample/Mirai.2018.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,Mirai.2018.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,84516448,2021-06-16T13:55:11,anime,1920x1036,h264,62.425,10831 +/mnt/Downloads/anime/Mirai.2018.1080p.BluRay.x264.DTS-WiKi/Mirai.2018.1080p.BluRay.x264.DTS-WiKi.mkv,Mirai.2018.1080p.BluRay.x264.DTS-WiKi.mkv,7893036237,2021-06-16T14:02:37,anime,1920x1036,h264,5875.042,10747 +/mnt/Downloads/anime/[ANi] 異國日記 - 04 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 異國日記 - 04 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,213670263,2026-01-27T00:30:56,anime,1920x1080,h264,1419.989333,1203 +/mnt/Downloads/anime/[DMG&LoliHouse] Isekai Ojisan [01-13][WebRip 1080p HEVC-10bit AAC]/[DMG&LoliHouse] Isekai Ojisan - 04 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,[DMG&LoliHouse] Isekai Ojisan - 04 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,585473803,2023-04-02T15:37:06,anime,1920x1080,hevc,1422.058,3293 +/mnt/Downloads/anime/[DMG&LoliHouse] Isekai Ojisan [01-13][WebRip 1080p HEVC-10bit AAC]/[DMG&LoliHouse] Isekai Ojisan - 13 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,[DMG&LoliHouse] Isekai Ojisan - 13 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,600333940,2023-04-02T15:38:01,anime,1920x1080,hevc,1442.111,3330 +/mnt/Downloads/anime/[DMG&LoliHouse] Isekai Ojisan [01-13][WebRip 1080p HEVC-10bit AAC]/[DMG&LoliHouse] Isekai Ojisan - 08 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,[DMG&LoliHouse] Isekai Ojisan - 08 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,698002812,2023-04-02T15:36:37,anime,1920x1080,hevc,1442.069,3872 +/mnt/Downloads/anime/[DMG&LoliHouse] Isekai Ojisan [01-13][WebRip 1080p HEVC-10bit AAC]/[DMG&LoliHouse] Isekai Ojisan - 09 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,[DMG&LoliHouse] Isekai Ojisan - 09 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,661578664,2023-04-02T15:37:52,anime,1920x1080,hevc,1422.101,3721 +/mnt/Downloads/anime/[DMG&LoliHouse] Isekai Ojisan [01-13][WebRip 1080p HEVC-10bit AAC]/[DMG&LoliHouse] Isekai Ojisan - 12 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,[DMG&LoliHouse] Isekai Ojisan - 12 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,604397224,2023-04-02T15:37:59,anime,1920x1080,hevc,1442.069,3352 +/mnt/Downloads/anime/[DMG&LoliHouse] Isekai Ojisan [01-13][WebRip 1080p HEVC-10bit AAC]/[DMG&LoliHouse] Isekai Ojisan - 05 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,[DMG&LoliHouse] Isekai Ojisan - 05 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,642217462,2023-04-02T15:37:56,anime,1920x1080,hevc,1422.101,3612 +/mnt/Downloads/anime/[DMG&LoliHouse] Isekai Ojisan [01-13][WebRip 1080p HEVC-10bit AAC]/[DMG&LoliHouse] Isekai Ojisan - 01 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,[DMG&LoliHouse] Isekai Ojisan - 01 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,696493198,2023-04-02T15:36:35,anime,1920x1080,hevc,1422.101,3918 +/mnt/Downloads/anime/[DMG&LoliHouse] Isekai Ojisan [01-13][WebRip 1080p HEVC-10bit AAC]/[DMG&LoliHouse] Isekai Ojisan - 10 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,[DMG&LoliHouse] Isekai Ojisan - 10 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,545997475,2023-04-02T15:37:50,anime,1920x1080,hevc,1422.101,3071 +/mnt/Downloads/anime/[DMG&LoliHouse] Isekai Ojisan [01-13][WebRip 1080p HEVC-10bit AAC]/[DMG&LoliHouse] Isekai Ojisan - 07 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,[DMG&LoliHouse] Isekai Ojisan - 07 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,608996319,2023-04-02T15:37:51,anime,1920x1080,hevc,1422.101,3425 +/mnt/Downloads/anime/[DMG&LoliHouse] Isekai Ojisan [01-13][WebRip 1080p HEVC-10bit AAC]/[DMG&LoliHouse] Isekai Ojisan - 03 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,[DMG&LoliHouse] Isekai Ojisan - 03 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,654494326,2023-04-02T15:37:08,anime,1920x1080,hevc,1422.101,3681 +/mnt/Downloads/anime/[DMG&LoliHouse] Isekai Ojisan [01-13][WebRip 1080p HEVC-10bit AAC]/[DMG&LoliHouse] Isekai Ojisan - 06 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,[DMG&LoliHouse] Isekai Ojisan - 06 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,554762835,2023-04-02T15:37:50,anime,1920x1080,hevc,1422.101,3120 +/mnt/Downloads/anime/[DMG&LoliHouse] Isekai Ojisan [01-13][WebRip 1080p HEVC-10bit AAC]/[DMG&LoliHouse] Isekai Ojisan - 02 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,[DMG&LoliHouse] Isekai Ojisan - 02 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,625813206,2023-04-02T15:37:51,anime,1920x1080,hevc,1422.101,3520 +/mnt/Downloads/anime/[DMG&LoliHouse] Isekai Ojisan [01-13][WebRip 1080p HEVC-10bit AAC]/[DMG&LoliHouse] Isekai Ojisan - 11 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,[DMG&LoliHouse] Isekai Ojisan - 11 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,708537995,2023-04-02T15:37:51,anime,1920x1080,hevc,1422.101,3985 +/mnt/Downloads/anime/[ANi] 異世界自殺突擊隊 - 03 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 異世界自殺突擊隊 - 03 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,519971221,2024-06-27T09:12:22,anime,1920x1080,h264,1444.138667,2880 +/mnt/Downloads/anime/[BeanSub&FZSD&LoliHouse] Jujutsu Kaisen - 49v2 [WebRip 1080p HEVC-10bit AAC ASSx2]/[BeanSub&FZSD&LoliHouse] Jujutsu Kaisen - 49v2 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,[BeanSub&FZSD&LoliHouse] Jujutsu Kaisen - 49v2 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,410198988,2026-01-13T00:25:11,anime,1920x1080,hevc,1435.063,2286 +/mnt/Downloads/anime/[ANi] 記憶縫線 YOUR FORMA - 09 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 記憶縫線 YOUR FORMA - 09 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,1167457616,2025-05-28T15:32:28,anime,1920x1080,h264,1425.069622,6553 +/mnt/Downloads/anime/Psycho-Pass.Providence.2023.1080p.BluRay.x265.10bit.DTS-ADE/Psycho-Pass.Providence.2023.1080p.BluRay.x265.10bit.DTS-ADE.mkv,Psycho-Pass.Providence.2023.1080p.BluRay.x265.10bit.DTS-ADE.mkv,5699393840,2024-01-22T00:47:02,anime,1920x1080,hevc,7209.216,6324 +/mnt/Downloads/anime/[HYSUB]Violet Evergarden The Movie[BDrip][BIG5_MP4][1920X1080]/[HYSUB]Violet Evergarden The Movie[BDrip][BIG5_MP4][1920X1080].mp4,[HYSUB]Violet Evergarden The Movie[BDrip][BIG5_MP4][1920X1080].mp4,1362279568,2021-12-25T10:31:04,anime,1920x1080,h264,8406.464,1296 +/mnt/Downloads/anime/[HYSUB]Violet Evergarden The Movie[BDrip][BIG5_MP4][1920X1080]/EXTRA/[HYSUB]Violet Evergarden The Movie[Theatre Greeting][BDrip][MP4][1920X1080].mp4,[HYSUB]Violet Evergarden The Movie[Theatre Greeting][BDrip][MP4][1920X1080].mp4,468168963,2021-12-25T10:30:55,anime,1920x1080,h264,1517.056,2468 +/mnt/Downloads/anime/[HYSUB]Violet Evergarden The Movie[BDrip][BIG5_MP4][1920X1080]/EXTRA/[HYSUB]Violet Evergarden The Movie[PV2][BDrip][MP4][1920X1080].mp4,[HYSUB]Violet Evergarden The Movie[PV2][BDrip][MP4][1920X1080].mp4,51012134,2021-12-25T10:30:40,anime,1920x1080,h264,155.221333,2629 +/mnt/Downloads/anime/[HYSUB]Violet Evergarden The Movie[BDrip][BIG5_MP4][1920X1080]/EXTRA/[HYSUB]Violet Evergarden The Movie[Trailer2][BDrip][MP4][1920X1080].mp4,[HYSUB]Violet Evergarden The Movie[Trailer2][BDrip][MP4][1920X1080].mp4,8206885,2021-12-25T10:30:09,anime,1920x1080,h264,31.104,2110 +/mnt/Downloads/anime/[HYSUB]Violet Evergarden The Movie[BDrip][BIG5_MP4][1920X1080]/EXTRA/[HYSUB]Violet Evergarden The Movie[Trailer1][BDrip][MP4][1920X1080].mp4,[HYSUB]Violet Evergarden The Movie[Trailer1][BDrip][MP4][1920X1080].mp4,8003214,2021-12-25T10:30:09,anime,1920x1080,h264,31.104,2058 +/mnt/Downloads/anime/[HYSUB]Violet Evergarden The Movie[BDrip][BIG5_MP4][1920X1080]/EXTRA/[HYSUB]Violet Evergarden The Movie[PV3][BDrip][MP4][1920X1080].mp4,[HYSUB]Violet Evergarden The Movie[PV3][BDrip][MP4][1920X1080].mp4,40295950,2021-12-25T10:29:23,anime,1920x1080,h264,159.232,2024 +/mnt/Downloads/anime/[HYSUB]Violet Evergarden The Movie[BDrip][BIG5_MP4][1920X1080]/EXTRA/[HYSUB]Violet Evergarden The Movie[PV1][BDrip][MP4][1920X1080].mp4,[HYSUB]Violet Evergarden The Movie[PV1][BDrip][MP4][1920X1080].mp4,16142661,2021-12-25T10:30:14,anime,1920x1080,h264,61.141333,2112 +/mnt/Downloads/anime/[HYSUB]Violet Evergarden The Movie[BDrip][BIG5_MP4][1920X1080]/EXTRA/[HYSUB]Violet Evergarden The Movie[CM][BDrip][MP4][1920X1080].mp4,[HYSUB]Violet Evergarden The Movie[CM][BDrip][MP4][1920X1080].mp4,19483341,2021-12-25T10:30:08,anime,1920x1080,h264,61.141333,2549 +/mnt/Downloads/anime/[ANi] LAZARUS 拉撒路 - 11 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] LAZARUS 拉撒路 - 11 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,697040665,2025-06-15T23:40:31,anime,1920x1080,h264,1439.850667,3872 +/mnt/Downloads/anime/[Nekomoe kissaten][Ishura][12][1080p][JPSC].mp4,[Nekomoe kissaten][Ishura][12][1080p][JPSC].mp4,292580853,2024-03-21T23:26:05,anime,1920x1080,h264,1422.086667,1645 +/mnt/Downloads/anime/[ANi] 地獄模式 ~喜歡挑戰特殊成就的玩家在廢設定的異世界成為無雙~ - 04 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 地獄模式 ~喜歡挑戰特殊成就的玩家在廢設定的異世界成為無雙~ - 04 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,436817988,2026-01-31T01:06:57,anime,1920x1080,h264,1425.045333,2452 +/mnt/Downloads/anime/[LoliHouse] Shin Samurai-den YAIBA - 05 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,[LoliHouse] Shin Samurai-den YAIBA - 05 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,595367477,2025-05-04T04:41:16,anime,1920x1080,hevc,1429.935,3330 +/mnt/Downloads/anime/[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 01~22 [ViuTV]/[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 08 [ViuTV][WEB-DL][CHT][1080p][AVC AAC][MP4+ASS]/[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 08 [ViuTV][WEB-DL][1080p][AVC AAC].mp4,[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 08 [ViuTV][WEB-DL][1080p][AVC AAC].mp4,434973274,2023-03-17T11:26:22,anime,1920x1080,h264,1420.096,2450 +/mnt/Downloads/anime/[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 01~22 [ViuTV]/[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 02 [ViuTV][WEB-DL][CHT][1080p][AVC AAC][MP4+ASS]/[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 02 [ViuTV][WEB-DL][1080p][AVC AAC].mp4,[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 02 [ViuTV][WEB-DL][1080p][AVC AAC].mp4,442507289,2023-03-17T11:31:34,anime,1920x1080,h264,1420.053333,2492 +/mnt/Downloads/anime/[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 01~22 [ViuTV]/[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 01 [ViuTV][WEB-DL][CHT][1080p][AVC AAC][MP4+ASS]/[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 01 [ViuTV][WEB-DL][1080p][AVC AAC].mp4,[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 01 [ViuTV][WEB-DL][1080p][AVC AAC].mp4,398987914,2023-03-17T11:23:03,anime,1920x1080,h264,1420.138667,2247 +/mnt/Downloads/anime/[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 01~22 [ViuTV]/[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 07 [ViuTV][WEB-DL][CHT][1080p][AVC AAC][MP4+ASS]/[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 07 [ViuTV][WEB-DL][1080p][AVC AAC].mp4,[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 07 [ViuTV][WEB-DL][1080p][AVC AAC].mp4,416198814,2023-03-17T11:30:59,anime,1920x1080,h264,1420.053333,2344 +/mnt/Downloads/anime/[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 01~22 [ViuTV]/[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 04 [ViuTV][WEB-DL][CHT][1080p][AVC AAC][MP4+ASS]/[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 04 [ViuTV][WEB-DL][1080p][AVC AAC].mp4,[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 04 [ViuTV][WEB-DL][1080p][AVC AAC].mp4,475222783,2023-03-17T11:22:12,anime,1920x1080,h264,1420.138667,2677 +/mnt/Downloads/anime/[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 01~22 [ViuTV]/[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 10 [ViuTV][WEB-DL][CHT][1080p][AVC AAC][MP4+ASS]/[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 10 [ViuTV][WEB-DL][1080p][AVC AAC].mp4,[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 10 [ViuTV][WEB-DL][1080p][AVC AAC].mp4,413523328,2023-03-17T11:32:20,anime,1920x1080,h264,1420.138667,2329 +/mnt/Downloads/anime/[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 01~22 [ViuTV]/[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 13 [ViuTV][WEB-DL][CHT][1080p][AVC AAC][MP4+ASS]/[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 13 [ViuTV][WEB-DL][1080p][AVC AAC].mp4,[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 13 [ViuTV][WEB-DL][1080p][AVC AAC].mp4,422057902,2023-03-17T11:30:57,anime,1920x1080,h264,1420.096,2377 +/mnt/Downloads/anime/[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 01~22 [ViuTV]/[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 15 [ViuTV][WEB-DL][CHT][1080p][AVC AAC][MP4+ASS]/[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 15 [ViuTV][WEB-DL][1080p][AVC AAC].mp4,[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 15 [ViuTV][WEB-DL][1080p][AVC AAC].mp4,382810426,2023-03-17T11:15:05,anime,1920x1080,h264,1420.096,2156 +/mnt/Downloads/anime/[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 01~22 [ViuTV]/[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 16 [ViuTV][WEB-DL][CHT][1080p][AVC AAC][MP4+ASS]/[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 16 [ViuTV][WEB-DL][1080p][AVC AAC].mp4,[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 16 [ViuTV][WEB-DL][1080p][AVC AAC].mp4,376337079,2023-03-17T11:31:20,anime,1920x1080,h264,1420.096,2120 +/mnt/Downloads/anime/[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 01~22 [ViuTV]/[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 19 [ViuTV][WEB-DL][CHT][1080p][AVC AAC][MP4+ASS]/[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 19 [ViuTV][WEB-DL][1080p][AVC AAC].mp4,[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 19 [ViuTV][WEB-DL][1080p][AVC AAC].mp4,410244970,2023-03-17T10:32:30,anime,1920x1080,h264,1420.010667,2311 +/mnt/Downloads/anime/[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 01~22 [ViuTV]/[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 20 [ViuTV][WEB-DL][CHT][1080p][AVC AAC][MP4+ASS]/[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 20 [ViuTV][WEB-DL][1080p][AVC AAC].mp4,[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 20 [ViuTV][WEB-DL][1080p][AVC AAC].mp4,399033136,2023-03-17T11:19:01,anime,1920x1080,h264,1419.968,2248 +/mnt/Downloads/anime/[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 01~22 [ViuTV]/[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 05 [ViuTV][WEB-DL][CHT][1080p][AVC AAC][MP4+ASS]/[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 05 [ViuTV][WEB-DL][1080p][AVC AAC].mp4,[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 05 [ViuTV][WEB-DL][1080p][AVC AAC].mp4,494351111,2023-03-17T11:18:23,anime,1920x1080,h264,1420.096,2784 +/mnt/Downloads/anime/[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 01~22 [ViuTV]/[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 06 [ViuTV][WEB-DL][CHT][1080p][AVC AAC][MP4+ASS]/[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 06 [ViuTV][WEB-DL][1080p][AVC AAC].mp4,[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 06 [ViuTV][WEB-DL][1080p][AVC AAC].mp4,432074577,2023-03-17T11:29:48,anime,1920x1080,h264,1420.053333,2434 +/mnt/Downloads/anime/[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 01~22 [ViuTV]/[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 03 [ViuTV][WEB-DL][CHT][1080p][AVC AAC][MP4+ASS]/[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 03 [ViuTV][WEB-DL][1080p][AVC AAC].mp4,[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 03 [ViuTV][WEB-DL][1080p][AVC AAC].mp4,444050297,2023-03-17T11:22:51,anime,1920x1080,h264,1420.096,2501 +/mnt/Downloads/anime/[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 01~22 [ViuTV]/[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 09 [ViuTV][WEB-DL][CHT][1080p][AVC AAC][MP4+ASS]/[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 09 [ViuTV][WEB-DL][1080p][AVC AAC].mp4,[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 09 [ViuTV][WEB-DL][1080p][AVC AAC].mp4,454942955,2023-03-17T11:29:06,anime,1920x1080,h264,1420.138667,2562 +/mnt/Downloads/anime/[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 01~22 [ViuTV]/[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 18 [ViuTV][WEB-DL][CHT][1080p][AVC AAC][MP4+ASS]/[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 18 [ViuTV][WEB-DL][1080p][AVC AAC].mp4,[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 18 [ViuTV][WEB-DL][1080p][AVC AAC].mp4,386490298,2023-03-17T11:32:25,anime,1920x1080,h264,1420.053333,2177 +/mnt/Downloads/anime/[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 01~22 [ViuTV]/[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 17 [ViuTV][WEB-DL][CHT][1080p][AVC AAC][MP4+ASS]/[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 17 [ViuTV][WEB-DL][1080p][AVC AAC].mp4,[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 17 [ViuTV][WEB-DL][1080p][AVC AAC].mp4,398252063,2023-03-17T11:32:20,anime,1920x1080,h264,1420.085622,2243 +/mnt/Downloads/anime/[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 01~22 [ViuTV]/[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 14 [ViuTV][WEB-DL][CHT][1080p][AVC AAC][MP4+ASS]/[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 14 [ViuTV][WEB-DL][1080p][AVC AAC].mp4,[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 14 [ViuTV][WEB-DL][1080p][AVC AAC].mp4,455281488,2023-03-17T11:32:20,anime,1920x1080,h264,1420.096,2564 +/mnt/Downloads/anime/[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 01~22 [ViuTV]/[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 12 [ViuTV][WEB-DL][CHT][1080p][AVC AAC][MP4+ASS]/[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 12 [ViuTV][WEB-DL][1080p][AVC AAC].mp4,[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 12 [ViuTV][WEB-DL][1080p][AVC AAC].mp4,482464449,2023-03-17T11:09:30,anime,1920x1080,h264,1420.096,2717 +/mnt/Downloads/anime/[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 01~22 [ViuTV]/[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 11 [ViuTV][WEB-DL][CHT][1080p][AVC AAC][MP4+ASS]/[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 11 [ViuTV][WEB-DL][1080p][AVC AAC].mp4,[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 11 [ViuTV][WEB-DL][1080p][AVC AAC].mp4,457963301,2023-03-17T11:31:17,anime,1920x1080,h264,1415.125333,2588 +/mnt/Downloads/anime/[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 01~22 [ViuTV]/[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 22 [ViuTV][WEB-DL][CHT][1080p][AVC AAC][MP4+ASS]/[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 22 [ViuTV][WEB-DL][1080p][AVC AAC].mp4,[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 22 [ViuTV][WEB-DL][1080p][AVC AAC].mp4,433927359,2023-03-17T10:34:07,anime,1920x1080,h264,1420.053333,2444 +/mnt/Downloads/anime/[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 01~22 [ViuTV]/[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 21 [ViuTV][WEB-DL][CHT][1080p][AVC AAC][MP4+ASS]/[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 21 [ViuTV][WEB-DL][1080p][AVC AAC].mp4,[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 21 [ViuTV][WEB-DL][1080p][AVC AAC].mp4,364921616,2023-03-17T10:46:22,anime,1920x1080,h264,1420.002866,2055 +/mnt/Downloads/anime/[ANi] 無職轉生~到了異世界就拿出真本事 第二季 - 18 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 無職轉生~到了異世界就拿出真本事 第二季 - 18 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,668411966,2024-05-12T15:22:49,anime,1920x1080,h264,1420.022911,3765 +/mnt/Downloads/anime/[LoliHouse] Around 40 Otoko no Isekai Tsuuhan - 04 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,[LoliHouse] Around 40 Otoko no Isekai Tsuuhan - 04 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,600675204,2025-02-12T14:03:42,anime,1920x1080,hevc,1420.062,3383 +/mnt/Downloads/anime/[ANi] 勇氣爆發 BANG BRAVERN - 06 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 勇氣爆發 BANG BRAVERN - 06 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,663979268,2024-02-16T02:28:43,anime,1920x1080,h264,1420.117333,3740 +/mnt/Downloads/anime/[Nekomoe kissaten][Tower of God S2][11][1080p][CHT].mp4,[Nekomoe kissaten][Tower of God S2][11][1080p][CHT].mp4,624488346,2024-10-05T10:15:14,anime,1920x1080,h264,1421.107664,3515 +/mnt/Downloads/anime/[Nekomoe kissaten][Ishura][07][1080p][JPSC].mp4,[Nekomoe kissaten][Ishura][07][1080p][JPSC].mp4,366662939,2024-02-15T23:52:56,anime,1920x1080,h264,1422.045,2062 +/mnt/Downloads/anime/[ANi] 記憶縫線 YOUR FORMA - 12 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 記憶縫線 YOUR FORMA - 12 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,583003948,2025-06-19T00:13:09,anime,1920x1080,h264,1425.069622,3272 +/mnt/Downloads/anime/[Nekomoe kissaten][Mayonaka Punch][01][1080p][JPTC].mp4,[Nekomoe kissaten][Mayonaka Punch][01][1080p][JPTC].mp4,548551024,2024-07-09T01:50:49,anime,1920x1080,h264,1420.062766,3090 +/mnt/Downloads/anime/[KitaujiSub] Ao no Hako [09][WebRip][HEVC_AAC][CHS_JP].mp4,[KitaujiSub] Ao no Hako [09][WebRip][HEVC_AAC][CHS_JP].mp4,443615304,2024-12-03T01:16:58,anime,1920x1080,hevc,1417.28,2504 +/mnt/Downloads/anime/[ANi] 忍者與殺手的兩人生活 - 04 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 忍者與殺手的兩人生活 - 04 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,309073151,2025-05-01T14:52:29,anime,1920x1080,h264,1420.032,1741 +/mnt/Downloads/anime/[LoliHouse] Tensei Shitara Slime Datta Ken 3rd Season - 56 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,[LoliHouse] Tensei Shitara Slime Datta Ken 3rd Season - 56 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,668167461,2024-05-24T23:24:17,anime,1920x1080,hevc,1470.032,3636 +/mnt/Downloads/anime/[ANi] 地下城中的人 - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 地下城中的人 - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,365935665,2024-07-13T05:12:40,anime,1920x1080,h264,1467.072,1995 +/mnt/Downloads/anime/[ANi] WIND BREAKER—防風少年— Season 2 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] WIND BREAKER—防風少年— Season 2 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,549340399,2025-04-04T01:58:23,anime,1920x1080,h264,1440.084622,3051 +"/mnt/Downloads/anime/[LoliHouse] Tensei Kizoku, Kantei Skill de Nariagaru - 17 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv","[LoliHouse] Tensei Kizoku, Kantei Skill de Nariagaru - 17 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv",416776725,2024-11-05T23:28:14,anime,1920x1080,hevc,1420.109,2347 +/mnt/Downloads/anime/[Nekomoe kissaten&LoliHouse] Girumasu - 01 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,[Nekomoe kissaten&LoliHouse] Girumasu - 01 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,542075775,2025-01-18T10:50:12,anime,1920x1080,hevc,1440.078,3011 +/mnt/Downloads/anime/[ANi] 聽說你們要結婚!? - 10 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 聽說你們要結婚!? - 10 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,543770273,2024-12-05T23:43:55,anime,1920x1080,h264,1419.989333,3063 +/mnt/Downloads/anime/[ANi] 戀上換裝娃娃 Season 2 - 23 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 戀上換裝娃娃 Season 2 - 23 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,316744143,2025-09-14T02:18:01,anime,1920x1080,h264,1425.069622,1778 +/mnt/Downloads/anime/[ANi] Silent Witch 沉默魔女的祕密 - 05 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] Silent Witch 沉默魔女的祕密 - 05 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,333237135,2025-08-02T00:36:35,anime,1920x1080,h264,1445.0062,1844 +/mnt/Downloads/anime/[LoliHouse] Nageki no Bourei wa Intai shitai - 14 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,[LoliHouse] Nageki no Bourei wa Intai shitai - 14 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,224765302,2025-10-07T23:22:09,anime,1920x1080,hevc,1430.071,1257 +"/mnt/Downloads/anime/[LoliHouse] Party kara Tsuihou sareta Sono Chiyushi, Jitsu wa Saikyou ni Tsuki - 03 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv","[LoliHouse] Party kara Tsuihou sareta Sono Chiyushi, Jitsu wa Saikyou ni Tsuki - 03 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv",343609650,2024-10-22T00:25:41,anime,1920x1080,hevc,1404.087,1957 +/mnt/Downloads/anime/[ANi] 安逸領主的愉快領地防衛~用生產系魔術將無名村改造成最強要塞都市~ - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 安逸領主的愉快領地防衛~用生產系魔術將無名村改造成最強要塞都市~ - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,412533535,2026-01-08T04:21:21,anime,1920x1080,h264,1419.9812,2324 +/mnt/Downloads/anime/[Nekomoe kissaten][Tower of God S2][04][1080p][CHT].mp4,[Nekomoe kissaten][Tower of God S2][04][1080p][CHT].mp4,485460460,2024-08-02T11:04:29,anime,1920x1080,h264,1421.107664,2732 +/mnt/Downloads/anime/[ANi] 我獨自升級 - 12 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 我獨自升級 - 12 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,824875879,2024-03-30T23:31:54,anime,1920x1080,h264,1425.28,4629 +/mnt/Downloads/anime/[Nekomoe kissaten][Ishura][09][1080p][JPTC].mp4,[Nekomoe kissaten][Ishura][09][1080p][JPTC].mp4,496238620,2024-02-29T23:40:32,anime,1920x1080,h264,1422.045,2791 +/mnt/Downloads/anime/[ANi] 差點在迷宮深處被信任的夥伴殺掉,但靠著天賜技能「無限扭蛋」獲得等級 9999 的夥伴,我要向前隊友和世界展開復仇&「給他們好看!」 - 09 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 差點在迷宮深處被信任的夥伴殺掉,但靠著天賜技能「無限扭蛋」獲得等級 9999 的夥伴,我要向前隊友和世界展開復仇&「給他們好看!」 - 09 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,410257745,2025-11-28T15:20:11,anime,1920x1080,h264,1431.033911,2293 +/mnt/Downloads/anime/[ANi] 愚蠢天使與惡魔共舞 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 愚蠢天使與惡魔共舞 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,580881286,2024-01-09T04:47:45,anime,1920x1080,h264,1420.117333,3272 +/mnt/Downloads/anime/[ANi] 靠廢柴技能【狀態異常】成為最強的我將蹂躪一切 - 03 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 靠廢柴技能【狀態異常】成為最強的我將蹂躪一切 - 03 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,534307003,2024-07-19T05:50:09,anime,1920x1080,h264,1450.026667,2947 +/mnt/Downloads/anime/[ANi] GNOSIA - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] GNOSIA - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,615552074,2025-10-21T05:40:55,anime,1920x1080,h264,1565.056,3146 +/mnt/Downloads/anime/[ANi] 歲月流逝飯菜依舊美味 - 10 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 歲月流逝飯菜依舊美味 - 10 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,453382113,2025-06-15T00:44:48,anime,1920x1080,h264,1445.056,2509 +/mnt/Downloads/anime/Mobile Suit Gundam the Witch from Mercury - 『PROLOGUE』/Mobile Suit Gundam the Witch from Mercury - 『PROLOGUE』.mp4,Mobile Suit Gundam the Witch from Mercury - 『PROLOGUE』.mp4,301205082,2022-09-01T00:41:26,anime,1920x1080,h264,1479.111111,1629 +/mnt/Downloads/anime/[ANi] 我獨自升級 - 09 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 我獨自升級 - 09 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,724893192,2024-05-18T05:23:35,anime,1920x1080,h264,1425.322667,4068 +/mnt/Downloads/anime/[KTXP][Violet_Evergarden][01-13][BIG5][1080p][BDrip]/[KTXP][Violet_Evergarden][12][BIG5][1080p][BDrip].mp4,[KTXP][Violet_Evergarden][12][BIG5][1080p][BDrip].mp4,1830584748,2021-01-03T06:24:54,anime,1920x1080,h264,1421.077333,10305 +/mnt/Downloads/anime/[KTXP][Violet_Evergarden][01-13][BIG5][1080p][BDrip]/[KTXP][Violet_Evergarden][NCOP][1080p][BDrip].mp4,[KTXP][Violet_Evergarden][NCOP][1080p][BDrip].mp4,145697884,2021-01-03T06:20:44,anime,1920x1080,h264,91.157333,12786 +/mnt/Downloads/anime/[KTXP][Violet_Evergarden][01-13][BIG5][1080p][BDrip]/[KTXP][Violet_Evergarden][13][BIG5][1080p][BDrip].mp4,[KTXP][Violet_Evergarden][13][BIG5][1080p][BDrip].mp4,1867370991,2021-01-03T06:24:55,anime,1920x1080,h264,1611.264,9271 +/mnt/Downloads/anime/[KTXP][Violet_Evergarden][01-13][BIG5][1080p][BDrip]/[KTXP][Violet_Evergarden][11][BIG5][1080p][BDrip].mp4,[KTXP][Violet_Evergarden][11][BIG5][1080p][BDrip].mp4,1580919649,2021-01-03T06:24:55,anime,1920x1080,h264,1421.034667,8900 +/mnt/Downloads/anime/[KTXP][Violet_Evergarden][01-13][BIG5][1080p][BDrip]/[KTXP][Violet_Evergarden][10][BIG5][1080p][BDrip].mp4,[KTXP][Violet_Evergarden][10][BIG5][1080p][BDrip].mp4,1579809403,2021-01-03T06:24:19,anime,1920x1080,h264,1596.906667,7914 +/mnt/Downloads/anime/[KTXP][Violet_Evergarden][01-13][BIG5][1080p][BDrip]/[KTXP][Violet_Evergarden][NCED][1080p][BDrip].mp4,[KTXP][Violet_Evergarden][NCED][1080p][BDrip].mp4,167384252,2021-01-03T06:24:34,anime,1920x1080,h264,91.157333,14689 +/mnt/Downloads/anime/[KTXP][Violet_Evergarden][01-13][BIG5][1080p][BDrip]/[KTXP][Violet_Evergarden][02][BIG5][1080p][BDrip].mp4,[KTXP][Violet_Evergarden][02][BIG5][1080p][BDrip].mp4,1491345317,2021-01-03T06:24:44,anime,1920x1080,h264,1511.125333,7895 +/mnt/Downloads/anime/[KTXP][Violet_Evergarden][01-13][BIG5][1080p][BDrip]/[KTXP][Violet_Evergarden][03][BIG5][1080p][BDrip].mp4,[KTXP][Violet_Evergarden][03][BIG5][1080p][BDrip].mp4,1456759439,2021-01-03T06:24:26,anime,1920x1080,h264,1424.32,8182 +/mnt/Downloads/anime/[KTXP][Violet_Evergarden][01-13][BIG5][1080p][BDrip]/[KTXP][Violet_Evergarden][01][BIG5][1080p][BDrip].mp4,[KTXP][Violet_Evergarden][01][BIG5][1080p][BDrip].mp4,1616978898,2021-01-03T06:24:46,anime,1920x1080,h264,1421.12,9102 +/mnt/Downloads/anime/[KTXP][Violet_Evergarden][01-13][BIG5][1080p][BDrip]/[KTXP][Violet_Evergarden][05][BIG5][1080p][BDrip].mp4,[KTXP][Violet_Evergarden][05][BIG5][1080p][BDrip].mp4,1488833009,2021-01-03T06:24:39,anime,1920x1080,h264,1508.330667,7896 +/mnt/Downloads/anime/[KTXP][Violet_Evergarden][01-13][BIG5][1080p][BDrip]/[KTXP][Violet_Evergarden][04][BIG5][1080p][BDrip].mp4,[KTXP][Violet_Evergarden][04][BIG5][1080p][BDrip].mp4,1536610767,2021-01-03T06:24:55,anime,1920x1080,h264,1421.12,8650 +/mnt/Downloads/anime/[KTXP][Violet_Evergarden][01-13][BIG5][1080p][BDrip]/[KTXP][Violet_Evergarden][06][BIG5][1080p][BDrip].mp4,[KTXP][Violet_Evergarden][06][BIG5][1080p][BDrip].mp4,1408726911,2021-01-03T06:24:54,anime,1920x1080,h264,1421.12,7930 +/mnt/Downloads/anime/[KTXP][Violet_Evergarden][01-13][BIG5][1080p][BDrip]/[KTXP][Violet_Evergarden][07][BIG5][1080p][BDrip].mp4,[KTXP][Violet_Evergarden][07][BIG5][1080p][BDrip].mp4,1480715549,2021-01-03T06:24:33,anime,1920x1080,h264,1421.077333,8335 +/mnt/Downloads/anime/[KTXP][Violet_Evergarden][01-13][BIG5][1080p][BDrip]/[KTXP][Violet_Evergarden][09][BIG5][1080p][BDrip].mp4,[KTXP][Violet_Evergarden][09][BIG5][1080p][BDrip].mp4,1319891493,2021-01-03T06:24:44,anime,1920x1080,h264,1421.077333,7430 +/mnt/Downloads/anime/[KTXP][Violet_Evergarden][01-13][BIG5][1080p][BDrip]/[KTXP][Violet_Evergarden][08][BIG5][1080p][BDrip].mp4,[KTXP][Violet_Evergarden][08][BIG5][1080p][BDrip].mp4,1640566885,2021-01-03T06:24:55,anime,1920x1080,h264,1422.570667,9225 +/mnt/Downloads/anime/[ANi] 轉生貴族憑鑑定技能扭轉人生 第二季 - 21 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 轉生貴族憑鑑定技能扭轉人生 第二季 - 21 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,383751707,2024-12-02T00:18:28,anime,1920x1080,h264,1420.074667,2161 +/mnt/Downloads/anime/[Nekomoe kissaten][Your Forma][04][1080p][JPSC].mp4,[Nekomoe kissaten][Your Forma][04][1080p][JPSC].mp4,399440125,2025-04-26T03:22:02,anime,1920x1080,h264,1425.048333,2242 +/mnt/Downloads/anime/[Skymoon-Raws] DAN DA DAN - 14 [ViuTV][WEB-DL][CHT][SRT][1080p][AVC AAC].mkv,[Skymoon-Raws] DAN DA DAN - 14 [ViuTV][WEB-DL][CHT][SRT][1080p][AVC AAC].mkv,393983468,2025-07-10T23:40:24,anime,1920x1080,h264,1447.082,2178 +/mnt/Downloads/anime/[ANi] 膽大黨 第二季 - 19 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 膽大黨 第二季 - 19 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,517582602,2025-08-15T01:24:51,anime,1920x1080,h264,1447.049911,2861 +/mnt/Downloads/anime/[ANi] FARMAGIA 魔農傳記 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] FARMAGIA 魔農傳記 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,417695897,2025-01-11T07:52:35,anime,1920x1080,h264,1440.128,2320 +/mnt/Downloads/anime/[ANi] 從路人角色開始的探索英雄譚 - 05 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 從路人角色開始的探索英雄譚 - 05 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,340645194,2024-07-27T14:54:46,anime,1920x1080,h264,1420.022911,1919 +/mnt/Downloads/anime/[Nekomoe kissaten][Dosanko Gal wa Namara Menkoi][11][1080p][JPTC].mp4,[Nekomoe kissaten][Dosanko Gal wa Namara Menkoi][11][1080p][JPTC].mp4,358569717,2024-03-24T12:47:12,anime,1920x1080,h264,1440.031678,1992 +/mnt/Downloads/anime/[LoliHouse] Tate no Yuusha no Nariagari S4 - 05 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,[LoliHouse] Tate no Yuusha no Nariagari S4 - 05 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,737506263,2025-08-13T23:58:49,anime,1920x1080,hevc,1420.017,4154 +/mnt/Downloads/anime/[ANi] 素材採集家的異世界旅行記 - 04 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 素材採集家的異世界旅行記 - 04 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,354098660,2025-10-21T00:51:10,anime,1920x1080,h264,1419.9812,1994 +/mnt/Downloads/anime/[ANi] 盾之勇者成名錄 Season 4 - 12 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 盾之勇者成名錄 Season 4 - 12 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,542149091,2025-09-24T14:02:59,anime,1920x1080,h264,1420.032,3054 +/mnt/Downloads/anime/[ANi] 身為暗殺者的我明顯比勇者還強 - 06 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 身為暗殺者的我明顯比勇者還強 - 06 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,670729224,2025-11-11T00:01:47,anime,1920x1080,h264,1430.074622,3752 +/mnt/Downloads/anime/[Nekomoe kissaten&LoliHouse] Dandadan - 01 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,[Nekomoe kissaten&LoliHouse] Dandadan - 01 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,678812054,2024-10-07T23:42:40,anime,1920x1080,hevc,1437.083,3778 +/mnt/Downloads/anime/[ANi] 遲早是最強的鍊金術師? - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 遲早是最強的鍊金術師? - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,378379471,2025-01-02T00:02:43,anime,1920x1080,h264,1420.032,2131 +/mnt/Downloads/anime/[LoliHouse] Tensei Shitara Slime Datta Ken 3rd Season - 62 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,[LoliHouse] Tensei Shitara Slime Datta Ken 3rd Season - 62 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,572285977,2024-07-06T08:53:18,anime,1920x1080,hevc,1470.102,3114 +/mnt/Downloads/anime/[ANi] Re:從零開始的異世界生活 第三季 - 13 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] Re:從零開始的異世界生活 第三季 - 13 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,377443897,2025-03-05T23:38:16,anime,1920x1080,h264,1419.9812,2126 +/mnt/Downloads/anime/[ANi] 葬送的芙莉蓮 第二季 - 29 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 葬送的芙莉蓮 第二季 - 29 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,703959923,2026-01-16T16:14:59,anime,1920x1080,h264,1440.042911,3910 +"/mnt/Downloads/anime/[LoliHouse] Katainaka no Ossan, Kensei ni Naru - 10 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv","[LoliHouse] Katainaka no Ossan, Kensei ni Naru - 10 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv",592301212,2025-06-07T23:29:48,anime,1920x1080,hevc,1441.13,3287 +/mnt/Downloads/anime/[Nekomoe kissaten][Ninja Kamui][03][1080p][CHT].mp4,[Nekomoe kissaten][Ninja Kamui][03][1080p][CHT].mp4,392152440,2024-03-13T13:43:13,anime,1920x1080,h264,1381.055,2271 +/mnt/Downloads/anime/[ANi] 香格里拉・開拓異境~糞作獵手挑戰神作~ 第二季 - 05 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 香格里拉・開拓異境~糞作獵手挑戰神作~ 第二季 - 05 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,1118545068,2024-11-13T15:25:41,anime,1920x1080,h264,1430.324867,6256 +/mnt/Downloads/anime/[HYSUB]Dungeon Meshi[02][BIG5_MP4][1920X1080].mp4,[HYSUB]Dungeon Meshi[02][BIG5_MP4][1920X1080].mp4,325898015,2024-01-11T23:56:56,anime,1920x1080,h264,1560.170667,1671 +/mnt/Downloads/anime/[ANi] 這個世界漏洞百出 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 這個世界漏洞百出 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,466141384,2024-07-06T08:57:58,anime,1920x1080,h264,1445.056,2580 +/mnt/Downloads/anime/[ANi] 九龍大眾浪漫 - 10 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 九龍大眾浪漫 - 10 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,293338072,2025-06-07T23:30:58,anime,1920x1080,h264,1430.037333,1641 +/mnt/Downloads/anime/[Nekomoe kissaten][Your Forma][02][1080p][JPSC].mp4,[Nekomoe kissaten][Your Forma][02][1080p][JPSC].mp4,431064681,2025-04-11T00:00:19,anime,1920x1080,h264,1425.09,2419 +/mnt/Downloads/anime/[ANi] 結緣甘神神社 - 07 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 結緣甘神神社 - 07 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,398264695,2024-11-12T23:21:52,anime,1920x1080,h264,1420.074667,2243 +/mnt/Downloads/anime/[DragsterPS] Kengan Ashura S01 [720p] [Multi-Audio] [Multi-Subs]/[DragsterPS] Kengan Ashura S01E09 [720p] [Multi-Audio] [Multi-Subs] [2A8CE00A].mkv,[DragsterPS] Kengan Ashura S01E09 [720p] [Multi-Audio] [Multi-Subs] [2A8CE00A].mkv,915640882,2019-07-31T17:18:33,anime,1280x720,h264,1485.856,4929 +/mnt/Downloads/anime/[DragsterPS] Kengan Ashura S01 [720p] [Multi-Audio] [Multi-Subs]/[DragsterPS] Kengan Ashura S01E05 [720p] [Multi-Audio] [Multi-Subs] [2129990F].mkv,[DragsterPS] Kengan Ashura S01E05 [720p] [Multi-Audio] [Multi-Subs] [2129990F].mkv,1089627042,2019-07-31T17:18:31,anime,1280x720,h264,1579.936,5517 +/mnt/Downloads/anime/[DragsterPS] Kengan Ashura S01 [720p] [Multi-Audio] [Multi-Subs]/[DragsterPS] Kengan Ashura S01E11 [720p] [Multi-Audio] [Multi-Subs] [7EFF4030].mkv,[DragsterPS] Kengan Ashura S01E11 [720p] [Multi-Audio] [Multi-Subs] [7EFF4030].mkv,914889166,2019-07-31T17:18:33,anime,1280x720,h264,1485.856,4925 +/mnt/Downloads/anime/[DragsterPS] Kengan Ashura S01 [720p] [Multi-Audio] [Multi-Subs]/[DragsterPS] Kengan Ashura S01E07 [720p] [Multi-Audio] [Multi-Subs] [732DED05].mkv,[DragsterPS] Kengan Ashura S01E07 [720p] [Multi-Audio] [Multi-Subs] [732DED05].mkv,1025352601,2019-07-31T17:17:20,anime,1280x720,h264,1487.904,5513 +/mnt/Downloads/anime/[DragsterPS] Kengan Ashura S01 [720p] [Multi-Audio] [Multi-Subs]/[DragsterPS] Kengan Ashura S01E12 [720p] [Multi-Audio] [Multi-Subs] [8242AFF3].mkv,[DragsterPS] Kengan Ashura S01E12 [720p] [Multi-Audio] [Multi-Subs] [8242AFF3].mkv,1031721772,2019-07-31T17:18:35,anime,1280x720,h264,1666.08,4954 +/mnt/Downloads/anime/[DragsterPS] Kengan Ashura S01 [720p] [Multi-Audio] [Multi-Subs]/[DragsterPS] Kengan Ashura S01E01 [720p] [Multi-Audio] [Multi-Subs] [5CFDFC8D].mkv,[DragsterPS] Kengan Ashura S01E01 [720p] [Multi-Audio] [Multi-Subs] [5CFDFC8D].mkv,851572968,2019-07-31T14:07:21,anime,1280x720,h264,1483.808,4591 +/mnt/Downloads/anime/[DragsterPS] Kengan Ashura S01 [720p] [Multi-Audio] [Multi-Subs]/[DragsterPS] Kengan Ashura S01E10 [720p] [Multi-Audio] [Multi-Subs] [D2EB50E7].mkv,[DragsterPS] Kengan Ashura S01E10 [720p] [Multi-Audio] [Multi-Subs] [D2EB50E7].mkv,883097518,2019-07-31T17:18:34,anime,1280x720,h264,1485.856,4754 +/mnt/Downloads/anime/[DragsterPS] Kengan Ashura S01 [720p] [Multi-Audio] [Multi-Subs]/[DragsterPS] Kengan Ashura S01E08 [720p] [Multi-Audio] [Multi-Subs] [60C56D1C].mkv,[DragsterPS] Kengan Ashura S01E08 [720p] [Multi-Audio] [Multi-Subs] [60C56D1C].mkv,915830397,2019-07-31T17:18:31,anime,1280x720,h264,1487.904,4924 +/mnt/Downloads/anime/[DragsterPS] Kengan Ashura S01 [720p] [Multi-Audio] [Multi-Subs]/[DragsterPS] Kengan Ashura S01E03 [720p] [Multi-Audio] [Multi-Subs] [D46187C5].mkv,[DragsterPS] Kengan Ashura S01E03 [720p] [Multi-Audio] [Multi-Subs] [D46187C5].mkv,1027399420,2019-07-31T16:13:52,anime,1280x720,h264,1483.808,5539 +/mnt/Downloads/anime/[DragsterPS] Kengan Ashura S01 [720p] [Multi-Audio] [Multi-Subs]/[DragsterPS] Kengan Ashura S01E06 [720p] [Multi-Audio] [Multi-Subs] [383F22E1].mkv,[DragsterPS] Kengan Ashura S01E06 [720p] [Multi-Audio] [Multi-Subs] [383F22E1].mkv,1025460279,2019-07-31T17:18:03,anime,1280x720,h264,1485.856,5521 +/mnt/Downloads/anime/[DragsterPS] Kengan Ashura S01 [720p] [Multi-Audio] [Multi-Subs]/[DragsterPS] Kengan Ashura S01E04 [720p] [Multi-Audio] [Multi-Subs] [8D939D02].mkv,[DragsterPS] Kengan Ashura S01E04 [720p] [Multi-Audio] [Multi-Subs] [8D939D02].mkv,1087827600,2019-07-31T16:11:42,anime,1280x720,h264,1573.92,5529 +/mnt/Downloads/anime/[DragsterPS] Kengan Ashura S01 [720p] [Multi-Audio] [Multi-Subs]/[DragsterPS] Kengan Ashura S01E02 [720p] [Multi-Audio] [Multi-Subs] [80409C50].mkv,[DragsterPS] Kengan Ashura S01E02 [720p] [Multi-Audio] [Multi-Subs] [80409C50].mkv,852546390,2019-07-31T14:07:40,anime,1280x720,h264,1483.808,4596 +/mnt/Downloads/anime/[ANi] SPY×FAMILY 間諜家家酒 Season 3 - 38 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] SPY×FAMILY 間諜家家酒 Season 3 - 38 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,444220045,2025-10-05T01:11:37,anime,1920x1080,h264,1419.9812,2502 +/mnt/Downloads/anime/[ANi] Re:從零開始的異世界生活 第三季 - 08 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] Re:從零開始的異世界生活 第三季 - 08 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,232499820,2024-11-20T14:58:16,anime,1920x1080,h264,1420.064622,1309 +/mnt/Downloads/anime/[LoliHouse] Shin no Nakama 2nd - 07 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,[LoliHouse] Shin no Nakama 2nd - 07 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,364328538,2024-02-19T11:22:16,anime,1920x1080,hevc,1420.062,2052 +/mnt/Downloads/anime/[ANi] 葬送的芙莉蓮 第二季 - 32 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 葬送的芙莉蓮 第二季 - 32 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,754370703,2026-02-07T00:27:49,anime,1920x1080,h264,1439.959489,4191 +/mnt/Downloads/anime/[ANi] 關於我轉生變成史萊姆這檔事 第三季 - 69 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 關於我轉生變成史萊姆這檔事 第三季 - 69 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,547431175,2024-09-06T23:41:32,anime,1920x1080,h264,1481.0422,2957 +/mnt/Downloads/anime/[Nekomoe kissaten][Dosanko Gal wa Namara Menkoi][02][1080p][JPTC].mp4,[Nekomoe kissaten][Dosanko Gal wa Namara Menkoi][02][1080p][JPTC].mp4,371799479,2024-01-27T06:49:54,anime,1920x1080,h264,1440.031678,2065 +/mnt/Downloads/anime/[ANi] 水屬性的魔法師 - 06 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 水屬性的魔法師 - 06 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,282142100,2025-08-15T01:24:51,anime,1920x1080,h264,1455.018667,1551 +/mnt/Downloads/anime/[Skymoon-Raws] Mob Psycho 100 S03 - 06 [ViuTV][WEB-DL][CHT][1080p][AVC AAC][MP4+ASS]/[Skymoon-Raws] Mob Psycho 100 S03 - 06 [ViuTV][WEB-DL][1080p][AVC AAC].mp4,[Skymoon-Raws] Mob Psycho 100 S03 - 06 [ViuTV][WEB-DL][1080p][AVC AAC].mp4,414853667,2022-11-09T23:44:22,anime,1920x1080,h264,1420.181333,2336 +/mnt/Downloads/anime/[LoliHouse] Tekken Bloodline [WebRip 1080p HEVC-10bit AAC SRTx3]/[LoliHouse] Tekken Bloodline - 02 [WebRip 1080p HEVC-10bit AAC SRTx3].mkv,[LoliHouse] Tekken Bloodline - 02 [WebRip 1080p HEVC-10bit AAC SRTx3].mkv,772137117,2022-09-23T16:10:01,anime,1920x1080,hevc,1552.512,3978 +/mnt/Downloads/anime/[LoliHouse] Tekken Bloodline [WebRip 1080p HEVC-10bit AAC SRTx3]/[LoliHouse] Tekken Bloodline - 06 [WebRip 1080p HEVC-10bit AAC SRTx3].mkv,[LoliHouse] Tekken Bloodline - 06 [WebRip 1080p HEVC-10bit AAC SRTx3].mkv,832853947,2022-09-23T16:09:53,anime,1920x1080,hevc,1291.249,5159 +/mnt/Downloads/anime/[LoliHouse] Tekken Bloodline [WebRip 1080p HEVC-10bit AAC SRTx3]/[LoliHouse] Tekken Bloodline - 03 [WebRip 1080p HEVC-10bit AAC SRTx3].mkv,[LoliHouse] Tekken Bloodline - 03 [WebRip 1080p HEVC-10bit AAC SRTx3].mkv,893536128,2022-09-23T16:10:06,anime,1920x1080,hevc,1483.482,4818 +/mnt/Downloads/anime/[LoliHouse] Tekken Bloodline [WebRip 1080p HEVC-10bit AAC SRTx3]/[LoliHouse] Tekken Bloodline - 01 [WebRip 1080p HEVC-10bit AAC SRTx3].mkv,[LoliHouse] Tekken Bloodline - 01 [WebRip 1080p HEVC-10bit AAC SRTx3].mkv,771593761,2022-09-23T16:09:56,anime,1920x1080,hevc,1507.925,4093 +/mnt/Downloads/anime/[LoliHouse] Tekken Bloodline [WebRip 1080p HEVC-10bit AAC SRTx3]/[LoliHouse] Tekken Bloodline - 05 [WebRip 1080p HEVC-10bit AAC SRTx3].mkv,[LoliHouse] Tekken Bloodline - 05 [WebRip 1080p HEVC-10bit AAC SRTx3].mkv,961919322,2022-09-23T16:09:51,anime,1920x1080,hevc,1680.22,4579 +/mnt/Downloads/anime/[LoliHouse] Tekken Bloodline [WebRip 1080p HEVC-10bit AAC SRTx3]/[LoliHouse] Tekken Bloodline - 04 [WebRip 1080p HEVC-10bit AAC SRTx3].mkv,[LoliHouse] Tekken Bloodline - 04 [WebRip 1080p HEVC-10bit AAC SRTx3].mkv,793823993,2022-09-23T16:09:52,anime,1920x1080,hevc,1370.922,4632 +/mnt/Downloads/anime/[ANi] 魔都精兵的奴隸 第二季 - 05 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 魔都精兵的奴隸 第二季 - 05 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,497307615,2026-02-05T23:46:35,anime,1920x1080,h264,1422.066622,2797 +/mnt/Downloads/anime/[ANi] 記憶縫線 YOUR FORMA - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 記憶縫線 YOUR FORMA - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,626438454,2025-04-03T02:24:27,anime,1920x1080,h264,1425.027911,3516 +/mnt/Downloads/anime/[ANi] 永遠的黃昏 - 07 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 永遠的黃昏 - 07 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,346751703,2025-11-14T00:22:43,anime,1920x1080,h264,1434.965333,1933 +/mnt/Downloads/anime/[ANi] 地下城中的人 - 11 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 地下城中的人 - 11 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,392569474,2024-09-21T13:28:39,anime,1920x1080,h264,1452.074667,2162 +/mnt/Downloads/anime/[DMG&VCB-Studio] Isekai Ojisan [1080p][chs]/[DMG&VCB-Studio] Isekai Ojisan [12][1080p][x264_aac][chs].mp4,[DMG&VCB-Studio] Isekai Ojisan [12][1080p][x264_aac][chs].mp4,753018481,2023-08-16T02:17:06,anime,1920x1080,h264,1442.026667,4177 +/mnt/Downloads/anime/[DMG&VCB-Studio] Isekai Ojisan [1080p][chs]/[DMG&VCB-Studio] Isekai Ojisan [06][1080p][x264_aac][chs].mp4,[DMG&VCB-Studio] Isekai Ojisan [06][1080p][x264_aac][chs].mp4,703977695,2023-08-16T02:17:07,anime,1920x1080,h264,1422.058333,3960 +/mnt/Downloads/anime/[DMG&VCB-Studio] Isekai Ojisan [1080p][chs]/[DMG&VCB-Studio] Isekai Ojisan [13][1080p][x264_aac][chs].mp4,[DMG&VCB-Studio] Isekai Ojisan [13][1080p][x264_aac][chs].mp4,762461687,2023-08-16T02:17:10,anime,1920x1080,h264,1442.068333,4229 +/mnt/Downloads/anime/[DMG&VCB-Studio] Isekai Ojisan [1080p][chs]/[DMG&VCB-Studio] Isekai Ojisan [07][1080p][x264_aac][chs].mp4,[DMG&VCB-Studio] Isekai Ojisan [07][1080p][x264_aac][chs].mp4,696054975,2023-08-16T02:16:48,anime,1920x1080,h264,1422.058333,3915 +/mnt/Downloads/anime/[DMG&VCB-Studio] Isekai Ojisan [1080p][chs]/[DMG&VCB-Studio] Isekai Ojisan [11][1080p][x264_aac][chs].mp4,[DMG&VCB-Studio] Isekai Ojisan [11][1080p][x264_aac][chs].mp4,908235337,2023-08-16T02:17:03,anime,1920x1080,h264,1422.058333,5109 +/mnt/Downloads/anime/[DMG&VCB-Studio] Isekai Ojisan [1080p][chs]/[DMG&VCB-Studio] Isekai Ojisan [05][1080p][x264_aac][chs].mp4,[DMG&VCB-Studio] Isekai Ojisan [05][1080p][x264_aac][chs].mp4,768489476,2023-08-16T02:16:47,anime,1920x1080,h264,1422.058333,4323 +/mnt/Downloads/anime/[DMG&VCB-Studio] Isekai Ojisan [1080p][chs]/[DMG&VCB-Studio] Isekai Ojisan [10][1080p][x264_aac][chs].mp4,[DMG&VCB-Studio] Isekai Ojisan [10][1080p][x264_aac][chs].mp4,663536901,2023-08-16T02:17:08,anime,1920x1080,h264,1422.058333,3732 +/mnt/Downloads/anime/[DMG&VCB-Studio] Isekai Ojisan [1080p][chs]/[DMG&VCB-Studio] Isekai Ojisan [04][1080p][x264_aac][chs].mp4,[DMG&VCB-Studio] Isekai Ojisan [04][1080p][x264_aac][chs].mp4,706738546,2023-08-16T02:17:10,anime,1920x1080,h264,1422.015,3975 +/mnt/Downloads/anime/[DMG&VCB-Studio] Isekai Ojisan [1080p][chs]/[DMG&VCB-Studio] Isekai Ojisan [09][1080p][x264_aac][chs].mp4,[DMG&VCB-Studio] Isekai Ojisan [09][1080p][x264_aac][chs].mp4,810654401,2023-08-16T02:17:07,anime,1920x1080,h264,1422.441667,4559 +/mnt/Downloads/anime/[DMG&VCB-Studio] Isekai Ojisan [1080p][chs]/[DMG&VCB-Studio] Isekai Ojisan [01][1080p][x264_aac][chs].mp4,[DMG&VCB-Studio] Isekai Ojisan [01][1080p][x264_aac][chs].mp4,822700477,2023-08-16T02:17:10,anime,1920x1080,h264,1422.015,4628 +/mnt/Downloads/anime/[DMG&VCB-Studio] Isekai Ojisan [1080p][chs]/[DMG&VCB-Studio] Isekai Ojisan [08][1080p][x264_aac][chs].mp4,[DMG&VCB-Studio] Isekai Ojisan [08][1080p][x264_aac][chs].mp4,817848673,2023-08-16T02:17:05,anime,1920x1080,h264,1442.068333,4537 +/mnt/Downloads/anime/[DMG&VCB-Studio] Isekai Ojisan [1080p][chs]/[DMG&VCB-Studio] Isekai Ojisan [02][1080p][x264_aac][chs].mp4,[DMG&VCB-Studio] Isekai Ojisan [02][1080p][x264_aac][chs].mp4,758125476,2023-08-16T02:17:04,anime,1920x1080,h264,1422.058333,4264 +/mnt/Downloads/anime/[DMG&VCB-Studio] Isekai Ojisan [1080p][chs]/[DMG&VCB-Studio] Isekai Ojisan [03][1080p][x264_aac][chs].mp4,[DMG&VCB-Studio] Isekai Ojisan [03][1080p][x264_aac][chs].mp4,766691532,2023-08-16T02:17:09,anime,1920x1080,h264,1422.058333,4313 +/mnt/Downloads/anime/[ANi] NUKITASHI 住在拔作島上的我該如何是好? [年齡限制版] - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] NUKITASHI 住在拔作島上的我該如何是好? [年齡限制版] - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,365383028,2025-07-18T23:39:09,anime,1920x1080,h264,1425.173333,2051 +/mnt/Downloads/anime/[ANi] 貫徹輔助魔法支援弱小隊友的宮廷魔法師,慘遭驅逐後目標成為最強冒險者 - 05 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 貫徹輔助魔法支援弱小隊友的宮廷魔法師,慘遭驅逐後目標成為最強冒險者 - 05 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,387700502,2025-11-01T23:54:43,anime,1920x1080,h264,1417.109333,2188 +/mnt/Downloads/anime/[ANi] 轉生貴族憑鑑定技能扭轉人生 - 12 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 轉生貴族憑鑑定技能扭轉人生 - 12 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,575256465,2024-06-23T23:49:00,anime,1920x1080,h264,1405.013333,3275 +/mnt/Downloads/anime/[ANi] 我的妻子不具感情 - 12 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 我的妻子不具感情 - 12 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,387872815,2024-09-15T00:17:09,anime,1920x1080,h264,1420.074667,2185 +/mnt/Downloads/anime/[ANi] 怪獸 8 號 第二季 - 13 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 怪獸 8 號 第二季 - 13 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,539800618,2025-07-19T22:50:51,anime,1920x1080,h264,1420.074667,3040 +/mnt/Downloads/anime/[ANi] 香格里拉・開拓異境~糞作獵手挑戰神作~ 第二季 - 22 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 香格里拉・開拓異境~糞作獵手挑戰神作~ 第二季 - 22 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,758019970,2025-03-09T09:25:43,anime,1920x1080,h264,1430.283156,4239 +/mnt/Downloads/anime/[ANi] 異世界自殺突擊隊 - 10 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 異世界自殺突擊隊 - 10 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,656794343,2024-08-15T09:02:12,anime,1920x1080,h264,1474.090667,3564 +/mnt/Downloads/anime/Flow.2024.1080p.BluRay.x265.10bit.DTS-WiKi/Flow.2024.1080p.BluRay.x265.10bit.DTS-WiKi.mkv,Flow.2024.1080p.BluRay.x265.10bit.DTS-WiKi.mkv,6015807262,2025-03-10T11:22:47,anime,1920x960,hevc,5062.219,9506 +/mnt/Downloads/anime/[ANi] 結緣甘神神社 - 20 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 結緣甘神神社 - 20 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,325694701,2025-02-25T15:13:14,anime,1920x1080,h264,1420.074667,1834 +/mnt/Downloads/anime/[ANi] 孤單一人的異世界攻略 - 04 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 孤單一人的異世界攻略 - 04 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,491633936,2024-10-17T23:57:20,anime,1920x1080,h264,1420.117333,2769 +/mnt/Downloads/anime/[ANi] LAZARUS 拉撒路 - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] LAZARUS 拉撒路 - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,556385657,2025-04-14T00:16:34,anime,1920x1080,h264,1439.978667,3091 +/mnt/Downloads/anime/[HYSUB]Sono Bisque Doll wa Koi wo Suru[21][GB_MP4][1920X1080].mp4,[HYSUB]Sono Bisque Doll wa Koi wo Suru[21][GB_MP4][1920X1080].mp4,327347881,2025-09-07T23:38:24,anime,1920x1080,h264,1422.144,1841 +/mnt/Downloads/anime/[ANi] 杖與劍的魔劍譚 - 11 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 杖與劍的魔劍譚 - 11 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,556665349,2024-09-22T11:00:46,anime,1920x1080,h264,1425.945489,3123 +/mnt/Downloads/anime/[Nekomoe kissaten][Tower of God S2][07][1080p][CHT].mp4,[Nekomoe kissaten][Tower of God S2][07][1080p][CHT].mp4,502304413,2024-09-03T05:15:24,anime,1920x1080,h264,1421.107664,2827 +/mnt/Downloads/anime/[Skymoon-Raws] Kaguya-sama wa Kokurasetai S03 - 05 [ViuTV][WEB-DL][CHT][1080p][AVC AAC][MP4+ASS]/[Skymoon-Raws] Kaguya-sama wa Kokurasetai S03 - 05 [ViuTV][WEB-DL][1080p][AVC AAC].mp4,[Skymoon-Raws] Kaguya-sama wa Kokurasetai S03 - 05 [ViuTV][WEB-DL][1080p][AVC AAC].mp4,420752806,2022-05-07T13:01:25,anime,1920x1080,h264,1440.192,2337 +/mnt/Downloads/anime/[Skymoon-Raws] Boushoku no Berserk - 01 [ViuTV][WEB-DL][CHT][1080p][AVC AAC][MP4+ASS]/[Skymoon-Raws] Boushoku no Berserk - 01 [ViuTV][WEB-DL][1080p][AVC AAC].mp4,[Skymoon-Raws] Boushoku no Berserk - 01 [ViuTV][WEB-DL][1080p][AVC AAC].mp4,300488314,2023-10-16T00:18:17,anime,1920x1080,h264,1420.053333,1692 +/mnt/Downloads/anime/[Nekomoe kissaten&LoliHouse] Ao no Hako - 03 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,[Nekomoe kissaten&LoliHouse] Ao no Hako - 03 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,499074885,2024-11-10T04:12:34,anime,1920x1080,hevc,1417.301,2817 +/mnt/Downloads/anime/[ANi] 膽大黨 - 04 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 膽大黨 - 04 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,708949749,2024-10-24T23:41:23,anime,1920x1080,h264,1437.039911,3946 +/mnt/Downloads/anime/[ANi] 最近的偵探真沒用 - 04 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 最近的偵探真沒用 - 04 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,411647997,2025-07-22T14:52:02,anime,1920x1080,h264,1419.989333,2319 +/mnt/Downloads/anime/[BeanSub&FZSD][BLEACH_Sennen_Kessen-hen][29][GB][1080P][x264_AAC].mp4,[BeanSub&FZSD][BLEACH_Sennen_Kessen-hen][29][GB][1080P][x264_AAC].mp4,436793962,2024-10-20T02:10:28,anime,1920x1080,h264,1436.181333,2433 +/mnt/Downloads/anime/[Lilith-Raws] Date A Live S05 - 03 [Baha][WebDL 1080p AVC AAC][CHT].mp4,[Lilith-Raws] Date A Live S05 - 03 [Baha][WebDL 1080p AVC AAC][CHT].mp4,662947745,2024-06-02T02:00:45,anime,1920x1080,h264,1420.053333,3734 +/mnt/Downloads/anime/[Skymoon-Raws] Kaguya-sama wa Kokurasetai S03 - 09 [ViuTV][WEB-DL][CHT][1080p][AVC AAC][MP4+ASS]/[Skymoon-Raws] Kaguya-sama wa Kokurasetai S03 - 09 [ViuTV][WEB-DL][1080p][AVC AAC].mp4,[Skymoon-Raws] Kaguya-sama wa Kokurasetai S03 - 09 [ViuTV][WEB-DL][1080p][AVC AAC].mp4,438847394,2022-06-04T08:52:18,anime,1920x1080,h264,1503.189333,2335 +/mnt/Downloads/anime/[ANi] 靠廢柴技能【狀態異常】成為最強的我將蹂躪一切 - 10 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 靠廢柴技能【狀態異常】成為最強的我將蹂躪一切 - 10 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,523976038,2024-09-12T22:52:40,anime,1920x1080,h264,1450.026667,2890 +/mnt/Downloads/anime/[Nekomoe kissaten][Dungeon Meshi][09][1080p][JPTC].mp4,[Nekomoe kissaten][Dungeon Meshi][09][1080p][JPTC].mp4,454524259,2024-03-01T11:06:25,anime,1920x1080,h264,1591.06,2285 +/mnt/Downloads/anime/[Nekomoe kissaten][Ishura][01][1080p][JPSC].mp4,[Nekomoe kissaten][Ishura][01][1080p][JPSC].mp4,436770418,2024-01-05T00:31:45,anime,1920x1080,h264,1422.144,2456 +/mnt/Downloads/anime/[LoliHouse] Re Monster - 04 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,[LoliHouse] Re Monster - 04 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,498908707,2024-05-07T02:08:33,anime,1920x1080,hevc,1420.109,2810 +/mnt/Downloads/anime/[ANi] 我獨自升級 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 我獨自升級 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,652965639,2024-01-14T01:07:05,anime,1920x1080,h264,1425.28,3665 +"/mnt/Downloads/anime/[LoliHouse] Tensei Kizoku, Kantei Skill de Nariagaru - 04 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv","[LoliHouse] Tensei Kizoku, Kantei Skill de Nariagaru - 04 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv",462563891,2024-05-03T12:39:15,anime,1920x1080,hevc,1420.062,2605 +/mnt/Downloads/anime/[LoliHouse] NEET Kunoichi to Nazeka Dousei Hajimemashita - 12 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,[LoliHouse] NEET Kunoichi to Nazeka Dousei Hajimemashita - 12 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,527709086,2025-03-23T14:31:37,anime,1920x1080,hevc,1442.474,2926 +/mnt/Downloads/anime/[ANi] 聽說你們要結婚!? - 03 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 聽說你們要結婚!? - 03 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,422454908,2024-10-18T12:09:39,anime,1920x1080,h264,1420.032,2379 +/mnt/Downloads/anime/[ANi] 轉生貴族憑鑑定技能扭轉人生 第二季 - 15 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 轉生貴族憑鑑定技能扭轉人生 第二季 - 15 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,385656372,2024-10-13T23:35:56,anime,1920x1080,h264,1419.989333,2172 +/mnt/Downloads/anime/[ANi] WIND BREAKER—防風少年— - 09 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] WIND BREAKER—防風少年— - 09 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,507054016,2024-05-31T00:11:15,anime,1920x1080,h264,1425.027911,2846 +/mnt/Downloads/anime/[LoliHouse] Hitoribocchi no Isekai Kouryaku - 02 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,[LoliHouse] Hitoribocchi no Isekai Kouryaku - 02 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,595862397,2024-10-14T12:00:27,anime,1920x1080,hevc,1422.463,3351 +/mnt/Downloads/anime/[Nekomoe kissaten][Ishura][04][1080p][JPTC].mp4,[Nekomoe kissaten][Ishura][04][1080p][JPTC].mp4,319488669,2024-01-28T02:33:43,anime,1920x1080,h264,1422.086667,1797 +/mnt/Downloads/anime/[LoliHouse] Sword Art Online Alternative - Gun Gale Online II - 06 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,[LoliHouse] Sword Art Online Alternative - Gun Gale Online II - 06 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,565357139,2024-11-10T00:10:27,anime,1920x1080,hevc,1420.0,3185 +/mnt/Downloads/anime/[LoliHouse] Chotto dake Ai ga Omoi Dark Elf ga Isekai kara Oikakete Kita - 06 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,[LoliHouse] Chotto dake Ai ga Omoi Dark Elf ga Isekai kara Oikakete Kita - 06 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,448587973,2025-05-12T11:28:02,anime,1920x1080,hevc,1438.621,2494 +/mnt/Downloads/anime/The.Animatrix.2003.RERiP.1080p.BluRay.x264.DTS-WiKi/The.Animatrix.2003.RERiP.1080p.BluRay.x264.DTS-WiKi.mkv,The.Animatrix.2003.RERiP.1080p.BluRay.x264.DTS-WiKi.mkv,10585799626,2022-02-27T11:34:26,anime,1920x800,h264,6050.539,13996 +/mnt/Downloads/anime/The.Animatrix.2003.RERiP.1080p.BluRay.x264.DTS-WiKi/Sample/The.Animatrix.2003.RERiP.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,The.Animatrix.2003.RERiP.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,101853172,2022-02-27T11:34:18,anime,1920x800,h264,61.52,13244 +/mnt/Downloads/anime/[ANi] 盾之勇者成名錄 Season 4 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 盾之勇者成名錄 Season 4 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,513740121,2025-07-09T13:36:16,anime,1920x1080,h264,1420.032,2894 +/mnt/Downloads/anime/[LoliHouse] 29-sai Dokushin Chuuken Boukensha no Nichijou - 02 [WebRip 1080p HEVC-10bit AAC ASS].mkv,[LoliHouse] 29-sai Dokushin Chuuken Boukensha no Nichijou - 02 [WebRip 1080p HEVC-10bit AAC ASS].mkv,416308014,2026-01-21T12:53:35,anime,1920x1080,hevc,1420.109,2345 +/mnt/Downloads/anime/[FZSD][Hime-sama Goumon no Jikan Desu][14][BIG5][1080P][x264_AAC].mp4,[FZSD][Hime-sama Goumon no Jikan Desu][14][BIG5][1080P][x264_AAC].mp4,457813397,2026-01-24T04:29:57,anime,1920x1080,h264,1425.101497,2569 +/mnt/Downloads/anime/[ANi] 身為魔族的我 想向勇者小隊的可愛女孩告白 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 身為魔族的我 想向勇者小隊的可愛女孩告白 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,425841737,2026-01-06T23:59:13,anime,1920x1080,h264,1432.042667,2378 +/mnt/Downloads/anime/[ANi] WIND BREAKER—防風少年— - 12 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] WIND BREAKER—防風少年— - 12 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,395557062,2024-06-20T23:32:53,anime,1920x1080,h264,1425.027911,2220 +/mnt/Downloads/anime/[ANi] 我內心的糟糕念頭 第二季 - 15 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 我內心的糟糕念頭 第二季 - 15 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,324317058,2024-01-21T01:12:04,anime,1920x1080,h264,1382.997333,1876 +/mnt/Downloads/anime/《不要欺負我,長瀞同學 2nd Attack》#3/《不要欺負我,長瀞同學 2nd Attack》#3 (日語原聲)【Ani-One Asia】.mp4,《不要欺負我,長瀞同學 2nd Attack》#3 (日語原聲)【Ani-One Asia】.mp4,192831578,2023-01-16T06:17:29,anime,1920x1080,h264,1420.132426,1086 +/mnt/Downloads/anime/[Lilith-Raws] Kantei Skill - 07 [Baha][WebDL 1080p AVC AAC][CHT].mp4,[Lilith-Raws] Kantei Skill - 07 [Baha][WebDL 1080p AVC AAC][CHT].mp4,522544446,2024-05-21T23:31:33,anime,1920x1080,h264,1420.074667,2943 +/mnt/Downloads/anime/[ANi] 使人誤解的工房主~關於原英雄隊伍的雜役人員,實際上除了戰鬥能力外全是SSS的故事~ - 12 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 使人誤解的工房主~關於原英雄隊伍的雜役人員,實際上除了戰鬥能力外全是SSS的故事~ - 12 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,340149790,2025-06-15T23:40:02,anime,1920x1080,h264,1419.989333,1916 +/mnt/Downloads/anime/[ANi] 「憑妳也想討伐魔王?」被勇者小隊逐出隊伍,只好在王都自在過活 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 「憑妳也想討伐魔王?」被勇者小隊逐出隊伍,只好在王都自在過活 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,544323483,2026-01-09T00:03:56,anime,1920x1080,h264,1420.064622,3066 +"/mnt/Downloads/anime/[LoliHouse] Tensei Kizoku, Kantei Skill de Nariagaru - 23 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv","[LoliHouse] Tensei Kizoku, Kantei Skill de Nariagaru - 23 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv",356435166,2024-12-22T01:06:29,anime,1920x1080,hevc,1420.016,2008 +/mnt/Downloads/anime/Girls.und.Panzer.das.Finale.Part.IV.2023.1080p.BluRay.x265.10bit.DTS-WiKi/Girls.und.Panzer.das.Finale.Part.IV.2023.1080p.BluRay.x265.10bit.DTS-WiKi.mkv,Girls.und.Panzer.das.Finale.Part.IV.2023.1080p.BluRay.x265.10bit.DTS-WiKi.mkv,5396822628,2025-05-27T13:03:05,anime,1920x1080,hevc,3233.238,13353 +"/mnt/Downloads/anime/[Sakurato] Modaete yo, Adam-kun [03][AVC-8bit 1080p AAC][CHT].mp4","[Sakurato] Modaete yo, Adam-kun [03][AVC-8bit 1080p AAC][CHT].mp4",131593684,2024-01-29T00:52:34,anime,1920x1080,h264,429.512417,2451 +/mnt/Downloads/anime/[Up to 21°C] Kami no Tou - Ouji no Kikan - 04 (ABEMA 1920x1080 AVC AAC MP4) [2548E81E].mp4,[Up to 21°C] Kami no Tou - Ouji no Kikan - 04 (ABEMA 1920x1080 AVC AAC MP4) [2548E81E].mp4,752275977,2024-07-28T23:56:32,anime,1920x1080,h264,1431.138685,4205 +/mnt/Downloads/anime/[ANi] 最後可以再拜託您一件事嗎? - 04 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 最後可以再拜託您一件事嗎? - 04 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,414240107,2025-10-19T01:03:39,anime,1920x1080,h264,1425.045333,2325 +/mnt/Downloads/anime/[Nekomoe kissaten&LoliHouse] Ao no Hako - 07 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,[Nekomoe kissaten&LoliHouse] Ao no Hako - 07 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,491546249,2024-11-17T00:22:40,anime,1920x1080,hevc,1420.074,2769 +/mnt/Downloads/anime/[HYSUB]Sono Bisque Doll wa Koi wo Suru[17][BIG5_MP4][1920X1080].mp4,[HYSUB]Sono Bisque Doll wa Koi wo Suru[17][BIG5_MP4][1920X1080].mp4,297519110,2025-08-03T00:10:56,anime,1920x1080,h264,1422.08,1673 +/mnt/Downloads/anime/[BeanSub&FZSD][Kimetsu_no_Yaiba][63][GB][1080P][x264_AAC].mp4,[BeanSub&FZSD][Kimetsu_no_Yaiba][63][GB][1080P][x264_AAC].mp4,1019356430,2024-07-01T11:29:33,anime,1920x1080,h264,2315.072,3522 +/mnt/Downloads/anime/[BeanSub&FZSD][Jujutsu_Kaisen][48-49][BIG5][1080P][MP4]/[BeanSub&FZSD][Jujutsu_Kaisen][48][BIG5][1080P][x264_AAC].mp4,[BeanSub&FZSD][Jujutsu_Kaisen][48][BIG5][1080P][x264_AAC].mp4,494079727,2026-01-09T00:05:44,anime,1920x1080,h264,1435.155737,2754 +/mnt/Downloads/anime/[BeanSub&FZSD][Jujutsu_Kaisen][48-49][BIG5][1080P][MP4]/[BeanSub&FZSD][Jujutsu_Kaisen][49][BIG5][1080P][x264_AAC].mp4,[BeanSub&FZSD][Jujutsu_Kaisen][49][BIG5][1080P][x264_AAC].mp4,414287023,2026-01-09T00:05:45,anime,1920x1080,h264,1435.178957,2309 +/mnt/Downloads/anime/Pantheon.S01.1080p.AMZN.WEB-DL.DD+5.1.H.264-NTb/Pantheon.S01E01.Pantheon.1080p.AMZN.WEB-DL.DD+5.1.H.264-NTb.mkv,Pantheon.S01E01.Pantheon.1080p.AMZN.WEB-DL.DD+5.1.H.264-NTb.mkv,3143155001,2023-11-15T00:07:11,anime,1920x1080,h264,2478.848,10143 +/mnt/Downloads/anime/Pantheon.S01.1080p.AMZN.WEB-DL.DD+5.1.H.264-NTb/Pantheon.S01E02.Cycles.1080p.AMZN.WEB-DL.DD+5.1.H.264-NTb.mkv,Pantheon.S01E02.Cycles.1080p.AMZN.WEB-DL.DD+5.1.H.264-NTb.mkv,3186374660,2023-11-15T00:07:09,anime,1920x1080,h264,2463.334,10348 +/mnt/Downloads/anime/Pantheon.S01.1080p.AMZN.WEB-DL.DD+5.1.H.264-NTb/Pantheon.S01E05.Zero.Daze.1080p.AMZN.WEB-DL.DD+5.1.H.264-NTb.mkv,Pantheon.S01E05.Zero.Daze.1080p.AMZN.WEB-DL.DD+5.1.H.264-NTb.mkv,3069622319,2023-11-15T00:07:08,anime,1920x1080,h264,2377.408,10329 +/mnt/Downloads/anime/Pantheon.S01.1080p.AMZN.WEB-DL.DD+5.1.H.264-NTb/Pantheon.S01E06.You.Must.Be.Caspian.1080p.AMZN.WEB-DL.DD+5.1.H.264-NTb.mkv,Pantheon.S01E06.You.Must.Be.Caspian.1080p.AMZN.WEB-DL.DD+5.1.H.264-NTb.mkv,3197989302,2023-11-15T00:07:09,anime,1920x1080,h264,2472.875,10345 +/mnt/Downloads/anime/Pantheon.S01.1080p.AMZN.WEB-DL.DD+5.1.H.264-NTb/Pantheon.S01E04.The.Gods.Will.Not.Be.Chained.1080p.AMZN.WEB-DL.DD+5.1.H.264-NTb.mkv,Pantheon.S01E04.The.Gods.Will.Not.Be.Chained.1080p.AMZN.WEB-DL.DD+5.1.H.264-NTb.mkv,3068175574,2023-11-15T00:07:09,anime,1920x1080,h264,2526.176,9716 +/mnt/Downloads/anime/Pantheon.S01.1080p.AMZN.WEB-DL.DD+5.1.H.264-NTb/Pantheon.S01E03.Reign.of.Winter.1080p.AMZN.WEB-DL.DD+5.1.H.264-NTb.mkv,Pantheon.S01E03.Reign.of.Winter.1080p.AMZN.WEB-DL.DD+5.1.H.264-NTb.mkv,3222413547,2023-11-15T00:07:10,anime,1920x1080,h264,2493.6,10338 +/mnt/Downloads/anime/Pantheon.S01.1080p.AMZN.WEB-DL.DD+5.1.H.264-NTb/Pantheon.S01E08.The.Gods.Will.Not.Be.Slain.1080p.AMZN.WEB-DL.DD+5.1.H.264-NTb.mkv,Pantheon.S01E08.The.Gods.Will.Not.Be.Slain.1080p.AMZN.WEB-DL.DD+5.1.H.264-NTb.mkv,3175481155,2023-11-15T00:07:11,anime,1920x1080,h264,2677.125,9489 +/mnt/Downloads/anime/Pantheon.S01.1080p.AMZN.WEB-DL.DD+5.1.H.264-NTb/Pantheon.S01E07.We.Are.You.1080p.AMZN.WEB-DL.DD+5.1.H.264-NTb.mkv,Pantheon.S01E07.We.Are.You.1080p.AMZN.WEB-DL.DD+5.1.H.264-NTb.mkv,3194029290,2023-11-15T00:07:07,anime,1920x1080,h264,2464.384,10368 +/mnt/Downloads/anime/[ANi] BLEACH 死神 千年血戰篇-相剋譚- - 30 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] BLEACH 死神 千年血戰篇-相剋譚- - 30 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,837835419,2024-10-26T16:12:57,anime,1920x1080,h264,1443.008,4644 +/mnt/Downloads/anime/[ANi] 和雨.和你 - 09 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 和雨.和你 - 09 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,336029356,2025-08-31T02:14:47,anime,1920x1080,h264,1368.064,1964 +/mnt/Downloads/anime/[ANi] Silent Witch 沉默魔女的祕密 - 09 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] Silent Witch 沉默魔女的祕密 - 09 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,310005532,2025-08-30T00:22:23,anime,1920x1080,h264,1440.042911,1722 +/mnt/Downloads/anime/[Lilith-Raws] Kantei Skill - 09 [Baha][WebDL 1080p AVC AAC][CHT].mp4,[Lilith-Raws] Kantei Skill - 09 [Baha][WebDL 1080p AVC AAC][CHT].mp4,360994935,2024-06-04T09:47:48,anime,1920x1080,h264,1420.032,2033 +/mnt/Downloads/anime/[ANi] 我獨自升級 第二季 -起於闇影- - 22 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 我獨自升級 第二季 -起於闇影- - 22 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,550061849,2025-03-08T23:29:30,anime,1920x1080,h264,1425.322667,3087 +/mnt/Downloads/anime/[ANi] 拉麵赤貓 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 拉麵赤貓 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,467760924,2024-07-05T04:20:29,anime,1920x1080,h264,1400.021333,2672 +/mnt/Downloads/anime/[Nekomoe kissaten][Ao no Hako][20][1080p][JPSC].mp4,[Nekomoe kissaten][Ao no Hako][20][1080p][JPSC].mp4,485082907,2025-03-01T10:27:31,anime,1920x1080,h264,1417.301333,2738 +/mnt/Downloads/anime/[ANi] 我獨自升級 - 05 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 我獨自升級 - 05 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,727589341,2024-02-04T00:26:26,anime,1920x1080,h264,1425.28,4083 +/mnt/Downloads/anime/[ANi] 和雨.和你 - 12 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 和雨.和你 - 12 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,303857732,2025-09-21T00:22:30,anime,1920x1080,h264,1368.064,1776 +/mnt/Downloads/anime/《繼母的拖油瓶是我的前女友》#2/《繼母的拖油瓶是我的前女友》#2 (日語原聲)【Ani-One Asia】.mp4,《繼母的拖油瓶是我的前女友》#2 (日語原聲)【Ani-One Asia】.mp4,229279640,2022-07-14T00:39:33,anime,1920x1080,h264,1420.132426,1291 +/mnt/Downloads/anime/Cyberpunk.Edgerunners.S01.1080p.NF.WEB-DL.DUAL.DDP5.1.H.264-SMURF/Cyberpunk.Edgerunners.S01E02.Like.A.Boy.1080p.NF.WEB-DL.DUAL.DDP5.1.H.264-SMURF.mkv,Cyberpunk.Edgerunners.S01E02.Like.A.Boy.1080p.NF.WEB-DL.DUAL.DDP5.1.H.264-SMURF.mkv,740626456,2022-09-13T15:48:27,anime,1920x1080,h264,1534.112,3862 +/mnt/Downloads/anime/Cyberpunk.Edgerunners.S01.1080p.NF.WEB-DL.DUAL.DDP5.1.H.264-SMURF/Cyberpunk.Edgerunners.S01E04.Lucky.You.1080p.NF.WEB-DL.DUAL.DDP5.1.H.264-SMURF.mkv,Cyberpunk.Edgerunners.S01E04.Lucky.You.1080p.NF.WEB-DL.DUAL.DDP5.1.H.264-SMURF.mkv,754793524,2022-09-13T15:48:32,anime,1920x1080,h264,1534.112,3936 +/mnt/Downloads/anime/Cyberpunk.Edgerunners.S01.1080p.NF.WEB-DL.DUAL.DDP5.1.H.264-SMURF/Cyberpunk.Edgerunners.S01E10.My.Moon.My.Man.1080p.NF.WEB-DL.DUAL.DDP5.1.H.264-SMURF.mkv,Cyberpunk.Edgerunners.S01E10.My.Moon.My.Man.1080p.NF.WEB-DL.DUAL.DDP5.1.H.264-SMURF.mkv,944510058,2022-09-13T15:48:29,anime,1920x1080,h264,1696.544,4453 +/mnt/Downloads/anime/Cyberpunk.Edgerunners.S01.1080p.NF.WEB-DL.DUAL.DDP5.1.H.264-SMURF/Cyberpunk.Edgerunners.S01E05.All.Eyez.On.Me.1080p.NF.WEB-DL.DUAL.DDP5.1.H.264-SMURF.mkv,Cyberpunk.Edgerunners.S01E05.All.Eyez.On.Me.1080p.NF.WEB-DL.DUAL.DDP5.1.H.264-SMURF.mkv,733314724,2022-09-13T15:48:30,anime,1920x1080,h264,1492.256,3931 +/mnt/Downloads/anime/Cyberpunk.Edgerunners.S01.1080p.NF.WEB-DL.DUAL.DDP5.1.H.264-SMURF/Cyberpunk.Edgerunners.S01E08.Stay.1080p.NF.WEB-DL.DUAL.DDP5.1.H.264-SMURF.mkv,Cyberpunk.Edgerunners.S01E08.Stay.1080p.NF.WEB-DL.DUAL.DDP5.1.H.264-SMURF.mkv,734381991,2022-09-13T15:48:28,anime,1920x1080,h264,1538.336,3819 +/mnt/Downloads/anime/Cyberpunk.Edgerunners.S01.1080p.NF.WEB-DL.DUAL.DDP5.1.H.264-SMURF/Cyberpunk.Edgerunners.S01E07.Stronger.1080p.NF.WEB-DL.DUAL.DDP5.1.H.264-SMURF.mkv,Cyberpunk.Edgerunners.S01E07.Stronger.1080p.NF.WEB-DL.DUAL.DDP5.1.H.264-SMURF.mkv,776027389,2022-09-13T15:48:30,anime,1920x1080,h264,1536.416,4040 +/mnt/Downloads/anime/Cyberpunk.Edgerunners.S01.1080p.NF.WEB-DL.DUAL.DDP5.1.H.264-SMURF/Cyberpunk.Edgerunners.S01E09.Humanity.1080p.NF.WEB-DL.DUAL.DDP5.1.H.264-SMURF.mkv,Cyberpunk.Edgerunners.S01E09.Humanity.1080p.NF.WEB-DL.DUAL.DDP5.1.H.264-SMURF.mkv,865582754,2022-09-13T15:48:28,anime,1920x1080,h264,1600.16,4327 +/mnt/Downloads/anime/Cyberpunk.Edgerunners.S01.1080p.NF.WEB-DL.DUAL.DDP5.1.H.264-SMURF/Cyberpunk.Edgerunners.S01E03.Smooth.Criminal.1080p.NF.WEB-DL.DUAL.DDP5.1.H.264-SMURF.mkv,Cyberpunk.Edgerunners.S01E03.Smooth.Criminal.1080p.NF.WEB-DL.DUAL.DDP5.1.H.264-SMURF.mkv,773291286,2022-09-13T15:48:30,anime,1920x1080,h264,1542.176,4011 +/mnt/Downloads/anime/Cyberpunk.Edgerunners.S01.1080p.NF.WEB-DL.DUAL.DDP5.1.H.264-SMURF/Cyberpunk.Edgerunners.S01E06.Girl.on.Fire.1080p.NF.WEB-DL.DUAL.DDP5.1.H.264-SMURF.mkv,Cyberpunk.Edgerunners.S01E06.Girl.on.Fire.1080p.NF.WEB-DL.DUAL.DDP5.1.H.264-SMURF.mkv,998264244,2022-09-13T15:48:28,anime,1920x1080,h264,1630.496,4897 +/mnt/Downloads/anime/Cyberpunk.Edgerunners.S01.1080p.NF.WEB-DL.DUAL.DDP5.1.H.264-SMURF/Cyberpunk.Edgerunners.S01E01.Let.You.Down.1080p.NF.WEB-DL.DUAL.DDP5.1.H.264-SMURF.mkv,Cyberpunk.Edgerunners.S01E01.Let.You.Down.1080p.NF.WEB-DL.DUAL.DDP5.1.H.264-SMURF.mkv,737558634,2022-09-13T15:40:42,anime,1920x1080,h264,1536.416,3840 +/mnt/Downloads/anime/[ANi] RINKAI!女子競輪 - 12 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] RINKAI!女子競輪 - 12 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,457024734,2024-06-25T23:11:41,anime,1920x1080,h264,1420.032,2574 +/mnt/Downloads/anime/[Nekomoe kissaten][Tower of God S2][06][1080p][CHT].mp4,[Nekomoe kissaten][Tower of God S2][06][1080p][CHT].mp4,469391244,2024-09-03T05:13:35,anime,1920x1080,h264,1421.061224,2642 +/mnt/Downloads/anime/[LoliHouse] Tsuki ga Michibiku Isekai Douchuu S2 - 18 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,[LoliHouse] Tsuki ga Michibiku Isekai Douchuu S2 - 18 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,354048555,2024-05-07T23:34:01,anime,1920x1080,hevc,1420.109,1994 +/mnt/Downloads/anime/《BLEACH 死神 千年血戰篇》#4/《BLEACH 死神 千年血戰篇》#4 (日語原聲)【Ani-One Asia ULTRA】.mp4,《BLEACH 死神 千年血戰篇》#4 (日語原聲)【Ani-One Asia ULTRA】.mp4,340367817,2022-11-01T00:42:11,anime,1920x1080,h264,1441.889524,1888 +/mnt/Downloads/anime/I.Am.Groot.S01.1080p.WEB.h264-KOGi/I.Am.Groot.S01E03.1080p.WEB.h264-KOGi.mkv,I.Am.Groot.S01E03.1080p.WEB.h264-KOGi.mkv,220537237,2022-08-16T11:39:22,anime,1920x1080,h264,239.904,7354 +/mnt/Downloads/anime/I.Am.Groot.S01.1080p.WEB.h264-KOGi/I.Am.Groot.S01E04.1080p.WEB.h264-KOGi.mkv,I.Am.Groot.S01E04.1080p.WEB.h264-KOGi.mkv,242615707,2022-08-16T11:39:23,anime,1920x1080,h264,246.816,7863 +/mnt/Downloads/anime/I.Am.Groot.S01.1080p.WEB.h264-KOGi/I.Am.Groot.S01E02.1080p.WEB.h264-KOGi.mkv,I.Am.Groot.S01E02.1080p.WEB.h264-KOGi.mkv,222619121,2022-08-16T11:39:27,anime,1920x1080,h264,232.896,7646 +/mnt/Downloads/anime/I.Am.Groot.S01.1080p.WEB.h264-KOGi/I.Am.Groot.S01E05.1080p.WEB.h264-KOGi.mkv,I.Am.Groot.S01E05.1080p.WEB.h264-KOGi.mkv,234224681,2022-08-16T11:39:18,anime,1920x1080,h264,230.464,8130 +/mnt/Downloads/anime/I.Am.Groot.S01.1080p.WEB.h264-KOGi/I.Am.Groot.S01E01.1080p.WEB.h264-KOGi.mkv,I.Am.Groot.S01E01.1080p.WEB.h264-KOGi.mkv,180054231,2022-08-16T11:39:25,anime,1920x1080,h264,243.808,5908 +/mnt/Downloads/anime/[LoliHouse] Sword Art Online Alternative - Gun Gale Online II - 02 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,[LoliHouse] Sword Art Online Alternative - Gun Gale Online II - 02 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,571134213,2024-10-26T00:27:13,anime,1920x1080,hevc,1420.017,3217 +/mnt/Downloads/anime/Evacuate.from.the.21st.Century.2024.1080p.BluRay.x265.10bit.DTS-WiKi/Evacuate.from.the.21st.Century.2024.1080p.BluRay.x265.10bit.DTS-WiKi.mkv,Evacuate.from.the.21st.Century.2024.1080p.BluRay.x265.10bit.DTS-WiKi.mkv,8831241099,2025-05-27T00:22:03,anime,1920x804,hevc,5880.0,12015 +/mnt/Downloads/anime/[ANi] 身為暗殺者的我明顯比勇者還強 - 11 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 身為暗殺者的我明顯比勇者還強 - 11 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,470872840,2025-12-16T00:34:37,anime,1920x1080,h264,1430.074622,2634 +/mnt/Downloads/anime/[Nekomoe kissaten][Ninja Kamui][02][1080p][CHT].mp4,[Nekomoe kissaten][Ninja Kamui][02][1080p][CHT].mp4,422531863,2024-03-13T13:47:12,anime,1920x1080,h264,1378.965,2451 +/mnt/Downloads/anime/[Nekomoe kissaten][Ao no Hako][25][1080p][JPTC].mp4,[Nekomoe kissaten][Ao no Hako][25][1080p][JPTC].mp4,458426819,2025-04-14T00:06:55,anime,1920x1080,h264,1404.245333,2611 +/mnt/Downloads/anime/[orion origin] Wind Breaker [03] [1080p] [H265 AAC] [CHT&JPN].mp4,[orion origin] Wind Breaker [03] [1080p] [H265 AAC] [CHT&JPN].mp4,456622364,2024-04-25T02:26:28,anime,1920x1080,hevc,1434.992993,2545 +/mnt/Downloads/anime/[ANi] 新人大叔冒險者,被最強隊伍操到死成無敵 - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 新人大叔冒險者,被最強隊伍操到死成無敵 - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,399792502,2024-07-09T01:49:42,anime,1920x1080,h264,1425.069622,2244 +/mnt/Downloads/anime/[ANi] 膽大黨 第二季 - 15 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 膽大黨 第二季 - 15 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,735764554,2025-07-17T22:46:47,anime,1920x1080,h264,1447.091622,4067 +/mnt/Downloads/anime/[HYSUB]Dungeon Meshi[01][BIG5_MP4][1920X1080].mp4,[HYSUB]Dungeon Meshi[01][BIG5_MP4][1920X1080].mp4,349093470,2024-01-04T23:34:40,anime,1920x1080,h264,1530.112,1825 +/mnt/Downloads/anime/[Nekomoe kissaten&LoliHouse] Pon no Michi - 12 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,[Nekomoe kissaten&LoliHouse] Pon no Michi - 12 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,434862255,2024-03-29T14:58:10,anime,1920x1080,hevc,1448.96,2400 +/mnt/Downloads/anime/[LoliHouse] Izure Saikyou no Renkinjutsushi - 10 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,[LoliHouse] Izure Saikyou no Renkinjutsushi - 10 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,542544650,2025-03-14T23:44:10,anime,1920x1080,hevc,1420.109,3056 +/mnt/Downloads/anime/[ANi] Re:Monster - 08 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] Re:Monster - 08 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,533671500,2024-05-20T15:12:32,anime,1920x1080,h264,1420.064622,3006 +/mnt/Downloads/anime/Demon.Slayer.S02.2021.1080p.BluRay.x265.10bit-WiKi/Demon.Slayer.S02E05.2021.1080p.BluRay.x265.10bit-WiKi.mkv,Demon.Slayer.S02E05.2021.1080p.BluRay.x265.10bit-WiKi.mkv,838463500,2022-10-05T10:41:35,anime,1920x1080,hevc,1422.08,4716 +/mnt/Downloads/anime/Demon.Slayer.S02.2021.1080p.BluRay.x265.10bit-WiKi/Demon.Slayer.S02E04.2021.1080p.BluRay.x265.10bit-WiKi.mkv,Demon.Slayer.S02E04.2021.1080p.BluRay.x265.10bit-WiKi.mkv,838703352,2022-10-05T10:41:38,anime,1920x1080,hevc,1422.112,4718 +/mnt/Downloads/anime/Demon.Slayer.S02.2021.1080p.BluRay.x265.10bit-WiKi/Demon.Slayer.S02E11.2021.1080p.BluRay.x265.10bit-WiKi.mkv,Demon.Slayer.S02E11.2021.1080p.BluRay.x265.10bit-WiKi.mkv,1185919418,2022-10-05T10:41:35,anime,1920x1080,hevc,1948.0,4870 +/mnt/Downloads/anime/Demon.Slayer.S02.2021.1080p.BluRay.x265.10bit-WiKi/Demon.Slayer.S02E07.2021.1080p.BluRay.x265.10bit-WiKi.mkv,Demon.Slayer.S02E07.2021.1080p.BluRay.x265.10bit-WiKi.mkv,838534077,2022-10-05T10:41:34,anime,1920x1080,hevc,1422.08,4717 +/mnt/Downloads/anime/Demon.Slayer.S02.2021.1080p.BluRay.x265.10bit-WiKi/Demon.Slayer.S02E10.2021.1080p.BluRay.x265.10bit-WiKi.mkv,Demon.Slayer.S02E10.2021.1080p.BluRay.x265.10bit-WiKi.mkv,838486874,2022-10-05T10:41:38,anime,1920x1080,hevc,1422.08,4716 +/mnt/Downloads/anime/Demon.Slayer.S02.2021.1080p.BluRay.x265.10bit-WiKi/Demon.Slayer.S02E06.2021.1080p.BluRay.x265.10bit-WiKi.mkv,Demon.Slayer.S02E06.2021.1080p.BluRay.x265.10bit-WiKi.mkv,835474159,2022-10-05T10:41:35,anime,1920x1080,hevc,1422.08,4700 +/mnt/Downloads/anime/Demon.Slayer.S02.2021.1080p.BluRay.x265.10bit-WiKi/Demon.Slayer.S02E01.2021.1080p.BluRay.x265.10bit-WiKi.mkv,Demon.Slayer.S02E01.2021.1080p.BluRay.x265.10bit-WiKi.mkv,1614085961,2022-10-05T10:41:38,anime,1920x1080,hevc,2813.92,4588 +/mnt/Downloads/anime/Demon.Slayer.S02.2021.1080p.BluRay.x265.10bit-WiKi/Demon.Slayer.S02E03.2021.1080p.BluRay.x265.10bit-WiKi.mkv,Demon.Slayer.S02E03.2021.1080p.BluRay.x265.10bit-WiKi.mkv,837623553,2022-10-05T10:41:35,anime,1920x1080,hevc,1422.112,4711 +/mnt/Downloads/anime/Demon.Slayer.S02.2021.1080p.BluRay.x265.10bit-WiKi/Demon.Slayer.S02E02.2021.1080p.BluRay.x265.10bit-WiKi.mkv,Demon.Slayer.S02E02.2021.1080p.BluRay.x265.10bit-WiKi.mkv,838614092,2022-10-05T10:41:38,anime,1920x1080,hevc,1422.016,4717 +/mnt/Downloads/anime/Demon.Slayer.S02.2021.1080p.BluRay.x265.10bit-WiKi/Demon.Slayer.S02E09.2021.1080p.BluRay.x265.10bit-WiKi.mkv,Demon.Slayer.S02E09.2021.1080p.BluRay.x265.10bit-WiKi.mkv,837386556,2022-10-05T10:41:35,anime,1920x1080,hevc,1422.08,4710 +/mnt/Downloads/anime/Demon.Slayer.S02.2021.1080p.BluRay.x265.10bit-WiKi/Demon.Slayer.S02E08.2021.1080p.BluRay.x265.10bit-WiKi.mkv,Demon.Slayer.S02E08.2021.1080p.BluRay.x265.10bit-WiKi.mkv,837840078,2022-10-05T10:41:37,anime,1920x1080,hevc,1422.08,4713 +/mnt/Downloads/anime/[ANi] 我和班上最討厭的女生結婚了。 - 08 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 我和班上最討厭的女生結婚了。 - 08 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,321296212,2025-02-22T08:21:09,anime,1920x1080,h264,1420.074667,1810 +/mnt/Downloads/anime/[BeanSub][Ao no Exorcist _Yuki no Hate Hen][03][GB][1080P][x264_AAC].mp4,[BeanSub][Ao no Exorcist _Yuki no Hate Hen][03][GB][1080P][x264_AAC].mp4,415492873,2024-10-20T00:35:57,anime,1920x1080,h264,1420.132426,2340 +/mnt/Downloads/anime/[LoliHouse] Tate no Yuusha no Nariagari S4 - 09 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,[LoliHouse] Tate no Yuusha no Nariagari S4 - 09 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,528221716,2025-09-04T04:13:20,anime,1920x1080,hevc,1420.016,2975 +/mnt/Downloads/anime/[ANi] 素材採集家的異世界旅行記 - 08 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 素材採集家的異世界旅行記 - 08 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,368508751,2025-11-18T00:14:28,anime,1920x1080,h264,1419.9812,2076 +/mnt/Downloads/anime/[ANi] 怪獸 8 號 - 11 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 怪獸 8 號 - 11 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,524422809,2024-06-22T15:15:09,anime,1920x1080,h264,1420.074667,2954 +/mnt/Downloads/anime/[ANi] 被逐出隊伍的治癒師,其實是最強 - 08 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 被逐出隊伍的治癒師,其實是最強 - 08 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,279393090,2024-11-24T01:27:50,anime,1920x1080,h264,1404.053333,1591 +/mnt/Downloads/anime/[ANi] 治癒魔法的錯誤使用法 - 09 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 治癒魔法的錯誤使用法 - 09 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,617634100,2024-03-02T01:35:26,anime,1920x1080,h264,1420.022911,3479 +/mnt/Downloads/anime/[ANi] 轉生為第七王子,隨心所欲的魔法學習之路 - 10 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 轉生為第七王子,隨心所欲的魔法學習之路 - 10 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,530505667,2024-06-04T05:15:03,anime,1920x1080,h264,1445.047911,2936 +/mnt/Downloads/anime/[ANi] 香格里拉・開拓異境~糞作獵手挑戰神作~ 第二季 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 香格里拉・開拓異境~糞作獵手挑戰神作~ 第二季 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,729718018,2024-10-13T23:39:22,anime,1920x1080,h264,1430.408289,4081 +/mnt/Downloads/anime/[orion origin] Sentai Red Isekai de Boukensha ni Naru [05] [1080p] [H265 AAC] [CHT&JPN].mp4,[orion origin] Sentai Red Isekai de Boukensha ni Naru [05] [1080p] [H265 AAC] [CHT&JPN].mp4,706806603,2025-02-12T16:15:46,anime,1920x1080,hevc,1420.0,3982 +/mnt/Downloads/anime/[LoliHouse] Shin no Nakama 2nd - 03 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,[LoliHouse] Shin no Nakama 2nd - 03 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,338594295,2024-01-22T00:13:23,anime,1920x1080,hevc,1420.109,1907 +/mnt/Downloads/anime/[ANi] 終末起點 - 04 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 終末起點 - 04 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,355496706,2025-04-23T22:49:04,anime,1920x1080,h264,1370.067208,2075 +/mnt/Downloads/anime/Baki.Hanma.S02.2023.1080p.NF.WEB-DL.x264.DDP5.1-ADWeb/Baki.Hanma.S02E08.2023.1080p.NF.WEB-DL.x264.DDP5.1-ADWeb.mkv,Baki.Hanma.S02E08.2023.1080p.NF.WEB-DL.x264.DDP5.1-ADWeb.mkv,1023903075,2023-11-07T16:55:15,anime,1920x1080,h264,1534.496,5338 +/mnt/Downloads/anime/Baki.Hanma.S02.2023.1080p.NF.WEB-DL.x264.DDP5.1-ADWeb/Baki.Hanma.S02E09.2023.1080p.NF.WEB-DL.x264.DDP5.1-ADWeb.mkv,Baki.Hanma.S02E09.2023.1080p.NF.WEB-DL.x264.DDP5.1-ADWeb.mkv,1021769936,2023-11-07T16:55:26,anime,1920x1080,h264,1520.288,5376 +/mnt/Downloads/anime/Baki.Hanma.S02.2023.1080p.NF.WEB-DL.x264.DDP5.1-ADWeb/Baki.Hanma.S02E12.2023.1080p.NF.WEB-DL.x264.DDP5.1-ADWeb.mkv,Baki.Hanma.S02E12.2023.1080p.NF.WEB-DL.x264.DDP5.1-ADWeb.mkv,1018178976,2023-11-07T16:55:35,anime,1920x1080,h264,1522.592,5349 +/mnt/Downloads/anime/Baki.Hanma.S02.2023.1080p.NF.WEB-DL.x264.DDP5.1-ADWeb/Baki.Hanma.S02E06.2023.1080p.NF.WEB-DL.x264.DDP5.1-ADWeb.mkv,Baki.Hanma.S02E06.2023.1080p.NF.WEB-DL.x264.DDP5.1-ADWeb.mkv,1021875415,2023-11-07T16:55:20,anime,1920x1080,h264,1534.496,5327 +/mnt/Downloads/anime/Baki.Hanma.S02.2023.1080p.NF.WEB-DL.x264.DDP5.1-ADWeb/Baki.Hanma.S02E13.2023.1080p.NF.WEB-DL.x264.DDP5.1-ADWeb.mkv,Baki.Hanma.S02E13.2023.1080p.NF.WEB-DL.x264.DDP5.1-ADWeb.mkv,1019580613,2023-11-07T16:55:34,anime,1920x1080,h264,1530.272,5330 +/mnt/Downloads/anime/Baki.Hanma.S02.2023.1080p.NF.WEB-DL.x264.DDP5.1-ADWeb/Baki.Hanma.S02E07.2023.1080p.NF.WEB-DL.x264.DDP5.1-ADWeb.mkv,Baki.Hanma.S02E07.2023.1080p.NF.WEB-DL.x264.DDP5.1-ADWeb.mkv,1021869172,2023-11-07T16:55:33,anime,1920x1080,h264,1536.416,5320 +/mnt/Downloads/anime/Baki.Hanma.S02.2023.1080p.NF.WEB-DL.x264.DDP5.1-ADWeb/Baki.Hanma.S02E10.2023.1080p.NF.WEB-DL.x264.DDP5.1-ADWeb.mkv,Baki.Hanma.S02E10.2023.1080p.NF.WEB-DL.x264.DDP5.1-ADWeb.mkv,1018000071,2023-11-07T16:55:35,anime,1920x1080,h264,1536.416,5300 +/mnt/Downloads/anime/Baki.Hanma.S02.2023.1080p.NF.WEB-DL.x264.DDP5.1-ADWeb/Baki.Hanma.S02E04.2023.1080p.NF.WEB-DL.x264.DDP5.1-ADWeb.mkv,Baki.Hanma.S02E04.2023.1080p.NF.WEB-DL.x264.DDP5.1-ADWeb.mkv,1022368725,2023-11-07T16:55:22,anime,1920x1080,h264,1534.496,5330 +/mnt/Downloads/anime/Baki.Hanma.S02.2023.1080p.NF.WEB-DL.x264.DDP5.1-ADWeb/Baki.Hanma.S02E11.2023.1080p.NF.WEB-DL.x264.DDP5.1-ADWeb.mkv,Baki.Hanma.S02E11.2023.1080p.NF.WEB-DL.x264.DDP5.1-ADWeb.mkv,1020910769,2023-11-07T16:55:34,anime,1920x1080,h264,1520.288,5372 +/mnt/Downloads/anime/Baki.Hanma.S02.2023.1080p.NF.WEB-DL.x264.DDP5.1-ADWeb/Baki.Hanma.S02E05.2023.1080p.NF.WEB-DL.x264.DDP5.1-ADWeb.mkv,Baki.Hanma.S02E05.2023.1080p.NF.WEB-DL.x264.DDP5.1-ADWeb.mkv,1023475360,2023-11-07T16:55:31,anime,1920x1080,h264,1532.576,5342 +/mnt/Downloads/anime/Baki.Hanma.S02.2023.1080p.NF.WEB-DL.x264.DDP5.1-ADWeb/Baki.Hanma.S02E02.2023.1080p.NF.WEB-DL.x264.DDP5.1-ADWeb.mkv,Baki.Hanma.S02E02.2023.1080p.NF.WEB-DL.x264.DDP5.1-ADWeb.mkv,1023775277,2023-11-07T16:55:34,anime,1920x1080,h264,1546.4,5296 +/mnt/Downloads/anime/Baki.Hanma.S02.2023.1080p.NF.WEB-DL.x264.DDP5.1-ADWeb/Baki.Hanma.S02E03.2023.1080p.NF.WEB-DL.x264.DDP5.1-ADWeb.mkv,Baki.Hanma.S02E03.2023.1080p.NF.WEB-DL.x264.DDP5.1-ADWeb.mkv,1023109962,2023-11-07T16:55:35,anime,1920x1080,h264,1534.496,5333 +/mnt/Downloads/anime/Baki.Hanma.S02.2023.1080p.NF.WEB-DL.x264.DDP5.1-ADWeb/Baki.Hanma.S02E01.2023.1080p.NF.WEB-DL.x264.DDP5.1-ADWeb.mkv,Baki.Hanma.S02E01.2023.1080p.NF.WEB-DL.x264.DDP5.1-ADWeb.mkv,1024047458,2023-11-07T16:55:36,anime,1920x1080,h264,1532.576,5345 +/mnt/Downloads/anime/[ANi] 水屬性的魔法師 - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 水屬性的魔法師 - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,364684700,2025-07-10T23:37:45,anime,1920x1080,h264,1455.061333,2005 +/mnt/Downloads/anime/Laid-Back.Camp.The.Movie.2022.1080p.BluRay.x265.10bit-WiKi/Laid-Back.Camp.The.Movie.2022.1080p.BluRay.x265.10bit-WiKi.mkv,Laid-Back.Camp.The.Movie.2022.1080p.BluRay.x265.10bit-WiKi.mkv,4695727036,2023-05-03T12:09:45,anime,1920x1080,hevc,7208.224,5211 +/mnt/Downloads/anime/[ANi] 一拳超人(第三季) - 27 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 一拳超人(第三季) - 27 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,458272063,2025-10-27T11:04:18,anime,1920x1080,h264,1441.043911,2544 +/mnt/Downloads/anime/[ANi] 在地下城尋求邂逅是否搞錯了什麼 第五季 - 04 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 在地下城尋求邂逅是否搞錯了什麼 第五季 - 04 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,288834632,2024-10-24T14:42:21,anime,1920x1080,h264,1420.064622,1627 +/mnt/Downloads/anime/[ANi] 治癒魔法的錯誤使用法 - 12 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 治癒魔法的錯誤使用法 - 12 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,588783064,2024-03-23T00:19:30,anime,1920x1080,h264,1420.106322,3316 +/mnt/Downloads/anime/[ANi] 機械臂 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 機械臂 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,509573821,2024-10-04T04:12:09,anime,1920x1080,h264,1422.037333,2866 +/mnt/Downloads/anime/Love.Death.and.Robots.S01.1080p.NF.WEB-DL.DDP5.1.x264-NTG/Love.Death.and.Robots.S01E12.Fish.Night.1080p.NF.WEB-DL.DDP5.1.x264-NTG.mkv,Love.Death.and.Robots.S01E12.Fish.Night.1080p.NF.WEB-DL.DDP5.1.x264-NTG.mkv,367524487,2019-03-18T02:10:42,anime,1920x1080,h264,614.432,4785 +/mnt/Downloads/anime/Love.Death.and.Robots.S01.1080p.NF.WEB-DL.DDP5.1.x264-NTG/Love.Death.and.Robots.S01E14.Zima.Blue.1080p.NF.WEB-DL.DDP5.1.x264-NTG.mkv,Love.Death.and.Robots.S01E14.Zima.Blue.1080p.NF.WEB-DL.DDP5.1.x264-NTG.mkv,382282432,2019-03-18T02:10:54,anime,1920x1080,h264,624.448,4897 +/mnt/Downloads/anime/Love.Death.and.Robots.S01.1080p.NF.WEB-DL.DDP5.1.x264-NTG/Love.Death.and.Robots.S01E17.Alternate.Histories.1080p.NF.WEB-DL.DDP5.1.x264-NTG.mkv,Love.Death.and.Robots.S01E17.Alternate.Histories.1080p.NF.WEB-DL.DDP5.1.x264-NTG.mkv,371741646,2019-03-18T02:10:39,anime,1920x1080,h264,474.432,6268 +/mnt/Downloads/anime/Love.Death.and.Robots.S01.1080p.NF.WEB-DL.DDP5.1.x264-NTG/Love.Death.and.Robots.S01E15.Blindspot.1080p.NF.WEB-DL.DDP5.1.x264-NTG.mkv,Love.Death.and.Robots.S01E15.Blindspot.1080p.NF.WEB-DL.DDP5.1.x264-NTG.mkv,202871148,2019-03-18T02:10:44,anime,1920x1080,h264,524.448,3094 +/mnt/Downloads/anime/Love.Death.and.Robots.S01.1080p.NF.WEB-DL.DDP5.1.x264-NTG/Love.Death.and.Robots.S01E10.Shape-Shifters.1080p.NF.WEB-DL.DDP5.1.x264-NTG.mkv,Love.Death.and.Robots.S01E10.Shape-Shifters.1080p.NF.WEB-DL.DDP5.1.x264-NTG.mkv,679102022,2019-03-18T02:10:58,anime,1920x1080,h264,970.432,5598 +/mnt/Downloads/anime/Love.Death.and.Robots.S01.1080p.NF.WEB-DL.DDP5.1.x264-NTG/Love.Death.and.Robots.S01E16.Ice.Age.1080p.NF.WEB-DL.DDP5.1.x264-NTG.mkv,Love.Death.and.Robots.S01E16.Ice.Age.1080p.NF.WEB-DL.DDP5.1.x264-NTG.mkv,375523482,2019-03-18T02:10:45,anime,1920x1080,h264,630.432,4765 +/mnt/Downloads/anime/Love.Death.and.Robots.S01.1080p.NF.WEB-DL.DDP5.1.x264-NTG/Love.Death.and.Robots.S01E02.Three.Robots.1080p.NF.WEB-DL.DDP5.1.x264-NTG.mkv,Love.Death.and.Robots.S01E02.Three.Robots.1080p.NF.WEB-DL.DDP5.1.x264-NTG.mkv,379002307,2019-03-18T02:10:48,anime,1920x1080,h264,696.448,4353 +/mnt/Downloads/anime/Love.Death.and.Robots.S01.1080p.NF.WEB-DL.DDP5.1.x264-NTG/Love.Death.and.Robots.S01E08.Good.Hunting.1080p.NF.WEB-DL.DDP5.1.x264-NTG.mkv,Love.Death.and.Robots.S01E08.Good.Hunting.1080p.NF.WEB-DL.DDP5.1.x264-NTG.mkv,358841559,2019-03-18T02:03:49,anime,1920x1080,h264,1032.448,2780 +/mnt/Downloads/anime/Love.Death.and.Robots.S01.1080p.NF.WEB-DL.DDP5.1.x264-NTG/Love.Death.and.Robots.S01E07.Beyond.the.Aquila.Rift.1080p.NF.WEB-DL.DDP5.1.x264-NTG.mkv,Love.Death.and.Robots.S01E07.Beyond.the.Aquila.Rift.1080p.NF.WEB-DL.DDP5.1.x264-NTG.mkv,630237504,2019-03-18T02:10:49,anime,1920x1080,h264,996.448,5059 +/mnt/Downloads/anime/Love.Death.and.Robots.S01.1080p.NF.WEB-DL.DDP5.1.x264-NTG/Love.Death.and.Robots.S01E04.Suits.1080p.NF.WEB-DL.DDP5.1.x264-NTG.mkv,Love.Death.and.Robots.S01E04.Suits.1080p.NF.WEB-DL.DDP5.1.x264-NTG.mkv,726899596,2019-03-18T02:10:41,anime,1920x1080,h264,1042.432,5578 +/mnt/Downloads/anime/Love.Death.and.Robots.S01.1080p.NF.WEB-DL.DDP5.1.x264-NTG/Love.Death.and.Robots.S01E13.Lucky.13.1080p.NF.WEB-DL.DDP5.1.x264-NTG.mkv,Love.Death.and.Robots.S01E13.Lucky.13.1080p.NF.WEB-DL.DDP5.1.x264-NTG.mkv,713503701,2019-03-18T02:10:48,anime,1920x1080,h264,888.448,6424 +/mnt/Downloads/anime/Love.Death.and.Robots.S01.1080p.NF.WEB-DL.DDP5.1.x264-NTG/Love.Death.and.Robots.S01E05.Sucker.of.Souls.1080p.NF.WEB-DL.DDP5.1.x264-NTG.mkv,Love.Death.and.Robots.S01E05.Sucker.of.Souls.1080p.NF.WEB-DL.DDP5.1.x264-NTG.mkv,445258958,2019-03-18T02:10:44,anime,1920x1080,h264,780.448,4564 +/mnt/Downloads/anime/Love.Death.and.Robots.S01.1080p.NF.WEB-DL.DDP5.1.x264-NTG/Love.Death.and.Robots.S01E18.The.Secret.War.1080p.NF.WEB-DL.DDP5.1.x264-NTG.mkv,Love.Death.and.Robots.S01E18.The.Secret.War.1080p.NF.WEB-DL.DDP5.1.x264-NTG.mkv,929040645,2019-03-18T02:10:53,anime,1920x1080,h264,982.432,7565 +/mnt/Downloads/anime/Love.Death.and.Robots.S01.1080p.NF.WEB-DL.DDP5.1.x264-NTG/Love.Death.and.Robots.S01E06.When.the.Yogurt.Took.Over.1080p.NF.WEB-DL.DDP5.1.x264-NTG.mkv,Love.Death.and.Robots.S01E06.When.the.Yogurt.Took.Over.1080p.NF.WEB-DL.DDP5.1.x264-NTG.mkv,178211227,2019-03-18T02:10:38,anime,1920x1080,h264,380.448,3747 +/mnt/Downloads/anime/Love.Death.and.Robots.S01.1080p.NF.WEB-DL.DDP5.1.x264-NTG/Love.Death.and.Robots.S01E09.The.Dump.1080p.NF.WEB-DL.DDP5.1.x264-NTG.mkv,Love.Death.and.Robots.S01E09.The.Dump.1080p.NF.WEB-DL.DDP5.1.x264-NTG.mkv,377443639,2019-03-18T02:10:50,anime,1920x1080,h264,634.432,4759 +/mnt/Downloads/anime/Love.Death.and.Robots.S01.1080p.NF.WEB-DL.DDP5.1.x264-NTG/Love.Death.and.Robots.S01E03.The.Witness.1080p.NF.WEB-DL.DDP5.1.x264-NTG.mkv,Love.Death.and.Robots.S01E03.The.Witness.1080p.NF.WEB-DL.DDP5.1.x264-NTG.mkv,641155001,2019-03-18T02:10:52,anime,1920x1080,h264,726.432,7060 +/mnt/Downloads/anime/Love.Death.and.Robots.S01.1080p.NF.WEB-DL.DDP5.1.x264-NTG/Love.Death.and.Robots.S01E01.Sonnies.Edge.1080p.NF.WEB-DL.DDP5.1.x264-NTG.mkv,Love.Death.and.Robots.S01E01.Sonnies.Edge.1080p.NF.WEB-DL.DDP5.1.x264-NTG.mkv,924544482,2019-03-18T02:10:57,anime,1920x1080,h264,1034.432,7150 +/mnt/Downloads/anime/Love.Death.and.Robots.S01.1080p.NF.WEB-DL.DDP5.1.x264-NTG/Love.Death.and.Robots.S01E11.Helping.Hand.1080p.NF.WEB-DL.DDP5.1.x264-NTG.mkv,Love.Death.and.Robots.S01E11.Helping.Hand.1080p.NF.WEB-DL.DDP5.1.x264-NTG.mkv,287576546,2019-03-18T02:10:20,anime,1920x1080,h264,604.448,3806 +/mnt/Downloads/anime/[ANi] 最強肉盾的迷宮攻略~擁有稀少技能體力 9999 的肉盾,被勇者隊伍辭退了~ - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 最強肉盾的迷宮攻略~擁有稀少技能體力 9999 的肉盾,被勇者隊伍辭退了~ - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,419765647,2024-01-14T01:03:47,anime,1920x1080,h264,1403.968,2391 +/mnt/Downloads/anime/[orion origin] Isekai Meikyuu de Harem o [01-12] [WebRip] [1080p] [H265 AAC] [GB]/[orion origin] Isekai Meikyuu de Harem o [10] [1080p] [H265 AAC] [GB] .mp4,[orion origin] Isekai Meikyuu de Harem o [10] [1080p] [H265 AAC] [GB] .mp4,396081999,2023-03-21T14:06:38,anime,1920x1080,hevc,1440.149,2200 +/mnt/Downloads/anime/[orion origin] Isekai Meikyuu de Harem o [01-12] [WebRip] [1080p] [H265 AAC] [GB]/[orion origin] Isekai Meikyuu de Harem o [09v3] [1080p] [H265 AAC] [GB] .mp4,[orion origin] Isekai Meikyuu de Harem o [09v3] [1080p] [H265 AAC] [GB] .mp4,402570218,2023-03-21T14:41:34,anime,1920x1080,hevc,1440.085,2236 +/mnt/Downloads/anime/[orion origin] Isekai Meikyuu de Harem o [01-12] [WebRip] [1080p] [H265 AAC] [GB]/[orion origin] Isekai Meikyuu de Harem o [11] [1080p] [H265 AAC] [GB] .mp4,[orion origin] Isekai Meikyuu de Harem o [11] [1080p] [H265 AAC] [GB] .mp4,398860394,2023-03-21T14:06:42,anime,1920x1080,hevc,1420.061995,2247 +/mnt/Downloads/anime/[orion origin] Isekai Meikyuu de Harem o [01-12] [WebRip] [1080p] [H265 AAC] [GB]/[orion origin] Isekai Meikyuu de Harem o [12] [END] [1080p] [H265 AAC] [GB] .mp4,[orion origin] Isekai Meikyuu de Harem o [12] [END] [1080p] [H265 AAC] [GB] .mp4,431643850,2023-03-21T14:07:04,anime,1920x1080,hevc,1440.149,2397 +/mnt/Downloads/anime/[orion origin] Isekai Meikyuu de Harem o [01-12] [WebRip] [1080p] [H265 AAC] [GB]/[orion origin] Isekai Meikyuu de Harem o [02v2] [1080p] [H265 AAC] [GB] .mp4,[orion origin] Isekai Meikyuu de Harem o [02v2] [1080p] [H265 AAC] [GB] .mp4,396461769,2023-03-21T11:41:34,anime,1920x1080,hevc,1420.061995,2233 +/mnt/Downloads/anime/[orion origin] Isekai Meikyuu de Harem o [01-12] [WebRip] [1080p] [H265 AAC] [GB]/[orion origin] Isekai Meikyuu de Harem o [01v2] [1080p] [H265 AAC] [GB] .mp4,[orion origin] Isekai Meikyuu de Harem o [01v2] [1080p] [H265 AAC] [GB] .mp4,429762071,2023-03-21T11:41:36,anime,1920x1080,hevc,1429.953991,2404 +/mnt/Downloads/anime/[orion origin] Isekai Meikyuu de Harem o [01-12] [WebRip] [1080p] [H265 AAC] [GB]/[orion origin] Isekai Meikyuu de Harem o [08] [1080p] [H265 AAC] [GB] .mp4,[orion origin] Isekai Meikyuu de Harem o [08] [1080p] [H265 AAC] [GB] .mp4,438895933,2023-03-21T14:41:59,anime,1920x1080,hevc,1440.149,2438 +/mnt/Downloads/anime/[orion origin] Isekai Meikyuu de Harem o [01-12] [WebRip] [1080p] [H265 AAC] [GB]/[orion origin] Isekai Meikyuu de Harem o [05v2] [1080p] [H265 AAC] [GB] .mp4,[orion origin] Isekai Meikyuu de Harem o [05v2] [1080p] [H265 AAC] [GB] .mp4,411108461,2023-03-21T14:07:02,anime,1920x1080,hevc,1440.18875,2283 +/mnt/Downloads/anime/[orion origin] Isekai Meikyuu de Harem o [01-12] [WebRip] [1080p] [H265 AAC] [GB]/[orion origin] Isekai Meikyuu de Harem o [03v3] [1080p] [H265 AAC] [GB] .mp4,[orion origin] Isekai Meikyuu de Harem o [03v3] [1080p] [H265 AAC] [GB] .mp4,410991824,2023-03-21T11:41:40,anime,1920x1080,hevc,1420.109002,2315 +/mnt/Downloads/anime/[orion origin] Isekai Meikyuu de Harem o [01-12] [WebRip] [1080p] [H265 AAC] [GB]/[orion origin] Isekai Meikyuu de Harem o [04v2] [1080p] [H265 AAC] [GB] .mp4,[orion origin] Isekai Meikyuu de Harem o [04v2] [1080p] [H265 AAC] [GB] .mp4,428385759,2023-03-21T13:01:48,anime,1920x1080,hevc,1419.807007,2413 +/mnt/Downloads/anime/[orion origin] Isekai Meikyuu de Harem o [01-12] [WebRip] [1080p] [H265 AAC] [GB]/[orion origin] Isekai Meikyuu de Harem o [06v2] [1080p] [H265 AAC] [GB] .mp4,[orion origin] Isekai Meikyuu de Harem o [06v2] [1080p] [H265 AAC] [GB] .mp4,422639797,2023-03-21T14:06:30,anime,1920x1080,hevc,1440.107,2347 +/mnt/Downloads/anime/[orion origin] Isekai Meikyuu de Harem o [01-12] [WebRip] [1080p] [H265 AAC] [GB]/[orion origin] Isekai Meikyuu de Harem o [07v2] [1080p] [H265 AAC] [GB] .mp4,[orion origin] Isekai Meikyuu de Harem o [07v2] [1080p] [H265 AAC] [GB] .mp4,404677115,2023-03-21T14:41:57,anime,1920x1080,hevc,1440.149,2247 +/mnt/Downloads/anime/[ANi] 擁有超常技能的異世界流浪美食家 S2 - 23 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 擁有超常技能的異世界流浪美食家 S2 - 23 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,456965495,2025-12-17T00:03:08,anime,1920x1080,h264,1434.9962,2547 +/mnt/Downloads/anime/[ANi] 永遠的黃昏 - 03 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 永遠的黃昏 - 03 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,375086801,2025-10-16T23:33:36,anime,1920x1080,h264,1435.008,2091 +/mnt/Downloads/anime/[ANi] 貫徹輔助魔法支援弱小隊友的宮廷魔法師,慘遭驅逐後目標成為最強冒險者 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 貫徹輔助魔法支援弱小隊友的宮廷魔法師,慘遭驅逐後目標成為最強冒險者 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,452310566,2025-10-06T03:08:40,anime,1920x1080,h264,1416.981333,2553 +/mnt/Downloads/anime/[ANi] NUKITASHI 住在拔作島上的我該如何是好? [年齡限制版] - 05 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] NUKITASHI 住在拔作島上的我該如何是好? [年齡限制版] - 05 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,446329672,2025-08-15T23:35:20,anime,1920x1080,h264,1425.088,2505 +/mnt/Downloads/anime/[ANi] 瞬間治癒卻被當成廢物踢出隊伍的天才治療師,改當無照治療師快樂過活 - 12 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 瞬間治癒卻被當成廢物踢出隊伍的天才治療師,改當無照治療師快樂過活 - 12 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,294532719,2025-06-20T00:13:50,anime,1920x1080,h264,1440.064,1636 +/mnt/Downloads/anime/[ANi] 當不成魔法師的女孩 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 當不成魔法師的女孩 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,572424779,2024-10-04T04:12:09,anime,1920x1080,h264,1422.08,3220 +/mnt/Downloads/anime/[LoliHouse] Yami Healer - 02 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,[LoliHouse] Yami Healer - 02 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,246604221,2025-04-11T00:00:14,anime,1920x1080,hevc,1439.985,1370 +/mnt/Downloads/anime/[ANi] 記憶縫線 YOUR FORMA - 05 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 記憶縫線 YOUR FORMA - 05 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,494886473,2025-05-01T01:01:41,anime,1920x1080,h264,1425.069622,2778 +/mnt/Downloads/anime/[ANi] 勇氣爆發 BANG BRAVERN - 11 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 勇氣爆發 BANG BRAVERN - 11 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,774794364,2024-03-21T23:30:11,anime,1920x1080,h264,1420.074667,4364 +/mnt/Downloads/anime/[ANi] 鬼人幻燈抄 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 鬼人幻燈抄 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,902450596,2025-03-31T15:37:15,anime,1920x1080,h264,3212.032,2247 +/mnt/Downloads/anime/[ANi] 香格里拉・開拓異境~糞作獵手挑戰神作~ - 17 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 香格里拉・開拓異境~糞作獵手挑戰神作~ - 17 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,966779536,2024-02-04T12:10:08,anime,1920x1080,h264,1610.463156,4802 +"/mnt/Downloads/anime/[Eternal][Modaete yo, Adam-kun][07][GB][720P][Premium].mp4","[Eternal][Modaete yo, Adam-kun][07][GB][720P][Premium].mp4",87921635,2024-03-03T23:55:28,anime,1280x720,h264,439.484082,1600 +/mnt/Downloads/anime/[ANi] 葬送的芙莉蓮 - 17 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 葬送的芙莉蓮 - 17 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,753642874,2024-01-06T02:43:42,anime,1920x1080,h264,1470.072911,4101 +/mnt/Downloads/anime/[LoliHouse] Kowloon Generic Romance - 09 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,[LoliHouse] Kowloon Generic Romance - 09 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,331483700,2025-05-31T23:50:34,anime,1920x1080,hevc,1430.07,1854 +/mnt/Downloads/anime/[ANi] 忍者與殺手的兩人生活 - 08 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 忍者與殺手的兩人生活 - 08 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,402681253,2025-05-29T23:02:39,anime,1920x1080,h264,1420.074667,2268 +/mnt/Downloads/anime/[ANi] 一拳超人(第三季) - 00 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 一拳超人(第三季) - 00 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,599171861,2025-10-06T01:07:56,anime,1920x1080,h264,1441.460989,3325 +/mnt/Downloads/anime/[Nekomoe kissaten&LoliHouse] Sousou no Frieren - 17 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,[Nekomoe kissaten&LoliHouse] Sousou no Frieren - 17 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,670863041,2024-01-11T00:55:06,anime,1920x1080,hevc,1470.058,3650 +/mnt/Downloads/anime/[ANi] 結緣甘神神社 - 24 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 結緣甘神神社 - 24 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,324073815,2025-03-25T23:29:19,anime,1920x1080,h264,1419.989333,1825 +/mnt/Downloads/anime/[ANi] LAZARUS 拉撒路 - 06 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] LAZARUS 拉撒路 - 06 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,560255893,2025-05-11T23:49:38,anime,1920x1080,h264,1439.978667,3112 +/mnt/Downloads/anime/[ANi] 瞬間治癒卻被當成廢物踢出隊伍的天才治療師,改當無照治療師快樂過活 - 09 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 瞬間治癒卻被當成廢物踢出隊伍的天才治療師,改當無照治療師快樂過活 - 09 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,286947051,2025-05-29T23:05:36,anime,1920x1080,h264,1440.064,1594 +/mnt/Downloads/anime/[Nekomoe kissaten&LoliHouse] Kaii to Otome to Kamikakushi - 01 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,[Nekomoe kissaten&LoliHouse] Kaii to Otome to Kamikakushi - 01 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,432273674,2024-04-26T00:29:47,anime,1920x1080,hevc,1420.063,2435 +/mnt/Downloads/anime/[LoliHouse] Around 40 Otoko no Isekai Tsuuhan - 08 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,[LoliHouse] Around 40 Otoko no Isekai Tsuuhan - 08 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,513933585,2025-03-10T00:10:14,anime,1920x1080,hevc,1420.062,2895 +/mnt/Downloads/anime/[ANi] 妻子變成小學生。 - 04 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 妻子變成小學生。 - 04 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,289335111,2024-10-20T23:49:04,anime,1920x1080,h264,1420.032,1630 +/mnt/Downloads/anime/[LoliHouse] Shin Samurai-den YAIBA - 09 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,[LoliHouse] Shin Samurai-den YAIBA - 09 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,670288183,2025-05-31T23:53:25,anime,1920x1080,hevc,1430.021,3749 +/mnt/Downloads/anime/[LoliHouse] Shin no Nakama 2nd - 06 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,[LoliHouse] Shin no Nakama 2nd - 06 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,351063029,2024-02-14T14:18:45,anime,1920x1080,hevc,1420.062,1977 +/mnt/Downloads/anime/[ANi] 關於我轉生變成史萊姆這檔事 第三季 - 68 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 關於我轉生變成史萊姆這檔事 第三季 - 68 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,437689789,2024-08-30T16:11:39,anime,1920x1080,h264,1481.000489,2364 +/mnt/Downloads/anime/[ANi] 終末起點 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 終末起點 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,498709119,2025-04-06T23:11:18,anime,1920x1080,h264,1370.109875,2911 +/mnt/Downloads/anime/[ANi] 水屬性的魔法師 - 07 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 水屬性的魔法師 - 07 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,320397261,2025-08-21T23:43:17,anime,1920x1080,h264,1455.018667,1761 +/mnt/Downloads/anime/[ANi] 結緣甘神神社 - 06 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 結緣甘神神社 - 06 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,418388577,2024-11-05T23:27:43,anime,1920x1080,h264,1420.074667,2356 +/mnt/Downloads/anime/[SAIO-Raws] Gekijouban Goblin Slayer Goblin's Crown [BD 1920x1080 HEVC-10bit OPUS]/[SAIO-Raws] Gekijouban Goblin Slayer Goblin's Crown [BD 1920x1080 HEVC-10bit OPUS].mkv,[SAIO-Raws] Gekijouban Goblin Slayer Goblin's Crown [BD 1920x1080 HEVC-10bit OPUS].mkv,2775593248,2020-07-29T13:05:28,anime,1920x1080,hevc,3604.61,6160 +/mnt/Downloads/anime/[ANi] Re:從零開始的異世界生活 第三季 - 09 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] Re:從零開始的異世界生活 第三季 - 09 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,357716673,2025-02-06T01:34:04,anime,1920x1080,h264,1420.022911,2015 +/mnt/Downloads/anime/[ANi] 在地下城尋求邂逅是否搞錯了什麼 第五季 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 在地下城尋求邂逅是否搞錯了什麼 第五季 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,320346379,2024-10-04T04:08:08,anime,1920x1080,h264,1420.064622,1804 +/mnt/Downloads/anime/[ANi] 異世界悠閒紀行~邊養娃邊當冒險者~ - 10 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 異世界悠閒紀行~邊養娃邊當冒險者~ - 10 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,251506565,2024-09-03T14:03:06,anime,1920x1080,h264,1430.116322,1406 +/mnt/Downloads/anime/[Skymoon-Raws] Kimetsu no Yaiba - Yuukaku-Hen - 08 [ViuTV][WEB-DL][CHT][1080p][AVC AAC][MP4+ASS]/[Skymoon-Raws] Kimetsu no Yaiba - Yuukaku-Hen - 08 [ViuTV][WEB-DL][1080p][AVC AAC].mp4,[Skymoon-Raws] Kimetsu no Yaiba - Yuukaku-Hen - 08 [ViuTV][WEB-DL][1080p][AVC AAC].mp4,403907619,2022-01-24T00:31:45,anime,1920x1080,h264,1420.096,2275 +/mnt/Downloads/anime/[Nekomoe kissaten][Tower of God S2][15][1080p][CHT].mp4,[Nekomoe kissaten][Tower of God S2][15][1080p][CHT].mp4,546147127,2024-10-20T23:49:13,anime,1920x1080,h264,1421.130884,3074 +/mnt/Downloads/anime/[Nekomoe kissaten][Ao no Hako][08][1080p][JPTC].mp4,[Nekomoe kissaten][Ao no Hako][08][1080p][JPTC].mp4,501204836,2024-11-17T13:24:05,anime,1920x1080,h264,1417.301333,2829 +/mnt/Downloads/anime/[LoliHouse] Tsue to Tsurugi no Wistoria - 07 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,[LoliHouse] Tsue to Tsurugi no Wistoria - 07 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,560904424,2024-08-25T23:53:15,anime,1920x1080,hevc,1426.1,3146 +/mnt/Downloads/anime/[ANi] 咒術迴戰 死滅迴游 前篇 - 53 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 咒術迴戰 死滅迴游 前篇 - 53 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,471993669,2026-02-05T23:49:12,anime,1920x1080,h264,1435.093333,2631 +/mnt/Downloads/anime/[Strange-Raw] Sentai Red Isekai de Boukensha ni Naru S01 [03] [Bilibili] [WEB-DL] [1080P AVC-8Bits AAC 2.0] [CHS_JPN].mp4,[Strange-Raw] Sentai Red Isekai de Boukensha ni Naru S01 [03] [Bilibili] [WEB-DL] [1080P AVC-8Bits AAC 2.0] [CHS_JPN].mp4,424426164,2025-01-31T07:24:51,anime,1920x1080,h264,1420.053333,2391 +/mnt/Downloads/anime/[ANi] 因為不是真正的夥伴而被逐出勇者隊伍,流落到邊境展開慢活人生 第二季(僅限港澳台地區) - 02 [1080P][Bilibili][WEB-DL][AAC AVC][CHT CHS].mp4,[ANi] 因為不是真正的夥伴而被逐出勇者隊伍,流落到邊境展開慢活人生 第二季(僅限港澳台地區) - 02 [1080P][Bilibili][WEB-DL][AAC AVC][CHT CHS].mp4,307862945,2024-01-15T11:10:18,anime,1920x1080,h264,1420.032,1734 +/mnt/Downloads/anime/[LoliHouse] Tensura Nikki - Tensei Shitara Slime Datta Ken [WebRip 1080p HEVC-10bit AAC]/[LoliHouse] Tensura Nikki - Tensei Shitara Slime Datta Ken - 11 [WebRip 1080p HEVC-10bit AAC SRTx3].mkv,[LoliHouse] Tensura Nikki - Tensei Shitara Slime Datta Ken - 11 [WebRip 1080p HEVC-10bit AAC SRTx3].mkv,394100739,2021-06-29T01:35:51,anime,1920x1080,hevc,1422.106,2216 +/mnt/Downloads/anime/[LoliHouse] Tensura Nikki - Tensei Shitara Slime Datta Ken [WebRip 1080p HEVC-10bit AAC]/[LoliHouse] Tensura Nikki - Tensei Shitara Slime Datta Ken - 02 [WebRip 1080p HEVC-10bit AAC SRTx3].mkv,[LoliHouse] Tensura Nikki - Tensei Shitara Slime Datta Ken - 02 [WebRip 1080p HEVC-10bit AAC SRTx3].mkv,440277930,2021-06-29T01:35:57,anime,1920x1080,hevc,1422.036,2476 +/mnt/Downloads/anime/[LoliHouse] Tensura Nikki - Tensei Shitara Slime Datta Ken [WebRip 1080p HEVC-10bit AAC]/[LoliHouse] Tensura Nikki - Tensei Shitara Slime Datta Ken - 06 [WebRip 1080p HEVC-10bit AAC SRTx3].mkv,[LoliHouse] Tensura Nikki - Tensei Shitara Slime Datta Ken - 06 [WebRip 1080p HEVC-10bit AAC SRTx3].mkv,501763612,2021-06-29T01:35:54,anime,1920x1080,hevc,1422.106,2822 +/mnt/Downloads/anime/[LoliHouse] Tensura Nikki - Tensei Shitara Slime Datta Ken [WebRip 1080p HEVC-10bit AAC]/[LoliHouse] Tensura Nikki - Tensei Shitara Slime Datta Ken - 03 [WebRip 1080p HEVC-10bit AAC SRTx3].mkv,[LoliHouse] Tensura Nikki - Tensei Shitara Slime Datta Ken - 03 [WebRip 1080p HEVC-10bit AAC SRTx3].mkv,424723826,2021-06-29T01:35:54,anime,1920x1080,hevc,1422.106,2389 +/mnt/Downloads/anime/[LoliHouse] Tensura Nikki - Tensei Shitara Slime Datta Ken [WebRip 1080p HEVC-10bit AAC]/[LoliHouse] Tensura Nikki - Tensei Shitara Slime Datta Ken - 07 [WebRip 1080p HEVC-10bit AAC SRTx3].mkv,[LoliHouse] Tensura Nikki - Tensei Shitara Slime Datta Ken - 07 [WebRip 1080p HEVC-10bit AAC SRTx3].mkv,415582204,2021-06-29T01:35:52,anime,1920x1080,hevc,1422.106,2337 +/mnt/Downloads/anime/[LoliHouse] Tensura Nikki - Tensei Shitara Slime Datta Ken [WebRip 1080p HEVC-10bit AAC]/[LoliHouse] Tensura Nikki - Tensei Shitara Slime Datta Ken - 10 [WebRip 1080p HEVC-10bit AAC SRTx3].mkv,[LoliHouse] Tensura Nikki - Tensei Shitara Slime Datta Ken - 10 [WebRip 1080p HEVC-10bit AAC SRTx3].mkv,379874345,2021-06-29T01:35:52,anime,1920x1080,hevc,1422.106,2136 +/mnt/Downloads/anime/[LoliHouse] Tensura Nikki - Tensei Shitara Slime Datta Ken [WebRip 1080p HEVC-10bit AAC]/[LoliHouse] Tensura Nikki - Tensei Shitara Slime Datta Ken - 01 [WebRip 1080p HEVC-10bit AAC SRTx3].mkv,[LoliHouse] Tensura Nikki - Tensei Shitara Slime Datta Ken - 01 [WebRip 1080p HEVC-10bit AAC SRTx3].mkv,427556783,2021-06-29T01:35:52,anime,1920x1080,hevc,1422.036,2405 +/mnt/Downloads/anime/[LoliHouse] Tensura Nikki - Tensei Shitara Slime Datta Ken [WebRip 1080p HEVC-10bit AAC]/[LoliHouse] Tensura Nikki - Tensei Shitara Slime Datta Ken - 05 [WebRip 1080p HEVC-10bit AAC SRTx3].mkv,[LoliHouse] Tensura Nikki - Tensei Shitara Slime Datta Ken - 05 [WebRip 1080p HEVC-10bit AAC SRTx3].mkv,494091028,2021-06-29T01:35:44,anime,1920x1080,hevc,1422.036,2779 +/mnt/Downloads/anime/[LoliHouse] Tensura Nikki - Tensei Shitara Slime Datta Ken [WebRip 1080p HEVC-10bit AAC]/[LoliHouse] Tensura Nikki - Tensei Shitara Slime Datta Ken - 09 [WebRip 1080p HEVC-10bit AAC SRTx3].mkv,[LoliHouse] Tensura Nikki - Tensei Shitara Slime Datta Ken - 09 [WebRip 1080p HEVC-10bit AAC SRTx3].mkv,374216102,2021-06-29T01:35:50,anime,1920x1080,hevc,1422.083,2105 +/mnt/Downloads/anime/[LoliHouse] Tensura Nikki - Tensei Shitara Slime Datta Ken [WebRip 1080p HEVC-10bit AAC]/[LoliHouse] Tensura Nikki - Tensei Shitara Slime Datta Ken - 12 [WebRip 1080p HEVC-10bit AAC SRTx3].mkv,[LoliHouse] Tensura Nikki - Tensei Shitara Slime Datta Ken - 12 [WebRip 1080p HEVC-10bit AAC SRTx3].mkv,409553935,2021-06-29T01:35:56,anime,1920x1080,hevc,1422.106,2303 +/mnt/Downloads/anime/[LoliHouse] Tensura Nikki - Tensei Shitara Slime Datta Ken [WebRip 1080p HEVC-10bit AAC]/[LoliHouse] Tensura Nikki - Tensei Shitara Slime Datta Ken - 08 [WebRip 1080p HEVC-10bit AAC SRTx3].mkv,[LoliHouse] Tensura Nikki - Tensei Shitara Slime Datta Ken - 08 [WebRip 1080p HEVC-10bit AAC SRTx3].mkv,493112984,2021-06-29T01:35:51,anime,1920x1080,hevc,1422.083,2774 +/mnt/Downloads/anime/[LoliHouse] Tensura Nikki - Tensei Shitara Slime Datta Ken [WebRip 1080p HEVC-10bit AAC]/[LoliHouse] Tensura Nikki - Tensei Shitara Slime Datta Ken - 04 [WebRip 1080p HEVC-10bit AAC SRTx3].mkv,[LoliHouse] Tensura Nikki - Tensei Shitara Slime Datta Ken - 04 [WebRip 1080p HEVC-10bit AAC SRTx3].mkv,398833750,2021-06-29T01:35:53,anime,1920x1080,hevc,1422.152,2243 +/mnt/Downloads/anime/[Nekomoe kissaten][Boku no Kokoro no Yabai Yatsu][20][1080p][JPSC].mp4,[Nekomoe kissaten][Boku no Kokoro no Yabai Yatsu][20][1080p][JPSC].mp4,278687440,2024-02-25T11:02:02,anime,1920x1080,h264,1382.975,1612 +"/mnt/Downloads/anime/[LoliHouse] Katainaka no Ossan, Kensei ni Naru - 11 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv","[LoliHouse] Katainaka no Ossan, Kensei ni Naru - 11 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv",607327053,2025-06-15T00:28:28,anime,1920x1080,hevc,1441.002,3371 +/mnt/Downloads/anime/[ANi] 刀劍神域外傳 Gun Gale Online II - 06 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 刀劍神域外傳 Gun Gale Online II - 06 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,529964428,2024-11-09T05:23:55,anime,1920x1080,h264,1425.045333,2975 +/mnt/Downloads/anime/[BeanSub&FZSD][Jigokuraku][16][GB][1080P][x264_AAC].mp4,[BeanSub&FZSD][Jigokuraku][16][GB][1080P][x264_AAC].mp4,573673139,2026-01-26T00:22:51,anime,1920x1080,h264,1450.157042,3164 +/mnt/Downloads/anime/[ANi] Re:從零開始的異世界生活 第三季 - 12 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] Re:從零開始的異世界生活 第三季 - 12 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,422331975,2025-02-27T00:15:56,anime,1920x1080,h264,1690.000956,1999 +/mnt/Downloads/anime/[ANi] 離開 A 級隊伍的我,和從前的弟子往迷宮深處邁進 - 07 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 離開 A 級隊伍的我,和從前的弟子往迷宮深處邁進 - 07 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,543829730,2025-02-23T00:56:23,anime,1920x1080,h264,1381.067322,3150 +/mnt/Downloads/anime/[ANi] 香格里拉・開拓異境~糞作獵手挑戰神作~ 第二季 - 04 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 香格里拉・開拓異境~糞作獵手挑戰神作~ 第二季 - 04 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,688391839,2024-11-03T14:55:29,anime,1920x1080,h264,1421.9832,3872 +/mnt/Downloads/anime/[ANi] 結緣甘神神社 - 21 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 結緣甘神神社 - 21 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,331293018,2025-03-05T00:54:16,anime,1920x1080,h264,1420.117333,1866 +/mnt/Downloads/anime/[ANi] LAZARUS 拉撒路 - 03 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] LAZARUS 拉撒路 - 03 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,636619013,2025-04-20T23:13:13,anime,1920x1080,h264,1439.978667,3536 +/mnt/Downloads/anime/[ANi] 孤單一人的異世界攻略 - 05 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 孤單一人的異世界攻略 - 05 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,418509360,2024-10-24T23:41:39,anime,1920x1080,h264,1420.074667,2357 +/mnt/Downloads/anime/[Nekomoe kissaten&LoliHouse] BURN THE WITCH - 0.8 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,[Nekomoe kissaten&LoliHouse] BURN THE WITCH - 0.8 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,505237117,2024-01-06T15:39:04,anime,1920x1080,hevc,1727.959,2339 +/mnt/Downloads/anime/[Nekomoe kissaten][Ao no Hako][18][1080p][JPSC].mp4,[Nekomoe kissaten][Ao no Hako][18][1080p][JPSC].mp4,531772522,2025-02-09T13:09:27,anime,1920x1080,h264,1417.301333,3001 +/mnt/Downloads/anime/[ANi] 妻子變成小學生。 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 妻子變成小學生。 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,321364285,2024-10-07T01:56:50,anime,1920x1080,h264,1420.117333,1810 +/mnt/Downloads/anime/[ANi] 鬼滅之刃 柱訓練篇 - 05 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 鬼滅之刃 柱訓練篇 - 05 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,600309792,2024-06-09T23:56:28,anime,1920x1080,h264,1425.027911,3370 +/mnt/Downloads/anime/[ANi] 杖與劍的魔劍譚 - 10 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 杖與劍的魔劍譚 - 10 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,578821403,2024-09-15T09:26:46,anime,1920x1080,h264,1426.070622,3247 +/mnt/Downloads/anime/[ANi] 永遠的黃昏 - 06 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 永遠的黃昏 - 06 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,306108807,2025-11-06T23:27:53,anime,1920x1080,h264,1435.008,1706 +/mnt/Downloads/anime/[ANi] 地下城中的人 - 10 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 地下城中的人 - 10 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,365817424,2024-09-13T23:49:39,anime,1920x1080,h264,1452.074667,2015 +/mnt/Downloads/anime/[ANi] 貫徹輔助魔法支援弱小隊友的宮廷魔法師,慘遭驅逐後目標成為最強冒險者 - 04 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 貫徹輔助魔法支援弱小隊友的宮廷魔法師,慘遭驅逐後目標成為最強冒險者 - 04 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,481627767,2025-10-26T01:05:18,anime,1920x1080,h264,1417.066667,2719 +/mnt/Downloads/anime/[LoliHouse] Amagami-san Chi no Enmusubi - 14 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,[LoliHouse] Amagami-san Chi no Enmusubi - 14 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,404975411,2025-01-16T10:53:12,anime,1920x1080,hevc,1420.086,2281 +/mnt/Downloads/anime/[ANi] 魔都精兵的奴隸 第二季 - 04 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 魔都精兵的奴隸 第二季 - 04 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,476702548,2026-01-29T23:35:03,anime,1920x1080,h264,1422.108322,2681 +/mnt/Downloads/anime/[Nekomoe kissaten][Ninja Kamui][11][1080p][CHT].mp4,[Nekomoe kissaten][Ninja Kamui][11][1080p][CHT].mp4,438121515,2024-04-23T02:21:20,anime,1920x1080,h264,1381.013333,2537 +/mnt/Downloads/anime/[Sakurato] Ookami to Koushinryou:Merchant Meets the Wise Wolf [01][AVC-8bit 1080p AAC][CHT].mp4,[Sakurato] Ookami to Koushinryou:Merchant Meets the Wise Wolf [01][AVC-8bit 1080p AAC][CHT].mp4,379602393,2024-04-05T01:15:51,anime,1920x1080,h264,1430.070567,2123 +/mnt/Downloads/anime/[Nekomoe kissaten][Tower of God S2][22][1080p][CHS].mp4,[Nekomoe kissaten][Tower of God S2][22][1080p][CHS].mp4,637932337,2024-12-08T14:56:55,anime,1920x1080,h264,1421.107664,3591 +/mnt/Downloads/anime/[Nekomoe kissaten&LoliHouse] Ao no Hako - 19 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,[Nekomoe kissaten&LoliHouse] Ao no Hako - 19 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,518238427,2025-02-25T23:55:22,anime,1920x1080,hevc,1420.032,2919 +/mnt/Downloads/anime/[Nekomoe kissaten][Silent Witch - Chinmoku no Majo no Kakushigoto][02][1080p][JPTC].mp4,[Nekomoe kissaten][Silent Witch - Chinmoku no Majo no Kakushigoto][02][1080p][JPTC].mp4,482871059,2025-07-13T23:56:33,anime,1920x1080,h264,1440.078345,2682 +/mnt/Downloads/anime/[Nekomoe kissaten][Ao no Hako][16][1080p][JPTC].mp4,[Nekomoe kissaten][Ao no Hako][16][1080p][JPTC].mp4,441158946,2025-01-20T11:00:48,anime,1920x1080,h264,1417.301333,2490 +/mnt/Downloads/anime/[DMG&LoliHouse] Senpai ga Uzai Kouhai no Hanashi - [01-12][WebRip 1080p HEVC-10bit AAC ASSx2]/[DMG&LoliHouse] Senpai ga Uzai Kouhai no Hanashi - 01 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,[DMG&LoliHouse] Senpai ga Uzai Kouhai no Hanashi - 01 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,325322525,2022-10-05T03:15:48,anime,1920x1080,hevc,1425.007,1826 +/mnt/Downloads/anime/[DMG&LoliHouse] Senpai ga Uzai Kouhai no Hanashi - [01-12][WebRip 1080p HEVC-10bit AAC ASSx2]/[DMG&LoliHouse] Senpai ga Uzai Kouhai no Hanashi - 05 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,[DMG&LoliHouse] Senpai ga Uzai Kouhai no Hanashi - 05 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,245076166,2022-10-05T03:15:50,anime,1920x1080,hevc,1424.965,1375 +/mnt/Downloads/anime/[DMG&LoliHouse] Senpai ga Uzai Kouhai no Hanashi - [01-12][WebRip 1080p HEVC-10bit AAC ASSx2]/[DMG&LoliHouse] Senpai ga Uzai Kouhai no Hanashi - 12 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,[DMG&LoliHouse] Senpai ga Uzai Kouhai no Hanashi - 12 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,270672204,2022-10-05T03:15:49,anime,1920x1080,hevc,1425.049,1519 +/mnt/Downloads/anime/[DMG&LoliHouse] Senpai ga Uzai Kouhai no Hanashi - [01-12][WebRip 1080p HEVC-10bit AAC ASSx2]/[DMG&LoliHouse] Senpai ga Uzai Kouhai no Hanashi - 09 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,[DMG&LoliHouse] Senpai ga Uzai Kouhai no Hanashi - 09 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,315937393,2022-10-05T03:15:53,anime,1920x1080,hevc,1425.049,1773 +/mnt/Downloads/anime/[DMG&LoliHouse] Senpai ga Uzai Kouhai no Hanashi - [01-12][WebRip 1080p HEVC-10bit AAC ASSx2]/[DMG&LoliHouse] Senpai ga Uzai Kouhai no Hanashi - 08 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,[DMG&LoliHouse] Senpai ga Uzai Kouhai no Hanashi - 08 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,287317454,2022-10-05T03:15:54,anime,1920x1080,hevc,1425.049,1612 +/mnt/Downloads/anime/[DMG&LoliHouse] Senpai ga Uzai Kouhai no Hanashi - [01-12][WebRip 1080p HEVC-10bit AAC ASSx2]/[DMG&LoliHouse] Senpai ga Uzai Kouhai no Hanashi - 04 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,[DMG&LoliHouse] Senpai ga Uzai Kouhai no Hanashi - 04 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,289877210,2022-10-05T03:15:50,anime,1920x1080,hevc,1425.049,1627 +/mnt/Downloads/anime/[DMG&LoliHouse] Senpai ga Uzai Kouhai no Hanashi - [01-12][WebRip 1080p HEVC-10bit AAC ASSx2]/[DMG&LoliHouse] Senpai ga Uzai Kouhai no Hanashi - 11 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,[DMG&LoliHouse] Senpai ga Uzai Kouhai no Hanashi - 11 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,285914772,2022-10-05T03:15:49,anime,1920x1080,hevc,1425.007,1605 +/mnt/Downloads/anime/[DMG&LoliHouse] Senpai ga Uzai Kouhai no Hanashi - [01-12][WebRip 1080p HEVC-10bit AAC ASSx2]/[DMG&LoliHouse] Senpai ga Uzai Kouhai no Hanashi - 02 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,[DMG&LoliHouse] Senpai ga Uzai Kouhai no Hanashi - 02 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,306079300,2022-10-05T03:15:47,anime,1920x1080,hevc,1425.007,1718 +/mnt/Downloads/anime/[DMG&LoliHouse] Senpai ga Uzai Kouhai no Hanashi - [01-12][WebRip 1080p HEVC-10bit AAC ASSx2]/[DMG&LoliHouse] Senpai ga Uzai Kouhai no Hanashi - 06 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,[DMG&LoliHouse] Senpai ga Uzai Kouhai no Hanashi - 06 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,334664854,2022-10-05T03:15:49,anime,1920x1080,hevc,1425.007,1878 +/mnt/Downloads/anime/[DMG&LoliHouse] Senpai ga Uzai Kouhai no Hanashi - [01-12][WebRip 1080p HEVC-10bit AAC ASSx2]/[DMG&LoliHouse] Senpai ga Uzai Kouhai no Hanashi - 03 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,[DMG&LoliHouse] Senpai ga Uzai Kouhai no Hanashi - 03 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,284073714,2022-10-05T03:15:49,anime,1920x1080,hevc,1425.007,1594 +/mnt/Downloads/anime/[DMG&LoliHouse] Senpai ga Uzai Kouhai no Hanashi - [01-12][WebRip 1080p HEVC-10bit AAC ASSx2]/[DMG&LoliHouse] Senpai ga Uzai Kouhai no Hanashi - 07 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,[DMG&LoliHouse] Senpai ga Uzai Kouhai no Hanashi - 07 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,334022046,2022-10-05T03:15:52,anime,1920x1080,hevc,1425.007,1875 +/mnt/Downloads/anime/[DMG&LoliHouse] Senpai ga Uzai Kouhai no Hanashi - [01-12][WebRip 1080p HEVC-10bit AAC ASSx2]/[DMG&LoliHouse] Senpai ga Uzai Kouhai no Hanashi - 10 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,[DMG&LoliHouse] Senpai ga Uzai Kouhai no Hanashi - 10 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,341290622,2022-10-05T03:15:51,anime,1920x1080,hevc,1424.965,1916 +/mnt/Downloads/anime/[KitaujiSub&LoliHouse] SAKAMOTO DAYS - 01 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,[KitaujiSub&LoliHouse] SAKAMOTO DAYS - 01 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,917654343,2025-05-04T15:06:02,anime,1920x1080,hevc,1417.557,5178 +/mnt/Downloads/anime/Moonrise.S01.2025.1080p.NF.WEB-DL.H.264.DDP.5.1-FROGWeb/Moonrise.S01E10.2025.1080p.NF.WEB-DL.H.264.DDP.5.1-FROGWeb.mkv,Moonrise.S01E10.2025.1080p.NF.WEB-DL.H.264.DDP.5.1-FROGWeb.mkv,1013662982,2025-06-28T08:57:32,anime,1920x1080,h264,1476.809,5491 +/mnt/Downloads/anime/Moonrise.S01.2025.1080p.NF.WEB-DL.H.264.DDP.5.1-FROGWeb/Moonrise.S01E03.2025.1080p.NF.WEB-DL.H.264.DDP.5.1-FROGWeb.mkv,Moonrise.S01E03.2025.1080p.NF.WEB-DL.H.264.DDP.5.1-FROGWeb.mkv,1173675021,2025-06-28T08:42:25,anime,1920x1080,h264,1709.541,5492 +/mnt/Downloads/anime/Moonrise.S01.2025.1080p.NF.WEB-DL.H.264.DDP.5.1-FROGWeb/Moonrise.S01E04.2025.1080p.NF.WEB-DL.H.264.DDP.5.1-FROGWeb.mkv,Moonrise.S01E04.2025.1080p.NF.WEB-DL.H.264.DDP.5.1-FROGWeb.mkv,1090534496,2025-06-28T08:43:51,anime,1920x1080,h264,1589.696,5488 +/mnt/Downloads/anime/Moonrise.S01.2025.1080p.NF.WEB-DL.H.264.DDP.5.1-FROGWeb/Moonrise.S01E17.2025.1080p.NF.WEB-DL.H.264.DDP.5.1-FROGWeb.mkv,Moonrise.S01E17.2025.1080p.NF.WEB-DL.H.264.DDP.5.1-FROGWeb.mkv,1115054863,2025-06-28T08:57:30,anime,1920x1080,h264,1630.045,5472 +/mnt/Downloads/anime/Moonrise.S01.2025.1080p.NF.WEB-DL.H.264.DDP.5.1-FROGWeb/Moonrise.S01E09.2025.1080p.NF.WEB-DL.H.264.DDP.5.1-FROGWeb.mkv,Moonrise.S01E09.2025.1080p.NF.WEB-DL.H.264.DDP.5.1-FROGWeb.mkv,1033598477,2025-06-28T08:55:30,anime,1920x1080,h264,1504.832,5494 +/mnt/Downloads/anime/Moonrise.S01.2025.1080p.NF.WEB-DL.H.264.DDP.5.1-FROGWeb/Moonrise.S01E13.2025.1080p.NF.WEB-DL.H.264.DDP.5.1-FROGWeb.mkv,Moonrise.S01E13.2025.1080p.NF.WEB-DL.H.264.DDP.5.1-FROGWeb.mkv,998792661,2025-06-28T08:57:20,anime,1920x1080,h264,1457.665,5481 +/mnt/Downloads/anime/Moonrise.S01.2025.1080p.NF.WEB-DL.H.264.DDP.5.1-FROGWeb/Moonrise.S01E14.2025.1080p.NF.WEB-DL.H.264.DDP.5.1-FROGWeb.mkv,Moonrise.S01E14.2025.1080p.NF.WEB-DL.H.264.DDP.5.1-FROGWeb.mkv,1076357718,2025-06-28T08:57:17,anime,1920x1080,h264,1572.863,5474 +/mnt/Downloads/anime/Moonrise.S01.2025.1080p.NF.WEB-DL.H.264.DDP.5.1-FROGWeb/Moonrise.S01E07.2025.1080p.NF.WEB-DL.H.264.DDP.5.1-FROGWeb.mkv,Moonrise.S01E07.2025.1080p.NF.WEB-DL.H.264.DDP.5.1-FROGWeb.mkv,1166150916,2025-06-28T08:55:18,anime,1920x1080,h264,1696.448,5499 +/mnt/Downloads/anime/Moonrise.S01.2025.1080p.NF.WEB-DL.H.264.DDP.5.1-FROGWeb/Moonrise.S01E08.2025.1080p.NF.WEB-DL.H.264.DDP.5.1-FROGWeb.mkv,Moonrise.S01E08.2025.1080p.NF.WEB-DL.H.264.DDP.5.1-FROGWeb.mkv,1084582664,2025-06-28T08:55:26,anime,1920x1080,h264,1587.776,5464 +/mnt/Downloads/anime/Moonrise.S01.2025.1080p.NF.WEB-DL.H.264.DDP.5.1-FROGWeb/Moonrise.S01E16.2025.1080p.NF.WEB-DL.H.264.DDP.5.1-FROGWeb.mkv,Moonrise.S01E16.2025.1080p.NF.WEB-DL.H.264.DDP.5.1-FROGWeb.mkv,1283077786,2025-06-28T08:57:25,anime,1920x1080,h264,1861.952,5512 +/mnt/Downloads/anime/Moonrise.S01.2025.1080p.NF.WEB-DL.H.264.DDP.5.1-FROGWeb/Moonrise.S01E05.2025.1080p.NF.WEB-DL.H.264.DDP.5.1-FROGWeb.mkv,Moonrise.S01E05.2025.1080p.NF.WEB-DL.H.264.DDP.5.1-FROGWeb.mkv,939375018,2025-06-28T08:46:54,anime,1920x1080,h264,1374.656,5466 +/mnt/Downloads/anime/Moonrise.S01.2025.1080p.NF.WEB-DL.H.264.DDP.5.1-FROGWeb/Moonrise.S01E02.2025.1080p.NF.WEB-DL.H.264.DDP.5.1-FROGWeb.mkv,Moonrise.S01E02.2025.1080p.NF.WEB-DL.H.264.DDP.5.1-FROGWeb.mkv,1187805867,2025-06-28T08:42:25,anime,1920x1080,h264,1726.784,5502 +/mnt/Downloads/anime/Moonrise.S01.2025.1080p.NF.WEB-DL.H.264.DDP.5.1-FROGWeb/Moonrise.S01E11.2025.1080p.NF.WEB-DL.H.264.DDP.5.1-FROGWeb.mkv,Moonrise.S01E11.2025.1080p.NF.WEB-DL.H.264.DDP.5.1-FROGWeb.mkv,883461947,2025-06-28T08:57:23,anime,1920x1080,h264,1297.472,5447 +/mnt/Downloads/anime/Moonrise.S01.2025.1080p.NF.WEB-DL.H.264.DDP.5.1-FROGWeb/Moonrise.S01E18.2025.1080p.NF.WEB-DL.H.264.DDP.5.1-FROGWeb.mkv,Moonrise.S01E18.2025.1080p.NF.WEB-DL.H.264.DDP.5.1-FROGWeb.mkv,1231429670,2025-06-28T08:57:23,anime,1920x1080,h264,1798.976,5476 +/mnt/Downloads/anime/Moonrise.S01.2025.1080p.NF.WEB-DL.H.264.DDP.5.1-FROGWeb/Moonrise.S01E06.2025.1080p.NF.WEB-DL.H.264.DDP.5.1-FROGWeb.mkv,Moonrise.S01E06.2025.1080p.NF.WEB-DL.H.264.DDP.5.1-FROGWeb.mkv,1122858211,2025-06-28T08:51:56,anime,1920x1080,h264,1641.152,5473 +/mnt/Downloads/anime/Moonrise.S01.2025.1080p.NF.WEB-DL.H.264.DDP.5.1-FROGWeb/Moonrise.S01E15.2025.1080p.NF.WEB-DL.H.264.DDP.5.1-FROGWeb.mkv,Moonrise.S01E15.2025.1080p.NF.WEB-DL.H.264.DDP.5.1-FROGWeb.mkv,1090643774,2025-06-28T08:57:21,anime,1920x1080,h264,1591.616,5481 +/mnt/Downloads/anime/Moonrise.S01.2025.1080p.NF.WEB-DL.H.264.DDP.5.1-FROGWeb/Moonrise.S01E12.2025.1080p.NF.WEB-DL.H.264.DDP.5.1-FROGWeb.mkv,Moonrise.S01E12.2025.1080p.NF.WEB-DL.H.264.DDP.5.1-FROGWeb.mkv,871632695,2025-06-28T08:57:27,anime,1920x1080,h264,1279.862,5448 +/mnt/Downloads/anime/Moonrise.S01.2025.1080p.NF.WEB-DL.H.264.DDP.5.1-FROGWeb/Moonrise.S01E01.2025.1080p.NF.WEB-DL.H.264.DDP.5.1-FROGWeb.mkv,Moonrise.S01E01.2025.1080p.NF.WEB-DL.H.264.DDP.5.1-FROGWeb.mkv,1171105413,2025-06-28T08:39:53,anime,1920x1080,h264,1704.128,5497 +/mnt/Downloads/anime/[ANi] 轉生貴族憑鑑定技能扭轉人生 第二季 - 14 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 轉生貴族憑鑑定技能扭轉人生 第二季 - 14 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,308738311,2024-10-07T01:55:48,anime,1920x1080,h264,1419.989333,1739 +/mnt/Downloads/anime/[BeanSub&FZSD][BLEACH_Sennen_Kessen-hen][35][GB][1080P][x264_AAC].mp4,[BeanSub&FZSD][BLEACH_Sennen_Kessen-hen][35][GB][1080P][x264_AAC].mp4,582603082,2024-11-30T23:57:00,anime,1920x1080,h264,1443.050667,3229 +/mnt/Downloads/anime/[Nekomoe kissaten][Ninja Kamui][04][1080p][CHT].mp4,[Nekomoe kissaten][Ninja Kamui][04][1080p][CHT].mp4,334100232,2024-03-13T13:39:46,anime,1920x1080,h264,1381.546667,1934 +/mnt/Downloads/anime/[Nekomoe kissaten&LoliHouse] Ao no Hako - 02 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,[Nekomoe kissaten&LoliHouse] Ao no Hako - 02 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,519880499,2024-11-10T04:13:49,anime,1920x1080,hevc,1417.002,2935 +/mnt/Downloads/anime/[ANi] 最近的偵探真沒用 - 05 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 最近的偵探真沒用 - 05 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,403659045,2025-07-29T23:38:39,anime,1920x1080,h264,1420.032,2274 +/mnt/Downloads/anime/[LoliHouse] Snack Basue - 01 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,[LoliHouse] Snack Basue - 01 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,425020303,2024-01-22T00:16:56,anime,1920x1080,hevc,1432.485,2373 +/mnt/Downloads/anime/[ANi] 膽大黨 - 05 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 膽大黨 - 05 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,572180463,2024-10-31T23:49:49,anime,1920x1080,h264,1437.039911,3185 +/mnt/Downloads/anime/[BDrip] Solo Leveling S01 [7³ACG]/Solo Leveling S01E03-[1080p][BDRIP][x265.FLAC].mkv,Solo Leveling S01E03-[1080p][BDRIP][x265.FLAC].mkv,1260461891,2025-02-22T05:18:49,anime,1920x1080,hevc,1421.965,7091 +/mnt/Downloads/anime/[BDrip] Solo Leveling S01 [7³ACG]/Solo Leveling S01E05-[1080p][BDRIP][x265.FLAC].mkv,Solo Leveling S01E05-[1080p][BDRIP][x265.FLAC].mkv,1146487639,2025-02-22T05:24:54,anime,1920x1080,hevc,1422.005,6449 +/mnt/Downloads/anime/[BDrip] Solo Leveling S01 [7³ACG]/Solo Leveling S01E09-[1080p][BDRIP][x265.FLAC].mkv,Solo Leveling S01E09-[1080p][BDRIP][x265.FLAC].mkv,1083521288,2025-02-22T05:36:58,anime,1920x1080,hevc,1422.05,6095 +/mnt/Downloads/anime/[BDrip] Solo Leveling S01 [7³ACG]/NCED.mkv,NCED.mkv,244738683,2025-02-22T05:10:19,anime,1920x1080,hevc,92.092,21260 +/mnt/Downloads/anime/[BDrip] Solo Leveling S01 [7³ACG]/Solo Leveling S01E12-[1080p][BDRIP][x265.FLAC].mkv,Solo Leveling S01E12-[1080p][BDRIP][x265.FLAC].mkv,1183297736,2025-02-22T05:43:45,anime,1920x1080,hevc,1422.005,6657 +/mnt/Downloads/anime/[BDrip] Solo Leveling S01 [7³ACG]/Solo Leveling S01E02-[1080p][BDRIP][x265.FLAC].mkv,Solo Leveling S01E02-[1080p][BDRIP][x265.FLAC].mkv,1032997793,2025-02-22T05:15:11,anime,1920x1080,hevc,1421.965,5811 +/mnt/Downloads/anime/[BDrip] Solo Leveling S01 [7³ACG]/Solo Leveling S01E04-[1080p][BDRIP][x265.FLAC].mkv,Solo Leveling S01E04-[1080p][BDRIP][x265.FLAC].mkv,1221785217,2025-02-22T05:22:23,anime,1920x1080,hevc,1422.005,6873 +/mnt/Downloads/anime/[BDrip] Solo Leveling S01 [7³ACG]/Solo Leveling S01E08-[1080p][BDRIP][x265.FLAC].mkv,Solo Leveling S01E08-[1080p][BDRIP][x265.FLAC].mkv,973741816,2025-02-22T05:33:54,anime,1920x1080,hevc,1422.05,5477 +/mnt/Downloads/anime/[BDrip] Solo Leveling S01 [7³ACG]/Solo Leveling S01E01-[1080p][BDRIP][x265.FLAC].mkv,Solo Leveling S01E01-[1080p][BDRIP][x265.FLAC].mkv,945498330,2025-02-22T05:11:08,anime,1920x1080,hevc,1422.005,5319 +/mnt/Downloads/anime/[BDrip] Solo Leveling S01 [7³ACG]/NCOP.mkv,NCOP.mkv,104564463,2025-02-22T05:07:18,anime,1920x1080,hevc,92.092,9083 +/mnt/Downloads/anime/[BDrip] Solo Leveling S01 [7³ACG]/Solo Leveling S01E07-[1080p][BDRIP][x265.FLAC].mkv,Solo Leveling S01E07-[1080p][BDRIP][x265.FLAC].mkv,1214452458,2025-02-22T05:31:22,anime,1920x1080,hevc,1421.965,6832 +/mnt/Downloads/anime/[BDrip] Solo Leveling S01 [7³ACG]/Solo Leveling S01E10-[1080p][BDRIP][x265.FLAC].mkv,Solo Leveling S01E10-[1080p][BDRIP][x265.FLAC].mkv,973997096,2025-02-22T05:39:18,anime,1920x1080,hevc,1422.05,5479 +/mnt/Downloads/anime/[BDrip] Solo Leveling S01 [7³ACG]/Solo Leveling S01E06-[1080p][BDRIP][x265.FLAC].mkv,Solo Leveling S01E06-[1080p][BDRIP][x265.FLAC].mkv,1265034486,2025-02-22T05:28:27,anime,1920x1080,hevc,1422.05,7116 +/mnt/Downloads/anime/[BDrip] Solo Leveling S01 [7³ACG]/Solo Leveling S01E11-[1080p][BDRIP][x265.FLAC].mkv,Solo Leveling S01E11-[1080p][BDRIP][x265.FLAC].mkv,1177048198,2025-02-22T05:41:55,anime,1920x1080,hevc,1422.005,6621 +/mnt/Downloads/anime/[Airota&LoliHouse] Hibike! Euphonium 3 - 01 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,[Airota&LoliHouse] Hibike! Euphonium 3 - 01 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,487393849,2024-04-10T23:55:57,anime,1920x1080,hevc,1497.06,2604 +/mnt/Downloads/anime/[ANi] 歲月流逝飯菜依舊美味 - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 歲月流逝飯菜依舊美味 - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,453849758,2025-04-20T01:38:57,anime,1920x1080,h264,1445.141333,2512 +/mnt/Downloads/anime/[Nekomoe kissaten][Zoku Owarimonogatari][Commentary][01-06END][720p]/[Nekomoe kissaten][Zoku Owarimonogatari][Commentary][06][720p][x264_aac][chs].mp4,[Nekomoe kissaten][Zoku Owarimonogatari][Commentary][06][720p][x264_aac][chs].mp4,407989542,2020-03-07T15:32:19,anime,1280x720,h264,1932.288,1689 +/mnt/Downloads/anime/[Nekomoe kissaten][Zoku Owarimonogatari][Commentary][01-06END][720p]/[Nekomoe kissaten][Zoku Owarimonogatari][Commentary][02][720p][x264_aac][cht].mp4,[Nekomoe kissaten][Zoku Owarimonogatari][Commentary][02][720p][x264_aac][cht].mp4,337067138,2020-03-07T15:31:26,anime,1280x720,h264,1477.12,1825 +/mnt/Downloads/anime/[Nekomoe kissaten][Zoku Owarimonogatari][Commentary][01-06END][720p]/[Nekomoe kissaten][Zoku Owarimonogatari][Commentary][05][720p][x264_aac][chs].mp4,[Nekomoe kissaten][Zoku Owarimonogatari][Commentary][05][720p][x264_aac][chs].mp4,306391127,2020-03-07T15:32:19,anime,1280x720,h264,1567.210667,1564 +/mnt/Downloads/anime/[Nekomoe kissaten][Zoku Owarimonogatari][Commentary][01-06END][720p]/[Nekomoe kissaten][Zoku Owarimonogatari][Commentary][01][720p][x264_aac][cht].mp4,[Nekomoe kissaten][Zoku Owarimonogatari][Commentary][01][720p][x264_aac][cht].mp4,329410550,2020-03-07T15:30:01,anime,1280x720,h264,1478.08,1782 +/mnt/Downloads/anime/[Nekomoe kissaten][Zoku Owarimonogatari][Commentary][01-06END][720p]/[Nekomoe kissaten][Zoku Owarimonogatari][Commentary][04][720p][x264_aac][cht].mp4,[Nekomoe kissaten][Zoku Owarimonogatari][Commentary][04][720p][x264_aac][cht].mp4,285020830,2020-03-07T15:29:58,anime,1280x720,h264,1418.24,1607 +/mnt/Downloads/anime/[Nekomoe kissaten][Zoku Owarimonogatari][Commentary][01-06END][720p]/[Nekomoe kissaten][Zoku Owarimonogatari][Commentary][03][720p][x264_aac][chs].mp4,[Nekomoe kissaten][Zoku Owarimonogatari][Commentary][03][720p][x264_aac][chs].mp4,304585613,2020-03-07T15:32:18,anime,1280x720,h264,1567.082667,1554 +/mnt/Downloads/anime/[Nekomoe kissaten][Zoku Owarimonogatari][Commentary][01-06END][720p]/[Nekomoe kissaten][Zoku Owarimonogatari][Commentary][03][720p][x264_aac][cht].mp4,[Nekomoe kissaten][Zoku Owarimonogatari][Commentary][03][720p][x264_aac][cht].mp4,304435929,2020-03-07T15:30:13,anime,1280x720,h264,1567.082667,1554 +/mnt/Downloads/anime/[Nekomoe kissaten][Zoku Owarimonogatari][Commentary][01-06END][720p]/[Nekomoe kissaten][Zoku Owarimonogatari][Commentary][04][720p][x264_aac][chs].mp4,[Nekomoe kissaten][Zoku Owarimonogatari][Commentary][04][720p][x264_aac][chs].mp4,285289845,2020-03-07T15:31:46,anime,1280x720,h264,1418.24,1609 +/mnt/Downloads/anime/[Nekomoe kissaten][Zoku Owarimonogatari][Commentary][01-06END][720p]/[Nekomoe kissaten][Zoku Owarimonogatari][Commentary][05][720p][x264_aac][cht].mp4,[Nekomoe kissaten][Zoku Owarimonogatari][Commentary][05][720p][x264_aac][cht].mp4,305985166,2020-03-07T15:27:53,anime,1280x720,h264,1567.210667,1561 +/mnt/Downloads/anime/[Nekomoe kissaten][Zoku Owarimonogatari][Commentary][01-06END][720p]/[Nekomoe kissaten][Zoku Owarimonogatari][Commentary][01][720p][x264_aac][chs].mp4,[Nekomoe kissaten][Zoku Owarimonogatari][Commentary][01][720p][x264_aac][chs].mp4,330113369,2020-03-07T15:32:20,anime,1280x720,h264,1478.08,1786 +/mnt/Downloads/anime/[Nekomoe kissaten][Zoku Owarimonogatari][Commentary][01-06END][720p]/[Nekomoe kissaten][Zoku Owarimonogatari][Commentary][06][720p][x264_aac][cht].mp4,[Nekomoe kissaten][Zoku Owarimonogatari][Commentary][06][720p][x264_aac][cht].mp4,407422681,2020-03-07T15:31:09,anime,1280x720,h264,1932.288,1686 +/mnt/Downloads/anime/[Nekomoe kissaten][Zoku Owarimonogatari][Commentary][01-06END][720p]/[Nekomoe kissaten][Zoku Owarimonogatari][Commentary][02][720p][x264_aac][chs].mp4,[Nekomoe kissaten][Zoku Owarimonogatari][Commentary][02][720p][x264_aac][chs].mp4,337586375,2020-03-07T15:32:17,anime,1280x720,h264,1477.12,1828 +/mnt/Downloads/anime/[Lilith-Raws] Rinkai! - 04 [Baha][WebDL 1080p AVC AAC][CHT].mp4,[Lilith-Raws] Rinkai! - 04 [Baha][WebDL 1080p AVC AAC][CHT].mp4,420265328,2024-05-03T03:25:34,anime,1920x1080,h264,1420.032,2367 +/mnt/Downloads/anime/[ANi] 靠廢柴技能【狀態異常】成為最強的我將蹂躪一切 - 11 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 靠廢柴技能【狀態異常】成為最強的我將蹂躪一切 - 11 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,612734064,2024-09-19T23:26:46,anime,1920x1080,h264,1449.984,3380 +/mnt/Downloads/anime/[orion origin] Zom 100:Zombie ni Naru made ni Shitai 100 no Koto [12] [END] [1080p] [H265 AAC] [CHS&JPN].mp4,[orion origin] Zom 100:Zombie ni Naru made ni Shitai 100 no Koto [12] [END] [1080p] [H265 AAC] [CHS&JPN].mp4,419440317,2024-01-02T23:56:44,anime,1920x1080,hevc,1421.984,2359 +/mnt/Downloads/anime/[LoliHouse] Kakushite! Makina-san!! - 05 [WebRip 1080p HEVC-10bit AAC].mkv,[LoliHouse] Kakushite! Makina-san!! - 05 [WebRip 1080p HEVC-10bit AAC].mkv,213886413,2025-05-05T01:48:47,anime,1920x1080,hevc,726.984,2353 +/mnt/Downloads/anime/[ANi] 輝夜姬想讓人告白 邁向大人的階梯 - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 輝夜姬想讓人告白 邁向大人的階梯 - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,449169951,2026-01-01T01:20:50,anime,1920x1080,h264,1626.812822,2208 +/mnt/Downloads/anime/[ANi] 最後可以再拜託您一件事嗎? - 05 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 最後可以再拜託您一件事嗎? - 05 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,385081378,2025-10-25T00:49:41,anime,1920x1080,h264,1425.045333,2161 +/mnt/Downloads/anime/[ANi] 我與尼特女忍者的莫名同居生活 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 我與尼特女忍者的莫名同居生活 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,366844264,2025-01-05T00:42:10,anime,1920x1080,h264,1442.090667,2035 +/mnt/Downloads/anime/[KitaujiSub] Ao no Hako [10][WebRip][HEVC_AAC][CHS_JP].mp4,[KitaujiSub] Ao no Hako [10][WebRip][HEVC_AAC][CHS_JP].mp4,454479771,2024-12-03T01:17:31,anime,1920x1080,hevc,1417.28,2565 +/mnt/Downloads/anime/[LoliHouse] Class no Daikirai na Joshi to Kekkon suru Koto ni Natta. - 12 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,[LoliHouse] Class no Daikirai na Joshi to Kekkon suru Koto ni Natta. - 12 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,523194743,2025-03-23T14:28:06,anime,1920x1080,hevc,1420.086,2947 +/mnt/Downloads/anime/Ghost.in.the.Shell.SAC.The.Laughing.Man.2005.1080p.BluRay.x265.10bit-WiKi/Ghost.in.the.Shell.SAC.The.Laughing.Man.2005.1080p.BluRay.x265.10bit-WiKi.mkv,Ghost.in.the.Shell.SAC.The.Laughing.Man.2005.1080p.BluRay.x265.10bit-WiKi.mkv,6447572148,2025-04-03T04:34:28,anime,1920x1036,hevc,9615.392,5364 +/mnt/Downloads/anime/[LoliHouse] Sword Art Online Alternative - Gun Gale Online II - 07 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,[LoliHouse] Sword Art Online Alternative - Gun Gale Online II - 07 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,422600974,2024-11-16T01:16:45,anime,1920x1080,hevc,1420.016,2380 +/mnt/Downloads/anime/[ANi] WIND BREAKER—防風少年— - 08 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] WIND BREAKER—防風少年— - 08 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,557156766,2024-05-24T00:04:09,anime,1920x1080,h264,1440.042911,3095 +"/mnt/Downloads/anime/[Comicat&KissSub][Kanojo, Okarishimasu 2][01-12][BIG5][MP4]/[Comicat&KissSub][Kanojo, Okarishimasu][23][1080P][BIG5][MP4].mp4","[Comicat&KissSub][Kanojo, Okarishimasu][23][1080P][BIG5][MP4].mp4",308856520,2022-10-22T10:40:27,anime,1920x1080,h264,1467.222494,1684 +"/mnt/Downloads/anime/[Comicat&KissSub][Kanojo, Okarishimasu 2][01-12][BIG5][MP4]/[Comicat&KissSub][Kanojo, Okarishimasu][22][1080P][BIG5][MP4].mp4","[Comicat&KissSub][Kanojo, Okarishimasu][22][1080P][BIG5][MP4].mp4",270616634,2022-10-22T10:40:24,anime,1920x1080,h264,1467.222494,1475 +"/mnt/Downloads/anime/[Comicat&KissSub][Kanojo, Okarishimasu 2][01-12][BIG5][MP4]/[Comicat&KissSub][Kanojo, Okarishimasu][19][1080P][BIG5][MP4].mp4","[Comicat&KissSub][Kanojo, Okarishimasu][19][1080P][BIG5][MP4].mp4",233342965,2022-10-22T10:40:35,anime,1920x1080,h264,1467.176054,1272 +"/mnt/Downloads/anime/[Comicat&KissSub][Kanojo, Okarishimasu 2][01-12][BIG5][MP4]/[Comicat&KissSub][Kanojo, Okarishimasu][20][1080P][BIG5][MP4].mp4","[Comicat&KissSub][Kanojo, Okarishimasu][20][1080P][BIG5][MP4].mp4",246619590,2022-10-22T10:40:09,anime,1920x1080,h264,1467.176054,1344 +"/mnt/Downloads/anime/[Comicat&KissSub][Kanojo, Okarishimasu 2][01-12][BIG5][MP4]/[Comicat&KissSub][Kanojo, Okarishimasu][21][1080P][BIG5][MP4].mp4","[Comicat&KissSub][Kanojo, Okarishimasu][21][1080P][BIG5][MP4].mp4",281624975,2022-10-22T10:40:36,anime,1920x1080,h264,1467.106395,1535 +"/mnt/Downloads/anime/[Comicat&KissSub][Kanojo, Okarishimasu 2][01-12][BIG5][MP4]/[Comicat&KissSub][Kanojo, Okarishimasu][18][1080P][BIG5][MP4].mp4","[Comicat&KissSub][Kanojo, Okarishimasu][18][1080P][BIG5][MP4].mp4",248957518,2022-10-22T10:40:36,anime,1920x1080,h264,1467.176054,1357 +"/mnt/Downloads/anime/[Comicat&KissSub][Kanojo, Okarishimasu 2][01-12][BIG5][MP4]/[Comicat&KissSub][Kanojo, Okarishimasu][13][1080P][BIG5][MP4].mp4","[Comicat&KissSub][Kanojo, Okarishimasu][13][1080P][BIG5][MP4].mp4",273138921,2022-10-22T10:40:28,anime,1920x1080,h264,1467.222494,1489 +"/mnt/Downloads/anime/[Comicat&KissSub][Kanojo, Okarishimasu 2][01-12][BIG5][MP4]/[Comicat&KissSub][Kanojo, Okarishimasu][17][1080P][BIG5][MP4].mp4","[Comicat&KissSub][Kanojo, Okarishimasu][17][1080P][BIG5][MP4].mp4",319670870,2022-10-22T10:40:32,anime,1920x1080,h264,1467.176054,1743 +"/mnt/Downloads/anime/[Comicat&KissSub][Kanojo, Okarishimasu 2][01-12][BIG5][MP4]/[Comicat&KissSub][Kanojo, Okarishimasu][16][1080P][BIG5][MP4].mp4","[Comicat&KissSub][Kanojo, Okarishimasu][16][1080P][BIG5][MP4].mp4",249032918,2022-10-22T10:40:11,anime,1920x1080,h264,1467.176054,1357 +"/mnt/Downloads/anime/[Comicat&KissSub][Kanojo, Okarishimasu 2][01-12][BIG5][MP4]/[Comicat&KissSub][Kanojo, Okarishimasu][24][1080P][BIG5][MP4].mp4","[Comicat&KissSub][Kanojo, Okarishimasu][24][1080P][BIG5][MP4].mp4",272578795,2022-10-22T10:40:23,anime,1920x1080,h264,1437.152653,1517 +"/mnt/Downloads/anime/[Comicat&KissSub][Kanojo, Okarishimasu 2][01-12][BIG5][MP4]/[Comicat&KissSub][Kanojo, Okarishimasu][14][1080P][BIG5][MP4].mp4","[Comicat&KissSub][Kanojo, Okarishimasu][14][1080P][BIG5][MP4].mp4",314195374,2022-10-22T10:40:23,anime,1920x1080,h264,1467.129615,1713 +"/mnt/Downloads/anime/[Comicat&KissSub][Kanojo, Okarishimasu 2][01-12][BIG5][MP4]/[Comicat&KissSub][Kanojo, Okarishimasu][15][1080P][BIG5][MP4].mp4","[Comicat&KissSub][Kanojo, Okarishimasu][15][1080P][BIG5][MP4].mp4",284744808,2022-10-22T10:40:27,anime,1920x1080,h264,1467.176054,1552 +/mnt/Downloads/anime/[ANi] 新人大叔冒險者,被最強隊伍操到死成無敵 - 07 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 新人大叔冒險者,被最強隊伍操到死成無敵 - 07 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,482786145,2024-08-20T01:30:09,anime,1920x1080,h264,1424.944489,2710 +/mnt/Downloads/anime/[Nekomoe kissaten][Ao no Hako][13][1080p][JPSC].mp4,[Nekomoe kissaten][Ao no Hako][13][1080p][JPSC].mp4,510377593,2025-01-05T09:33:37,anime,1920x1080,h264,1417.301333,2880 +/mnt/Downloads/anime/[LoliHouse] Hitoribocchi no Isekai Kouryaku - 03 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,[LoliHouse] Hitoribocchi no Isekai Kouryaku - 03 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,636847364,2024-10-14T12:00:27,anime,1920x1080,hevc,1422.463,3581 +/mnt/Downloads/anime/[Skymoon-Raws] Mushoku Tensei 2nd Season - 04 [ViuTV][WEB-DL][CHT][1080p][AVC AAC][MP4+ASS]/[Skymoon-Raws] Mushoku Tensei 2nd Season - 04 [ViuTV][WEB-DL][1080p][AVC AAC].mp4,[Skymoon-Raws] Mushoku Tensei 2nd Season - 04 [ViuTV][WEB-DL][1080p][AVC AAC].mp4,338137744,2023-07-31T00:06:32,anime,1920x1080,h264,1419.968,1905 +/mnt/Downloads/anime/[ANi] 使人誤解的工房主~關於原英雄隊伍的雜役人員,實際上除了戰鬥能力外全是SSS的故事~ - 08 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 使人誤解的工房主~關於原英雄隊伍的雜役人員,實際上除了戰鬥能力外全是SSS的故事~ - 08 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,396850137,2025-05-18T14:49:35,anime,1920x1080,h264,1420.032,2235 +/mnt/Downloads/anime/[ANi] 我要【招架】一切~反誤解的世界最強想成為冒險家~ - 05 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 我要【招架】一切~反誤解的世界最強想成為冒險家~ - 05 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,380762676,2024-08-02T00:17:17,anime,1920x1080,h264,1420.064622,2145 +/mnt/Downloads/anime/[KTXP][Great_Pretender][01-23][BIG5][720p]/[KTXP][Great_Pretender][11][BIG5][720p].mp4,[KTXP][Great_Pretender][11][BIG5][720p].mp4,171496019,2020-10-21T03:37:02,anime,1280x720,h264,1372.048333,999 +/mnt/Downloads/anime/[KTXP][Great_Pretender][01-23][BIG5][720p]/[KTXP][Great_Pretender][04][BIG5][720p].mp4,[KTXP][Great_Pretender][04][BIG5][720p].mp4,190926763,2020-10-21T03:37:00,anime,1280x720,h264,1372.176667,1113 +/mnt/Downloads/anime/[KTXP][Great_Pretender][01-23][BIG5][720p]/[KTXP][Great_Pretender][10][BIG5][720p].mp4,[KTXP][Great_Pretender][10][BIG5][720p].mp4,231887331,2020-10-21T03:37:04,anime,1280x720,h264,1372.09,1352 +/mnt/Downloads/anime/[KTXP][Great_Pretender][01-23][BIG5][720p]/[KTXP][Great_Pretender][05][BIG5][720p].mp4,[KTXP][Great_Pretender][05][BIG5][720p].mp4,203492184,2020-10-21T03:36:57,anime,1280x720,h264,1372.048333,1186 +/mnt/Downloads/anime/[KTXP][Great_Pretender][01-23][BIG5][720p]/[KTXP][Great_Pretender][06][BIG5][720p].mp4,[KTXP][Great_Pretender][06][BIG5][720p].mp4,223465960,2020-10-21T03:37:00,anime,1280x720,h264,1372.005,1303 +/mnt/Downloads/anime/[KTXP][Great_Pretender][01-23][BIG5][720p]/[KTXP][Great_Pretender][13][BIG5][720p].mp4,[KTXP][Great_Pretender][13][BIG5][720p].mp4,169389562,2020-10-21T03:37:02,anime,1280x720,h264,1372.09,987 +/mnt/Downloads/anime/[KTXP][Great_Pretender][01-23][BIG5][720p]/[KTXP][Great_Pretender][07][BIG5][720p].mp4,[KTXP][Great_Pretender][07][BIG5][720p].mp4,318309879,2020-10-21T03:37:02,anime,1280x720,h264,1372.09,1855 +/mnt/Downloads/anime/[KTXP][Great_Pretender][01-23][BIG5][720p]/[KTXP][Great_Pretender][12][BIG5][720p].mp4,[KTXP][Great_Pretender][12][BIG5][720p].mp4,180295320,2020-10-21T03:37:02,anime,1280x720,h264,1372.133333,1051 +/mnt/Downloads/anime/[KTXP][Great_Pretender][01-23][BIG5][720p]/[KTXP][Great_Pretender][14][BIG5][720p].mp4,[KTXP][Great_Pretender][14][BIG5][720p].mp4,178838827,2020-10-21T03:36:59,anime,1280x720,h264,1372.048333,1042 +/mnt/Downloads/anime/[KTXP][Great_Pretender][01-23][BIG5][720p]/[KTXP][Great_Pretender][01][BIG5][720p].mp4,[KTXP][Great_Pretender][01][BIG5][720p].mp4,247918942,2020-10-21T03:37:00,anime,1280x720,h264,1372.133333,1445 +/mnt/Downloads/anime/[KTXP][Great_Pretender][01-23][BIG5][720p]/[KTXP][Great_Pretender][15][BIG5][720p].mp4,[KTXP][Great_Pretender][15][BIG5][720p].mp4,224992719,2020-10-21T03:37:01,anime,1280x720,h264,1372.176667,1311 +/mnt/Downloads/anime/[KTXP][Great_Pretender][01-23][BIG5][720p]/[KTXP][Great_Pretender][03][BIG5][720p].mp4,[KTXP][Great_Pretender][03][BIG5][720p].mp4,192078702,2020-10-21T03:37:03,anime,1280x720,h264,1372.09,1119 +/mnt/Downloads/anime/[KTXP][Great_Pretender][01-23][BIG5][720p]/[KTXP][Great_Pretender][16][BIG5][720p].mp4,[KTXP][Great_Pretender][16][BIG5][720p].mp4,183303245,2020-10-21T03:36:48,anime,1280x720,h264,1372.048333,1068 +/mnt/Downloads/anime/[KTXP][Great_Pretender][01-23][BIG5][720p]/[KTXP][Great_Pretender][02][BIG5][720p].mp4,[KTXP][Great_Pretender][02][BIG5][720p].mp4,191349304,2020-10-21T03:37:05,anime,1280x720,h264,1372.133333,1115 +/mnt/Downloads/anime/[KTXP][Great_Pretender][01-23][BIG5][720p]/[KTXP][Great_Pretender][17][BIG5][720p].mp4,[KTXP][Great_Pretender][17][BIG5][720p].mp4,171330932,2020-10-21T03:37:00,anime,1280x720,h264,1372.005,999 +/mnt/Downloads/anime/[KTXP][Great_Pretender][01-23][BIG5][720p]/[KTXP][Great_Pretender][19][BIG5][720p].mp4,[KTXP][Great_Pretender][19][BIG5][720p].mp4,186996336,2020-10-21T03:37:00,anime,1280x720,h264,1372.09,1090 +/mnt/Downloads/anime/[KTXP][Great_Pretender][01-23][BIG5][720p]/[KTXP][Great_Pretender][18][BIG5][720p].mp4,[KTXP][Great_Pretender][18][BIG5][720p].mp4,188252907,2020-10-21T03:37:00,anime,1280x720,h264,1372.09,1097 +/mnt/Downloads/anime/[KTXP][Great_Pretender][01-23][BIG5][720p]/[KTXP][Great_Pretender][20][BIG5][720p].mp4,[KTXP][Great_Pretender][20][BIG5][720p].mp4,198572661,2020-10-21T03:37:06,anime,1280x720,h264,1372.09,1157 +/mnt/Downloads/anime/[KTXP][Great_Pretender][01-23][BIG5][720p]/[KTXP][Great_Pretender][21][BIG5][720p].mp4,[KTXP][Great_Pretender][21][BIG5][720p].mp4,168781760,2020-10-21T03:37:08,anime,1280x720,h264,1372.048333,984 +/mnt/Downloads/anime/[KTXP][Great_Pretender][01-23][BIG5][720p]/[KTXP][Great_Pretender][09][BIG5][720p].mp4,[KTXP][Great_Pretender][09][BIG5][720p].mp4,263678534,2020-10-21T03:37:00,anime,1280x720,h264,1372.09,1537 +/mnt/Downloads/anime/[KTXP][Great_Pretender][01-23][BIG5][720p]/[KTXP][Great_Pretender][22][BIG5][720p].mp4,[KTXP][Great_Pretender][22][BIG5][720p].mp4,195668210,2020-10-21T03:37:02,anime,1280x720,h264,1372.005,1140 +/mnt/Downloads/anime/[KTXP][Great_Pretender][01-23][BIG5][720p]/[KTXP][Great_Pretender][08][BIG5][720p].mp4,[KTXP][Great_Pretender][08][BIG5][720p].mp4,189023509,2020-10-21T03:36:38,anime,1280x720,h264,1372.176667,1102 +/mnt/Downloads/anime/[KTXP][Great_Pretender][01-23][BIG5][720p]/[KTXP][Great_Pretender][23][BIG5][720p].mp4,[KTXP][Great_Pretender][23][BIG5][720p].mp4,217836852,2020-10-21T03:37:03,anime,1280x720,h264,1372.09,1270 +/mnt/Downloads/anime/[ANi] Silent Witch 沉默魔女的祕密 - 13 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] Silent Witch 沉默魔女的祕密 - 13 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,401443570,2025-10-05T01:11:46,anime,1920x1080,h264,1445.0062,2222 +/mnt/Downloads/anime/[Nekomoe kissaten][Hibi wa Sugiredo Meshi Umashi][01][1080p][JPSC].mp4,[Nekomoe kissaten][Hibi wa Sugiredo Meshi Umashi][01][1080p][JPSC].mp4,562572126,2025-04-13T00:18:38,anime,1920x1080,h264,1439.985011,3125 +/mnt/Downloads/anime/[Nekomoe kissaten][Kanpekiseijo][05][1080p][JPSC].mp4,[Nekomoe kissaten][Kanpekiseijo][05][1080p][JPSC].mp4,484787435,2025-05-06T09:48:02,anime,1920x1080,h264,1420.109206,2730 +/mnt/Downloads/anime/[Nekomoe kissaten][Dosanko Gal wa Namara Menkoi][10][1080p][JPTC].mp4,[Nekomoe kissaten][Dosanko Gal wa Namara Menkoi][10][1080p][JPTC].mp4,364287066,2024-03-22T15:25:57,anime,1920x1080,h264,1439.985011,2023 +/mnt/Downloads/anime/[ANi] 我獨自升級 - 04 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 我獨自升級 - 04 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,849083029,2024-05-18T05:25:07,anime,1920x1080,h264,1425.28,4765 +/mnt/Downloads/anime/[HYSUB]Free! -Road to the World- Yume[BDrip][BIG5_MP4][1280X720][GER.ver]/[HYSUB]Free! -Road to the World- Yume[BDrip][BIG5_MP4][1280X720][GER.ver].mp4,[HYSUB]Free! -Road to the World- Yume[BDrip][BIG5_MP4][1280X720][GER.ver].mp4,1082463412,2020-11-15T06:43:55,anime,1280x720,h264,5937.578667,1458 +/mnt/Downloads/anime/[HYSUB]Free! -Road to the World- Yume[BDrip][BIG5_MP4][1280X720][GER.ver]/EXTRA/[HYSUB]Free! -Road to the World- Yume[CREDIT][MP4][1280X720][GER.ver].mp4,[HYSUB]Free! -Road to the World- Yume[CREDIT][MP4][1280X720][GER.ver].mp4,25937772,2020-11-15T06:40:15,anime,1280x720,h264,181.098667,1145 +"/mnt/Downloads/anime/[LoliHouse] Tensei Kizoku, Kantei Skill de Nariagaru - 01 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv","[LoliHouse] Tensei Kizoku, Kantei Skill de Nariagaru - 01 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv",471948826,2024-04-09T23:41:30,anime,1920x1080,hevc,1420.062,2658 +/mnt/Downloads/anime/[Skymoon-Raws] Shin Samurai-den YAIBA - 01 [ViuTV][WEB-DL][CHT][SRT][1080p][AVC AAC].mkv,[Skymoon-Raws] Shin Samurai-den YAIBA - 01 [ViuTV][WEB-DL][CHT][SRT][1080p][AVC AAC].mkv,501933343,2025-04-05T23:17:01,anime,1920x1080,h264,1433.066,2802 +/mnt/Downloads/anime/[BeanSub&FZSD][Jujutsu_Kaisen][50][GB][1080P][x264_AAC].mp4,[BeanSub&FZSD][Jujutsu_Kaisen][50][GB][1080P][x264_AAC].mp4,506369679,2026-01-18T13:39:12,anime,1920x1080,h264,1435.155737,2822 +/mnt/Downloads/anime/[orion origin] Wind Breaker [02] [1080p] [H265 AAC] [CHT&JPN].mp4,[orion origin] Wind Breaker [02] [1080p] [H265 AAC] [CHT&JPN].mp4,423088572,2024-04-25T02:48:13,anime,1920x1080,hevc,1435.109002,2358 +/mnt/Downloads/anime/[ANi] Silent Witch 沉默魔女的祕密 - 08 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] Silent Witch 沉默魔女的祕密 - 08 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,401115674,2025-08-23T08:29:45,anime,1920x1080,h264,1445.131322,2220 +/mnt/Downloads/anime/[Nekomoe kissaten][Dosanko Gal wa Namara Menkoi][05][1080p][JPTC].mp4,[Nekomoe kissaten][Dosanko Gal wa Namara Menkoi][05][1080p][JPTC].mp4,369207752,2024-02-19T23:54:59,anime,1920x1080,h264,1440.123333,2050 +/mnt/Downloads/anime/[Skymoon-Raws] Shin Samurai-den YAIBA - 02 [ViuTV][WEB-DL][CHT][SRT][1080p][AVC AAC].mkv,[Skymoon-Raws] Shin Samurai-den YAIBA - 02 [ViuTV][WEB-DL][CHT][SRT][1080p][AVC AAC].mkv,460352179,2025-04-12T15:42:06,anime,1920x1080,h264,1433.024,2569 +/mnt/Downloads/anime/[Skymoon-Raws] Shingeki no Kyojin - The Final Season - 19 [ViuTV][WEB-DL][CHT][1080p][AVC AAC][MP4+ASS]/[Skymoon-Raws] Shingeki no Kyojin - The Final Season - 19 [ViuTV][WEB-DL][1080p][AVC AAC].mp4,[Skymoon-Raws] Shingeki no Kyojin - The Final Season - 19 [ViuTV][WEB-DL][1080p][AVC AAC].mp4,481292872,2022-01-24T00:15:23,anime,1920x1080,h264,1435.100622,2682 +/mnt/Downloads/anime/[Mabors] Ookami to Koushinryou - Merchant Meets the Wise Wolf - 01 [1080p][HEVC].mp4,[Mabors] Ookami to Koushinryou - Merchant Meets the Wise Wolf - 01 [1080p][HEVC].mp4,283276527,2024-04-02T23:56:49,anime,1920x1080,hevc,1430.07,1584 +/mnt/Downloads/anime/[Nekomoe kissaten&LoliHouse] Ao no Hako - 06 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,[Nekomoe kissaten&LoliHouse] Ao no Hako - 06 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,465942857,2024-11-10T10:10:01,anime,1920x1080,hevc,1417.301,2630 +/mnt/Downloads/anime/[ANi] 最近的偵探真沒用 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 最近的偵探真沒用 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,443832084,2025-07-01T23:21:34,anime,1920x1080,h264,1420.117333,2500 +/mnt/Downloads/anime/[Nekomoe kissaten][Ninja Kamui][10][1080p][CHT].mp4,[Nekomoe kissaten][Ninja Kamui][10][1080p][CHT].mp4,398087749,2024-04-23T02:22:01,anime,1920x1080,h264,1381.056,2305 +/mnt/Downloads/anime/[ANi] 無職英雄:技能什麼的毫無用處 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 無職英雄:技能什麼的毫無用處 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,352574178,2025-09-24T14:03:33,anime,1920x1080,h264,1420.032,1986 +/mnt/Downloads/anime/[ANi] 我獨自升級 第二季 -起於闇影- - 23 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 我獨自升級 第二季 -起於闇影- - 23 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,733450416,2025-03-15T16:49:30,anime,1920x1080,h264,1425.28,4116 +/mnt/Downloads/anime/[BeanSub&FZSD][BLEACH_Sennen_Kessen-hen][27][BIG5][1080P][x264_AAC].mp4,[BeanSub&FZSD][BLEACH_Sennen_Kessen-hen][27][BIG5][1080P][x264_AAC].mp4,719523373,2024-10-06T00:26:56,anime,1920x1080,h264,1445.504,3982 +/mnt/Downloads/anime/[LoliHouse] Izure Saikyou no Renkinjutsushi - 11 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,[LoliHouse] Izure Saikyou no Renkinjutsushi - 11 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,392167129,2025-03-14T23:44:30,anime,1920x1080,hevc,1420.133,2209 +/mnt/Downloads/anime/[ANi] Re:Monster - 09 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] Re:Monster - 09 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,521278325,2024-05-27T23:01:55,anime,1920x1080,h264,1420.064622,2936 +/mnt/Downloads/anime/[Skymoon-Raws] Mashle - 12 [ViuTV][WEB-DL][CHT][1080p][AVC AAC][MP4+ASS]/[Skymoon-Raws] Mashle - 12 [ViuTV][WEB-DL][1080p][AVC AAC].mp4,[Skymoon-Raws] Mashle - 12 [ViuTV][WEB-DL][1080p][AVC AAC].mp4,458875664,2023-07-01T08:44:15,anime,1920x1080,h264,1425.344,2575 +/mnt/Downloads/anime/[Kamigami] Haikyuu!! S2 [BD 1080p x265 Ma10p AAC]/[Kamigami] Haikyuu!! S2 - 22 [BD 1080p x265 Ma10p AAC].mkv,[Kamigami] Haikyuu!! S2 - 22 [BD 1080p x265 Ma10p AAC].mkv,270838641,2019-10-01T06:37:34,anime,1920x1080,hevc,1439.998,1504 +/mnt/Downloads/anime/[Kamigami] Haikyuu!! S2 [BD 1080p x265 Ma10p AAC]/[Kamigami] Haikyuu!! S2 - 01 [BD 1080p x265 Ma10p AAC].mkv,[Kamigami] Haikyuu!! S2 - 01 [BD 1080p x265 Ma10p AAC].mkv,248711809,2019-10-01T06:38:58,anime,1920x1080,hevc,1440.106,1381 +/mnt/Downloads/anime/[Kamigami] Haikyuu!! S2 [BD 1080p x265 Ma10p AAC]/[Kamigami] Haikyuu!! S2 - 24 [BD 1080p x265 Ma10p AAC].mkv,[Kamigami] Haikyuu!! S2 - 24 [BD 1080p x265 Ma10p AAC].mkv,298478747,2019-10-01T06:39:01,anime,1920x1080,hevc,1440.106,1658 +/mnt/Downloads/anime/[Kamigami] Haikyuu!! S2 [BD 1080p x265 Ma10p AAC]/[Kamigami] Haikyuu!! S2 - 07 [BD 1080p x265 Ma10p AAC].mkv,[Kamigami] Haikyuu!! S2 - 07 [BD 1080p x265 Ma10p AAC].mkv,213858060,2019-10-01T06:38:58,anime,1920x1080,hevc,1440.148,1187 +/mnt/Downloads/anime/[Kamigami] Haikyuu!! S2 [BD 1080p x265 Ma10p AAC]/[Kamigami] Haikyuu!! S2 - 10 [BD 1080p x265 Ma10p AAC].mkv,[Kamigami] Haikyuu!! S2 - 10 [BD 1080p x265 Ma10p AAC].mkv,244047230,2019-10-01T06:38:58,anime,1920x1080,hevc,1440.106,1355 +/mnt/Downloads/anime/[Kamigami] Haikyuu!! S2 [BD 1080p x265 Ma10p AAC]/[Kamigami] Haikyuu!! S2 - 16 [BD 1080p x265 Ma10p AAC].mkv,[Kamigami] Haikyuu!! S2 - 16 [BD 1080p x265 Ma10p AAC].mkv,255464006,2019-10-01T06:38:06,anime,1920x1080,hevc,1439.998,1419 +/mnt/Downloads/anime/[Kamigami] Haikyuu!! S2 [BD 1080p x265 Ma10p AAC]/[Kamigami] Haikyuu!! S2 - 23 [BD 1080p x265 Ma10p AAC].mkv,[Kamigami] Haikyuu!! S2 - 23 [BD 1080p x265 Ma10p AAC].mkv,242545632,2019-10-01T06:38:59,anime,1920x1080,hevc,1440.084,1347 +/mnt/Downloads/anime/[Kamigami] Haikyuu!! S2 [BD 1080p x265 Ma10p AAC]/[Kamigami] Haikyuu!! S2 - 25 [BD 1080p x265 Ma10p AAC].mkv,[Kamigami] Haikyuu!! S2 - 25 [BD 1080p x265 Ma10p AAC].mkv,188897678,2019-10-01T06:38:59,anime,1920x1080,hevc,1425.022,1060 +/mnt/Downloads/anime/[Kamigami] Haikyuu!! S2 [BD 1080p x265 Ma10p AAC]/[Kamigami] Haikyuu!! S2 - 06 [BD 1080p x265 Ma10p AAC].mkv,[Kamigami] Haikyuu!! S2 - 06 [BD 1080p x265 Ma10p AAC].mkv,214413691,2019-10-01T06:38:45,anime,1920x1080,hevc,1440.106,1191 +/mnt/Downloads/anime/[Kamigami] Haikyuu!! S2 [BD 1080p x265 Ma10p AAC]/[Kamigami] Haikyuu!! S2 - 11 [BD 1080p x265 Ma10p AAC].mkv,[Kamigami] Haikyuu!! S2 - 11 [BD 1080p x265 Ma10p AAC].mkv,219335017,2019-10-01T06:38:58,anime,1920x1080,hevc,1440.106,1218 +/mnt/Downloads/anime/[Kamigami] Haikyuu!! S2 [BD 1080p x265 Ma10p AAC]/[Kamigami] Haikyuu!! S2 - 17 [BD 1080p x265 Ma10p AAC].mkv,[Kamigami] Haikyuu!! S2 - 17 [BD 1080p x265 Ma10p AAC].mkv,215896200,2019-10-01T06:38:58,anime,1920x1080,hevc,1440.233,1199 +/mnt/Downloads/anime/[Kamigami] Haikyuu!! S2 [BD 1080p x265 Ma10p AAC]/[Kamigami] Haikyuu!! S2 - 18 [BD 1080p x265 Ma10p AAC].mkv,[Kamigami] Haikyuu!! S2 - 18 [BD 1080p x265 Ma10p AAC].mkv,268762435,2019-10-01T06:38:58,anime,1920x1080,hevc,1440.106,1493 +/mnt/Downloads/anime/[Kamigami] Haikyuu!! S2 [BD 1080p x265 Ma10p AAC]/[Kamigami] Haikyuu!! S2 - 03 [BD 1080p x265 Ma10p AAC].mkv,[Kamigami] Haikyuu!! S2 - 03 [BD 1080p x265 Ma10p AAC].mkv,211295924,2019-10-01T06:38:57,anime,1920x1080,hevc,1439.998,1173 +/mnt/Downloads/anime/[Kamigami] Haikyuu!! S2 [BD 1080p x265 Ma10p AAC]/[Kamigami] Haikyuu!! S2 - 20 [BD 1080p x265 Ma10p AAC].mkv,[Kamigami] Haikyuu!! S2 - 20 [BD 1080p x265 Ma10p AAC].mkv,267317151,2019-10-01T06:38:59,anime,1920x1080,hevc,1439.998,1485 +/mnt/Downloads/anime/[Kamigami] Haikyuu!! S2 [BD 1080p x265 Ma10p AAC]/[Kamigami] Haikyuu!! S2 - 05 [BD 1080p x265 Ma10p AAC].mkv,[Kamigami] Haikyuu!! S2 - 05 [BD 1080p x265 Ma10p AAC].mkv,209933132,2019-10-01T06:38:58,anime,1920x1080,hevc,1440.084,1166 +/mnt/Downloads/anime/[Kamigami] Haikyuu!! S2 [BD 1080p x265 Ma10p AAC]/[Kamigami] Haikyuu!! S2 - 09 [BD 1080p x265 Ma10p AAC].mkv,[Kamigami] Haikyuu!! S2 - 09 [BD 1080p x265 Ma10p AAC].mkv,227518244,2019-10-01T06:35:54,anime,1920x1080,hevc,1440.106,1263 +/mnt/Downloads/anime/[Kamigami] Haikyuu!! S2 [BD 1080p x265 Ma10p AAC]/[Kamigami] Haikyuu!! S2 - 12 [BD 1080p x265 Ma10p AAC].mkv,[Kamigami] Haikyuu!! S2 - 12 [BD 1080p x265 Ma10p AAC].mkv,209149392,2019-10-01T06:38:58,anime,1920x1080,hevc,1440.106,1161 +/mnt/Downloads/anime/[Kamigami] Haikyuu!! S2 [BD 1080p x265 Ma10p AAC]/[Kamigami] Haikyuu!! S2 - 14 [BD 1080p x265 Ma10p AAC].mkv,[Kamigami] Haikyuu!! S2 - 14 [BD 1080p x265 Ma10p AAC].mkv,228687957,2019-10-01T06:37:01,anime,1920x1080,hevc,1440.233,1270 +/mnt/Downloads/anime/[Kamigami] Haikyuu!! S2 [BD 1080p x265 Ma10p AAC]/[Kamigami] Haikyuu!! S2 - 19 [BD 1080p x265 Ma10p AAC].mkv,[Kamigami] Haikyuu!! S2 - 19 [BD 1080p x265 Ma10p AAC].mkv,261768751,2019-10-01T06:39:02,anime,1920x1080,hevc,1440.106,1454 +/mnt/Downloads/anime/[Kamigami] Haikyuu!! S2 [BD 1080p x265 Ma10p AAC]/[Kamigami] Haikyuu!! S2 - 02 [BD 1080p x265 Ma10p AAC].mkv,[Kamigami] Haikyuu!! S2 - 02 [BD 1080p x265 Ma10p AAC].mkv,198625075,2019-10-01T06:34:58,anime,1920x1080,hevc,1440.106,1103 +/mnt/Downloads/anime/[Kamigami] Haikyuu!! S2 [BD 1080p x265 Ma10p AAC]/[Kamigami] Haikyuu!! S2 - 21 [BD 1080p x265 Ma10p AAC].mkv,[Kamigami] Haikyuu!! S2 - 21 [BD 1080p x265 Ma10p AAC].mkv,279367119,2019-10-01T06:38:00,anime,1920x1080,hevc,1440.084,1551 +/mnt/Downloads/anime/[Kamigami] Haikyuu!! S2 [BD 1080p x265 Ma10p AAC]/[Kamigami] Haikyuu!! S2 - 04 [BD 1080p x265 Ma10p AAC].mkv,[Kamigami] Haikyuu!! S2 - 04 [BD 1080p x265 Ma10p AAC].mkv,217230295,2019-10-01T06:38:34,anime,1920x1080,hevc,1439.998,1206 +/mnt/Downloads/anime/[Kamigami] Haikyuu!! S2 [BD 1080p x265 Ma10p AAC]/Bonus/[Kamigami] Haikyuu!! S2 - NCOP2 [BD 1080p x265 Ma10p AAC].mp4,[Kamigami] Haikyuu!! S2 - NCOP2 [BD 1080p x265 Ma10p AAC].mp4,22311467,2019-10-01T06:03:13,anime,1920x1080,hevc,92.16,1936 +/mnt/Downloads/anime/[Kamigami] Haikyuu!! S2 [BD 1080p x265 Ma10p AAC]/Bonus/[Kamigami] Haikyuu!! S2 - NCED1 [BD 1080p x265 Ma10p AAC].mp4,[Kamigami] Haikyuu!! S2 - NCED1 [BD 1080p x265 Ma10p AAC].mp4,22567697,2019-10-01T06:32:44,anime,1920x1080,hevc,92.16,1959 +/mnt/Downloads/anime/[Kamigami] Haikyuu!! S2 [BD 1080p x265 Ma10p AAC]/Bonus/[Kamigami] Haikyuu!! S2 - NCED2 [BD 1080p x265 Ma10p AAC].mp4,[Kamigami] Haikyuu!! S2 - NCED2 [BD 1080p x265 Ma10p AAC].mp4,45560003,2019-10-01T06:22:23,anime,1920x1080,hevc,92.16,3954 +/mnt/Downloads/anime/[Kamigami] Haikyuu!! S2 [BD 1080p x265 Ma10p AAC]/Bonus/[Kamigami] Haikyuu!! S2 - NCOP1 [BD 1080p x265 Ma10p AAC].mp4,[Kamigami] Haikyuu!! S2 - NCOP1 [BD 1080p x265 Ma10p AAC].mp4,21856684,2019-10-01T04:57:05,anime,1920x1080,hevc,92.16,1897 +/mnt/Downloads/anime/[Kamigami] Haikyuu!! S2 [BD 1080p x265 Ma10p AAC]/[Kamigami] Haikyuu!! S2 - 08 [BD 1080p x265 Ma10p AAC].mkv,[Kamigami] Haikyuu!! S2 - 08 [BD 1080p x265 Ma10p AAC].mkv,184901324,2019-10-01T06:36:51,anime,1920x1080,hevc,1440.084,1027 +/mnt/Downloads/anime/[Kamigami] Haikyuu!! S2 [BD 1080p x265 Ma10p AAC]/[Kamigami] Haikyuu!! S2 - 13 [BD 1080p x265 Ma10p AAC].mkv,[Kamigami] Haikyuu!! S2 - 13 [BD 1080p x265 Ma10p AAC].mkv,223745791,2019-10-01T06:38:55,anime,1920x1080,hevc,1440.148,1242 +/mnt/Downloads/anime/[Kamigami] Haikyuu!! S2 [BD 1080p x265 Ma10p AAC]/[Kamigami] Haikyuu!! S2 - 15 [BD 1080p x265 Ma10p AAC].mkv,[Kamigami] Haikyuu!! S2 - 15 [BD 1080p x265 Ma10p AAC].mkv,251065098,2019-10-01T06:37:30,anime,1920x1080,hevc,1440.106,1394 +/mnt/Downloads/anime/[ANi] 素材採集家的異世界旅行記 - 09 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 素材採集家的異世界旅行記 - 09 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,366371655,2025-11-24T23:57:47,anime,1920x1080,h264,1420.022911,2064 +/mnt/Downloads/anime/[Skymoon-Raws] Shin Samurai-den YAIBA - 04 [ViuTV][WEB-DL][CHT][SRT][1080p][AVC AAC].mkv,[Skymoon-Raws] Shin Samurai-den YAIBA - 04 [ViuTV][WEB-DL][CHT][SRT][1080p][AVC AAC].mkv,483534465,2025-04-27T00:04:28,anime,1920x1080,h264,1433.024,2699 +/mnt/Downloads/anime/[orion origin] Saikyou Tank no Meikyuu Kouryaku [07] [1080p] [H265 AAC] [CHT].mp4,[orion origin] Saikyou Tank no Meikyuu Kouryaku [07] [1080p] [H265 AAC] [CHT].mp4,434567218,2024-02-20T13:28:40,anime,1920x1080,hevc,1401.415986,2480 +/mnt/Downloads/anime/[Skymoon-Raws] Mushoku Tensei - 24 [ViuTV][WEB-DL][CHT][1080p][AVC AAC][MP4+ASS]/[Skymoon-Raws] Mushoku Tensei - 24 [ViuTV][WEB-DL][1080p][AVC AAC].mp4,[Skymoon-Raws] Mushoku Tensei - 24 [ViuTV][WEB-DL][1080p][AVC AAC].mp4,404638870,2022-03-26T02:18:52,anime,1920x1080,h264,1415.122322,2287 +/mnt/Downloads/anime/[ANi] 我和班上最討厭的女生結婚了。 - 09 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 我和班上最討厭的女生結婚了。 - 09 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,308026010,2025-03-01T04:39:11,anime,1920x1080,h264,1420.074667,1735 +/mnt/Downloads/anime/[ANi] 最後可以再拜託您一件事嗎? - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 最後可以再拜託您一件事嗎? - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,385868531,2025-10-04T12:27:44,anime,1920x1080,h264,1425.088,2166 +/mnt/Downloads/anime/[ANi] 我與尼特女忍者的莫名同居生活 - 05 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 我與尼特女忍者的莫名同居生活 - 05 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,361435919,2025-02-02T04:22:20,anime,1920x1080,h264,1442.048,2005 +/mnt/Downloads/anime/[Suzu-Kaze&POPGO][Dorohedoro][01-12+OVA][BDRip_1080P][X265_Main10p]/[Suzu-Kaze&POPGO][Dorohedoro][NCED2][BDRip_1080P][X265_Main10p_Flac](0D6039AE).mkv,[Suzu-Kaze&POPGO][Dorohedoro][NCED2][BDRip_1080P][X265_Main10p_Flac](0D6039AE).mkv,57942178,2020-09-25T15:04:23,anime,1920x1080,hevc,92.01,5037 +/mnt/Downloads/anime/[Suzu-Kaze&POPGO][Dorohedoro][01-12+OVA][BDRip_1080P][X265_Main10p]/[Suzu-Kaze&POPGO][Dorohedoro][CM03][BDRip_1080P][X265_Main10p_Flac](FCF167C2).mkv,[Suzu-Kaze&POPGO][Dorohedoro][CM03][BDRip_1080P][X265_Main10p_Flac](FCF167C2).mkv,34635839,2020-09-25T15:02:50,anime,1920x1080,hevc,32.032,8650 +/mnt/Downloads/anime/[Suzu-Kaze&POPGO][Dorohedoro][01-12+OVA][BDRip_1080P][X265_Main10p]/[Suzu-Kaze&POPGO][Dorohedoro][08][BDRip_1080P][X265_Main10p_Flac_Chap](4A5CFA78).mkv,[Suzu-Kaze&POPGO][Dorohedoro][08][BDRip_1080P][X265_Main10p_Flac_Chap](4A5CFA78).mkv,984424826,2020-09-25T15:04:03,anime,1920x1080,hevc,1422.05,5538 +/mnt/Downloads/anime/[Suzu-Kaze&POPGO][Dorohedoro][01-12+OVA][BDRip_1080P][X265_Main10p]/[Suzu-Kaze&POPGO][Dorohedoro][NCED1_V2][BDRip_1080P][X265_Main10p_Flac](9415B2B4).mkv,[Suzu-Kaze&POPGO][Dorohedoro][NCED1_V2][BDRip_1080P][X265_Main10p_Flac](9415B2B4).mkv,52556269,2020-09-25T15:04:19,anime,1920x1080,hevc,92.092,4565 +/mnt/Downloads/anime/[Suzu-Kaze&POPGO][Dorohedoro][01-12+OVA][BDRip_1080P][X265_Main10p]/[Suzu-Kaze&POPGO][Dorohedoro][CM04][BDRip_1080P][X265_Main10p_Flac](54DE0D17).mkv,[Suzu-Kaze&POPGO][Dorohedoro][CM04][BDRip_1080P][X265_Main10p_Flac](54DE0D17).mkv,39255628,2020-09-25T15:04:12,anime,1920x1080,hevc,32.032,9804 +/mnt/Downloads/anime/[Suzu-Kaze&POPGO][Dorohedoro][01-12+OVA][BDRip_1080P][X265_Main10p]/[Suzu-Kaze&POPGO][Dorohedoro][11][BDRip_1080P][X265_Main10p_Flac_Chap](18087804).mkv,[Suzu-Kaze&POPGO][Dorohedoro][11][BDRip_1080P][X265_Main10p_Flac_Chap](18087804).mkv,1282722482,2020-09-25T15:04:35,anime,1920x1080,hevc,1422.05,7216 +/mnt/Downloads/anime/[Suzu-Kaze&POPGO][Dorohedoro][01-12+OVA][BDRip_1080P][X265_Main10p]/[Suzu-Kaze&POPGO][Dorohedoro][CM07][BDRip_1080P][X265_Main10p_Flac](FD280ABF).mkv,[Suzu-Kaze&POPGO][Dorohedoro][CM07][BDRip_1080P][X265_Main10p_Flac](FD280ABF).mkv,43685008,2020-09-25T15:04:10,anime,1920x1080,hevc,17.017,20537 +/mnt/Downloads/anime/[Suzu-Kaze&POPGO][Dorohedoro][01-12+OVA][BDRip_1080P][X265_Main10p]/[Suzu-Kaze&POPGO][Dorohedoro][05][BDRip_1080P][X265_Main10p_Flac_Chap](3893156C).mkv,[Suzu-Kaze&POPGO][Dorohedoro][05][BDRip_1080P][X265_Main10p_Flac_Chap](3893156C).mkv,1073571343,2020-09-25T15:04:06,anime,1920x1080,hevc,1422.05,6039 +/mnt/Downloads/anime/[Suzu-Kaze&POPGO][Dorohedoro][01-12+OVA][BDRip_1080P][X265_Main10p]/[Suzu-Kaze&POPGO][Dorohedoro][09][BDRip_1080P][X265_Main10p_Flac_Chap](5E350022).mkv,[Suzu-Kaze&POPGO][Dorohedoro][09][BDRip_1080P][X265_Main10p_Flac_Chap](5E350022).mkv,1091785543,2020-09-25T15:04:13,anime,1920x1080,hevc,1422.005,6142 +/mnt/Downloads/anime/[Suzu-Kaze&POPGO][Dorohedoro][01-12+OVA][BDRip_1080P][X265_Main10p]/[Suzu-Kaze&POPGO][Dorohedoro][03][BDRip_1080P][X265_Main10p_Flac_Chap](E230AFE4).mkv,[Suzu-Kaze&POPGO][Dorohedoro][03][BDRip_1080P][X265_Main10p_Flac_Chap](E230AFE4).mkv,1102970650,2020-09-25T15:04:32,anime,1920x1080,hevc,1422.005,6205 +/mnt/Downloads/anime/[Suzu-Kaze&POPGO][Dorohedoro][01-12+OVA][BDRip_1080P][X265_Main10p]/[Suzu-Kaze&POPGO][Dorohedoro][NCED1_V1][BDRip_1080P][X265_Main10p_Flac](EDC4435B).mkv,[Suzu-Kaze&POPGO][Dorohedoro][NCED1_V1][BDRip_1080P][X265_Main10p_Flac](EDC4435B).mkv,52724866,2020-09-25T15:03:20,anime,1920x1080,hevc,92.01,4584 +/mnt/Downloads/anime/[Suzu-Kaze&POPGO][Dorohedoro][01-12+OVA][BDRip_1080P][X265_Main10p]/[Suzu-Kaze&POPGO][Dorohedoro][01][BDRip_1080P][X265_Main10p_Flac_Chap](DA256438).mkv,[Suzu-Kaze&POPGO][Dorohedoro][01][BDRip_1080P][X265_Main10p_Flac_Chap](DA256438).mkv,1171240687,2020-09-25T15:04:35,anime,1920x1080,hevc,1422.05,6589 +/mnt/Downloads/anime/[Suzu-Kaze&POPGO][Dorohedoro][01-12+OVA][BDRip_1080P][X265_Main10p]/[Suzu-Kaze&POPGO][Dorohedoro][04][BDRip_1080P][X265_Main10p_Flac_Chap](45C8EE0A).mkv,[Suzu-Kaze&POPGO][Dorohedoro][04][BDRip_1080P][X265_Main10p_Flac_Chap](45C8EE0A).mkv,1056684208,2020-09-25T15:04:26,anime,1920x1080,hevc,1422.05,5944 +/mnt/Downloads/anime/[Suzu-Kaze&POPGO][Dorohedoro][01-12+OVA][BDRip_1080P][X265_Main10p]/[Suzu-Kaze&POPGO][Dorohedoro][12FIN][BDRip_1080P][X265_Main10p_Flac_Chap](A7595605).mkv,[Suzu-Kaze&POPGO][Dorohedoro][12FIN][BDRip_1080P][X265_Main10p_Flac_Chap](A7595605).mkv,1016869450,2020-09-25T15:04:17,anime,1920x1080,hevc,1432.056,5680 +/mnt/Downloads/anime/[Suzu-Kaze&POPGO][Dorohedoro][01-12+OVA][BDRip_1080P][X265_Main10p]/[Suzu-Kaze&POPGO][Dorohedoro][OVA][BDRip_1080P][X265_Main10p_Flac_Chap](ABE325F9).mkv,[Suzu-Kaze&POPGO][Dorohedoro][OVA][BDRip_1080P][X265_Main10p_Flac_Chap](ABE325F9).mkv,1568797819,2020-09-25T15:04:36,anime,1920x1080,hevc,1528.527,8210 +/mnt/Downloads/anime/[Suzu-Kaze&POPGO][Dorohedoro][01-12+OVA][BDRip_1080P][X265_Main10p]/[Suzu-Kaze&POPGO][Dorohedoro][NCED3][BDRip_1080P][X265_Main10p_Flac](E090A971).mkv,[Suzu-Kaze&POPGO][Dorohedoro][NCED3][BDRip_1080P][X265_Main10p_Flac](E090A971).mkv,94462260,2020-09-25T15:04:24,anime,1920x1080,hevc,92.01,8213 +/mnt/Downloads/anime/[Suzu-Kaze&POPGO][Dorohedoro][01-12+OVA][BDRip_1080P][X265_Main10p]/[Suzu-Kaze&POPGO][Dorohedoro][NCED4][BDRip_1080P][X265_Main10p_Flac](D1063420).mkv,[Suzu-Kaze&POPGO][Dorohedoro][NCED4][BDRip_1080P][X265_Main10p_Flac](D1063420).mkv,66635398,2020-09-25T15:03:31,anime,1920x1080,hevc,92.092,5788 +/mnt/Downloads/anime/[Suzu-Kaze&POPGO][Dorohedoro][01-12+OVA][BDRip_1080P][X265_Main10p]/[Suzu-Kaze&POPGO][Dorohedoro][CM02][BDRip_1080P][X265_Main10p_Flac](1C0E5914).mkv,[Suzu-Kaze&POPGO][Dorohedoro][CM02][BDRip_1080P][X265_Main10p_Flac](1C0E5914).mkv,24857442,2020-09-25T14:57:37,anime,1920x1080,hevc,32.032,6208 +/mnt/Downloads/anime/[Suzu-Kaze&POPGO][Dorohedoro][01-12+OVA][BDRip_1080P][X265_Main10p]/[Suzu-Kaze&POPGO][Dorohedoro][10][BDRip_1080P][X265_Main10p_Flac_Chap](59036AFC).mkv,[Suzu-Kaze&POPGO][Dorohedoro][10][BDRip_1080P][X265_Main10p_Flac_Chap](59036AFC).mkv,1156807479,2020-09-25T15:04:12,anime,1920x1080,hevc,1421.965,6508 +/mnt/Downloads/anime/[Suzu-Kaze&POPGO][Dorohedoro][01-12+OVA][BDRip_1080P][X265_Main10p]/[Suzu-Kaze&POPGO][Dorohedoro][02][BDRip_1080P][X265_Main10p_Flac_Chap](B61E145F).mkv,[Suzu-Kaze&POPGO][Dorohedoro][02][BDRip_1080P][X265_Main10p_Flac_Chap](B61E145F).mkv,1010851774,2020-09-25T15:04:34,anime,1920x1080,hevc,1422.05,5686 +/mnt/Downloads/anime/[Suzu-Kaze&POPGO][Dorohedoro][01-12+OVA][BDRip_1080P][X265_Main10p]/[Suzu-Kaze&POPGO][Dorohedoro][NCOP][BDRip_1080P][X265_Main10p_Flac](9E15AF32).mkv,[Suzu-Kaze&POPGO][Dorohedoro][NCOP][BDRip_1080P][X265_Main10p_Flac](9E15AF32).mkv,119198772,2020-09-25T15:03:41,anime,1920x1080,hevc,92.01,10363 +/mnt/Downloads/anime/[Suzu-Kaze&POPGO][Dorohedoro][01-12+OVA][BDRip_1080P][X265_Main10p]/[Suzu-Kaze&POPGO][Dorohedoro][07][BDRip_1080P][X265_Main10p_Flac_Chap](2FFC6945).mkv,[Suzu-Kaze&POPGO][Dorohedoro][07][BDRip_1080P][X265_Main10p_Flac_Chap](2FFC6945).mkv,1072445935,2020-09-25T15:04:32,anime,1920x1080,hevc,1422.005,6033 +/mnt/Downloads/anime/[Suzu-Kaze&POPGO][Dorohedoro][01-12+OVA][BDRip_1080P][X265_Main10p]/[Suzu-Kaze&POPGO][Dorohedoro][CM01][BDRip_1080P][X265_Main10p_Flac](796324BF).mkv,[Suzu-Kaze&POPGO][Dorohedoro][CM01][BDRip_1080P][X265_Main10p_Flac](796324BF).mkv,13624517,2020-09-25T15:04:29,anime,1920x1080,hevc,17.017,6405 +/mnt/Downloads/anime/[Suzu-Kaze&POPGO][Dorohedoro][01-12+OVA][BDRip_1080P][X265_Main10p]/[Suzu-Kaze&POPGO][Dorohedoro][CM05][BDRip_1080P][X265_Main10p_Flac](4CF0025D).mkv,[Suzu-Kaze&POPGO][Dorohedoro][CM05][BDRip_1080P][X265_Main10p_Flac](4CF0025D).mkv,42860095,2020-09-25T15:04:14,anime,1920x1080,hevc,32.032,10704 +/mnt/Downloads/anime/[Suzu-Kaze&POPGO][Dorohedoro][01-12+OVA][BDRip_1080P][X265_Main10p]/[Suzu-Kaze&POPGO][Dorohedoro][NCED5][BDRip_1080P][X265_Main10p_Flac](2051A28C).mkv,[Suzu-Kaze&POPGO][Dorohedoro][NCED5][BDRip_1080P][X265_Main10p_Flac](2051A28C).mkv,242425437,2020-09-25T15:04:06,anime,1920x1080,hevc,92.092,21059 +/mnt/Downloads/anime/[Suzu-Kaze&POPGO][Dorohedoro][01-12+OVA][BDRip_1080P][X265_Main10p]/[Suzu-Kaze&POPGO][Dorohedoro][CM06][BDRip_1080P][X265_Main10p_Flac](75CABC4E).mkv,[Suzu-Kaze&POPGO][Dorohedoro][CM06][BDRip_1080P][X265_Main10p_Flac](75CABC4E).mkv,80243308,2020-09-25T15:04:20,anime,1920x1080,hevc,103.687,6191 +/mnt/Downloads/anime/[Suzu-Kaze&POPGO][Dorohedoro][01-12+OVA][BDRip_1080P][X265_Main10p]/[Suzu-Kaze&POPGO][Dorohedoro][06][BDRip_1080P][X265_Main10p_Flac_Chap](1A184C3A).mkv,[Suzu-Kaze&POPGO][Dorohedoro][06][BDRip_1080P][X265_Main10p_Flac_Chap](1A184C3A).mkv,1077378326,2020-09-25T15:04:32,anime,1920x1080,hevc,1422.046,6061 +/mnt/Downloads/anime/[Suzu-Kaze&POPGO][Dorohedoro][01-12+OVA][BDRip_1080P][X265_Main10p]/[Suzu-Kaze&POPGO][Dorohedoro][NCED6_EP12][BDRip_1080P][X265_Main10p_Flac](3E64C67F).mkv,[Suzu-Kaze&POPGO][Dorohedoro][NCED6_EP12][BDRip_1080P][X265_Main10p_Flac](3E64C67F).mkv,82936484,2020-09-25T15:04:33,anime,1920x1080,hevc,92.092,7204 +/mnt/Downloads/anime/[ANi] 新人大叔冒險者,被最強隊伍操到死成無敵 - 03 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 新人大叔冒險者,被最強隊伍操到死成無敵 - 03 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,469752710,2024-07-15T23:47:02,anime,1920x1080,h264,1425.111322,2637 +/mnt/Downloads/anime/[ANi] Re:Monster - 12 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] Re:Monster - 12 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,377705671,2024-06-17T15:21:37,anime,1920x1080,h264,1420.022911,2127 +/mnt/Downloads/anime/[LoliHouse] Sword Art Online Alternative - Gun Gale Online II - 03 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,[LoliHouse] Sword Art Online Alternative - Gun Gale Online II - 03 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,492269074,2024-10-26T00:27:56,anime,1920x1080,hevc,1420.063,2773 +/mnt/Downloads/anime/[BeanSub&FZSD][Jigokuraku][15][GB][1080P][x264_AAC].mp4,[BeanSub&FZSD][Jigokuraku][15][GB][1080P][x264_AAC].mp4,570824822,2026-01-26T00:42:04,anime,1920x1080,h264,1450.115334,3149 +/mnt/Downloads/anime/[ANi] 盾之勇者成名錄 Season 4 - 04 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 盾之勇者成名錄 Season 4 - 04 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,618295381,2025-07-31T00:03:43,anime,1920x1080,h264,1420.032,3483 +/mnt/Downloads/anime/[ANi] 身為暗殺者的我明顯比勇者還強 - 10 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 身為暗殺者的我明顯比勇者還強 - 10 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,695578880,2025-12-09T01:17:15,anime,1920x1080,h264,1430.158033,3890 +/mnt/Downloads/anime/[ANi] 素材採集家的異世界旅行記 - 12 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 素材採集家的異世界旅行記 - 12 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,384052270,2025-12-16T00:34:41,anime,1920x1080,h264,1419.9812,2163 +/mnt/Downloads/anime/[LoliHouse] Tensei Shitara Slime Datta Ken 3rd Season - 65.5 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,[LoliHouse] Tensei Shitara Slime Datta Ken 3rd Season - 65.5 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,574423381,2024-08-10T00:54:07,anime,1920x1080,hevc,1480.086,3104 +/mnt/Downloads/anime/[ANi] 我要【招架】一切~反誤解的世界最強想成為冒險家~ - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 我要【招架】一切~反誤解的世界最強想成為冒險家~ - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,405458354,2024-07-04T16:07:15,anime,1920x1080,h264,1510.0712,2148 +/mnt/Downloads/anime/無職転生 〜異世界行ったら本気だす〜 2021 1080P BDrip HEVC-YUV444 FLAC SUP-SweetDreamDay & AI-Raws/無職転生 〜異世界行ったら本気だす〜 EP23 (BDrip HEVC-YUV444 FLAC SUP).mkv,無職転生 〜異世界行ったら本気だす〜 EP23 (BDrip HEVC-YUV444 FLAC SUP).mkv,858504298,2022-10-21T17:09:48,anime,1920x1080,hevc,1422.046,4829 +/mnt/Downloads/anime/無職転生 〜異世界行ったら本気だす〜 2021 1080P BDrip HEVC-YUV444 FLAC SUP-SweetDreamDay & AI-Raws/無職転生 〜異世界行ったら本気だす〜 EP13 (BDrip HEVC-YUV444 FLAC SUP).mkv,無職転生 〜異世界行ったら本気だす〜 EP13 (BDrip HEVC-YUV444 FLAC SUP).mkv,1028782298,2022-10-21T17:10:03,anime,1920x1080,hevc,1422.005,5787 +/mnt/Downloads/anime/無職転生 〜異世界行ったら本気だす〜 2021 1080P BDrip HEVC-YUV444 FLAC SUP-SweetDreamDay & AI-Raws/無職転生 〜異世界行ったら本気だす〜 EP04 (BDrip HEVC-YUV444 FLAC SUP).mkv,無職転生 〜異世界行ったら本気だす〜 EP04 (BDrip HEVC-YUV444 FLAC SUP).mkv,1101820313,2022-10-21T17:09:51,anime,1920x1080,hevc,1422.05,6198 +/mnt/Downloads/anime/無職転生 〜異世界行ったら本気だす〜 2021 1080P BDrip HEVC-YUV444 FLAC SUP-SweetDreamDay & AI-Raws/無職転生 〜異世界行ったら本気だす〜 EP09 (BDrip HEVC-YUV444 FLAC SUP).mkv,無職転生 〜異世界行ったら本気だす〜 EP09 (BDrip HEVC-YUV444 FLAC SUP).mkv,1037826688,2022-10-21T17:09:47,anime,1920x1080,hevc,1422.005,5838 +/mnt/Downloads/anime/無職転生 〜異世界行ったら本気だす〜 2021 1080P BDrip HEVC-YUV444 FLAC SUP-SweetDreamDay & AI-Raws/無職転生 〜異世界行ったら本気だす〜 EP17 (BDrip HEVC-YUV444 FLAC SUP).mkv,無職転生 〜異世界行ったら本気だす〜 EP17 (BDrip HEVC-YUV444 FLAC SUP).mkv,957424440,2022-10-21T17:10:09,anime,1920x1080,hevc,1422.005,5386 +/mnt/Downloads/anime/無職転生 〜異世界行ったら本気だす〜 2021 1080P BDrip HEVC-YUV444 FLAC SUP-SweetDreamDay & AI-Raws/無職転生 〜異世界行ったら本気だす〜 EP01 (BDrip HEVC-YUV444 FLAC SUP).mkv,無職転生 〜異世界行ったら本気だす〜 EP01 (BDrip HEVC-YUV444 FLAC SUP).mkv,1158076135,2022-10-21T17:10:08,anime,1920x1080,hevc,1422.05,6514 +/mnt/Downloads/anime/無職転生 〜異世界行ったら本気だす〜 2021 1080P BDrip HEVC-YUV444 FLAC SUP-SweetDreamDay & AI-Raws/無職転生 〜異世界行ったら本気だす〜 EP16 (BDrip HEVC-YUV444 FLAC SUP).mkv,無職転生 〜異世界行ったら本気だす〜 EP16 (BDrip HEVC-YUV444 FLAC SUP).mkv,1041441621,2022-10-21T17:10:09,anime,1920x1080,hevc,1421.965,5859 +/mnt/Downloads/anime/無職転生 〜異世界行ったら本気だす〜 2021 1080P BDrip HEVC-YUV444 FLAC SUP-SweetDreamDay & AI-Raws/無職転生 〜異世界行ったら本気だす〜 EP08 (BDrip HEVC-YUV444 FLAC SUP).mkv,無職転生 〜異世界行ったら本気だす〜 EP08 (BDrip HEVC-YUV444 FLAC SUP).mkv,1064314111,2022-10-21T17:09:31,anime,1920x1080,hevc,1422.005,5987 +/mnt/Downloads/anime/無職転生 〜異世界行ったら本気だす〜 2021 1080P BDrip HEVC-YUV444 FLAC SUP-SweetDreamDay & AI-Raws/映像特典/ノンクレジットOP#11 (BDrip HEVC-YUV444 FLAC).mkv,ノンクレジットOP#11 (BDrip HEVC-YUV444 FLAC).mkv,102657116,2022-10-21T17:00:08,anime,1920x1080,hevc,88.964,9231 +/mnt/Downloads/anime/無職転生 〜異世界行ったら本気だす〜 2021 1080P BDrip HEVC-YUV444 FLAC SUP-SweetDreamDay & AI-Raws/映像特典/ノンクレジットOP#03 (BDrip HEVC-YUV444 FLAC).mkv,ノンクレジットOP#03 (BDrip HEVC-YUV444 FLAC).mkv,98947178,2022-10-21T17:02:14,anime,1920x1080,hevc,97.222,8141 +/mnt/Downloads/anime/無職転生 〜異世界行ったら本気だす〜 2021 1080P BDrip HEVC-YUV444 FLAC SUP-SweetDreamDay & AI-Raws/映像特典/ノンクレジットED#22 (BDrip HEVC-YUV444 FLAC).mkv,ノンクレジットED#22 (BDrip HEVC-YUV444 FLAC).mkv,112120080,2022-10-21T17:01:18,anime,1920x1080,hevc,160.702,5581 +/mnt/Downloads/anime/無職転生 〜異世界行ったら本気だす〜 2021 1080P BDrip HEVC-YUV444 FLAC SUP-SweetDreamDay & AI-Raws/映像特典/ノンクレジットOP#10 (BDrip HEVC-YUV444 FLAC).mkv,ノンクレジットOP#10 (BDrip HEVC-YUV444 FLAC).mkv,107690071,2022-10-21T17:01:08,anime,1920x1080,hevc,111.111,7753 +/mnt/Downloads/anime/無職転生 〜異世界行ったら本気だす〜 2021 1080P BDrip HEVC-YUV444 FLAC SUP-SweetDreamDay & AI-Raws/映像特典/ノンクレジットED#08 (BDrip HEVC-YUV444 FLAC).mkv,ノンクレジットED#08 (BDrip HEVC-YUV444 FLAC).mkv,175194339,2022-10-21T17:02:00,anime,1920x1080,hevc,196.697,7125 +/mnt/Downloads/anime/無職転生 〜異世界行ったら本気だす〜 2021 1080P BDrip HEVC-YUV444 FLAC SUP-SweetDreamDay & AI-Raws/映像特典/ノンクレジットED#23 (BDrip HEVC-YUV444 FLAC).mkv,ノンクレジットED#23 (BDrip HEVC-YUV444 FLAC).mkv,111393335,2022-10-21T16:57:53,anime,1920x1080,hevc,145.646,6118 +/mnt/Downloads/anime/無職転生 〜異世界行ったら本気だす〜 2021 1080P BDrip HEVC-YUV444 FLAC SUP-SweetDreamDay & AI-Raws/映像特典/ノンクレジットOP#02 (BDrip HEVC-YUV444 FLAC).mkv,ノンクレジットOP#02 (BDrip HEVC-YUV444 FLAC).mkv,90449847,2022-10-21T16:56:39,anime,1920x1080,hevc,150.15,4819 +/mnt/Downloads/anime/無職転生 〜異世界行ったら本気だす〜 2021 1080P BDrip HEVC-YUV444 FLAC SUP-SweetDreamDay & AI-Raws/映像特典/ノンクレジットED#17 (BDrip HEVC-YUV444 FLAC).mkv,ノンクレジットED#17 (BDrip HEVC-YUV444 FLAC).mkv,129479937,2022-10-21T16:57:42,anime,1920x1080,hevc,134.676,7691 +/mnt/Downloads/anime/無職転生 〜異世界行ったら本気だす〜 2021 1080P BDrip HEVC-YUV444 FLAC SUP-SweetDreamDay & AI-Raws/映像特典/ノンクレジットOP#13 (BDrip HEVC-YUV444 FLAC).mkv,ノンクレジットOP#13 (BDrip HEVC-YUV444 FLAC).mkv,76803227,2022-10-21T16:55:58,anime,1920x1080,hevc,104.855,5859 +/mnt/Downloads/anime/無職転生 〜異世界行ったら本気だす〜 2021 1080P BDrip HEVC-YUV444 FLAC SUP-SweetDreamDay & AI-Raws/映像特典/ノンクレジットOP#12 (BDrip HEVC-YUV444 FLAC).mkv,ノンクレジットOP#12 (BDrip HEVC-YUV444 FLAC).mkv,101753178,2022-10-21T17:04:13,anime,1920x1080,hevc,95.095,8560 +/mnt/Downloads/anime/無職転生 〜異世界行ったら本気だす〜 2021 1080P BDrip HEVC-YUV444 FLAC SUP-SweetDreamDay & AI-Raws/映像特典/ノンクレジットED (BDrip HEVC-YUV444 FLAC).mkv,ノンクレジットED (BDrip HEVC-YUV444 FLAC).mkv,114449407,2022-10-21T17:00:23,anime,1920x1080,hevc,92.092,9942 +/mnt/Downloads/anime/無職転生 〜異世界行ったら本気だす〜 2021 1080P BDrip HEVC-YUV444 FLAC SUP-SweetDreamDay & AI-Raws/映像特典/ノンクレジットOP#06 (BDrip HEVC-YUV444 FLAC).mkv,ノンクレジットOP#06 (BDrip HEVC-YUV444 FLAC).mkv,98640047,2022-10-21T16:57:21,anime,1920x1080,hevc,89.757,8791 +/mnt/Downloads/anime/無職転生 〜異世界行ったら本気だす〜 2021 1080P BDrip HEVC-YUV444 FLAC SUP-SweetDreamDay & AI-Raws/映像特典/ノンクレジットOP#23 (BDrip HEVC-YUV444 FLAC).mkv,ノンクレジットOP#23 (BDrip HEVC-YUV444 FLAC).mkv,59668967,2022-10-21T16:59:52,anime,1920x1080,hevc,86.42,5523 +/mnt/Downloads/anime/無職転生 〜異世界行ったら本気だす〜 2021 1080P BDrip HEVC-YUV444 FLAC SUP-SweetDreamDay & AI-Raws/映像特典/ノンクレジットOP#14 (BDrip HEVC-YUV444 FLAC).mkv,ノンクレジットOP#14 (BDrip HEVC-YUV444 FLAC).mkv,92673305,2022-10-21T17:01:54,anime,1920x1080,hevc,89.048,8325 +/mnt/Downloads/anime/無職転生 〜異世界行ったら本気だす〜 2021 1080P BDrip HEVC-YUV444 FLAC SUP-SweetDreamDay & AI-Raws/映像特典/ノンクレジットOP#08 (BDrip HEVC-YUV444 FLAC).mkv,ノンクレジットOP#08 (BDrip HEVC-YUV444 FLAC).mkv,92492579,2022-10-21T16:59:06,anime,1920x1080,hevc,90.09,8213 +/mnt/Downloads/anime/無職転生 〜異世界行ったら本気だす〜 2021 1080P BDrip HEVC-YUV444 FLAC SUP-SweetDreamDay & AI-Raws/映像特典/ノンクレジットOP#07 (BDrip HEVC-YUV444 FLAC).mkv,ノンクレジットOP#07 (BDrip HEVC-YUV444 FLAC).mkv,73667968,2022-10-21T16:57:16,anime,1920x1080,hevc,89.631,6575 +/mnt/Downloads/anime/無職転生 〜異世界行ったら本気だす〜 2021 1080P BDrip HEVC-YUV444 FLAC SUP-SweetDreamDay & AI-Raws/映像特典/ノンクレジットED#11 (BDrip HEVC-YUV444 FLAC).mkv,ノンクレジットED#11 (BDrip HEVC-YUV444 FLAC).mkv,126176371,2022-10-21T16:56:08,anime,1920x1080,hevc,140.057,7207 +/mnt/Downloads/anime/無職転生 〜異世界行ったら本気だす〜 2021 1080P BDrip HEVC-YUV444 FLAC SUP-SweetDreamDay & AI-Raws/映像特典/ノンクレジットOP#09 (BDrip HEVC-YUV444 FLAC).mkv,ノンクレジットOP#09 (BDrip HEVC-YUV444 FLAC).mkv,95255872,2022-10-21T16:58:14,anime,1920x1080,hevc,245.996,3097 +/mnt/Downloads/anime/無職転生 〜異世界行ったら本気だす〜 2021 1080P BDrip HEVC-YUV444 FLAC SUP-SweetDreamDay & AI-Raws/映像特典/ノンクレジットOP#15 (BDrip HEVC-YUV444 FLAC).mkv,ノンクレジットOP#15 (BDrip HEVC-YUV444 FLAC).mkv,145937123,2022-10-21T17:02:48,anime,1920x1080,hevc,88.839,13141 +/mnt/Downloads/anime/無職転生 〜異世界行ったら本気だす〜 2021 1080P BDrip HEVC-YUV444 FLAC SUP-SweetDreamDay & AI-Raws/映像特典/ノンクレジットOP#22 (BDrip HEVC-YUV444 FLAC).mkv,ノンクレジットOP#22 (BDrip HEVC-YUV444 FLAC).mkv,67491476,2022-10-21T16:59:40,anime,1920x1080,hevc,59.893,9014 +/mnt/Downloads/anime/無職転生 〜異世界行ったら本気だす〜 2021 1080P BDrip HEVC-YUV444 FLAC SUP-SweetDreamDay & AI-Raws/映像特典/ノンクレジットED2 (BDrip HEVC-YUV444 FLAC).mkv,ノンクレジットED2 (BDrip HEVC-YUV444 FLAC).mkv,81619462,2022-10-21T16:57:01,anime,1920x1080,hevc,92.092,7090 +/mnt/Downloads/anime/無職転生 〜異世界行ったら本気だす〜 2021 1080P BDrip HEVC-YUV444 FLAC SUP-SweetDreamDay & AI-Raws/映像特典/ノンクレジットOP#21 (BDrip HEVC-YUV444 FLAC).mkv,ノンクレジットOP#21 (BDrip HEVC-YUV444 FLAC).mkv,97378892,2022-10-21T17:03:38,anime,1920x1080,hevc,133.01,5856 +/mnt/Downloads/anime/無職転生 〜異世界行ったら本気だす〜 2021 1080P BDrip HEVC-YUV444 FLAC SUP-SweetDreamDay & AI-Raws/映像特典/ノンクレジットOP#16 (BDrip HEVC-YUV444 FLAC).mkv,ノンクレジットOP#16 (BDrip HEVC-YUV444 FLAC).mkv,93455989,2022-10-21T17:02:36,anime,1920x1080,hevc,87.046,8589 +/mnt/Downloads/anime/無職転生 〜異世界行ったら本気だす〜 2021 1080P BDrip HEVC-YUV444 FLAC SUP-SweetDreamDay & AI-Raws/映像特典/ノンクレジットOP#04 (BDrip HEVC-YUV444 FLAC).mkv,ノンクレジットOP#04 (BDrip HEVC-YUV444 FLAC).mkv,66654743,2022-10-21T16:58:29,anime,1920x1080,hevc,88.964,5993 +/mnt/Downloads/anime/無職転生 〜異世界行ったら本気だす〜 2021 1080P BDrip HEVC-YUV444 FLAC SUP-SweetDreamDay & AI-Raws/映像特典/ノンクレジットOP#18 (BDrip HEVC-YUV444 FLAC).mkv,ノンクレジットOP#18 (BDrip HEVC-YUV444 FLAC).mkv,89006660,2022-10-21T17:01:44,anime,1920x1080,hevc,106.025,6715 +/mnt/Downloads/anime/無職転生 〜異世界行ったら本気だす〜 2021 1080P BDrip HEVC-YUV444 FLAC SUP-SweetDreamDay & AI-Raws/映像特典/ノンクレジットOP#17 (BDrip HEVC-YUV444 FLAC).mkv,ノンクレジットOP#17 (BDrip HEVC-YUV444 FLAC).mkv,166321973,2022-10-21T17:01:26,anime,1920x1080,hevc,201.995,6587 +/mnt/Downloads/anime/無職転生 〜異世界行ったら本気だす〜 2021 1080P BDrip HEVC-YUV444 FLAC SUP-SweetDreamDay & AI-Raws/映像特典/ノンクレジットOP#20 (BDrip HEVC-YUV444 FLAC).mkv,ノンクレジットOP#20 (BDrip HEVC-YUV444 FLAC).mkv,96568110,2022-10-21T17:03:04,anime,1920x1080,hevc,129.13,5982 +/mnt/Downloads/anime/無職転生 〜異世界行ったら本気だす〜 2021 1080P BDrip HEVC-YUV444 FLAC SUP-SweetDreamDay & AI-Raws/映像特典/PV・CM集 (BDrip HEVC-YUV444 FLAC).mkv,PV・CM集 (BDrip HEVC-YUV444 FLAC).mkv,490119533,2022-10-21T17:03:16,anime,1920x1080,hevc,617.742,6347 +/mnt/Downloads/anime/無職転生 〜異世界行ったら本気だす〜 2021 1080P BDrip HEVC-YUV444 FLAC SUP-SweetDreamDay & AI-Raws/映像特典/ノンクレジットOP#19 (BDrip HEVC-YUV444 FLAC).mkv,ノンクレジットOP#19 (BDrip HEVC-YUV444 FLAC).mkv,78762630,2022-10-21T16:55:40,anime,1920x1080,hevc,90.09,6994 +/mnt/Downloads/anime/無職転生 〜異世界行ったら本気だす〜 2021 1080P BDrip HEVC-YUV444 FLAC SUP-SweetDreamDay & AI-Raws/映像特典/ノンクレジットOP#05 (BDrip HEVC-YUV444 FLAC).mkv,ノンクレジットOP#05 (BDrip HEVC-YUV444 FLAC).mkv,142714470,2022-10-21T17:02:23,anime,1920x1080,hevc,178.055,6412 +/mnt/Downloads/anime/無職転生 〜異世界行ったら本気だす〜 2021 1080P BDrip HEVC-YUV444 FLAC SUP-SweetDreamDay & AI-Raws/無職転生 〜異世界行ったら本気だす〜 EP12 (BDrip HEVC-YUV444 FLAC SUP).mkv,無職転生 〜異世界行ったら本気だす〜 EP12 (BDrip HEVC-YUV444 FLAC SUP).mkv,1094299003,2022-10-21T17:10:11,anime,1920x1080,hevc,1422.05,6156 +/mnt/Downloads/anime/無職転生 〜異世界行ったら本気だす〜 2021 1080P BDrip HEVC-YUV444 FLAC SUP-SweetDreamDay & AI-Raws/無職転生 〜異世界行ったら本気だす〜 EP05 (BDrip HEVC-YUV444 FLAC SUP).mkv,無職転生 〜異世界行ったら本気だす〜 EP05 (BDrip HEVC-YUV444 FLAC SUP).mkv,1109424218,2022-10-21T17:10:11,anime,1920x1080,hevc,1422.005,6241 +/mnt/Downloads/anime/無職転生 〜異世界行ったら本気だす〜 2021 1080P BDrip HEVC-YUV444 FLAC SUP-SweetDreamDay & AI-Raws/無職転生 〜異世界行ったら本気だす〜 EP22 (BDrip HEVC-YUV444 FLAC SUP).mkv,無職転生 〜異世界行ったら本気だす〜 EP22 (BDrip HEVC-YUV444 FLAC SUP).mkv,981875747,2022-10-21T17:10:10,anime,1920x1080,hevc,1422.09,5523 +/mnt/Downloads/anime/無職転生 〜異世界行ったら本気だす〜 2021 1080P BDrip HEVC-YUV444 FLAC SUP-SweetDreamDay & AI-Raws/無職転生 〜異世界行ったら本気だす〜 EP03 (BDrip HEVC-YUV444 FLAC SUP).mkv,無職転生 〜異世界行ったら本気だす〜 EP03 (BDrip HEVC-YUV444 FLAC SUP).mkv,1152454882,2022-10-21T17:10:10,anime,1920x1080,hevc,1422.005,6483 +/mnt/Downloads/anime/無職転生 〜異世界行ったら本気だす〜 2021 1080P BDrip HEVC-YUV444 FLAC SUP-SweetDreamDay & AI-Raws/無職転生 〜異世界行ったら本気だす〜 EP14 (BDrip HEVC-YUV444 FLAC SUP).mkv,無職転生 〜異世界行ったら本気だす〜 EP14 (BDrip HEVC-YUV444 FLAC SUP).mkv,1097157066,2022-10-21T17:10:10,anime,1920x1080,hevc,1422.09,6172 +/mnt/Downloads/anime/無職転生 〜異世界行ったら本気だす〜 2021 1080P BDrip HEVC-YUV444 FLAC SUP-SweetDreamDay & AI-Raws/無職転生 〜異世界行ったら本気だす〜 EP24 (BDrip HEVC-YUV444 FLAC SUP).mkv,無職転生 〜異世界行ったら本気だす〜 EP24 (BDrip HEVC-YUV444 FLAC SUP).mkv,1147650628,2022-10-21T17:09:52,anime,1920x1080,hevc,1417.041,6479 +/mnt/Downloads/anime/無職転生 〜異世界行ったら本気だす〜 2021 1080P BDrip HEVC-YUV444 FLAC SUP-SweetDreamDay & AI-Raws/無職転生 〜異世界行ったら本気だす〜 EP10 (BDrip HEVC-YUV444 FLAC SUP).mkv,無職転生 〜異世界行ったら本気だす〜 EP10 (BDrip HEVC-YUV444 FLAC SUP).mkv,1024057154,2022-10-21T17:09:57,anime,1920x1080,hevc,1422.005,5761 +/mnt/Downloads/anime/無職転生 〜異世界行ったら本気だす〜 2021 1080P BDrip HEVC-YUV444 FLAC SUP-SweetDreamDay & AI-Raws/無職転生 〜異世界行ったら本気だす〜 EP07 (BDrip HEVC-YUV444 FLAC SUP).mkv,無職転生 〜異世界行ったら本気だす〜 EP07 (BDrip HEVC-YUV444 FLAC SUP).mkv,1222309035,2022-10-21T17:10:10,anime,1920x1080,hevc,1422.05,6876 +/mnt/Downloads/anime/無職転生 〜異世界行ったら本気だす〜 2021 1080P BDrip HEVC-YUV444 FLAC SUP-SweetDreamDay & AI-Raws/無職転生 〜異世界行ったら本気だす〜 EP19 (BDrip HEVC-YUV444 FLAC SUP).mkv,無職転生 〜異世界行ったら本気だす〜 EP19 (BDrip HEVC-YUV444 FLAC SUP).mkv,972125957,2022-10-21T17:10:11,anime,1920x1080,hevc,1422.05,5468 +/mnt/Downloads/anime/無職転生 〜異世界行ったら本気だす〜 2021 1080P BDrip HEVC-YUV444 FLAC SUP-SweetDreamDay & AI-Raws/無職転生 〜異世界行ったら本気だす〜 EP20 (BDrip HEVC-YUV444 FLAC SUP).mkv,無職転生 〜異世界行ったら本気だす〜 EP20 (BDrip HEVC-YUV444 FLAC SUP).mkv,964699296,2022-10-21T17:09:47,anime,1920x1080,hevc,1422.05,5427 +/mnt/Downloads/anime/無職転生 〜異世界行ったら本気だす〜 2021 1080P BDrip HEVC-YUV444 FLAC SUP-SweetDreamDay & AI-Raws/無職転生 〜異世界行ったら本気だす〜 EP18 (BDrip HEVC-YUV444 FLAC SUP).mkv,無職転生 〜異世界行ったら本気だす〜 EP18 (BDrip HEVC-YUV444 FLAC SUP).mkv,1219496418,2022-10-21T17:09:59,anime,1920x1080,hevc,1422.005,6860 +/mnt/Downloads/anime/無職転生 〜異世界行ったら本気だす〜 2021 1080P BDrip HEVC-YUV444 FLAC SUP-SweetDreamDay & AI-Raws/無職転生 〜異世界行ったら本気だす〜 EP21 (BDrip HEVC-YUV444 FLAC SUP).mkv,無職転生 〜異世界行ったら本気だす〜 EP21 (BDrip HEVC-YUV444 FLAC SUP).mkv,1054816108,2022-10-21T17:10:12,anime,1920x1080,hevc,1422.05,5934 +/mnt/Downloads/anime/無職転生 〜異世界行ったら本気だす〜 2021 1080P BDrip HEVC-YUV444 FLAC SUP-SweetDreamDay & AI-Raws/無職転生 〜異世界行ったら本気だす〜 EP11 (BDrip HEVC-YUV444 FLAC SUP).mkv,無職転生 〜異世界行ったら本気だす〜 EP11 (BDrip HEVC-YUV444 FLAC SUP).mkv,1239807856,2022-10-21T17:10:12,anime,1920x1080,hevc,1422.046,6974 +/mnt/Downloads/anime/無職転生 〜異世界行ったら本気だす〜 2021 1080P BDrip HEVC-YUV444 FLAC SUP-SweetDreamDay & AI-Raws/無職転生 〜異世界行ったら本気だす〜 EP06 (BDrip HEVC-YUV444 FLAC SUP).mkv,無職転生 〜異世界行ったら本気だす〜 EP06 (BDrip HEVC-YUV444 FLAC SUP).mkv,1483248247,2022-10-21T17:10:11,anime,1920x1080,hevc,1421.965,8344 +/mnt/Downloads/anime/無職転生 〜異世界行ったら本気だす〜 2021 1080P BDrip HEVC-YUV444 FLAC SUP-SweetDreamDay & AI-Raws/無職転生 〜異世界行ったら本気だす〜 EP02 (BDrip HEVC-YUV444 FLAC SUP).mkv,無職転生 〜異世界行ったら本気だす〜 EP02 (BDrip HEVC-YUV444 FLAC SUP).mkv,1184588230,2022-10-21T17:10:05,anime,1920x1080,hevc,1422.05,6664 +/mnt/Downloads/anime/無職転生 〜異世界行ったら本気だす〜 2021 1080P BDrip HEVC-YUV444 FLAC SUP-SweetDreamDay & AI-Raws/無職転生 〜異世界行ったら本気だす〜 EP15 (BDrip HEVC-YUV444 FLAC SUP).mkv,無職転生 〜異世界行ったら本気だす〜 EP15 (BDrip HEVC-YUV444 FLAC SUP).mkv,1305462608,2022-10-21T17:10:11,anime,1920x1080,hevc,1422.09,7343 +/mnt/Downloads/anime/[ANi] 一拳超人(第三季) - 26 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 一拳超人(第三季) - 26 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,471207482,2025-10-19T23:37:37,anime,1920x1080,h264,1441.043911,2615 +/mnt/Downloads/anime/[ANi] 終末起點 - 05 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 終末起點 - 05 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,359102368,2025-05-01T02:24:51,anime,1920x1080,h264,1370.067208,2096 +/mnt/Downloads/anime/[ANi] 水屬性的魔法師 - 03 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 水屬性的魔法師 - 03 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,297190428,2025-07-17T22:46:24,anime,1920x1080,h264,1455.018667,1634 +/mnt/Downloads/anime/[ANi] 被逐出隊伍的治癒師,其實是最強 - 12 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 被逐出隊伍的治癒師,其實是最強 - 12 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,384205660,2024-12-22T01:05:00,anime,1920x1080,h264,1403.925333,2189 +/mnt/Downloads/anime/[Haruhana] Ikoku Nikki - 03 [WebRip][HEVC-10bit 1080p][CHI_JPN].mkv,[Haruhana] Ikoku Nikki - 03 [WebRip][HEVC-10bit 1080p][CHI_JPN].mkv,193650076,2026-01-21T00:02:49,anime,1920x1080,hevc,1420.016,1090 +/mnt/Downloads/anime/[BeanSub][Ao no Exorcist _Yosuga Hen][02][BIG5][1080P][x264_AAC].mp4,[BeanSub][Ao no Exorcist _Yosuga Hen][02][BIG5][1080P][x264_AAC].mp4,420278708,2025-01-12T01:27:56,anime,1920x1080,h264,1420.132426,2367 +/mnt/Downloads/anime/[ANi] 最強肉盾的迷宮攻略~擁有稀少技能體力 9999 的肉盾,被勇者隊伍辭退了~ - 03 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 最強肉盾的迷宮攻略~擁有稀少技能體力 9999 的肉盾,被勇者隊伍辭退了~ - 03 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,412072256,2024-01-21T01:09:46,anime,1920x1080,h264,1404.010667,2347 +/mnt/Downloads/anime/[ANi] 尋神的旅途 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 尋神的旅途 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,523020745,2024-10-15T09:37:17,anime,1920x1080,h264,1420.074667,2946 +/mnt/Downloads/anime/[ANi] 泛而不精的我被逐出了勇者隊伍 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 泛而不精的我被逐出了勇者隊伍 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,336635884,2026-01-01T01:23:22,anime,1920x1080,h264,1436.053333,1875 +/mnt/Downloads/anime/[ANi] 結緣甘神神社 - 19 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 結緣甘神神社 - 19 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,280695272,2025-02-18T23:34:55,anime,1920x1080,h264,1420.074667,1581 +/mnt/Downloads/anime/[LoliHouse] Tensei Shitara Slime Datta Ken 3rd Season - 67 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,[LoliHouse] Tensei Shitara Slime Datta Ken 3rd Season - 67 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,522604834,2024-08-24T10:17:03,anime,1920x1080,hevc,1470.078,2843 +/mnt/Downloads/anime/[Nekomoe kissaten][Tower of God S2][01][1080p][CHT].mp4,[Nekomoe kissaten][Tower of God S2][01][1080p][CHT].mp4,512527270,2024-07-12T15:32:50,anime,1920x1080,h264,1435.109297,2857 +/mnt/Downloads/anime/[ANi] Re:從零開始的異世界生活 第三季 - 16 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] Re:從零開始的異世界生活 第三季 - 16 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,256493775,2025-03-26T15:16:25,anime,1920x1080,h264,1439.959489,1425 +/mnt/Downloads/anime/[KitaujiSub&LoliHouse] Suicide Squad Isekai - 04 [WebRip 1080p HEVC-10bit AACx2 ASSx2].mkv,[KitaujiSub&LoliHouse] Suicide Squad Isekai - 04 [WebRip 1080p HEVC-10bit AACx2 ASSx2].mkv,422760717,2024-07-06T08:56:18,anime,1920x1080,hevc,1444.138,2341 +/mnt/Downloads/anime/[ANi] 怪獸 8 號 - 10 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 怪獸 8 號 - 10 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,633573008,2024-09-25T12:57:47,anime,1920x1080,h264,1420.074667,3569 +/mnt/Downloads/anime/[ANi] 被逐出隊伍的治癒師,其實是最強 - 09 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 被逐出隊伍的治癒師,其實是最強 - 09 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,348765985,2024-12-01T00:14:58,anime,1920x1080,h264,1404.010667,1987 +/mnt/Downloads/anime/[Nekomoe kissaten&LoliHouse] Dungeon Meshi - 07 [WebRip 1080p HEVC-10bit AAC EAC3 ASSx2].mkv,[Nekomoe kissaten&LoliHouse] Dungeon Meshi - 07 [WebRip 1080p HEVC-10bit AAC EAC3 ASSx2].mkv,840484328,2024-02-17T00:38:19,anime,1920x1080,hevc,1605.144,4188 +/mnt/Downloads/anime/[ANi] 治癒魔法的錯誤使用法 - 08 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 治癒魔法的錯誤使用法 - 08 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,662378438,2024-02-23T15:58:13,anime,1920x1080,h264,1420.022911,3731 +/mnt/Downloads/anime/[LoliHouse] Kage no Jitsuryokusha ni Naritakute! S2 [01-12][WebRip 1080p HEVC-10bit AAC]/[LoliHouse] Kage no Jitsuryokusha ni Naritakute! S2 - 03 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,[LoliHouse] Kage no Jitsuryokusha ni Naritakute! S2 - 03 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,461136466,2024-01-06T05:56:54,anime,1920x1080,hevc,1420.138,2597 +/mnt/Downloads/anime/[LoliHouse] Kage no Jitsuryokusha ni Naritakute! S2 [01-12][WebRip 1080p HEVC-10bit AAC]/[LoliHouse] Kage no Jitsuryokusha ni Naritakute! S2 - 07 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,[LoliHouse] Kage no Jitsuryokusha ni Naritakute! S2 - 07 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,331439271,2024-01-06T05:56:53,anime,1920x1080,hevc,1420.096,1867 +/mnt/Downloads/anime/[LoliHouse] Kage no Jitsuryokusha ni Naritakute! S2 [01-12][WebRip 1080p HEVC-10bit AAC]/[LoliHouse] Kage no Jitsuryokusha ni Naritakute! S2 - 10 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,[LoliHouse] Kage no Jitsuryokusha ni Naritakute! S2 - 10 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,426865747,2024-01-06T05:56:51,anime,1920x1080,hevc,1420.053,2404 +/mnt/Downloads/anime/[LoliHouse] Kage no Jitsuryokusha ni Naritakute! S2 [01-12][WebRip 1080p HEVC-10bit AAC]/[LoliHouse] Kage no Jitsuryokusha ni Naritakute! S2 - 11 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,[LoliHouse] Kage no Jitsuryokusha ni Naritakute! S2 - 11 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,481295771,2024-01-06T05:56:37,anime,1920x1080,hevc,1585.088,2429 +/mnt/Downloads/anime/[LoliHouse] Kage no Jitsuryokusha ni Naritakute! S2 [01-12][WebRip 1080p HEVC-10bit AAC]/[LoliHouse] Kage no Jitsuryokusha ni Naritakute! S2 - 02 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,[LoliHouse] Kage no Jitsuryokusha ni Naritakute! S2 - 02 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,418019468,2024-01-06T05:56:49,anime,1920x1080,hevc,1420.095,2354 +/mnt/Downloads/anime/[LoliHouse] Kage no Jitsuryokusha ni Naritakute! S2 [01-12][WebRip 1080p HEVC-10bit AAC]/[LoliHouse] Kage no Jitsuryokusha ni Naritakute! S2 - 06 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,[LoliHouse] Kage no Jitsuryokusha ni Naritakute! S2 - 06 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,532152347,2024-01-06T05:56:55,anime,1920x1080,hevc,1420.096,2997 +/mnt/Downloads/anime/[LoliHouse] Kage no Jitsuryokusha ni Naritakute! S2 [01-12][WebRip 1080p HEVC-10bit AAC]/[LoliHouse] Kage no Jitsuryokusha ni Naritakute! S2 - 08 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,[LoliHouse] Kage no Jitsuryokusha ni Naritakute! S2 - 08 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,506395962,2024-01-06T05:56:57,anime,1920x1080,hevc,1420.181,2852 +/mnt/Downloads/anime/[LoliHouse] Kage no Jitsuryokusha ni Naritakute! S2 [01-12][WebRip 1080p HEVC-10bit AAC]/[LoliHouse] Kage no Jitsuryokusha ni Naritakute! S2 - 04 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,[LoliHouse] Kage no Jitsuryokusha ni Naritakute! S2 - 04 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,380286183,2024-01-06T05:56:55,anime,1920x1080,hevc,1420.053,2142 +/mnt/Downloads/anime/[LoliHouse] Kage no Jitsuryokusha ni Naritakute! S2 [01-12][WebRip 1080p HEVC-10bit AAC]/[LoliHouse] Kage no Jitsuryokusha ni Naritakute! S2 - 01 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,[LoliHouse] Kage no Jitsuryokusha ni Naritakute! S2 - 01 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,301977268,2024-01-06T05:56:51,anime,1920x1080,hevc,1420.096,1701 +/mnt/Downloads/anime/[LoliHouse] Kage no Jitsuryokusha ni Naritakute! S2 [01-12][WebRip 1080p HEVC-10bit AAC]/[LoliHouse] Kage no Jitsuryokusha ni Naritakute! S2 - 05 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,[LoliHouse] Kage no Jitsuryokusha ni Naritakute! S2 - 05 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,314460230,2024-01-06T05:56:52,anime,1920x1080,hevc,1420.096,1771 +/mnt/Downloads/anime/[LoliHouse] Kage no Jitsuryokusha ni Naritakute! S2 [01-12][WebRip 1080p HEVC-10bit AAC]/[LoliHouse] Kage no Jitsuryokusha ni Naritakute! S2 - 09 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,[LoliHouse] Kage no Jitsuryokusha ni Naritakute! S2 - 09 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,371118164,2024-01-06T05:56:52,anime,1920x1080,hevc,1420.095,2090 +/mnt/Downloads/anime/[LoliHouse] Kage no Jitsuryokusha ni Naritakute! S2 [01-12][WebRip 1080p HEVC-10bit AAC]/[LoliHouse] Kage no Jitsuryokusha ni Naritakute! S2 - 12 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,[LoliHouse] Kage no Jitsuryokusha ni Naritakute! S2 - 12 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,363577536,2024-01-06T05:56:36,anime,1920x1080,hevc,1420.138,2048 +/mnt/Downloads/anime/[Nekomoe kissaten][Ninja Kamui][05][1080p][CHT].mp4,[Nekomoe kissaten][Ninja Kamui][05][1080p][CHT].mp4,427082234,2024-03-13T13:42:34,anime,1920x1080,h264,1381.505,2473 +/mnt/Downloads/anime/[Nekomoe kissaten][Ishura][03][1080p][JPTC].mp4,[Nekomoe kissaten][Ishura][03][1080p][JPTC].mp4,359815906,2024-01-28T02:40:51,anime,1920x1080,h264,1422.144,2024 +/mnt/Downloads/anime/[ANi] 忍者與殺手的兩人生活 - 09 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 忍者與殺手的兩人生活 - 09 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,364628465,2025-06-06T00:16:18,anime,1920x1080,h264,1419.989333,2054 +/mnt/Downloads/anime/[ANi] LAZARUS 拉撒路 - 07 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] LAZARUS 拉撒路 - 07 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,554653932,2025-05-18T23:29:24,anime,1920x1080,h264,1439.978667,3081 +/mnt/Downloads/anime/[Nekomoe kissaten&LoliHouse] Mushoku Tensei S2 - 11 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,[Nekomoe kissaten&LoliHouse] Mushoku Tensei S2 - 11 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,831017426,2024-03-26T23:42:43,anime,1920x1080,hevc,1420.18,4681 +/mnt/Downloads/anime/[ANi] 瞬間治癒卻被當成廢物踢出隊伍的天才治療師,改當無照治療師快樂過活 - 08 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 瞬間治癒卻被當成廢物踢出隊伍的天才治療師,改當無照治療師快樂過活 - 08 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,294016723,2025-05-23T00:14:05,anime,1920x1080,h264,1440.064,1633 +/mnt/Downloads/anime/[ANi] 妻子變成小學生。 - 05 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 妻子變成小學生。 - 05 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,271781909,2024-10-27T23:46:49,anime,1920x1080,h264,1420.074667,1531 +/mnt/Downloads/anime/[LoliHouse] Shin Samurai-den YAIBA - 08 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,[LoliHouse] Shin Samurai-den YAIBA - 08 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,773591953,2025-05-25T00:24:05,anime,1920x1080,hevc,1430.02,4327 +/mnt/Downloads/anime/[LoliHouse] Yami Healer - 03 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,[LoliHouse] Yami Healer - 03 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,248069948,2025-04-18T00:21:55,anime,1920x1080,hevc,1440.1,1378 +/mnt/Downloads/anime/[HYSUB]Sono Bisque Doll wa Koi wo Suru[22][BIG5_MP4][1920X1080].mp4,[HYSUB]Sono Bisque Doll wa Koi wo Suru[22][BIG5_MP4][1920X1080].mp4,269937890,2025-09-07T23:33:17,anime,1920x1080,h264,1422.144,1518 +/mnt/Downloads/anime/[LoliHouse] Amagami-san Chi no Enmusubi - 01 [WebRip 1080p HEVC-10bit AAC SRTx2]).mkv,[LoliHouse] Amagami-san Chi no Enmusubi - 01 [WebRip 1080p HEVC-10bit AAC SRTx2]).mkv,320814304,2024-10-29T01:30:27,anime,1920x1080,hevc,1419.97,1807 +/mnt/Downloads/anime/[ANi] 記憶縫線 YOUR FORMA - 04 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 記憶縫線 YOUR FORMA - 04 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,590981257,2025-04-23T22:49:25,anime,1920x1080,h264,1425.027911,3317 +/mnt/Downloads/anime/[ANi] FAIRY TAIL 魔導少年 百年任務 - 10 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] FAIRY TAIL 魔導少年 百年任務 - 10 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,441487439,2024-09-08T12:34:07,anime,1920x1080,h264,1430.074622,2469 +/mnt/Downloads/anime/[ANi] 擁有超常技能的異世界流浪美食家 S2 - 22 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 擁有超常技能的異世界流浪美食家 S2 - 22 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,419519902,2025-12-09T23:47:02,anime,1920x1080,h264,1435.121322,2338 +/mnt/Downloads/anime/[ANi] 永遠的黃昏 - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 永遠的黃昏 - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,368951826,2025-10-11T01:01:54,anime,1920x1080,h264,1434.965333,2056 +/mnt/Downloads/anime/[ANi] 忍者與殺手的兩人生活 - 12 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 忍者與殺手的兩人生活 - 12 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,392039803,2025-06-26T23:23:16,anime,1920x1080,h264,1419.989333,2208 +/mnt/Downloads/anime/The.Stranger.by.the.Beach.2020.1080p.BluRay.x264.DTS-WiKi/Sample/The.Stranger.by.the.Beach.2020.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,The.Stranger.by.the.Beach.2020.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,104928499,2021-03-26T09:28:13,anime,1920x1080,h264,61.937,13552 +/mnt/Downloads/anime/The.Stranger.by.the.Beach.2020.1080p.BluRay.x264.DTS-WiKi/The.Stranger.by.the.Beach.2020.1080p.BluRay.x264.DTS-WiKi.mkv,The.Stranger.by.the.Beach.2020.1080p.BluRay.x264.DTS-WiKi.mkv,5615670782,2021-03-26T09:35:16,anime,1920x1080,h264,3526.523,12739 +/mnt/Downloads/anime/[LoliHouse] Shin Samurai-den YAIBA - 13 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,[LoliHouse] Shin Samurai-den YAIBA - 13 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,850795366,2025-06-29T23:27:25,anime,1920x1080,hevc,1430.021,4759 +/mnt/Downloads/anime/[ANi] 怪獸 8 號 第二季 - 16 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 怪獸 8 號 第二季 - 16 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,871861248,2025-08-09T15:15:51,anime,1920x1080,h264,1420.032,4911 +/mnt/Downloads/anime/[LoliHouse] Around 40 Otoko no Isekai Tsuuhan - 12 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,[LoliHouse] Around 40 Otoko no Isekai Tsuuhan - 12 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,544842953,2025-04-09T12:42:07,anime,1920x1080,hevc,1420.109,3069 +/mnt/Downloads/anime/[ANi] 香格里拉・開拓異境~糞作獵手挑戰神作~ - 16 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 香格里拉・開拓異境~糞作獵手挑戰神作~ - 16 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,1021219299,2024-01-28T12:39:22,anime,1920x1080,h264,1578.514578,5175 +/mnt/Downloads/anime/[Feibanyama] DARK MOON THE BLOOD ALTAR - 01 [BILIBILI WebRip 2160p HEVC OPUS Multi-Subs].mkv,[Feibanyama] DARK MOON THE BLOOD ALTAR - 01 [BILIBILI WebRip 2160p HEVC OPUS Multi-Subs].mkv,438145788,2026-01-10T01:00:35,anime,3840x2160,hevc,1420.12,2468 +/mnt/Downloads/anime/[ANi] 膽大黨 第二季 - 20 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 膽大黨 第二季 - 20 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,922266691,2025-08-21T23:42:57,anime,1920x1080,h264,1431.9932,5152 +/mnt/Downloads/anime/[LoliHouse] Beheneko - 03 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,[LoliHouse] Beheneko - 03 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,601572995,2025-01-12T05:11:36,anime,1920x1080,hevc,1422.506,3383 +/mnt/Downloads/anime/[orion origin] Boukyaku Battery [03] [1080p] [H265 AAC] [CHT&JPN].mp4,[orion origin] Boukyaku Battery [03] [1080p] [H265 AAC] [CHT&JPN].mp4,424168832,2024-06-27T12:14:13,anime,1920x1080,hevc,1434.992993,2364 +/mnt/Downloads/anime/[ANi] 轉生貴族憑鑑定技能扭轉人生 第二季 - 18 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 轉生貴族憑鑑定技能扭轉人生 第二季 - 18 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,390904337,2024-11-11T00:05:07,anime,1920x1080,h264,1419.989333,2202 +/mnt/Downloads/anime/[ANi] GNOSIA - 07 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] GNOSIA - 07 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,568343545,2025-11-23T02:41:05,anime,1920x1080,h264,1445.131322,3146 +/mnt/Downloads/anime/[BeanSub&FZSD][Kimetsu_no_Yaiba][57][BIG5][1080P][x264_AAC].mp4,[BeanSub&FZSD][Kimetsu_no_Yaiba][57][BIG5][1080P][x264_AAC].mp4,375767713,2024-05-19T23:30:32,anime,1920x1080,h264,1420.032,2116 +/mnt/Downloads/anime/[LoliHouse] Kijin Gentoushou - 06 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,[LoliHouse] Kijin Gentoushou - 06 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,371703447,2025-05-06T09:47:18,anime,1920x1080,hevc,1422.464,2090 +/mnt/Downloads/anime/[ANi] 膽大黨 - 12 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 膽大黨 - 12 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,588785399,2024-12-19T23:54:20,anime,1920x1080,h264,1407.009911,3347 +/mnt/Downloads/anime/[BeanSub&FZSD][BLEACH_Sennen_Kessen-hen][33][GB][1080P][x264_AAC].mp4,[BeanSub&FZSD][BLEACH_Sennen_Kessen-hen][33][GB][1080P][x264_AAC].mp4,825469480,2024-11-16T23:33:20,anime,1920x1080,h264,1443.072,4576 +/mnt/Downloads/anime/Penguin.Highway.2018.1080p.BluRay.x264.DTS-WiKi/Sample/Penguin.Highway.2018.1080p.BluRay.x264.DTS-WiKi.sample.mkv,Penguin.Highway.2018.1080p.BluRay.x264.DTS-WiKi.sample.mkv,105424529,2019-10-06T07:37:36,anime,1920x872,h264,51.804,16280 +/mnt/Downloads/anime/Penguin.Highway.2018.1080p.BluRay.x264.DTS-WiKi/Penguin.Highway.2018.1080p.BluRay.x264.DTS-WiKi.mkv,Penguin.Highway.2018.1080p.BluRay.x264.DTS-WiKi.mkv,9653775738,2019-10-06T07:54:31,anime,1920x872,h264,7034.699,10978 +"/mnt/Downloads/anime/[LoliHouse] Tensei Kizoku, Kantei Skill de Nariagaru - 12 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv","[LoliHouse] Tensei Kizoku, Kantei Skill de Nariagaru - 12 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv",843494130,2024-06-26T13:55:17,anime,1920x1080,hevc,1405.04,4802 +/mnt/Downloads/anime/[Nekomoe kissaten][Dungeon Meshi][22][1080p][JPTC].mp4,[Nekomoe kissaten][Dungeon Meshi][22][1080p][JPTC].mp4,498867617,2024-06-01T10:51:27,anime,1920x1080,h264,1441.066667,2769 +/mnt/Downloads/anime/[Nekomoe kissaten][HELLO WORLD][BDRip][1080p][JPTC]/[Nekomoe kissaten][ANOTHER WORLD][02][1080p][JPTC].mp4,[Nekomoe kissaten][ANOTHER WORLD][02][1080p][JPTC].mp4,93905876,2020-04-09T07:28:10,anime,1920x1080,h264,602.601667,1246 +/mnt/Downloads/anime/[Nekomoe kissaten][HELLO WORLD][BDRip][1080p][JPTC]/[Nekomoe kissaten][ANOTHER WORLD][03][1080p][JPTC].mp4,[Nekomoe kissaten][ANOTHER WORLD][03][1080p][JPTC].mp4,113667288,2020-04-09T07:27:52,anime,1920x1080,h264,602.666667,1508 +/mnt/Downloads/anime/[Nekomoe kissaten][HELLO WORLD][BDRip][1080p][JPTC]/[Nekomoe kissaten][ANOTHER WORLD][01][1080p][JPTC].mp4,[Nekomoe kissaten][ANOTHER WORLD][01][1080p][JPTC].mp4,97538313,2020-04-09T07:28:45,anime,1920x1080,h264,602.666667,1294 +/mnt/Downloads/anime/[Nekomoe kissaten][HELLO WORLD][BDRip][1080p][JPTC]/[Nekomoe kissaten][HELLO WORLD][Movie][1080p][JPTC].mp4,[Nekomoe kissaten][HELLO WORLD][Movie][1080p][JPTC].mp4,2345614665,2020-04-09T07:28:58,anime,1920x1080,h264,5863.36,3200 +/mnt/Downloads/anime/[KTXP][Hokkaido_Gals_Are_Super_Adorable!][08][HEVC_opus][1080p].mkv,[KTXP][Hokkaido_Gals_Are_Super_Adorable!][08][HEVC_opus][1080p].mkv,220865743,2024-02-27T13:12:58,anime,1920x1080,hevc,1439.994,1227 +/mnt/Downloads/anime/[KyokuSai] Isekai Onsen Paradise [03][720P][WEB-DL][Premium].mp4,[KyokuSai] Isekai Onsen Paradise [03][720P][WEB-DL][Premium].mp4,271388610,2024-02-15T23:55:37,anime,1280x720,h264,235.008,9238 +/mnt/Downloads/anime/[Nekomoe kissaten][Ninja Kamui][06][1080p][CHT].mp4,[Nekomoe kissaten][Ninja Kamui][06][1080p][CHT].mp4,475354520,2024-03-23T10:30:49,anime,1920x1080,h264,1380.053333,2755 +/mnt/Downloads/anime/[Nekomoe kissaten][Tower of God S2][20][1080p][CHS].mp4,[Nekomoe kissaten][Tower of God S2][20][1080p][CHS].mp4,567299986,2024-12-08T14:57:09,anime,1920x1080,h264,1421.061224,3193 +/mnt/Downloads/anime/[ANi] 完美到難以接近的聖女遭到解除婚約後被賣到鄰國 - 06 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 完美到難以接近的聖女遭到解除婚約後被賣到鄰國 - 06 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,391796805,2025-05-08T11:19:04,anime,1920x1080,h264,1420.074667,2207 +/mnt/Downloads/anime/[ANi] 膽大黨 - 09 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 膽大黨 - 09 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,929660618,2024-11-29T00:06:07,anime,1920x1080,h264,1422.024911,5230 +/mnt/Downloads/anime/[ANi] 我內心的糟糕念頭 第二季 - 24 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 我內心的糟糕念頭 第二季 - 24 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,331961523,2024-03-24T01:06:58,anime,1920x1080,h264,1368.064,1941 +/mnt/Downloads/anime/[ANi] 我要【招架】一切~反誤解的世界最強想成為冒險家~ - 12 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 我要【招架】一切~反誤解的世界最強想成為冒險家~ - 12 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,383272818,2024-09-19T15:26:13,anime,1920x1080,h264,1420.064622,2159 +/mnt/Downloads/anime/[ANi] 素材採集家的異世界旅行記 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 素材採集家的異世界旅行記 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,348787911,2025-10-21T01:20:26,anime,1920x1080,h264,1420.022911,1964 +/mnt/Downloads/anime/[Nekomoe kissaten][Tower of God S2][02][1080p][CHT].mp4,[Nekomoe kissaten][Tower of God S2][02][1080p][CHT].mp4,447593164,2024-07-23T23:37:21,anime,1920x1080,h264,1421.154104,2519 +/mnt/Downloads/anime/[ANi] 我和班上最討厭的女生結婚了。 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 我和班上最討厭的女生結婚了。 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,321873400,2025-01-04T01:21:49,anime,1920x1080,h264,1420.074667,1813 +/mnt/Downloads/anime/[ANi] 最後可以再拜託您一件事嗎? - 09 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 最後可以再拜託您一件事嗎? - 09 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,358511947,2025-11-22T01:35:29,anime,1920x1080,h264,1425.045333,2012 +/mnt/Downloads/anime/[ANi] 我獨自升級 第二季 -起於闇影- - 17 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 我獨自升級 第二季 -起於闇影- - 17 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,516098573,2025-02-01T16:43:53,anime,1920x1080,h264,1425.237333,2896 +/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/[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 +/mnt/Downloads/anime/[ANi] 我要【招架】一切~反誤解的世界最強想成為冒險家~ - 09 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 我要【招架】一切~反誤解的世界最強想成為冒險家~ - 09 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,457745462,2024-08-29T23:29:57,anime,1920x1080,h264,1420.022911,2578 +/mnt/Downloads/anime/[ANi] 轉生貴族憑鑑定技能扭轉人生 第二季 - 24 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 轉生貴族憑鑑定技能扭轉人生 第二季 - 24 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,429304041,2024-12-23T00:24:37,anime,1920x1080,h264,1405.056,2444 +/mnt/Downloads/anime/[ANi] FARMAGIA 魔農傳記 - 04 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] FARMAGIA 魔農傳記 - 04 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,497498442,2025-01-31T16:16:14,anime,1920x1080,h264,1439.978667,2763 +/mnt/Downloads/anime/[ANi] 最後可以再拜託您一件事嗎? - 12 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 最後可以再拜託您一件事嗎? - 12 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,433372110,2025-12-13T01:22:51,anime,1920x1080,h264,1425.130667,2432 +/mnt/Downloads/anime/[ANi] 不時輕聲地以俄語遮羞的鄰座艾莉同學 - 09 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 不時輕聲地以俄語遮羞的鄰座艾莉同學 - 09 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,321543379,2024-08-29T01:24:34,anime,1920x1080,h264,1509.994667,1703 +/mnt/Downloads/anime/[LoliHouse] Izure Saikyou no Renkinjutsushi - 02 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,[LoliHouse] Izure Saikyou no Renkinjutsushi - 02 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,443677899,2025-01-16T14:58:33,anime,1920x1080,hevc,1419.97,2499 +/mnt/Downloads/anime/[Nekomoe kissaten][Dungeon Meshi][08][1080p][JPTC].mp4,[Nekomoe kissaten][Dungeon Meshi][08][1080p][JPTC].mp4,411134298,2024-02-23T11:05:37,anime,1920x1080,h264,1441.001667,2282 +/mnt/Downloads/anime/[Nekomoe kissaten&LoliHouse] Your Forma - 05 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,[Nekomoe kissaten&LoliHouse] Your Forma - 05 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,617209797,2025-05-06T00:11:24,anime,1920x1080,hevc,1425.091,3464 +/mnt/Downloads/anime/[ANi] 怪獸 8 號 第二季 - 22 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 怪獸 8 號 第二季 - 22 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,700594190,2025-09-20T15:57:55,anime,1920x1080,h264,1420.16,3946 +/mnt/Downloads/anime/[ANi] Fate/strange Fake - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] Fate/strange Fake - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,409715171,2025-01-01T07:56:12,anime,1920x1080,h264,1479.874367,2214 +/mnt/Downloads/anime/[ANi] 香格里拉・開拓異境~糞作獵手挑戰神作~ 第二季 - 13 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 香格里拉・開拓異境~糞作獵手挑戰神作~ 第二季 - 13 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,1034866408,2025-01-05T09:37:31,anime,1920x1080,h264,1421.9832,5822 +/mnt/Downloads/anime/[ANi] 香格里拉・開拓異境~糞作獵手挑戰神作~ - 22 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 香格里拉・開拓異境~糞作獵手挑戰神作~ - 22 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,762300437,2024-03-10T10:50:37,anime,1920x1080,h264,1520.373156,4011 +/mnt/Downloads/anime/[ANi] S 級怪獸《貝希摩斯》被誤認成小貓,成為精靈女孩的騎士(寵物)一起生活 - 06 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] S 級怪獸《貝希摩斯》被誤認成小貓,成為精靈女孩的騎士(寵物)一起生活 - 06 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,382992470,2025-02-01T16:44:24,anime,1920x1080,h264,1419.9812,2157 +/mnt/Downloads/anime/[ANi] 九龍大眾浪漫 - 06 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 九龍大眾浪漫 - 06 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,307982061,2025-05-11T04:03:46,anime,1920x1080,h264,1520.042667,1620 +/mnt/Downloads/anime/[KTXP][Hokkaido_Gals_Are_Super_Adorable!][10][BIG5][1080p].mp4,[KTXP][Hokkaido_Gals_Are_Super_Adorable!][10][BIG5][1080p].mp4,418529669,2024-03-19T13:23:24,anime,1920x1080,h264,1439.985488,2325 +/mnt/Downloads/anime/[orion origin] Boukyaku Battery [07] [1080p] [H265 AAC] [CHT&JPN].mp4,[orion origin] Boukyaku Battery [07] [1080p] [H265 AAC] [CHT&JPN].mp4,443085293,2024-06-27T12:17:23,anime,1920x1080,hevc,1435.04,2470 +"/mnt/Downloads/anime/[Sakurato] Haite Kudasai, Takamine-san [07][AVC-8bit 1080p AAC][CHT&JPN].mp4","[Sakurato] Haite Kudasai, Takamine-san [07][AVC-8bit 1080p AAC][CHT&JPN].mp4",425104041,2025-05-25T00:36:33,anime,1920x1080,h264,1440.125,2361 +/mnt/Downloads/anime/[ANi] 擁有超常技能的異世界流浪美食家 S2 - 16 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 擁有超常技能的異世界流浪美食家 S2 - 16 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,453613899,2025-10-28T23:42:03,anime,1920x1080,h264,1435.037911,2528 +/mnt/Downloads/anime/[ANi] 最狂輔助職業【話術士】世界最強戰團聽我號令 - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 最狂輔助職業【話術士】世界最強戰團聽我號令 - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,380958380,2024-10-07T23:40:48,anime,1920x1080,h264,1420.064622,2146 +/mnt/Downloads/anime/[ANi] Re:從零開始的異世界生活 第三季 - 05 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] Re:從零開始的異世界生活 第三季 - 05 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,375792058,2024-10-30T15:44:07,anime,1920x1080,h264,1420.022911,2117 +/mnt/Downloads/anime/[Sakurato] Dungeon Meshi [17v2][HEVC-10bit 1080p AAC][CHS&CHT].mkv,[Sakurato] Dungeon Meshi [17v2][HEVC-10bit 1080p AAC][CHS&CHT].mkv,413694555,2024-05-02T00:55:08,anime,1920x1080,hevc,1566.4,2112 +/mnt/Downloads/anime/[Lilith-Raws] Re:Monster - 05 [Baha][WebDL 1080p AVC AAC][CHT].mp4,[Lilith-Raws] Re:Monster - 05 [Baha][WebDL 1080p AVC AAC][CHT].mp4,494887695,2024-05-07T02:07:48,anime,1920x1080,h264,1420.010667,2788 +/mnt/Downloads/anime/[Skymoon-Raws] Sozai Saishuka no Isekai Ryokouki - 01 [ViuTV][WEB-DL][CHT][SRT][1080p][AVC AAC].mkv,[Skymoon-Raws] Sozai Saishuka no Isekai Ryokouki - 01 [ViuTV][WEB-DL][CHT][SRT][1080p][AVC AAC].mkv,333092874,2025-10-07T00:32:53,anime,1920x1080,h264,1420.053,1876 +/mnt/Downloads/anime/[BeanSub][Ao no Exorcist _Shimane Illuminati Hen][08][BIG5][1080P][x264_AAC].mp4,[BeanSub][Ao no Exorcist _Shimane Illuminati Hen][08][BIG5][1080P][x264_AAC].mp4,487544368,2024-02-25T10:17:25,anime,1920x1080,h264,1420.132426,2746 +"/mnt/Downloads/anime/[LoliHouse] Katainaka no Ossan, Kensei ni Naru - 06 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv","[LoliHouse] Katainaka no Ossan, Kensei ni Naru - 06 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv",591163776,2025-05-11T07:00:33,anime,1920x1080,hevc,1441.13,3281 +/mnt/Downloads/anime/[ANi] 厄里斯的聖杯 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 厄里斯的聖杯 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,401760399,2026-01-09T00:06:07,anime,1920x1080,h264,1430.08,2247 +/mnt/Downloads/anime/[Nekomoe kissaten][Tower of God S2][17][1080p][CHT].mp4,[Nekomoe kissaten][Tower of God S2][17][1080p][CHT].mp4,466915100,2024-11-17T13:25:45,anime,1920x1080,h264,1421.107664,2628 +/mnt/Downloads/anime/[ANi] 香格里拉・開拓異境~糞作獵手挑戰神作~ 第二季 - 08 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 香格里拉・開拓異境~糞作獵手挑戰神作~ 第二季 - 08 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,661647586,2024-12-01T08:48:08,anime,1920x1080,h264,1420.9822,3725 +/mnt/Downloads/anime/[Skymoon-Raws] Sozai Saishuka no Isekai Ryokouki - 02 [ViuTV][WEB-DL][CHT][SRT][1080p][AVC AAC].mkv,[Skymoon-Raws] Sozai Saishuka no Isekai Ryokouki - 02 [ViuTV][WEB-DL][CHT][SRT][1080p][AVC AAC].mkv,357052556,2025-10-07T00:33:24,anime,1920x1080,h264,1420.053,2011 +/mnt/Downloads/anime/Ghost.in.the.Shell.SAC_2045.Sustainable.War.2021.1080p.BluRay.x265.10bit-WiKi/Ghost.in.the.Shell.SAC_2045.Sustainable.War.2021.1080p.BluRay.x265.10bit-WiKi.mkv,Ghost.in.the.Shell.SAC_2045.Sustainable.War.2021.1080p.BluRay.x265.10bit-WiKi.mkv,6447708429,2025-04-03T04:34:02,anime,1920x1080,hevc,7132.128,7232 +/mnt/Downloads/anime/[U3-Web] PSYCHO-PASS 3 - FIRST INSPECTOR (2020) [AMZN WEB-DL 1080p AVC DDP]/[U3-Web] Psycho-Pass 3 - First Inspector - 01 [AMZN WEB-DL 1080p AVC AAC E-AC-3 SRT].mkv,[U3-Web] Psycho-Pass 3 - First Inspector - 01 [AMZN WEB-DL 1080p AVC AAC E-AC-3 SRT].mkv,3232754420,2020-03-28T12:44:12,anime,1920x1080,h264,2643.68,9782 +/mnt/Downloads/anime/[U3-Web] PSYCHO-PASS 3 - FIRST INSPECTOR (2020) [AMZN WEB-DL 1080p AVC DDP]/[U3-Web] Psycho-Pass 3 - First Inspector - 02 [AMZN WEB-DL 1080p AVC AAC E-AC-3 SRT].mkv,[U3-Web] Psycho-Pass 3 - First Inspector - 02 [AMZN WEB-DL 1080p AVC AAC E-AC-3 SRT].mkv,3197665563,2020-03-28T12:43:42,anime,1920x1080,h264,2736.128,9349 +/mnt/Downloads/anime/[U3-Web] PSYCHO-PASS 3 - FIRST INSPECTOR (2020) [AMZN WEB-DL 1080p AVC DDP]/[U3-Web] Psycho-Pass 3 - First Inspector - 03 [AMZN WEB-DL 1080p AVC AAC E-AC-3 SRT].mkv,[U3-Web] Psycho-Pass 3 - First Inspector - 03 [AMZN WEB-DL 1080p AVC AAC E-AC-3 SRT].mkv,2848573706,2020-03-28T12:42:59,anime,1920x1080,h264,2960.169,7698 +/mnt/Downloads/anime/[HYSUB]Dungeon Meshi[24][BIG5_MP4][1920X1080].mp4,[HYSUB]Dungeon Meshi[24][BIG5_MP4][1920X1080].mp4,308378656,2024-06-14T02:29:02,anime,1920x1080,h264,1485.056,1661 +/mnt/Downloads/anime/[ANi] 結緣甘神神社 - 11 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 結緣甘神神社 - 11 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,357895984,2024-12-11T00:03:35,anime,1920x1080,h264,1420.074667,2016 +/mnt/Downloads/anime/[ANi] 午夜的傾心旋律 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 午夜的傾心旋律 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,496841138,2026-01-06T23:57:17,anime,1920x1080,h264,1420.032,2799 +/mnt/Downloads/anime/[ANi] 一拳超人(第三季) - 35 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 一拳超人(第三季) - 35 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,609827772,2025-12-21T23:35:01,anime,1920x1080,h264,1441.085622,3385 +/mnt/Downloads/anime/[ANi] 被逐出隊伍的治癒師,其實是最強 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 被逐出隊伍的治癒師,其實是最強 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,351438703,2024-10-06T00:24:18,anime,1920x1080,h264,1404.010667,2002 +/mnt/Downloads/anime/[ANi] 水屬性的魔法師 - 10 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 水屬性的魔法師 - 10 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,297349885,2025-09-11T23:33:30,anime,1920x1080,h264,1455.061333,1634 +/mnt/Downloads/anime/[ANi] 轉生貴族憑鑑定技能扭轉人生 - 04 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 轉生貴族憑鑑定技能扭轉人生 - 04 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,391966206,2024-04-28T23:30:41,anime,1920x1080,h264,1420.032,2208 +/mnt/Downloads/anime/[LoliHouse] Mato Seihei no Slave 2 - 01 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,[LoliHouse] Mato Seihei no Slave 2 - 01 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,583831885,2026-01-10T11:46:47,anime,1920x1080,hevc,1420.01,3289 +/mnt/Downloads/anime/[Nekomoe kissaten][Ninja Kamui][13][1080p][CHT].mp4,[Nekomoe kissaten][Ninja Kamui][13][1080p][CHT].mp4,541740898,2024-05-06T10:57:39,anime,1920x1080,h264,1381.546833,3137 +/mnt/Downloads/anime/[ANi] 勇氣爆發 BANG BRAVERN - 03 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 勇氣爆發 BANG BRAVERN - 03 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,595941316,2024-01-26T00:05:32,anime,1920x1080,h264,1420.032,3357 +"/mnt/Downloads/anime/[Sakurato] Modaete yo, Adam-kun [02][AVC-8bit 1080p AAC][CHT].mp4","[Sakurato] Modaete yo, Adam-kun [02][AVC-8bit 1080p AAC][CHT].mp4",132798264,2024-01-29T00:58:03,anime,1920x1080,h264,444.546032,2389 +/mnt/Downloads/anime/[ANi] 持續狩獵史萊姆三百年,不知不覺就練到 LV MAX 第二季 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 持續狩獵史萊姆三百年,不知不覺就練到 LV MAX 第二季 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,352603239,2025-04-05T13:42:23,anime,1920x1080,h264,1420.022911,1986 +/mnt/Downloads/anime/[ANi] 永遠的黃昏 - 11 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 永遠的黃昏 - 11 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,354339018,2025-12-11T23:25:55,anime,1920x1080,h264,1435.008,1975 +/mnt/Downloads/anime/[ANi] 忍者與殺手的兩人生活 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 忍者與殺手的兩人生活 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,433098623,2025-04-10T14:07:26,anime,1920x1080,h264,1420.074667,2439 +/mnt/Downloads/anime/[Nekomoe kissaten][Hibi wa Sugiredo Meshi Umashi][07][1080p][JPSC].mp4,[Nekomoe kissaten][Hibi wa Sugiredo Meshi Umashi][07][1080p][JPSC].mp4,577423216,2025-05-25T23:38:45,anime,1920x1080,h264,1439.985011,3207 +/mnt/Downloads/anime/[orion origin] Boukyaku Battery [01] [1080p] [H265 AAC] [CHT&JPN].mp4,[orion origin] Boukyaku Battery [01] [1080p] [H265 AAC] [CHT&JPN].mp4,417044283,2024-06-27T12:10:43,anime,1920x1080,hevc,1435.04,2324 +/mnt/Downloads/anime/[ANi] 孤單一人的異世界攻略 - 09 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 孤單一人的異世界攻略 - 09 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,514614317,2024-11-22T00:36:16,anime,1920x1080,h264,1420.064622,2899 +/mnt/Downloads/anime/[LoliHouse] Amagami-san Chi no Enmusubi - 03 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,[LoliHouse] Amagami-san Chi no Enmusubi - 03 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,400467586,2024-10-29T01:32:19,anime,1920x1080,hevc,1420.063,2256 +/mnt/Downloads/anime/[KitaujiSub&LoliHouse] The Grimm Variations - 01 [1080p HEVC-10bit AAC EAC3 ASSx2].mkv,[KitaujiSub&LoliHouse] The Grimm Variations - 01 [1080p HEVC-10bit AAC EAC3 ASSx2].mkv,927964764,2024-05-14T23:46:43,anime,1920x1080,hevc,2616.489,2837 +/mnt/Downloads/anime/[Nekomoe kissaten&LoliHouse] Vivy [WebRip 1080p HEVC-10bit AAC ASSx2]/[Nekomoe kissaten&LoliHouse] Vivy - 01 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,[Nekomoe kissaten&LoliHouse] Vivy - 01 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,561769554,2022-01-02T06:03:35,anime,1920x1080,hevc,1571.029,2860 +/mnt/Downloads/anime/[Nekomoe kissaten&LoliHouse] Vivy [WebRip 1080p HEVC-10bit AAC ASSx2]/[Nekomoe kissaten&LoliHouse] Vivy - 05 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,[Nekomoe kissaten&LoliHouse] Vivy - 05 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,529710992,2022-01-02T06:03:34,anime,1920x1080,hevc,1420.01,2984 +/mnt/Downloads/anime/[Nekomoe kissaten&LoliHouse] Vivy [WebRip 1080p HEVC-10bit AAC ASSx2]/[Nekomoe kissaten&LoliHouse] Vivy - 09 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,[Nekomoe kissaten&LoliHouse] Vivy - 09 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,630638690,2022-01-02T06:03:30,anime,1920x1080,hevc,1420.002,3552 +/mnt/Downloads/anime/[Nekomoe kissaten&LoliHouse] Vivy [WebRip 1080p HEVC-10bit AAC ASSx2]/[Nekomoe kissaten&LoliHouse] Vivy - 12 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,[Nekomoe kissaten&LoliHouse] Vivy - 12 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,718114136,2022-01-02T06:03:35,anime,1920x1080,hevc,1420.086,4045 +/mnt/Downloads/anime/[Nekomoe kissaten&LoliHouse] Vivy [WebRip 1080p HEVC-10bit AAC ASSx2]/[Nekomoe kissaten&LoliHouse] Vivy - 13 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,[Nekomoe kissaten&LoliHouse] Vivy - 13 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,591697117,2022-01-02T06:03:36,anime,1920x1080,hevc,1405.071,3368 +/mnt/Downloads/anime/[Nekomoe kissaten&LoliHouse] Vivy [WebRip 1080p HEVC-10bit AAC ASSx2]/[Nekomoe kissaten&LoliHouse] Vivy - 08 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,[Nekomoe kissaten&LoliHouse] Vivy - 08 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,541438790,2022-01-02T06:03:37,anime,1920x1080,hevc,1420.002,3050 +/mnt/Downloads/anime/[Nekomoe kissaten&LoliHouse] Vivy [WebRip 1080p HEVC-10bit AAC ASSx2]/[Nekomoe kissaten&LoliHouse] Vivy - 04 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,[Nekomoe kissaten&LoliHouse] Vivy - 04 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,365544055,2022-01-02T06:03:32,anime,1920x1080,hevc,1420.011,2059 +/mnt/Downloads/anime/[Nekomoe kissaten&LoliHouse] Vivy [WebRip 1080p HEVC-10bit AAC ASSx2]/[Nekomoe kissaten&LoliHouse] Vivy - 11 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,[Nekomoe kissaten&LoliHouse] Vivy - 11 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,615294845,2022-01-02T06:03:37,anime,1920x1080,hevc,1420.002,3466 +/mnt/Downloads/anime/[Nekomoe kissaten&LoliHouse] Vivy [WebRip 1080p HEVC-10bit AAC ASSx2]/[Nekomoe kissaten&LoliHouse] Vivy - 02 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,[Nekomoe kissaten&LoliHouse] Vivy - 02 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,436238654,2022-01-02T05:57:31,anime,1920x1080,hevc,1364.031,2558 +/mnt/Downloads/anime/[Nekomoe kissaten&LoliHouse] Vivy [WebRip 1080p HEVC-10bit AAC ASSx2]/[Nekomoe kissaten&LoliHouse] Vivy - 06 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,[Nekomoe kissaten&LoliHouse] Vivy - 06 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,544786469,2022-01-02T06:03:33,anime,1920x1080,hevc,1420.01,3069 +/mnt/Downloads/anime/[Nekomoe kissaten&LoliHouse] Vivy [WebRip 1080p HEVC-10bit AAC ASSx2]/[Nekomoe kissaten&LoliHouse] Vivy - 03 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,[Nekomoe kissaten&LoliHouse] Vivy - 03 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,417148744,2022-01-02T06:03:36,anime,1920x1080,hevc,1419.968,2350 +/mnt/Downloads/anime/[Nekomoe kissaten&LoliHouse] Vivy [WebRip 1080p HEVC-10bit AAC ASSx2]/[Nekomoe kissaten&LoliHouse] Vivy - 07 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,[Nekomoe kissaten&LoliHouse] Vivy - 07 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,394017290,2022-01-02T06:03:38,anime,1920x1080,hevc,1420.002,2219 +/mnt/Downloads/anime/[Nekomoe kissaten&LoliHouse] Vivy [WebRip 1080p HEVC-10bit AAC ASSx2]/[Nekomoe kissaten&LoliHouse] Vivy - 10 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,[Nekomoe kissaten&LoliHouse] Vivy - 10 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,419760335,2022-01-02T06:03:28,anime,1920x1080,hevc,1420.044,2364 +/mnt/Downloads/anime/[Nekomoe kissaten][Dungeon Meshi][16][1080p][JPTC].mp4,[Nekomoe kissaten][Dungeon Meshi][16][1080p][JPTC].mp4,439367191,2024-04-20T05:32:29,anime,1920x1080,h264,1502.165333,2339 +/mnt/Downloads/anime/Belle.2021.1080p.BluRay.x264.DTS-WiKi/Belle.2021.1080p.BluRay.x264.DTS-WiKi.mkv,Belle.2021.1080p.BluRay.x264.DTS-WiKi.mkv,11427501181,2022-03-19T09:17:01,anime,1920x804,h264,7275.275,12565 +/mnt/Downloads/anime/Belle.2021.1080p.BluRay.x264.DTS-WiKi/Sample/Belle.2021.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,Belle.2021.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,123497513,2022-03-19T08:55:00,anime,1920x804,h264,63.564,15543 +"/mnt/Downloads/anime/[LoliHouse] Haite Kudasai, Takamine-san - 03 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv","[LoliHouse] Haite Kudasai, Takamine-san - 03 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv",581397112,2025-04-23T22:50:58,anime,1920x1080,hevc,1420.062,3275 +/mnt/Downloads/anime/[ANi] 異國日記 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 異國日記 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,240655218,2026-01-12T13:41:03,anime,1920x1080,h264,1419.989333,1355 +/mnt/Downloads/anime/[ANi] 異世界自殺突擊隊 - 06 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 異世界自殺突擊隊 - 06 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,508378981,2024-07-18T12:09:05,anime,1920x1080,h264,1444.138667,2816 +/mnt/Downloads/anime/[Nekomoe kissaten][Dosanko Gal wa Namara Menkoi][03][1080p][JPTC].mp4,[Nekomoe kissaten][Dosanko Gal wa Namara Menkoi][03][1080p][JPTC].mp4,394130598,2024-01-27T06:47:28,anime,1920x1080,h264,1440.123333,2189 +/mnt/Downloads/anime/[ANi] 地獄模式 ~喜歡挑戰特殊成就的玩家在廢設定的異世界成為無雙~ - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 地獄模式 ~喜歡挑戰特殊成就的玩家在廢設定的異世界成為無雙~ - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,457660049,2026-01-17T02:00:54,anime,1920x1080,h264,1425.045333,2569 +/mnt/Downloads/anime/[BeanSub&FZSD][Chainsaw_Man_Reze_Arc][MOVIE][BIG5][1080P][x264_AAC].mp4,[BeanSub&FZSD][Chainsaw_Man_Reze_Arc][MOVIE][BIG5][1080P][x264_AAC].mp4,2940022472,2025-12-09T01:17:48,anime,1920x800,h264,5950.110834,3952 +/mnt/Downloads/anime/[ANi] 葬送的芙莉蓮 - 26 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 葬送的芙莉蓮 - 26 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,811307999,2024-03-08T15:50:17,anime,1920x1080,h264,1470.0312,4415 +/mnt/Downloads/anime/[ANi] 九龍大眾浪漫 - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 九龍大眾浪漫 - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,345776725,2025-04-13T00:20:00,anime,1920x1080,h264,1520.0,1819 +/mnt/Downloads/anime/[ANi] 香格里拉・開拓異境~糞作獵手挑戰神作~ 第二季 - 17 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 香格里拉・開拓異境~糞作獵手挑戰神作~ 第二季 - 17 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,558564108,2025-02-02T09:34:58,anime,1920x1080,h264,1419.063622,3148 +/mnt/Downloads/anime/[Nekomoe kissaten][Tower of God S2][03][1080p][CHT].mp4,[Nekomoe kissaten][Tower of God S2][03][1080p][CHT].mp4,487520560,2024-07-23T23:37:23,anime,1920x1080,h264,1421.107664,2744 +/mnt/Downloads/anime/[Lilith-Raws] Date A Live S05 - 01 [Baha][WebDL 1080p AVC AAC][CHT].mp4,[Lilith-Raws] Date A Live S05 - 01 [Baha][WebDL 1080p AVC AAC][CHT].mp4,488263545,2024-06-02T02:02:52,anime,1920x1080,h264,1420.010667,2750 +/mnt/Downloads/anime/[ANi] 終末起點 - 09 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 終末起點 - 09 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,275877430,2025-05-29T00:16:46,anime,1920x1080,h264,1370.152542,1610 +"/mnt/Downloads/anime/[LoliHouse] Katainaka no Ossan, Kensei ni Naru - 02 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv","[LoliHouse] Katainaka no Ossan, Kensei ni Naru - 02 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv",576170571,2025-04-13T09:36:41,anime,1920x1080,hevc,1441.002,3198 +"/mnt/Downloads/anime/[Eternal][Modaete yo, Adam-kun][08][GB][720P][Premium].mp4","[Eternal][Modaete yo, Adam-kun][08][GB][720P][Premium].mp4",84317064,2024-03-11T23:50:00,anime,1280x720,h264,419.445261,1608 +/mnt/Downloads/anime/[ANi] Re:從零開始的異世界生活 第三季 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] Re:從零開始的異世界生活 第三季 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,1039475552,2024-10-02T23:51:32,anime,1920x1080,h264,5430.028911,1531 +/mnt/Downloads/anime/[BeanSub][Ao no Exorcist _Yosuga Hen][10][BIG5][1080P][x264_AAC].mp4,[BeanSub][Ao no Exorcist _Yosuga Hen][10][BIG5][1080P][x264_AAC].mp4,451632022,2025-03-09T04:49:16,anime,1920x1080,h264,1420.132426,2544 +/mnt/Downloads/anime/[orion origin] Apocalypse Hotel [01] [1080p] [H265 AAC] [CHS_JPN].mp4,[orion origin] Apocalypse Hotel [01] [1080p] [H265 AAC] [CHS_JPN].mp4,658450290,2025-04-12T14:58:59,anime,1920x1080,hevc,1380.030998,3817 +/mnt/Downloads/anime/[ANi] 治癒魔法的錯誤使用法 - 04 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 治癒魔法的錯誤使用法 - 04 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,563172465,2024-01-27T02:29:04,anime,1920x1080,h264,1430.074622,3150 +/mnt/Downloads/anime/Love.Death.and.Robots.S03.1080p.NF.WEB-DL.DDP5.1.Atmos.x264-SMURF/Love.Death.and.Robots.S03E08.In.Vaulted.Halls.Entombed.1080p.NF.WEB-DL.DDP5.1.Atmos.x264-SMURF.mkv,Love.Death.and.Robots.S03E08.In.Vaulted.Halls.Entombed.1080p.NF.WEB-DL.DDP5.1.Atmos.x264-SMURF.mkv,479120461,2022-05-20T13:18:08,anime,1920x1080,h264,904.704,4236 +/mnt/Downloads/anime/Love.Death.and.Robots.S03.1080p.NF.WEB-DL.DDP5.1.Atmos.x264-SMURF/Love.Death.and.Robots.S03E07.Masons.Rats.1080p.NF.WEB-DL.DDP5.1.Atmos.x264-SMURF.mkv,Love.Death.and.Robots.S03E07.Masons.Rats.1080p.NF.WEB-DL.DDP5.1.Atmos.x264-SMURF.mkv,309591726,2022-05-20T13:17:52,anime,1920x1080,h264,644.704,3841 +/mnt/Downloads/anime/Love.Death.and.Robots.S03.1080p.NF.WEB-DL.DDP5.1.Atmos.x264-SMURF/Love.Death.and.Robots.S03E03.The.Very.Pulse.of.the.Machine.1080p.NF.WEB-DL.DDP5.1.Atmos.x264-SMURF.mkv,Love.Death.and.Robots.S03E03.The.Very.Pulse.of.the.Machine.1080p.NF.WEB-DL.DDP5.1.Atmos.x264-SMURF.mkv,748642345,2022-05-20T13:18:40,anime,1920x1080,h264,1042.72,5743 +/mnt/Downloads/anime/Love.Death.and.Robots.S03.1080p.NF.WEB-DL.DDP5.1.Atmos.x264-SMURF/Love.Death.and.Robots.S03E01.Three.Robots.Exit.Strategies.1080p.NF.WEB-DL.DDP5.1.Atmos.x264-SMURF.mkv,Love.Death.and.Robots.S03E01.Three.Robots.Exit.Strategies.1080p.NF.WEB-DL.DDP5.1.Atmos.x264-SMURF.mkv,362904838,2022-05-20T13:18:02,anime,1920x1080,h264,686.688,4227 +/mnt/Downloads/anime/Love.Death.and.Robots.S03.1080p.NF.WEB-DL.DDP5.1.Atmos.x264-SMURF/Love.Death.and.Robots.S03E06.Swarm.1080p.NF.WEB-DL.DDP5.1.Atmos.x264-SMURF.mkv,Love.Death.and.Robots.S03E06.Swarm.1080p.NF.WEB-DL.DDP5.1.Atmos.x264-SMURF.mkv,412067442,2022-05-20T13:18:36,anime,1920x1080,h264,1044.704,3155 +/mnt/Downloads/anime/Love.Death.and.Robots.S03.1080p.NF.WEB-DL.DDP5.1.Atmos.x264-SMURF/Love.Death.and.Robots.S03E05.Kill.Team.Kill.1080p.NF.WEB-DL.DDP5.1.Atmos.x264-SMURF.mkv,Love.Death.and.Robots.S03E05.Kill.Team.Kill.1080p.NF.WEB-DL.DDP5.1.Atmos.x264-SMURF.mkv,466858297,2022-05-20T13:18:23,anime,1920x1080,h264,830.688,4496 +/mnt/Downloads/anime/Love.Death.and.Robots.S03.1080p.NF.WEB-DL.DDP5.1.Atmos.x264-SMURF/Love.Death.and.Robots.S03E04.Night.of.the.Mini.Dead.1080p.NF.WEB-DL.DDP5.1.Atmos.x264-SMURF.mkv,Love.Death.and.Robots.S03E04.Night.of.the.Mini.Dead.1080p.NF.WEB-DL.DDP5.1.Atmos.x264-SMURF.mkv,278389284,2022-05-20T13:18:32,anime,1920x1080,h264,436.704,5099 +/mnt/Downloads/anime/Love.Death.and.Robots.S03.1080p.NF.WEB-DL.DDP5.1.Atmos.x264-SMURF/Love.Death.and.Robots.S03E09.Jibaro.1080p.NF.WEB-DL.DDP5.1.Atmos.x264-SMURF.mkv,Love.Death.and.Robots.S03E09.Jibaro.1080p.NF.WEB-DL.DDP5.1.Atmos.x264-SMURF.mkv,987291334,2022-05-20T13:18:22,anime,1920x1080,h264,1036.448,7620 +/mnt/Downloads/anime/Love.Death.and.Robots.S03.1080p.NF.WEB-DL.DDP5.1.Atmos.x264-SMURF/Love.Death.and.Robots.S03E02.Bad.Travelling.1080p.NF.WEB-DL.DDP5.1.Atmos.x264-SMURF.mkv,Love.Death.and.Robots.S03E02.Bad.Travelling.1080p.NF.WEB-DL.DDP5.1.Atmos.x264-SMURF.mkv,1211022731,2022-05-20T13:18:39,anime,1920x1080,h264,1362.688,7109 +/mnt/Downloads/anime/[DanMachi S4][00-11][BIG5][1080P]/[DanMachi S4][10][BIG5][1080P].mp4,[DanMachi S4][10][BIG5][1080P].mp4,331457496,2022-12-19T17:37:43,anime,1920x1080,h264,1420.131333,1867 +/mnt/Downloads/anime/[DanMachi S4][00-11][BIG5][1080P]/[DanMachi S4][11][BIG5][1080P].mp4,[DanMachi S4][11][BIG5][1080P].mp4,457888276,2022-12-19T17:37:46,anime,1920x1080,h264,1415.126322,2588 +/mnt/Downloads/anime/[LoliHouse] Grand Blue S2 - 01 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,[LoliHouse] Grand Blue S2 - 01 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,439235690,2025-07-30T00:27:14,anime,1920x1080,hevc,1440.032,2440 +/mnt/Downloads/anime/[ANi] 終末起點 - 12 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 終末起點 - 12 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,429667880,2025-06-19T00:12:13,anime,1920x1080,h264,1370.152542,2508 +/mnt/Downloads/anime/[ANi] 被逐出隊伍的治癒師,其實是最強 - 05 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 被逐出隊伍的治癒師,其實是最強 - 05 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,280849079,2024-11-03T00:17:21,anime,1920x1080,h264,1404.053333,1600 +/mnt/Downloads/anime/[Nekomoe kissaten][Ao no Hako][15][1080p][JPSC].mp4,[Nekomoe kissaten][Ao no Hako][15][1080p][JPSC].mp4,488712260,2025-01-13T23:56:37,anime,1920x1080,h264,1417.301333,2758 +/mnt/Downloads/anime/[ANi] 遲早是最強的鍊金術師? - 08 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 遲早是最強的鍊金術師? - 08 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,302205805,2025-02-19T13:56:44,anime,1920x1080,h264,1420.032,1702 +/mnt/Downloads/anime/[ANi] 結緣甘神神社 - 15 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 結緣甘神神社 - 15 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,348791244,2025-01-21T23:50:44,anime,1920x1080,h264,1420.074667,1964 +/mnt/Downloads/anime/[ANi] 一拳超人(第三季) - 31 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 一拳超人(第三季) - 31 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,697219450,2025-11-23T23:08:58,anime,1920x1080,h264,1440.960489,3870 +/mnt/Downloads/anime/[ANi] 在地下城尋求邂逅是否搞錯了什麼 第五季 - 12 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 在地下城尋求邂逅是否搞錯了什麼 第五季 - 12 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,547197156,2025-02-07T14:11:22,anime,1920x1080,h264,1419.9812,3082 +/mnt/Downloads/anime/[ANi] 異世界悠閒紀行~邊養娃邊當冒險者~ - 03 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 異世界悠閒紀行~邊養娃邊當冒險者~ - 03 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,360756587,2024-07-15T00:18:19,anime,1920x1080,h264,1430.032911,2018 +/mnt/Downloads/anime/[Nekomoe kissaten&LoliHouse] Dungeon Meshi - 14 [WebRip 1080p HEVC-10bit AAC EAC3 ASSx2].mkv,[Nekomoe kissaten&LoliHouse] Dungeon Meshi - 14 [WebRip 1080p HEVC-10bit AAC EAC3 ASSx2].mkv,445982541,2024-04-07T00:27:32,anime,1920x1080,hevc,1440.023,2477 +/mnt/Downloads/anime/[LoliHouse] Jigoku Sensei Nube 2025 - 16 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,[LoliHouse] Jigoku Sensei Nube 2025 - 16 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,623994632,2026-01-22T07:55:05,anime,1920x1080,hevc,1400.024,3565 +/mnt/Downloads/anime/[ANi] 勇氣爆發 BANG BRAVERN - 07 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 勇氣爆發 BANG BRAVERN - 07 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,712027862,2024-02-22T23:58:33,anime,1920x1080,h264,1420.117333,4011 +"/mnt/Downloads/anime/[Skymoon-Raws] Guild no Uketsukejou desu ga, Zangyou wa Iya nanode Boss wo Solo Toubatsu Shiyou to Omoimasu - 09 [ViuTV][WEB-DL][CHT][SRT][1080p][AVC AAC].mkv","[Skymoon-Raws] Guild no Uketsukejou desu ga, Zangyou wa Iya nanode Boss wo Solo Toubatsu Shiyou to Omoimasu - 09 [ViuTV][WEB-DL][CHT][SRT][1080p][AVC AAC].mkv",317722614,2025-03-08T03:38:12,anime,1920x1080,h264,1445.354,1758 +/mnt/Downloads/anime/[ANi] 妻子變成小學生。 - 09 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 妻子變成小學生。 - 09 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,295492059,2024-11-24T23:58:25,anime,1920x1080,h264,1419.989333,1664 +/mnt/Downloads/anime/[ANi] 無職轉生~到了異世界就拿出真本事 第二季 - 19 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 無職轉生~到了異世界就拿出真本事 第二季 - 19 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,775473950,2024-05-26T23:32:32,anime,1920x1080,h264,1420.022911,4368 +/mnt/Downloads/anime/[ANi] 忍者與殺手的兩人生活 - 05 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 忍者與殺手的兩人生活 - 05 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,384849164,2025-05-09T00:54:26,anime,1920x1080,h264,1419.989333,2168 +/mnt/Downloads/anime/[LoliHouse] Tensei Shitara Slime Datta Ken 3rd Season - 57 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,[LoliHouse] Tensei Shitara Slime Datta Ken 3rd Season - 57 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,520228691,2024-05-31T23:56:58,anime,1920x1080,hevc,1470.079,2831 +/mnt/Downloads/anime/[Lilith-Raws] Kaijuu 8-gou - 01 [Baha][WebDL 1080p AVC AAC][CHT].mp4,[Lilith-Raws] Kaijuu 8-gou - 01 [Baha][WebDL 1080p AVC AAC][CHT].mp4,652272002,2024-04-14T00:43:29,anime,1920x1080,h264,1420.074667,3674 +/mnt/Downloads/anime/《繼母的拖油瓶是我的前女友》#1/《繼母的拖油瓶是我的前女友》#1 (日語原聲)【Ani-One Asia】.mp4,《繼母的拖油瓶是我的前女友》#1 (日語原聲)【Ani-One Asia】.mp4,158992330,2022-07-07T23:59:36,anime,1920x1080,h264,1420.062766,895 +/mnt/Downloads/anime/[ANi] 瞬間治癒卻被當成廢物踢出隊伍的天才治療師,改當無照治療師快樂過活 - 04 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 瞬間治癒卻被當成廢物踢出隊伍的天才治療師,改當無照治療師快樂過活 - 04 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,303817083,2025-04-25T01:32:21,anime,1920x1080,h264,1440.085333,1687 +/mnt/Downloads/anime/[ANi] 記憶縫線 YOUR FORMA - 13 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 記憶縫線 YOUR FORMA - 13 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,888475482,2025-06-26T09:11:07,anime,1920x1080,h264,1425.069622,4987 +/mnt/Downloads/anime/Episode of Skypiea 1080p/[OPFansMaplesnow][one_piece][2018][Special][01][Episode of Skypiea][jap_chs_cht][x264_aac][1080p].mkv,[OPFansMaplesnow][one_piece][2018][Special][01][Episode of Skypiea][jap_chs_cht][x264_aac][1080p].mkv,5729712771,2018-09-18T13:10:25,anime,1920x1080,h264,6285.16,7293 +/mnt/Downloads/anime/[ANi] 異國日記 - 05 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 異國日記 - 05 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,211986129,2026-02-01T23:35:43,anime,1920x1080,h264,1420.074667,1194 +/mnt/Downloads/anime/[ANi] 妻子變成小學生。 - 12 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 妻子變成小學生。 - 12 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,328177127,2024-12-20T12:30:42,anime,1920x1080,h264,1420.074667,1848 +/mnt/Downloads/anime/[Nekomoe kissaten][Tower of God S2][21][1080p][CHS].mp4,[Nekomoe kissaten][Tower of God S2][21][1080p][CHS].mp4,514364983,2024-12-08T14:57:29,anime,1920x1080,h264,1421.107664,2895 +/mnt/Downloads/anime/[ANi] 杖與劍的魔劍譚 - 03 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 杖與劍的魔劍譚 - 03 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,517743293,2024-07-21T09:59:24,anime,1920x1080,h264,1426.070622,2904 +/mnt/Downloads/anime/[LoliHouse] The Seven Deadly Sins the Movie - Prisoners of the Sky/[LoliHouse] The Seven Deadly Sins the Movie - Prisoners of the Sky [WebRip 1080p HEVC-10bit AAC SRTx4].mkv,[LoliHouse] The Seven Deadly Sins the Movie - Prisoners of the Sky [WebRip 1080p HEVC-10bit AAC SRTx4].mkv,3058760726,2019-01-05T12:20:57,anime,1920x1080,hevc,5974.741,4095 +/mnt/Downloads/anime/[Nekomoe kissaten][Ninja Kamui][07][1080p][CHT].mp4,[Nekomoe kissaten][Ninja Kamui][07][1080p][CHT].mp4,361069739,2024-03-25T11:05:17,anime,1920x1080,h264,1381.055,2091 +/mnt/Downloads/anime/[ANi] LAZARUS 拉撒路 - 10 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] LAZARUS 拉撒路 - 10 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,593652285,2025-06-08T23:40:28,anime,1920x1080,h264,1439.978667,3298 +/mnt/Downloads/anime/[ANi] 地獄模式 ~喜歡挑戰特殊成就的玩家在廢設定的異世界成為無雙~ - 05 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 地獄模式 ~喜歡挑戰特殊成就的玩家在廢設定的異世界成為無雙~ - 05 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,445903176,2026-02-07T00:25:28,anime,1920x1080,h264,1425.045333,2503 +/mnt/Downloads/anime/[ANi] 異世界自殺突擊隊 - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 異世界自殺突擊隊 - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,514459464,2024-06-27T09:13:16,anime,1920x1080,h264,1444.138667,2849 +/mnt/Downloads/anime/[KTXP][BAKI][01-13][GB][1080p]/[KTXP][BAKI][04][GB][1080p].mp4,[KTXP][BAKI][04][GB][1080p].mp4,395468949,2023-11-07T16:17:21,anime,1920x1080,h264,1437.243333,2201 +/mnt/Downloads/anime/[KTXP][BAKI][01-13][GB][1080p]/[KTXP][BAKI][05][GB][1080p].mp4,[KTXP][BAKI][05][GB][1080p].mp4,415836936,2023-11-07T16:17:20,anime,1920x1080,h264,1437.115,2314 +/mnt/Downloads/anime/[KTXP][BAKI][01-13][GB][1080p]/[KTXP][BAKI][08][GB][1080p].mp4,[KTXP][BAKI][08][GB][1080p].mp4,430378282,2023-11-07T16:17:24,anime,1920x1080,h264,1437.156667,2395 +/mnt/Downloads/anime/[KTXP][BAKI][01-13][GB][1080p]/[KTXP][BAKI][06][GB][1080p].mp4,[KTXP][BAKI][06][GB][1080p].mp4,452450942,2023-11-07T16:17:24,anime,1920x1080,h264,1437.115,2518 +/mnt/Downloads/anime/[KTXP][BAKI][01-13][GB][1080p]/[KTXP][BAKI][09][GB][1080p].mp4,[KTXP][BAKI][09][GB][1080p].mp4,415767517,2023-11-07T16:17:25,anime,1920x1080,h264,1437.156667,2314 +/mnt/Downloads/anime/[KTXP][BAKI][01-13][GB][1080p]/[KTXP][BAKI][07][GB][1080p].mp4,[KTXP][BAKI][07][GB][1080p].mp4,551719988,2023-11-07T16:17:25,anime,1920x1080,h264,1437.156667,3071 +/mnt/Downloads/anime/[KTXP][BAKI][01-13][GB][1080p]/[KTXP][BAKI][11][GB][1080p].mp4,[KTXP][BAKI][11][GB][1080p].mp4,435847524,2023-11-07T16:17:25,anime,1920x1080,h264,1437.156667,2426 +/mnt/Downloads/anime/[KTXP][BAKI][01-13][GB][1080p]/[KTXP][BAKI][01][GB][1080p].mp4,[KTXP][BAKI][01][GB][1080p].mp4,493706636,2023-11-07T16:17:24,anime,1920x1080,h264,1437.243333,2748 +/mnt/Downloads/anime/[KTXP][BAKI][01-13][GB][1080p]/[KTXP][BAKI][10][GB][1080p].mp4,[KTXP][BAKI][10][GB][1080p].mp4,377999488,2023-11-07T16:17:23,anime,1920x1080,h264,1437.156667,2104 +/mnt/Downloads/anime/[KTXP][BAKI][01-13][GB][1080p]/[KTXP][BAKI][03][GB][1080p].mp4,[KTXP][BAKI][03][GB][1080p].mp4,480708191,2023-11-07T16:17:20,anime,1920x1080,h264,1437.243333,2675 +/mnt/Downloads/anime/[KTXP][BAKI][01-13][GB][1080p]/[KTXP][BAKI][13][GB][1080p].mp4,[KTXP][BAKI][13][GB][1080p].mp4,667648311,2023-11-07T16:17:24,anime,1920x1080,h264,1437.156667,3716 +/mnt/Downloads/anime/[KTXP][BAKI][01-13][GB][1080p]/[KTXP][BAKI][02][GB][1080p].mp4,[KTXP][BAKI][02][GB][1080p].mp4,443719428,2023-11-07T16:17:25,anime,1920x1080,h264,1376.87,2578 +/mnt/Downloads/anime/[KTXP][BAKI][01-13][GB][1080p]/[KTXP][BAKI][12][GB][1080p].mp4,[KTXP][BAKI][12][GB][1080p].mp4,420378149,2023-11-07T16:17:24,anime,1920x1080,h264,1437.156667,2340 +/mnt/Downloads/anime/Castlevania.S03.1080p.NF.WEBRip.DDP5.1.Atmos.x264-NTG[rartv]/Castlevania.S03E09.1080p.NF.WEB-DL.DDP5.1.x264-NTG.mkv,Castlevania.S03E09.1080p.NF.WEB-DL.DDP5.1.x264-NTG.mkv,1185208295,2020-03-07T16:13:41,anime,1920x1080,h264,1520.384,6236 +/mnt/Downloads/anime/Castlevania.S03.1080p.NF.WEBRip.DDP5.1.Atmos.x264-NTG[rartv]/Castlevania.S03E05.1080p.NF.WEB-DL.DDP5.1.x264-NTG.mkv,Castlevania.S03E05.1080p.NF.WEB-DL.DDP5.1.x264-NTG.mkv,817323281,2020-03-07T16:13:45,anime,1920x1080,h264,1342.4,4870 +/mnt/Downloads/anime/Castlevania.S03.1080p.NF.WEBRip.DDP5.1.Atmos.x264-NTG[rartv]/Castlevania.S03E01.1080p.NF.WEB-DL.DDP5.1.x264-NTG.mkv,Castlevania.S03E01.1080p.NF.WEB-DL.DDP5.1.x264-NTG.mkv,1087657338,2020-03-07T14:46:39,anime,1920x1080,h264,1652.384,5265 +/mnt/Downloads/anime/Castlevania.S03.1080p.NF.WEBRip.DDP5.1.Atmos.x264-NTG[rartv]/Castlevania.S03E10.1080p.NF.WEB-DL.DDP5.1.x264-NTG.mkv,Castlevania.S03E10.1080p.NF.WEB-DL.DDP5.1.x264-NTG.mkv,1276804624,2020-03-07T14:39:24,anime,1920x1080,h264,1700.384,6007 +/mnt/Downloads/anime/Castlevania.S03.1080p.NF.WEBRip.DDP5.1.Atmos.x264-NTG[rartv]/Castlevania.S03E08.1080p.NF.WEB-DL.DDP5.1.x264-NTG.mkv,Castlevania.S03E08.1080p.NF.WEB-DL.DDP5.1.x264-NTG.mkv,884494349,2020-03-07T16:12:56,anime,1920x1080,h264,1500.384,4716 +/mnt/Downloads/anime/Castlevania.S03.1080p.NF.WEBRip.DDP5.1.Atmos.x264-NTG[rartv]/Castlevania.S03E04.1080p.NF.WEB-DL.DDP5.1.x264-NTG.mkv,Castlevania.S03E04.1080p.NF.WEB-DL.DDP5.1.x264-NTG.mkv,1152756584,2020-03-07T16:13:40,anime,1920x1080,h264,1876.384,4914 +/mnt/Downloads/anime/Castlevania.S03.1080p.NF.WEBRip.DDP5.1.Atmos.x264-NTG[rartv]/Castlevania.S03E02.1080p.NF.WEB-DL.DDP5.1.x264-NTG.mkv,Castlevania.S03E02.1080p.NF.WEB-DL.DDP5.1.x264-NTG.mkv,1063186050,2020-03-07T16:00:15,anime,1920x1080,h264,1820.384,4672 +/mnt/Downloads/anime/Castlevania.S03.1080p.NF.WEBRip.DDP5.1.Atmos.x264-NTG[rartv]/Castlevania.S03E06.1080p.NF.WEB-DL.DDP5.1.x264-NTG.mkv,Castlevania.S03E06.1080p.NF.WEB-DL.DDP5.1.x264-NTG.mkv,1406490822,2020-03-07T16:13:39,anime,1920x1080,h264,1428.384,7877 +/mnt/Downloads/anime/Castlevania.S03.1080p.NF.WEBRip.DDP5.1.Atmos.x264-NTG[rartv]/Castlevania.S03E03.1080p.NF.WEB-DL.DDP5.1.x264-NTG.mkv,Castlevania.S03E03.1080p.NF.WEB-DL.DDP5.1.x264-NTG.mkv,1171605021,2020-03-07T16:01:47,anime,1920x1080,h264,1692.384,5538 +/mnt/Downloads/anime/Castlevania.S03.1080p.NF.WEBRip.DDP5.1.Atmos.x264-NTG[rartv]/Castlevania.S03E07.1080p.NF.WEB-DL.DDP5.1.x264-NTG.mkv,Castlevania.S03E07.1080p.NF.WEB-DL.DDP5.1.x264-NTG.mkv,931487077,2020-03-07T16:13:40,anime,1920x1080,h264,1530.4,4869 +/mnt/Downloads/anime/[UHA-WINGS][Kimetsu no Yaiba][01-26 END][x264 1080p][CHT]/[UHA-WINGS][Kimetsu no Yaiba][19][x264 1080p][CHT].mp4,[UHA-WINGS][Kimetsu no Yaiba][19][x264 1080p][CHT].mp4,424488397,2019-12-23T14:05:18,anime,1920x1080,h264,1420.132426,2391 +/mnt/Downloads/anime/[UHA-WINGS][Kimetsu no Yaiba][01-26 END][x264 1080p][CHT]/[UHA-WINGS][Kimetsu no Yaiba][13][x264 1080p][CHT].mp4,[UHA-WINGS][Kimetsu no Yaiba][13][x264 1080p][CHT].mp4,523836564,2019-12-23T10:01:04,anime,1920x1080,h264,1420.178866,2950 +/mnt/Downloads/anime/[UHA-WINGS][Kimetsu no Yaiba][01-26 END][x264 1080p][CHT]/[UHA-WINGS][Kimetsu no Yaiba][24][x264 1080p][CHT].mp4,[UHA-WINGS][Kimetsu no Yaiba][24][x264 1080p][CHT].mp4,419672065,2019-12-23T14:04:41,anime,1920x1080,h264,1420.132426,2364 +/mnt/Downloads/anime/[UHA-WINGS][Kimetsu no Yaiba][01-26 END][x264 1080p][CHT]/[UHA-WINGS][Kimetsu no Yaiba][22][x264 1080p][CHT].mp4,[UHA-WINGS][Kimetsu no Yaiba][22][x264 1080p][CHT].mp4,391190050,2019-12-23T10:05:54,anime,1920x1080,h264,1420.132426,2203 +/mnt/Downloads/anime/[UHA-WINGS][Kimetsu no Yaiba][01-26 END][x264 1080p][CHT]/[UHA-WINGS][Kimetsu no Yaiba][15][x264 1080p][CHT].mp4,[UHA-WINGS][Kimetsu no Yaiba][15][x264 1080p][CHT].mp4,429760197,2019-12-23T15:59:20,anime,1920x1080,h264,1420.225306,2420 +/mnt/Downloads/anime/[UHA-WINGS][Kimetsu no Yaiba][01-26 END][x264 1080p][CHT]/[UHA-WINGS][Kimetsu no Yaiba][05][x264 1080p][CHT].mp4,[UHA-WINGS][Kimetsu no Yaiba][05][x264 1080p][CHT].mp4,390100906,2019-12-23T10:04:02,anime,1920x1080,h264,1420.132426,2197 +/mnt/Downloads/anime/[UHA-WINGS][Kimetsu no Yaiba][01-26 END][x264 1080p][CHT]/[UHA-WINGS][Kimetsu no Yaiba][03][x264 1080p][CHT].mp4,[UHA-WINGS][Kimetsu no Yaiba][03][x264 1080p][CHT].mp4,481095362,2019-12-23T10:01:13,anime,1920x1080,h264,1420.132426,2710 +/mnt/Downloads/anime/[UHA-WINGS][Kimetsu no Yaiba][01-26 END][x264 1080p][CHT]/[UHA-WINGS][Kimetsu no Yaiba][09][x264 1080p][CHT].mp4,[UHA-WINGS][Kimetsu no Yaiba][09][x264 1080p][CHT].mp4,503994771,2019-12-23T10:01:18,anime,1920x1080,h264,1420.225306,2838 +/mnt/Downloads/anime/[UHA-WINGS][Kimetsu no Yaiba][01-26 END][x264 1080p][CHT]/[UHA-WINGS][Kimetsu no Yaiba][18][x264 1080p][CHT].mp4,[UHA-WINGS][Kimetsu no Yaiba][18][x264 1080p][CHT].mp4,441125847,2019-12-23T16:27:20,anime,1920x1080,h264,1420.225306,2484 +/mnt/Downloads/anime/[UHA-WINGS][Kimetsu no Yaiba][01-26 END][x264 1080p][CHT]/[UHA-WINGS][Kimetsu no Yaiba][25][x264 1080p][CHT].mp4,[UHA-WINGS][Kimetsu no Yaiba][25][x264 1080p][CHT].mp4,457870787,2019-12-23T10:01:33,anime,1920x1080,h264,1420.178866,2579 +/mnt/Downloads/anime/[UHA-WINGS][Kimetsu no Yaiba][01-26 END][x264 1080p][CHT]/[UHA-WINGS][Kimetsu no Yaiba][12][x264 1080p][CHT].mp4,[UHA-WINGS][Kimetsu no Yaiba][12][x264 1080p][CHT].mp4,431256843,2019-12-23T16:27:19,anime,1920x1080,h264,1420.178866,2429 +/mnt/Downloads/anime/[UHA-WINGS][Kimetsu no Yaiba][01-26 END][x264 1080p][CHT]/[UHA-WINGS][Kimetsu no Yaiba][14][x264 1080p][CHT].mp4,[UHA-WINGS][Kimetsu no Yaiba][14][x264 1080p][CHT].mp4,447915666,2019-12-23T12:25:16,anime,1920x1080,h264,1420.085986,2523 +/mnt/Downloads/anime/[UHA-WINGS][Kimetsu no Yaiba][01-26 END][x264 1080p][CHT]/[UHA-WINGS][Kimetsu no Yaiba][23][x264 1080p][CHT].mp4,[UHA-WINGS][Kimetsu no Yaiba][23][x264 1080p][CHT].mp4,382548884,2019-12-23T10:03:40,anime,1920x1080,h264,1420.225306,2154 +/mnt/Downloads/anime/[UHA-WINGS][Kimetsu no Yaiba][01-26 END][x264 1080p][CHT]/[UHA-WINGS][Kimetsu no Yaiba][04][x264 1080p][CHT].mp4,[UHA-WINGS][Kimetsu no Yaiba][04][x264 1080p][CHT].mp4,402064080,2019-12-23T13:11:16,anime,1920x1080,h264,1420.132426,2264 +/mnt/Downloads/anime/[UHA-WINGS][Kimetsu no Yaiba][01-26 END][x264 1080p][CHT]/[UHA-WINGS][Kimetsu no Yaiba][02][x264 1080p][CHT].mp4,[UHA-WINGS][Kimetsu no Yaiba][02][x264 1080p][CHT].mp4,393605743,2019-12-23T10:03:38,anime,1920x1080,h264,1420.178866,2217 +/mnt/Downloads/anime/[UHA-WINGS][Kimetsu no Yaiba][01-26 END][x264 1080p][CHT]/[UHA-WINGS][Kimetsu no Yaiba][08][x264 1080p][CHT].mp4,[UHA-WINGS][Kimetsu no Yaiba][08][x264 1080p][CHT].mp4,445648083,2019-12-23T12:53:35,anime,1920x1080,h264,1420.225306,2510 +/mnt/Downloads/anime/[UHA-WINGS][Kimetsu no Yaiba][01-26 END][x264 1080p][CHT]/[UHA-WINGS][Kimetsu no Yaiba][20][x264 1080p][CHT].mp4,[UHA-WINGS][Kimetsu no Yaiba][20][x264 1080p][CHT].mp4,441244677,2019-12-23T13:56:15,anime,1920x1080,h264,1420.132426,2485 +/mnt/Downloads/anime/[UHA-WINGS][Kimetsu no Yaiba][01-26 END][x264 1080p][CHT]/[UHA-WINGS][Kimetsu no Yaiba][17][x264 1080p][CHT].mp4,[UHA-WINGS][Kimetsu no Yaiba][17][x264 1080p][CHT].mp4,466592938,2019-12-23T10:00:58,anime,1920x1080,h264,1420.085986,2628 +/mnt/Downloads/anime/[UHA-WINGS][Kimetsu no Yaiba][01-26 END][x264 1080p][CHT]/[UHA-WINGS][Kimetsu no Yaiba][11][x264 1080p][CHT].mp4,[UHA-WINGS][Kimetsu no Yaiba][11][x264 1080p][CHT].mp4,456666111,2019-12-23T10:01:28,anime,1920x1080,h264,1420.225306,2572 +/mnt/Downloads/anime/[UHA-WINGS][Kimetsu no Yaiba][01-26 END][x264 1080p][CHT]/[UHA-WINGS][Kimetsu no Yaiba][26][x264 1080p][CHT].mp4,[UHA-WINGS][Kimetsu no Yaiba][26][x264 1080p][CHT].mp4,403682591,2019-12-23T10:02:23,anime,1920x1080,h264,1450.225488,2226 +/mnt/Downloads/anime/[UHA-WINGS][Kimetsu no Yaiba][01-26 END][x264 1080p][CHT]/[UHA-WINGS][Kimetsu no Yaiba][01][x264 1080p][CHT].mp4,[UHA-WINGS][Kimetsu no Yaiba][01][x264 1080p][CHT].mp4,519564531,2019-12-23T10:01:11,anime,1920x1080,h264,1420.085986,2926 +/mnt/Downloads/anime/[UHA-WINGS][Kimetsu no Yaiba][01-26 END][x264 1080p][CHT]/[UHA-WINGS][Kimetsu no Yaiba][07][x264 1080p][CHT].mp4,[UHA-WINGS][Kimetsu no Yaiba][07][x264 1080p][CHT].mp4,420085043,2019-12-23T10:01:04,anime,1920x1080,h264,1420.178866,2366 +/mnt/Downloads/anime/[UHA-WINGS][Kimetsu no Yaiba][01-26 END][x264 1080p][CHT]/[UHA-WINGS][Kimetsu no Yaiba][16][x264 1080p][CHT].mp4,[UHA-WINGS][Kimetsu no Yaiba][16][x264 1080p][CHT].mp4,440972834,2019-12-23T12:29:33,anime,1920x1080,h264,1420.225306,2483 +/mnt/Downloads/anime/[UHA-WINGS][Kimetsu no Yaiba][01-26 END][x264 1080p][CHT]/[UHA-WINGS][Kimetsu no Yaiba][21][x264 1080p][CHT].mp4,[UHA-WINGS][Kimetsu no Yaiba][21][x264 1080p][CHT].mp4,420221384,2019-12-23T15:07:12,anime,1920x1080,h264,1420.132426,2367 +/mnt/Downloads/anime/[UHA-WINGS][Kimetsu no Yaiba][01-26 END][x264 1080p][CHT]/[UHA-WINGS][Kimetsu no Yaiba][10][x264 1080p][CHT].mp4,[UHA-WINGS][Kimetsu no Yaiba][10][x264 1080p][CHT].mp4,478949672,2019-12-23T10:00:49,anime,1920x1080,h264,1420.178866,2697 +/mnt/Downloads/anime/[UHA-WINGS][Kimetsu no Yaiba][01-26 END][x264 1080p][CHT]/[UHA-WINGS][Kimetsu no Yaiba][06][x264 1080p][CHT].mp4,[UHA-WINGS][Kimetsu no Yaiba][06][x264 1080p][CHT].mp4,379118816,2019-12-23T10:05:53,anime,1920x1080,h264,1420.178866,2135 +/mnt/Downloads/anime/[ANi] 記憶縫線 YOUR FORMA - 08 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 記憶縫線 YOUR FORMA - 08 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,680979155,2025-05-22T00:42:02,anime,1920x1080,h264,1425.069622,3822 +/mnt/Downloads/anime/[Sakurato] Okinawa de Suki ni Natta Ko ga Hougen Sugite Tsura Sugiru [01][HEVC-10bit 1080p AAC][CHS&CHT&JPN].mkv,[Sakurato] Okinawa de Suki ni Natta Ko ga Hougen Sugite Tsura Sugiru [01][HEVC-10bit 1080p AAC][CHS&CHT&JPN].mkv,550948117,2025-01-12T01:21:31,anime,1920x1080,hevc,1422.106,3099 +/mnt/Downloads/anime/[ANi] 靠廢柴技能【狀態異常】成為最強的我將蹂躪一切 - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 靠廢柴技能【狀態異常】成為最強的我將蹂躪一切 - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,574131628,2024-07-11T23:43:10,anime,1920x1080,h264,1449.984,3167 +/mnt/Downloads/anime/[LoliHouse] Hikaru ga Shinda Natsu - 01 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,[LoliHouse] Hikaru ga Shinda Natsu - 01 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,943050373,2025-07-10T09:29:07,anime,1920x1080,hevc,1377.14,5478 +/mnt/Downloads/anime/[Lilith-Raws] Mushoku Tensei S02 - 13 [Baha][WebDL 1080p AVC AAC][CHT].mp4,[Lilith-Raws] Mushoku Tensei S02 - 13 [Baha][WebDL 1080p AVC AAC][CHT].mp4,654863024,2024-04-07T23:34:01,anime,1920x1080,h264,1420.096,3689 +/mnt/Downloads/anime/[U3-Web] Kabaneri of the Iron Fortress - The Battle of Unato (2019) [Movie][NFLX WEB-DL 1080p AVC E-AC-3 DDP5.1]/[U3-Web] Koutetsujou no Kabaneri Unato Kessen - 01 [NFLX WEB-DL 1080p AVC DDP5.1].mkv,[U3-Web] Koutetsujou no Kabaneri Unato Kessen - 01 [NFLX WEB-DL 1080p AVC DDP5.1].mkv,562540562,2019-05-11T15:50:03,anime,1920x1080,h264,1545.632,2911 +/mnt/Downloads/anime/[U3-Web] Kabaneri of the Iron Fortress - The Battle of Unato (2019) [Movie][NFLX WEB-DL 1080p AVC E-AC-3 DDP5.1]/[U3-Web] Koutetsujou no Kabaneri Unato Kessen - 02 [NFLX WEB-DL 1080p AVC DDP5.1].mkv,[U3-Web] Koutetsujou no Kabaneri Unato Kessen - 02 [NFLX WEB-DL 1080p AVC DDP5.1].mkv,579242177,2019-05-11T15:50:06,anime,1920x1080,h264,1548.704,2992 +/mnt/Downloads/anime/[U3-Web] Kabaneri of the Iron Fortress - The Battle of Unato (2019) [Movie][NFLX WEB-DL 1080p AVC E-AC-3 DDP5.1]/[U3-Web] Koutetsujou no Kabaneri Unato Kessen - 03 [NFLX WEB-DL 1080p AVC DDP5.1].mkv,[U3-Web] Koutetsujou no Kabaneri Unato Kessen - 03 [NFLX WEB-DL 1080p AVC DDP5.1].mkv,814950483,2019-05-11T15:50:06,anime,1920x1080,h264,1843.232,3537 +/mnt/Downloads/anime/[heibaiSub] Arafou Otoko no Isekai Tsuuhan Seikatsu [09] [WebRip] [AVC-8bit 1080P AAC][CHT&JPN].mp4,[heibaiSub] Arafou Otoko no Isekai Tsuuhan Seikatsu [09] [WebRip] [AVC-8bit 1080P AAC][CHT&JPN].mp4,426811690,2025-03-15T16:50:03,anime,1920x1080,h264,1420.062993,2404 +/mnt/Downloads/anime/[ANi] 膽大黨 第二季 - 24 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 膽大黨 第二季 - 24 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,827332906,2025-09-18T23:09:00,anime,1920x1080,h264,1415.434989,4676 +/mnt/Downloads/anime/[ANi] 差點在迷宮深處被信任的夥伴殺掉,但靠著天賜技能「無限扭蛋」獲得等級 9999 的夥伴,我要向前隊友和世界展開復仇&「給他們好看!」 - 08 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 差點在迷宮深處被信任的夥伴殺掉,但靠著天賜技能「無限扭蛋」獲得等級 9999 的夥伴,我要向前隊友和世界展開復仇&「給他們好看!」 - 08 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,400986420,2025-11-22T01:22:25,anime,1920x1080,h264,1431.033911,2241 +/mnt/Downloads/anime/[LoliHouse] Saikyou Tank no Meikyuu Kouryaku - 01 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,[LoliHouse] Saikyou Tank no Meikyuu Kouryaku - 01 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,347317862,2024-01-18T12:43:31,anime,1920x1080,hevc,1401.417,1982 +/mnt/Downloads/anime/[ANi] 我獨自升級 - 08 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 我獨自升級 - 08 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,628303502,2024-03-03T00:32:29,anime,1920x1080,h264,1425.322667,3526 +/mnt/Downloads/anime/[LoliHouse] Hazure Waku no Joutaiijou Sukiru - 06 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,[LoliHouse] Hazure Waku no Joutaiijou Sukiru - 06 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,658551937,2024-08-15T23:41:49,anime,1920x1080,hevc,1449.993,3633 +"/mnt/Downloads/anime/爱,死亡和机器人S03.Love,Death.and.Robots.2022.1080p.WEB-DL.x265.AC3£cXcY@FRDS/Love,Death.and.Robots.S03E03.2022.1080p.WEB-DL.x265.10bit.AC3£cXcY@FRDS.mkv","Love,Death.and.Robots.S03E03.2022.1080p.WEB-DL.x265.10bit.AC3£cXcY@FRDS.mkv",735355624,2023-11-07T12:27:53,anime,1920x960,hevc,1042.72,5641 +"/mnt/Downloads/anime/爱,死亡和机器人S03.Love,Death.and.Robots.2022.1080p.WEB-DL.x265.AC3£cXcY@FRDS/Love,Death.and.Robots.S03E07.2022.1080p.WEB-DL.x265.10bit.AC3£cXcY@FRDS.mkv","Love,Death.and.Robots.S03E07.2022.1080p.WEB-DL.x265.10bit.AC3£cXcY@FRDS.mkv",391354547,2023-11-07T12:28:00,anime,1920x960,hevc,644.704,4856 +"/mnt/Downloads/anime/爱,死亡和机器人S03.Love,Death.and.Robots.2022.1080p.WEB-DL.x265.AC3£cXcY@FRDS/Love,Death.and.Robots.S03E04.2022.1080p.WEB-DL.x265.10bit.AC3£cXcY@FRDS.mkv","Love,Death.and.Robots.S03E04.2022.1080p.WEB-DL.x265.10bit.AC3£cXcY@FRDS.mkv",233427167,2023-11-07T12:27:50,anime,1920x960,hevc,436.704,4276 +"/mnt/Downloads/anime/爱,死亡和机器人S03.Love,Death.and.Robots.2022.1080p.WEB-DL.x265.AC3£cXcY@FRDS/Love,Death.and.Robots.S03E08.2022.1080p.WEB-DL.x265.10bit.AC3£cXcY@FRDS.mkv","Love,Death.and.Robots.S03E08.2022.1080p.WEB-DL.x265.10bit.AC3£cXcY@FRDS.mkv",585294052,2023-11-07T12:27:52,anime,1920x960,hevc,904.704,5175 +"/mnt/Downloads/anime/爱,死亡和机器人S03.Love,Death.and.Robots.2022.1080p.WEB-DL.x265.AC3£cXcY@FRDS/Love,Death.and.Robots.S03E06.2022.1080p.WEB-DL.x265.10bit.AC3£cXcY@FRDS.mkv","Love,Death.and.Robots.S03E06.2022.1080p.WEB-DL.x265.10bit.AC3£cXcY@FRDS.mkv",673442775,2023-11-07T12:27:56,anime,1920x960,hevc,1044.704,5157 +"/mnt/Downloads/anime/爱,死亡和机器人S03.Love,Death.and.Robots.2022.1080p.WEB-DL.x265.AC3£cXcY@FRDS/Love,Death.and.Robots.S03E02.2022.1080p.WEB-DL.x265.10bit.AC3£cXcY@FRDS.mkv","Love,Death.and.Robots.S03E02.2022.1080p.WEB-DL.x265.10bit.AC3£cXcY@FRDS.mkv",901694052,2023-11-07T12:27:55,anime,1920x960,hevc,1362.688,5293 +"/mnt/Downloads/anime/爱,死亡和机器人S03.Love,Death.and.Robots.2022.1080p.WEB-DL.x265.AC3£cXcY@FRDS/Love,Death.and.Robots.S03E05.2022.1080p.WEB-DL.x265.10bit.AC3£cXcY@FRDS.mkv","Love,Death.and.Robots.S03E05.2022.1080p.WEB-DL.x265.10bit.AC3£cXcY@FRDS.mkv",560624812,2023-11-07T12:27:52,anime,1920x960,hevc,830.688,5399 +"/mnt/Downloads/anime/爱,死亡和机器人S03.Love,Death.and.Robots.2022.1080p.WEB-DL.x265.AC3£cXcY@FRDS/Love,Death.and.Robots.S03E01.2022.1080p.WEB-DL.x265.10bit.AC3£cXcY@FRDS.mkv","Love,Death.and.Robots.S03E01.2022.1080p.WEB-DL.x265.10bit.AC3£cXcY@FRDS.mkv",417159074,2023-11-07T12:27:55,anime,1920x960,hevc,640.224,5212 +"/mnt/Downloads/anime/爱,死亡和机器人S03.Love,Death.and.Robots.2022.1080p.WEB-DL.x265.AC3£cXcY@FRDS/Love,Death.and.Robots.S03E09.2022.1080p.WEB-DL.x265.10bit.AC3£cXcY@FRDS.mkv","Love,Death.and.Robots.S03E09.2022.1080p.WEB-DL.x265.10bit.AC3£cXcY@FRDS.mkv",807306054,2023-11-07T12:27:56,anime,1920x960,hevc,1036.448,6231 +/mnt/Downloads/anime/[ANi] 歲月流逝飯菜依舊美味 - 11 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 歲月流逝飯菜依舊美味 - 11 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,417045045,2025-06-21T23:55:54,anime,1920x1080,h264,1445.098667,2308 +/mnt/Downloads/anime/[ANi] GNOSIA - 03 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] GNOSIA - 03 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,660684096,2025-10-26T01:07:36,anime,1920x1080,h264,1595.031078,3313 +/mnt/Downloads/anime/[ANi] 王者天下 第六季 - 08 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 王者天下 第六季 - 08 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,558827118,2025-11-25T00:00:16,anime,1920x1080,h264,1495.018667,2990 +/mnt/Downloads/anime/[Nekomoe kissaten][Ninja Kamui][12][1080p][CHT].mp4,[Nekomoe kissaten][Ninja Kamui][12][1080p][CHT].mp4,378385825,2024-05-01T07:52:40,anime,1920x1080,h264,1381.546833,2191 +/mnt/Downloads/anime/[BeanSub&FZSD][Kimetsu_no_Yaiba][59][BIG5][1080P][x264_AAC].mp4,[BeanSub&FZSD][Kimetsu_no_Yaiba][59][BIG5][1080P][x264_AAC].mp4,404432536,2024-06-03T00:15:19,anime,1920x1080,h264,1420.016327,2278 +/mnt/Downloads/anime/[ANi] 魔術師庫諾看得見一切 - 04 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 魔術師庫諾看得見一切 - 04 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,379020501,2026-01-18T15:21:11,anime,1920x1080,h264,1419.9812,2135 +/mnt/Downloads/anime/[LoliHouse] Kizetsu Yuusha to Ansatsu Hime - 01 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,[LoliHouse] Kizetsu Yuusha to Ansatsu Hime - 01 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,606779531,2025-09-23T00:44:21,anime,1920x1080,hevc,1420.109,3418 +/mnt/Downloads/anime/[ANi] 聽說你們要結婚!? - 11 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 聽說你們要結婚!? - 11 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,370327162,2024-12-20T12:58:54,anime,1920x1080,h264,1420.032,2086 +/mnt/Downloads/anime/[Sakurato] Dungeon Meshi [10][AVC-8bit 1080p AAC][CHT].mp4,[Sakurato] Dungeon Meshi [10][AVC-8bit 1080p AAC][CHT].mp4,471170543,2024-03-12T11:11:19,anime,1920x1080,h264,1502.016,2509 +"/mnt/Downloads/anime/[Sakurato] Haite Kudasai, Takamine-san [01][AVC-8bit 1080p AAC][CHT&JPN].mp4","[Sakurato] Haite Kudasai, Takamine-san [01][AVC-8bit 1080p AAC][CHT&JPN].mp4",405618591,2025-04-10T01:33:40,anime,1920x1080,h264,1420.202,2284 +/mnt/Downloads/anime/[LoliHouse] Levius [WebRip 1080p HEVC-10bit AAC SRTx4]/[LoliHouse] Levius - 11 [WebRip 1080p HEVC-10bit AAC SRTx4].mkv,[LoliHouse] Levius - 11 [WebRip 1080p HEVC-10bit AAC SRTx4].mkv,573467024,2019-11-30T13:00:30,anime,1920x1080,hevc,1439.488,3187 +/mnt/Downloads/anime/[LoliHouse] Levius [WebRip 1080p HEVC-10bit AAC SRTx4]/[LoliHouse] Levius - 06 [WebRip 1080p HEVC-10bit AAC SRTx4].mkv,[LoliHouse] Levius - 06 [WebRip 1080p HEVC-10bit AAC SRTx4].mkv,725937801,2019-11-30T12:59:36,anime,1920x1080,hevc,1561.621,3718 +/mnt/Downloads/anime/[LoliHouse] Levius [WebRip 1080p HEVC-10bit AAC SRTx4]/[LoliHouse] Levius - 02 [WebRip 1080p HEVC-10bit AAC SRTx4].mkv,[LoliHouse] Levius - 02 [WebRip 1080p HEVC-10bit AAC SRTx4].mkv,480118233,2019-11-30T12:59:20,anime,1920x1080,hevc,1491.541,2575 +/mnt/Downloads/anime/[LoliHouse] Levius [WebRip 1080p HEVC-10bit AAC SRTx4]/[LoliHouse] Levius - 07 [WebRip 1080p HEVC-10bit AAC SRTx4].mkv,[LoliHouse] Levius - 07 [WebRip 1080p HEVC-10bit AAC SRTx4].mkv,618219136,2019-11-30T12:59:33,anime,1920x1080,hevc,1579.626,3130 +/mnt/Downloads/anime/[LoliHouse] Levius [WebRip 1080p HEVC-10bit AAC SRTx4]/[LoliHouse] Levius - 03 [WebRip 1080p HEVC-10bit AAC SRTx4].mkv,[LoliHouse] Levius - 03 [WebRip 1080p HEVC-10bit AAC SRTx4].mkv,650262631,2019-11-30T12:59:31,anime,1920x1080,hevc,1511.552,3441 +/mnt/Downloads/anime/[LoliHouse] Levius [WebRip 1080p HEVC-10bit AAC SRTx4]/[LoliHouse] Levius - 10 [WebRip 1080p HEVC-10bit AAC SRTx4].mkv,[LoliHouse] Levius - 10 [WebRip 1080p HEVC-10bit AAC SRTx4].mkv,1021250289,2019-11-30T12:59:28,anime,1920x1080,hevc,1449.493,5636 +/mnt/Downloads/anime/[LoliHouse] Levius [WebRip 1080p HEVC-10bit AAC SRTx4]/[LoliHouse] Levius - 05 [WebRip 1080p HEVC-10bit AAC SRTx4].mkv,[LoliHouse] Levius - 05 [WebRip 1080p HEVC-10bit AAC SRTx4].mkv,599564038,2019-11-30T12:59:33,anime,1920x1080,hevc,1487.53,3224 +/mnt/Downloads/anime/[LoliHouse] Levius [WebRip 1080p HEVC-10bit AAC SRTx4]/[LoliHouse] Levius - 01 [WebRip 1080p HEVC-10bit AAC SRTx4].mkv,[LoliHouse] Levius - 01 [WebRip 1080p HEVC-10bit AAC SRTx4].mkv,529864861,2019-11-30T12:59:29,anime,1920x1080,hevc,1443.498,2936 +/mnt/Downloads/anime/[LoliHouse] Levius [WebRip 1080p HEVC-10bit AAC SRTx4]/[LoliHouse] Levius - 09 [WebRip 1080p HEVC-10bit AAC SRTx4].mkv,[LoliHouse] Levius - 09 [WebRip 1080p HEVC-10bit AAC SRTx4].mkv,477743690,2019-11-30T12:59:36,anime,1920x1080,hevc,1461.504,2615 +/mnt/Downloads/anime/[LoliHouse] Levius [WebRip 1080p HEVC-10bit AAC SRTx4]/[LoliHouse] Levius - 12 [WebRip 1080p HEVC-10bit AAC SRTx4].mkv,[LoliHouse] Levius - 12 [WebRip 1080p HEVC-10bit AAC SRTx4].mkv,441836748,2019-11-30T12:59:16,anime,1920x1080,hevc,1441.493,2452 +/mnt/Downloads/anime/[LoliHouse] Levius [WebRip 1080p HEVC-10bit AAC SRTx4]/[LoliHouse] Levius - 08 [WebRip 1080p HEVC-10bit AAC SRTx4].mkv,[LoliHouse] Levius - 08 [WebRip 1080p HEVC-10bit AAC SRTx4].mkv,535192349,2019-11-30T12:59:30,anime,1920x1080,hevc,1563.605,2738 +/mnt/Downloads/anime/[LoliHouse] Levius [WebRip 1080p HEVC-10bit AAC SRTx4]/[LoliHouse] Levius - 04 [WebRip 1080p HEVC-10bit AAC SRTx4].mkv,[LoliHouse] Levius - 04 [WebRip 1080p HEVC-10bit AAC SRTx4].mkv,581988776,2019-11-30T12:59:35,anime,1920x1080,hevc,1455.509,3198 +/mnt/Downloads/anime/[ANi] 我獨自升級 第二季 -起於闇影- - 13 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 我獨自升級 第二季 -起於闇影- - 13 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,542509865,2025-01-05T00:44:41,anime,1920x1080,h264,1425.28,3045 +/mnt/Downloads/anime/[ANi] 素材採集家的異世界旅行記 - 05 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 素材採集家的異世界旅行記 - 05 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,330673313,2025-10-28T00:57:01,anime,1920x1080,h264,1420.064622,1862 +/mnt/Downloads/anime/[Feibanyama] Fate-strange Fake - 05 [IQIYI WebRip 2160p HEVC OPUS Dual-Audio Multi-Subs].mkv,[Feibanyama] Fate-strange Fake - 05 [IQIYI WebRip 2160p HEVC OPUS Dual-Audio Multi-Subs].mkv,837595113,2026-02-01T01:33:56,anime,3840x2160,hevc,1421.6,4713 +/mnt/Downloads/anime/[ANi] 身為暗殺者的我明顯比勇者還強 - 07 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 身為暗殺者的我明顯比勇者還強 - 07 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,490612642,2025-11-18T00:16:41,anime,1920x1080,h264,1430.032911,2744 +/mnt/Downloads/anime/[LoliHouse] Hitoribocchi no Isekai Kouryaku - 10 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,[LoliHouse] Hitoribocchi no Isekai Kouryaku - 10 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,602652722,2024-12-01T00:16:30,anime,1920x1080,hevc,1420.074,3395 +/mnt/Downloads/anime/[KissSub][Dosanko Gal wa Namara Menkoi][12][1080P][BIG5][MP4].mp4,[KissSub][Dosanko Gal wa Namara Menkoi][12][1080P][BIG5][MP4].mp4,173541750,2024-03-28T12:06:14,anime,1920x1080,h264,1439.961497,964 +/mnt/Downloads/anime/[ANi] 膽大黨 第二季 - 18 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 膽大黨 第二季 - 18 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,664450834,2025-08-08T00:15:31,anime,1920x1080,h264,1447.091622,3673 +/mnt/Downloads/anime/[Nekomoe kissaten][Chi. Chikyuu no Undou ni Tsuite][05][1080p][JPSC].mp4,[Nekomoe kissaten][Chi. Chikyuu no Undou ni Tsuite][05][1080p][JPSC].mp4,210649242,2024-11-22T11:21:32,anime,1920x1080,h264,1502.122667,1121 +/mnt/Downloads/anime/[ANi] 轉生貴族憑鑑定技能扭轉人生 第二季 - 20 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 轉生貴族憑鑑定技能扭轉人生 第二季 - 20 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,420130943,2024-11-24T23:58:24,anime,1920x1080,h264,1420.032,2366 +/mnt/Downloads/anime/[ANi] 盾之勇者成名錄 Season 4 - 08 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 盾之勇者成名錄 Season 4 - 08 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,544522772,2025-08-28T00:33:21,anime,1920x1080,h264,1420.032,3067 +/mnt/Downloads/anime/The.Monkey.King.2023.Netflix.WEB-DL.1080p.x264.DDP-Enichi/The.Monkey.King.2023.Netflix.WEB-DL.1080p.x264.DDP-Enichi.mkv,The.Monkey.King.2023.Netflix.WEB-DL.1080p.x264.DDP-Enichi.mkv,5382326295,2023-08-18T14:11:13,anime,1920x1080,h264,5790.752,7435 +/mnt/Downloads/anime/[Nekomoe kissaten][Your Forma][03][1080p][JPTC].mp4,[Nekomoe kissaten][Your Forma][03][1080p][JPTC].mp4,401925061,2025-04-18T00:22:43,anime,1920x1080,h264,1425.09,2256 +/mnt/Downloads/anime/[Kamigami] Kaze ga Tsuyoku Fuiteiru [BD 1080p x265 Ma10p AAC]/[Kamigami] Kaze ga Tsuyoku Fuiteiru - 04 [BD 1080p x265 Ma10p AAC].mkv,[Kamigami] Kaze ga Tsuyoku Fuiteiru - 04 [BD 1080p x265 Ma10p AAC].mkv,490695613,2023-01-03T17:59:25,anime,1920x1080,hevc,1367.038,2871 +/mnt/Downloads/anime/[Kamigami] Kaze ga Tsuyoku Fuiteiru [BD 1080p x265 Ma10p AAC]/[Kamigami] Kaze ga Tsuyoku Fuiteiru - 02 [BD 1080p x265 Ma10p AAC].mkv,[Kamigami] Kaze ga Tsuyoku Fuiteiru - 02 [BD 1080p x265 Ma10p AAC].mkv,450478708,2023-01-03T17:59:33,anime,1920x1080,hevc,1365.929,2638 +/mnt/Downloads/anime/[Kamigami] Kaze ga Tsuyoku Fuiteiru [BD 1080p x265 Ma10p AAC]/[Kamigami] Kaze ga Tsuyoku Fuiteiru - 21 [BD 1080p x265 Ma10p AAC].mkv,[Kamigami] Kaze ga Tsuyoku Fuiteiru - 21 [BD 1080p x265 Ma10p AAC].mkv,519618088,2023-01-03T17:59:27,anime,1920x1080,hevc,1366.036,3043 +/mnt/Downloads/anime/[Kamigami] Kaze ga Tsuyoku Fuiteiru [BD 1080p x265 Ma10p AAC]/[Kamigami] Kaze ga Tsuyoku Fuiteiru - 19 [BD 1080p x265 Ma10p AAC].mkv,[Kamigami] Kaze ga Tsuyoku Fuiteiru - 19 [BD 1080p x265 Ma10p AAC].mkv,559199891,2023-01-03T17:59:25,anime,1920x1080,hevc,1365.95,3275 +/mnt/Downloads/anime/[Kamigami] Kaze ga Tsuyoku Fuiteiru [BD 1080p x265 Ma10p AAC]/[Kamigami] Kaze ga Tsuyoku Fuiteiru - 15 [BD 1080p x265 Ma10p AAC].mkv,[Kamigami] Kaze ga Tsuyoku Fuiteiru - 15 [BD 1080p x265 Ma10p AAC].mkv,388832799,2023-01-03T17:59:31,anime,1920x1080,hevc,1366.078,2277 +/mnt/Downloads/anime/[Kamigami] Kaze ga Tsuyoku Fuiteiru [BD 1080p x265 Ma10p AAC]/[Kamigami] Kaze ga Tsuyoku Fuiteiru - 13 [BD 1080p x265 Ma10p AAC].mkv,[Kamigami] Kaze ga Tsuyoku Fuiteiru - 13 [BD 1080p x265 Ma10p AAC].mkv,898838354,2023-01-03T17:59:34,anime,1920x1080,hevc,1367.081,5259 +/mnt/Downloads/anime/[Kamigami] Kaze ga Tsuyoku Fuiteiru [BD 1080p x265 Ma10p AAC]/[Kamigami] Kaze ga Tsuyoku Fuiteiru - 08 [BD 1080p x265 Ma10p AAC].mkv,[Kamigami] Kaze ga Tsuyoku Fuiteiru - 08 [BD 1080p x265 Ma10p AAC].mkv,344178892,2023-01-03T17:59:29,anime,1920x1080,hevc,1366.036,2015 +/mnt/Downloads/anime/[Kamigami] Kaze ga Tsuyoku Fuiteiru [BD 1080p x265 Ma10p AAC]/[Kamigami] Kaze ga Tsuyoku Fuiteiru - 05 [BD 1080p x265 Ma10p AAC].mkv,[Kamigami] Kaze ga Tsuyoku Fuiteiru - 05 [BD 1080p x265 Ma10p AAC].mkv,409429177,2023-01-03T17:59:32,anime,1920x1080,hevc,1365.95,2397 +/mnt/Downloads/anime/[Kamigami] Kaze ga Tsuyoku Fuiteiru [BD 1080p x265 Ma10p AAC]/[Kamigami] Kaze ga Tsuyoku Fuiteiru - 03 [BD 1080p x265 Ma10p AAC].mkv,[Kamigami] Kaze ga Tsuyoku Fuiteiru - 03 [BD 1080p x265 Ma10p AAC].mkv,544275564,2023-01-03T17:59:31,anime,1920x1080,hevc,1366.164,3187 +/mnt/Downloads/anime/[Kamigami] Kaze ga Tsuyoku Fuiteiru [BD 1080p x265 Ma10p AAC]/[Kamigami] Kaze ga Tsuyoku Fuiteiru - 20 [BD 1080p x265 Ma10p AAC].mkv,[Kamigami] Kaze ga Tsuyoku Fuiteiru - 20 [BD 1080p x265 Ma10p AAC].mkv,421391506,2023-01-03T17:59:26,anime,1920x1080,hevc,1367.038,2466 +/mnt/Downloads/anime/[Kamigami] Kaze ga Tsuyoku Fuiteiru [BD 1080p x265 Ma10p AAC]/[Kamigami] Kaze ga Tsuyoku Fuiteiru - 18 [BD 1080p x265 Ma10p AAC].mkv,[Kamigami] Kaze ga Tsuyoku Fuiteiru - 18 [BD 1080p x265 Ma10p AAC].mkv,292453189,2023-01-03T17:59:22,anime,1920x1080,hevc,1367.038,1711 +/mnt/Downloads/anime/[Kamigami] Kaze ga Tsuyoku Fuiteiru [BD 1080p x265 Ma10p AAC]/[Kamigami] Kaze ga Tsuyoku Fuiteiru - 14 [BD 1080p x265 Ma10p AAC].mkv,[Kamigami] Kaze ga Tsuyoku Fuiteiru - 14 [BD 1080p x265 Ma10p AAC].mkv,428642815,2023-01-03T17:59:32,anime,1920x1080,hevc,1365.993,2510 +/mnt/Downloads/anime/[Kamigami] Kaze ga Tsuyoku Fuiteiru [BD 1080p x265 Ma10p AAC]/[Kamigami] Kaze ga Tsuyoku Fuiteiru - 12 [BD 1080p x265 Ma10p AAC].mkv,[Kamigami] Kaze ga Tsuyoku Fuiteiru - 12 [BD 1080p x265 Ma10p AAC].mkv,580584673,2023-01-03T17:59:31,anime,1920x1080,hevc,1366.078,3400 +/mnt/Downloads/anime/[Kamigami] Kaze ga Tsuyoku Fuiteiru [BD 1080p x265 Ma10p AAC]/[Kamigami] Kaze ga Tsuyoku Fuiteiru - 09 [BD 1080p x265 Ma10p AAC].mkv,[Kamigami] Kaze ga Tsuyoku Fuiteiru - 09 [BD 1080p x265 Ma10p AAC].mkv,433941086,2023-01-03T17:59:31,anime,1920x1080,hevc,1366.036,2541 +/mnt/Downloads/anime/[Kamigami] Kaze ga Tsuyoku Fuiteiru [BD 1080p x265 Ma10p AAC]/[Kamigami] Kaze ga Tsuyoku Fuiteiru - 06 [BD 1080p x265 Ma10p AAC].mkv,[Kamigami] Kaze ga Tsuyoku Fuiteiru - 06 [BD 1080p x265 Ma10p AAC].mkv,436804754,2023-01-03T17:59:31,anime,1920x1080,hevc,1365.95,2558 +/mnt/Downloads/anime/[Kamigami] Kaze ga Tsuyoku Fuiteiru [BD 1080p x265 Ma10p AAC]/[Kamigami] Kaze ga Tsuyoku Fuiteiru - 23 [BD 1080p x265 Ma10p AAC].mkv,[Kamigami] Kaze ga Tsuyoku Fuiteiru - 23 [BD 1080p x265 Ma10p AAC].mkv,516962674,2023-01-03T17:59:31,anime,1920x1080,hevc,1366.121,3027 +/mnt/Downloads/anime/[Kamigami] Kaze ga Tsuyoku Fuiteiru [BD 1080p x265 Ma10p AAC]/[Kamigami] Kaze ga Tsuyoku Fuiteiru - 17 [BD 1080p x265 Ma10p AAC].mkv,[Kamigami] Kaze ga Tsuyoku Fuiteiru - 17 [BD 1080p x265 Ma10p AAC].mkv,352252573,2023-01-03T17:59:32,anime,1920x1080,hevc,1365.993,2062 +/mnt/Downloads/anime/[Kamigami] Kaze ga Tsuyoku Fuiteiru [BD 1080p x265 Ma10p AAC]/[Kamigami] Kaze ga Tsuyoku Fuiteiru - 11 [BD 1080p x265 Ma10p AAC].mkv,[Kamigami] Kaze ga Tsuyoku Fuiteiru - 11 [BD 1080p x265 Ma10p AAC].mkv,393915945,2023-01-03T17:59:20,anime,1920x1080,hevc,1366.206,2306 +/mnt/Downloads/anime/[Kamigami] Kaze ga Tsuyoku Fuiteiru [BD 1080p x265 Ma10p AAC]/Bonus/[Kamigami] Kaze ga Tsuyoku Fuiteiru - NCED2 [BD 1080p x265 Ma10p AAC].mp4,[Kamigami] Kaze ga Tsuyoku Fuiteiru - NCED2 [BD 1080p x265 Ma10p AAC].mp4,18351663,2023-01-03T17:59:10,anime,1920x1080,hevc,92.16,1593 +/mnt/Downloads/anime/[Kamigami] Kaze ga Tsuyoku Fuiteiru [BD 1080p x265 Ma10p AAC]/Bonus/[Kamigami] Kaze ga Tsuyoku Fuiteiru - NCOP1 [BD 1080p x265 Ma10p AAC].mp4,[Kamigami] Kaze ga Tsuyoku Fuiteiru - NCOP1 [BD 1080p x265 Ma10p AAC].mp4,52525184,2023-01-03T17:57:58,anime,1920x1080,hevc,92.16,4559 +/mnt/Downloads/anime/[Kamigami] Kaze ga Tsuyoku Fuiteiru [BD 1080p x265 Ma10p AAC]/Bonus/[Kamigami] Kaze ga Tsuyoku Fuiteiru - NCOP2 [BD 1080p x265 Ma10p AAC].mp4,[Kamigami] Kaze ga Tsuyoku Fuiteiru - NCOP2 [BD 1080p x265 Ma10p AAC].mp4,45063293,2023-01-03T17:58:13,anime,1920x1080,hevc,92.16,3911 +/mnt/Downloads/anime/[Kamigami] Kaze ga Tsuyoku Fuiteiru [BD 1080p x265 Ma10p AAC]/Bonus/[Kamigami] Kaze ga Tsuyoku Fuiteiru - NCED1 [BD 1080p x265 Ma10p AAC].mp4,[Kamigami] Kaze ga Tsuyoku Fuiteiru - NCED1 [BD 1080p x265 Ma10p AAC].mp4,52355613,2023-01-03T17:59:12,anime,1920x1080,hevc,92.16,4544 +/mnt/Downloads/anime/[Kamigami] Kaze ga Tsuyoku Fuiteiru [BD 1080p x265 Ma10p AAC]/[Kamigami] Kaze ga Tsuyoku Fuiteiru - 07 [BD 1080p x265 Ma10p AAC].mkv,[Kamigami] Kaze ga Tsuyoku Fuiteiru - 07 [BD 1080p x265 Ma10p AAC].mkv,637982315,2023-01-03T17:59:29,anime,1920x1080,hevc,1367.038,3733 +/mnt/Downloads/anime/[Kamigami] Kaze ga Tsuyoku Fuiteiru [BD 1080p x265 Ma10p AAC]/[Kamigami] Kaze ga Tsuyoku Fuiteiru - 22 [BD 1080p x265 Ma10p AAC].mkv,[Kamigami] Kaze ga Tsuyoku Fuiteiru - 22 [BD 1080p x265 Ma10p AAC].mkv,552294825,2023-01-03T17:59:26,anime,1920x1080,hevc,1367.038,3232 +/mnt/Downloads/anime/[Kamigami] Kaze ga Tsuyoku Fuiteiru [BD 1080p x265 Ma10p AAC]/[Kamigami] Kaze ga Tsuyoku Fuiteiru - 01 [BD 1080p x265 Ma10p AAC].mkv,[Kamigami] Kaze ga Tsuyoku Fuiteiru - 01 [BD 1080p x265 Ma10p AAC].mkv,341349480,2023-01-03T17:58:52,anime,1920x1080,hevc,1367.038,1997 +/mnt/Downloads/anime/[Kamigami] Kaze ga Tsuyoku Fuiteiru [BD 1080p x265 Ma10p AAC]/[Kamigami] Kaze ga Tsuyoku Fuiteiru - 16 [BD 1080p x265 Ma10p AAC].mkv,[Kamigami] Kaze ga Tsuyoku Fuiteiru - 16 [BD 1080p x265 Ma10p AAC].mkv,579485320,2023-01-03T17:59:31,anime,1920x1080,hevc,1367.038,3391 +/mnt/Downloads/anime/[Kamigami] Kaze ga Tsuyoku Fuiteiru [BD 1080p x265 Ma10p AAC]/[Kamigami] Kaze ga Tsuyoku Fuiteiru - 10 [BD 1080p x265 Ma10p AAC].mkv,[Kamigami] Kaze ga Tsuyoku Fuiteiru - 10 [BD 1080p x265 Ma10p AAC].mkv,390768064,2023-01-03T17:59:32,anime,1920x1080,hevc,1367.038,2286 +/mnt/Downloads/anime/[ANi] 妻子變成小學生。 - 03 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 妻子變成小學生。 - 03 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,297691245,2024-10-13T23:37:10,anime,1920x1080,h264,1420.032,1677 +/mnt/Downloads/anime/[ANi] 杖與劍的魔劍譚 - 12 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 杖與劍的魔劍譚 - 12 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,466291063,2024-09-29T08:38:27,anime,1920x1080,h264,1426.112322,2615 +/mnt/Downloads/anime/[ANi] 地下城中的人 - 09 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 地下城中的人 - 09 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,381928734,2024-09-06T23:41:13,anime,1920x1080,h264,1452.138667,2104 +/mnt/Downloads/anime/[ANi] LAZARUS 拉撒路 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] LAZARUS 拉撒路 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,575791929,2025-04-06T23:15:49,anime,1920x1080,h264,1439.936,3198 +/mnt/Downloads/anime/[Feibanyama] JUJUTSU KAISEN S3 - 05 [IQIYI WebRip 2160p HEVC OPUS Multi-Subs].mkv,[Feibanyama] JUJUTSU KAISEN S3 - 05 [IQIYI WebRip 2160p HEVC OPUS Multi-Subs].mkv,732836001,2026-01-29T23:37:36,anime,3840x2160,hevc,1435.079,4085 +/mnt/Downloads/anime/Shigurui/[Cervoz] Shigurui - 04 {Bluray.1080p}{Jap-Fr.Aac}{Fr-For.Sub} [975477FF].mkv,[Cervoz] Shigurui - 04 {Bluray.1080p}{Jap-Fr.Aac}{Fr-For.Sub} [975477FF].mkv,1223522521,2020-10-02T05:19:09,anime,1904x1072,h264,1431.473,6837 +/mnt/Downloads/anime/Shigurui/[Cervoz] Shigurui - 06 {Bluray.1080p}{Jap-Fr.Aac}{Fr-For.Sub} [1ADE42BE].mkv,[Cervoz] Shigurui - 06 {Bluray.1080p}{Jap-Fr.Aac}{Fr-For.Sub} [1ADE42BE].mkv,1130102890,2020-10-02T05:19:17,anime,1904x1072,h264,1431.473,6315 +/mnt/Downloads/anime/Shigurui/[Cervoz] Shigurui - 01 {Bluray.1080p}{Jap-Fr.Aac}{Fr-For.Sub} [521617A2].mkv,[Cervoz] Shigurui - 01 {Bluray.1080p}{Jap-Fr.Aac}{Fr-For.Sub} [521617A2].mkv,1294880296,2020-10-02T05:19:16,anime,1904x1072,h264,1431.444,7236 +/mnt/Downloads/anime/Shigurui/[Cervoz] Shigurui - 02 {Bluray.1080p}{Jap-Fr.Aac}{Fr-For.Sub} [650B5190].mkv,[Cervoz] Shigurui - 02 {Bluray.1080p}{Jap-Fr.Aac}{Fr-For.Sub} [650B5190].mkv,1209611016,2020-10-02T05:19:19,anime,1904x1072,h264,1431.473,6760 +/mnt/Downloads/anime/Shigurui/[Cervoz] Shigurui - 08 {Bluray.1080p}{Jap-Fr.Aac}{Fr-For.Sub} [B6D8A8E0].mkv,[Cervoz] Shigurui - 08 {Bluray.1080p}{Jap-Fr.Aac}{Fr-For.Sub} [B6D8A8E0].mkv,1166747444,2020-10-02T05:19:14,anime,1904x1072,h264,1431.473,6520 +/mnt/Downloads/anime/Shigurui/[Cervoz] Shigurui - 09 {Bluray.1080p}{Jap-Fr.Aac}{Fr-For.Sub} [D8A4BC20].mkv,[Cervoz] Shigurui - 09 {Bluray.1080p}{Jap-Fr.Aac}{Fr-For.Sub} [D8A4BC20].mkv,1086029182,2020-10-02T05:19:11,anime,1904x1072,h264,1431.473,6069 +/mnt/Downloads/anime/Shigurui/[Cervoz] Shigurui - 05 {Bluray.1080p}{Jap-Fr.Aac}{Fr-For.Sub} [1F0206C6].mkv,[Cervoz] Shigurui - 05 {Bluray.1080p}{Jap-Fr.Aac}{Fr-For.Sub} [1F0206C6].mkv,1039794032,2020-10-02T05:19:18,anime,1904x1072,h264,1431.473,5811 +/mnt/Downloads/anime/Shigurui/[Cervoz] Shigurui - 10 {Bluray.1080p}{Jap-Fr.Aac}{Fr-For.Sub} [D3D7C5D9].mkv,[Cervoz] Shigurui - 10 {Bluray.1080p}{Jap-Fr.Aac}{Fr-For.Sub} [D3D7C5D9].mkv,1076104863,2020-10-02T05:19:18,anime,1904x1072,h264,1431.473,6013 +/mnt/Downloads/anime/Shigurui/[Cervoz] Shigurui - 11 {Bluray.1080p}{Jap-Fr.Aac}{Fr-For.Sub} [B321B908].mkv,[Cervoz] Shigurui - 11 {Bluray.1080p}{Jap-Fr.Aac}{Fr-For.Sub} [B321B908].mkv,1065971842,2020-10-02T05:19:08,anime,1904x1072,h264,1431.473,5957 +/mnt/Downloads/anime/Shigurui/[Cervoz] Shigurui - 12 {Bluray.1080p}{Jap-Fr.Aac}{Fr-For.Sub} [7432E577].mkv,[Cervoz] Shigurui - 12 {Bluray.1080p}{Jap-Fr.Aac}{Fr-For.Sub} [7432E577].mkv,1090300771,2020-10-02T05:19:15,anime,1904x1072,h264,1431.473,6093 +/mnt/Downloads/anime/Shigurui/[Cervoz] Shigurui - 03 {Bluray.1080p}{Jap-Fr.Aac}{Fr-For.Sub} [0852517D].mkv,[Cervoz] Shigurui - 03 {Bluray.1080p}{Jap-Fr.Aac}{Fr-For.Sub} [0852517D].mkv,1252141714,2020-10-02T05:19:19,anime,1904x1072,h264,1431.473,6997 +/mnt/Downloads/anime/Shigurui/[Cervoz] Shigurui - 07 {Bluray.1080p}{Jap-Fr.Aac}{Fr-For.Sub} [66499B33].mkv,[Cervoz] Shigurui - 07 {Bluray.1080p}{Jap-Fr.Aac}{Fr-For.Sub} [66499B33].mkv,1045405588,2020-10-02T05:18:56,anime,1904x1072,h264,1431.473,5842 +/mnt/Downloads/anime/[ANi] 香格里拉・開拓異境~糞作獵手挑戰神作~ 第二季 - 21 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 香格里拉・開拓異境~糞作獵手挑戰神作~ 第二季 - 21 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,464624237,2025-03-02T09:00:03,anime,1920x1080,h264,1421.899789,2614 +/mnt/Downloads/anime/[ANi] 轉生貴族憑鑑定技能扭轉人生 - 11 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 轉生貴族憑鑑定技能扭轉人生 - 11 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,376811727,2024-06-16T23:10:18,anime,1920x1080,h264,1420.074667,2122 +/mnt/Downloads/anime/[LoliHouse] Shin Samurai-den YAIBA - 15 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,[LoliHouse] Shin Samurai-den YAIBA - 15 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,763925404,2025-07-20T08:03:43,anime,1920x1080,hevc,1430.063,4273 +/mnt/Downloads/anime/[ANi] 杖與劍的魔劍譚 - 09 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 杖與劍的魔劍譚 - 09 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,419158485,2024-09-08T12:33:48,anime,1920x1080,h264,1426.154033,2351 +/mnt/Downloads/anime/[LoliHouse] Fate strange Fake - 03 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,[LoliHouse] Fate strange Fake - 03 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,638219217,2026-01-18T00:47:46,anime,1920x1080,hevc,1420.016,3595 +/mnt/Downloads/anime/[Lilith-Raws] Re:Monster - 03 [Baha][WebDL 1080p AVC AAC][CHT].mp4,[Lilith-Raws] Re:Monster - 03 [Baha][WebDL 1080p AVC AAC][CHT].mp4,518011367,2024-05-07T01:14:43,anime,1920x1080,h264,1420.053333,2918 +/mnt/Downloads/anime/[ANi] 地下城中的人 - 12 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 地下城中的人 - 12 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,376032125,2024-09-27T23:33:07,anime,1920x1080,h264,1437.098667,2093 +/mnt/Downloads/anime/[ANi] 擁有超常技能的異世界流浪美食家 S2 - 24 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 擁有超常技能的異世界流浪美食家 S2 - 24 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,423620006,2025-12-24T00:10:25,anime,1920x1080,h264,1434.9962,2361 +/mnt/Downloads/anime/[ANi] 永遠的黃昏 - 04 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 永遠的黃昏 - 04 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,308155364,2025-10-23T23:44:10,anime,1920x1080,h264,1434.965333,1717 +/mnt/Downloads/anime/[BeanSub&FZSD][BLEACH_Sennen_Kessen-hen][28][BIG5][1080P][x264_AAC].mp4,[BeanSub&FZSD][BLEACH_Sennen_Kessen-hen][28][BIG5][1080P][x264_AAC].mp4,1975982408,2024-10-13T00:09:05,anime,3840x2160,h264,1437.909333,10993 +/mnt/Downloads/anime/[ANi] NUKITASHI 住在拔作島上的我該如何是好? [年齡限制版] - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] NUKITASHI 住在拔作島上的我該如何是好? [年齡限制版] - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,369286575,2025-07-25T23:30:28,anime,1920x1080,h264,1425.088,2073 +/mnt/Downloads/anime/[ANi] 貫徹輔助魔法支援弱小隊友的宮廷魔法師,慘遭驅逐後目標成為最強冒險者 - 06 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 貫徹輔助魔法支援弱小隊友的宮廷魔法師,慘遭驅逐後目標成為最強冒險者 - 06 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,368660640,2025-11-08T15:55:13,anime,1920x1080,h264,1417.024,2081 +/mnt/Downloads/anime/[LoliHouse] Yami Healer - 05 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,[LoliHouse] Yami Healer - 05 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,266009277,2025-05-02T00:40:58,anime,1920x1080,hevc,1440.031,1477 +/mnt/Downloads/anime/[Nekomoe kissaten][Kusuriya no Hitorigoto][19][1080p][JPTC].mp4,[Nekomoe kissaten][Kusuriya no Hitorigoto][19][1080p][JPTC].mp4,410037730,2024-02-29T01:27:49,anime,1920x1080,h264,1370.138345,2394 +/mnt/Downloads/anime/[LoliHouse] Tsue to Tsurugi no Wistoria - 05 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,[LoliHouse] Tsue to Tsurugi no Wistoria - 05 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,819580068,2024-08-12T13:43:04,anime,1920x1080,hevc,1426.076,4597 +/mnt/Downloads/anime/[ANi] 九龍大眾浪漫 - 08 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 九龍大眾浪漫 - 08 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,315211376,2025-05-25T00:20:59,anime,1920x1080,h264,1430.037333,1763 +/mnt/Downloads/anime/[ANi] 最強肉盾的迷宮攻略~擁有稀少技能體力 9999 的肉盾,被勇者隊伍辭退了~ - 05 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 最強肉盾的迷宮攻略~擁有稀少技能體力 9999 的肉盾,被勇者隊伍辭退了~ - 05 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,484191178,2024-02-04T00:24:09,anime,1920x1080,h264,1404.053333,2758 +/mnt/Downloads/anime/[Skymoon-Raws] Zom 100 - Zombie ni Naru made ni Shitai 100 no Koto - 01 [ViuTV][WEB-DL][CHT][1080p][AVC AAC][MP4+ASS]/[Skymoon-Raws] Zom 100 - Zombie ni Naru made ni Shitai 100 no Koto - 01 [ViuTV][WEB-DL][1080p][AVC AAC].mp4,[Skymoon-Raws] Zom 100 - Zombie ni Naru made ni Shitai 100 no Koto - 01 [ViuTV][WEB-DL][1080p][AVC AAC].mp4,348397888,2023-07-10T11:14:37,anime,1920x1080,h264,1447.071577,1926 +/mnt/Downloads/anime/[ANi] 葬送的芙莉蓮 第二季 - 31 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 葬送的芙莉蓮 第二季 - 31 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,660907518,2026-01-30T16:07:11,anime,1920x1080,h264,1440.042911,3671 +/mnt/Downloads/anime/[LoliHouse] Shin no Nakama 2nd - 04 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,[LoliHouse] Shin no Nakama 2nd - 04 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,342233709,2024-01-29T10:59:01,anime,1920x1080,hevc,1420.109,1927 +/mnt/Downloads/anime/[KTXP][Hokkaido_Gals_Are_Super_Adorable!][10][HEVC_opus][1080p].mkv,[KTXP][Hokkaido_Gals_Are_Super_Adorable!][10][HEVC_opus][1080p].mkv,239235425,2024-03-12T12:25:57,anime,1920x1080,hevc,1439.952,1329 +"/mnt/Downloads/anime/[LoliHouse] Katainaka no Ossan, Kensei ni Naru - 08 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv","[LoliHouse] Katainaka no Ossan, Kensei ni Naru - 08 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv",543243057,2025-05-25T00:20:13,anime,1920x1080,hevc,1441.087,3015 +/mnt/Downloads/anime/[ANi] 水屬性的魔法師 - 05 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 水屬性的魔法師 - 05 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,322362230,2025-07-31T23:37:16,anime,1920x1080,h264,1455.018667,1772 +/mnt/Downloads/anime/[ANi] 終末起點 - 03 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 終末起點 - 03 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,587518924,2025-04-17T01:58:48,anime,1920x1080,h264,1370.067208,3430 +/mnt/Downloads/anime/[ANi] 擁有超常技能的異世界流浪美食家 S2 - 18 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 擁有超常技能的異世界流浪美食家 S2 - 18 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,447371060,2025-11-11T23:35:14,anime,1920x1080,h264,1435.037911,2493 +/mnt/Downloads/anime/[ANi] 在地下城尋求邂逅是否搞錯了什麼 第五季 - 03 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 在地下城尋求邂逅是否搞錯了什麼 第五季 - 03 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,356040986,2024-10-17T14:58:15,anime,1920x1080,h264,1419.9812,2005 +/mnt/Downloads/anime/[Sakurato] Mushoku Tensei S2 [14][AVC-8bit 1080P AAC][CHT@60FPS].mp4,[Sakurato] Mushoku Tensei S2 [14][AVC-8bit 1080P AAC][CHT@60FPS].mp4,507513598,2024-04-19T11:59:39,anime,1920x1080,h264,1420.272,2858 +/mnt/Downloads/anime/[ANi] 九龍大眾浪漫 - 13 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 九龍大眾浪漫 - 13 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,383822388,2025-06-29T00:48:38,anime,1920x1080,h264,1520.0,2020 +/mnt/Downloads/anime/[ANi] 香格里拉・開拓異境~糞作獵手挑戰神作~ 第二季 - 06 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 香格里拉・開拓異境~糞作獵手挑戰神作~ 第二季 - 06 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,744722441,2024-11-17T13:25:54,anime,1920x1080,h264,1438.666533,4141 +/mnt/Downloads/anime/[ANi] 關於我轉生變成史萊姆這檔事 第三季 - 71 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 關於我轉生變成史萊姆這檔事 第三季 - 71 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,575533425,2024-09-20T15:58:54,anime,1920x1080,h264,1481.000489,3108 +/mnt/Downloads/anime/[LoliHouse] Tensei Shitara Slime Datta Ken 3rd Season - 61 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,[LoliHouse] Tensei Shitara Slime Datta Ken 3rd Season - 61 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,397192806,2024-06-29T09:46:47,anime,1920x1080,hevc,1470.078,2161 +/mnt/Downloads/anime/[ANi] 我與尼特女忍者的莫名同居生活 - 03 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 我與尼特女忍者的莫名同居生活 - 03 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,413024427,2025-01-19T00:37:05,anime,1920x1080,h264,1442.133333,2291 +/mnt/Downloads/anime/[ANi] 我獨自升級 第二季 -起於闇影- - 19 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 我獨自升級 第二季 -起於闇影- - 19 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,468387918,2025-02-16T00:58:01,anime,1920x1080,h264,1425.28,2629 +/mnt/Downloads/anime/[ANi] 最後可以再拜託您一件事嗎? - 07 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 最後可以再拜託您一件事嗎? - 07 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,379318652,2025-11-08T01:45:58,anime,1920x1080,h264,1425.088,2129 +/mnt/Downloads/anime/[DragsterPS] Ghost in the Shell - SAC_2045 S01 [720p] [Japanese Audio] [Multi-Subs]/[DragsterPS] Ghost in the Shell - SAC_2045 S01E03 [720p] [Japanese Audio] [Multi-Subs] [9F9FC6CA].mkv,[DragsterPS] Ghost in the Shell - SAC_2045 S01E03 [720p] [Japanese Audio] [Multi-Subs] [9F9FC6CA].mkv,445009582,2020-04-23T13:10:11,anime,1280x720,h264,1478.048,2408 +/mnt/Downloads/anime/[DragsterPS] Ghost in the Shell - SAC_2045 S01 [720p] [Japanese Audio] [Multi-Subs]/[DragsterPS] Ghost in the Shell - SAC_2045 S01E01 [720p] [Japanese Audio] [Multi-Subs] [5DD471D6].mkv,[DragsterPS] Ghost in the Shell - SAC_2045 S01E01 [720p] [Japanese Audio] [Multi-Subs] [5DD471D6].mkv,647029963,2020-04-23T13:10:54,anime,1280x720,h264,1478.048,3502 +/mnt/Downloads/anime/[DragsterPS] Ghost in the Shell - SAC_2045 S01 [720p] [Japanese Audio] [Multi-Subs]/[DragsterPS] Ghost in the Shell - SAC_2045 S01E12 [720p] [Japanese Audio] [Multi-Subs] [E20D6E8C].mkv,[DragsterPS] Ghost in the Shell - SAC_2045 S01E12 [720p] [Japanese Audio] [Multi-Subs] [E20D6E8C].mkv,502502303,2020-04-23T13:12:38,anime,1280x720,h264,1478.048,2719 +/mnt/Downloads/anime/[DragsterPS] Ghost in the Shell - SAC_2045 S01 [720p] [Japanese Audio] [Multi-Subs]/[DragsterPS] Ghost in the Shell - SAC_2045 S01E08 [720p] [Japanese Audio] [Multi-Subs] [DBB56C13].mkv,[DragsterPS] Ghost in the Shell - SAC_2045 S01E08 [720p] [Japanese Audio] [Multi-Subs] [DBB56C13].mkv,503998354,2020-04-23T13:12:37,anime,1280x720,h264,1478.048,2727 +/mnt/Downloads/anime/[DragsterPS] Ghost in the Shell - SAC_2045 S01 [720p] [Japanese Audio] [Multi-Subs]/[DragsterPS] Ghost in the Shell - SAC_2045 S01E09 [720p] [Japanese Audio] [Multi-Subs] [627F8BBA].mkv,[DragsterPS] Ghost in the Shell - SAC_2045 S01E09 [720p] [Japanese Audio] [Multi-Subs] [627F8BBA].mkv,428889162,2020-04-23T13:12:32,anime,1280x720,h264,1478.048,2321 +/mnt/Downloads/anime/[DragsterPS] Ghost in the Shell - SAC_2045 S01 [720p] [Japanese Audio] [Multi-Subs]/[DragsterPS] Ghost in the Shell - SAC_2045 S01E02 [720p] [Japanese Audio] [Multi-Subs] [79CFBC72].mkv,[DragsterPS] Ghost in the Shell - SAC_2045 S01E02 [720p] [Japanese Audio] [Multi-Subs] [79CFBC72].mkv,395267673,2020-04-23T13:10:13,anime,1280x720,h264,1478.048,2139 +/mnt/Downloads/anime/[DragsterPS] Ghost in the Shell - SAC_2045 S01 [720p] [Japanese Audio] [Multi-Subs]/[DragsterPS] Ghost in the Shell - SAC_2045 S01E05 [720p] [Japanese Audio] [Multi-Subs] [8F6F0778].mkv,[DragsterPS] Ghost in the Shell - SAC_2045 S01E05 [720p] [Japanese Audio] [Multi-Subs] [8F6F0778].mkv,593554188,2020-04-23T13:12:24,anime,1280x720,h264,1478.048,3212 +/mnt/Downloads/anime/[DragsterPS] Ghost in the Shell - SAC_2045 S01 [720p] [Japanese Audio] [Multi-Subs]/[DragsterPS] Ghost in the Shell - SAC_2045 S01E04 [720p] [Japanese Audio] [Multi-Subs] [A6410DBD].mkv,[DragsterPS] Ghost in the Shell - SAC_2045 S01E04 [720p] [Japanese Audio] [Multi-Subs] [A6410DBD].mkv,444710987,2020-04-23T13:11:14,anime,1280x720,h264,1478.048,2407 +/mnt/Downloads/anime/[DragsterPS] Ghost in the Shell - SAC_2045 S01 [720p] [Japanese Audio] [Multi-Subs]/[DragsterPS] Ghost in the Shell - SAC_2045 S01E11 [720p] [Japanese Audio] [Multi-Subs] [90855CF9].mkv,[DragsterPS] Ghost in the Shell - SAC_2045 S01E11 [720p] [Japanese Audio] [Multi-Subs] [90855CF9].mkv,366671095,2020-04-23T13:12:10,anime,1280x720,h264,1478.048,1984 +/mnt/Downloads/anime/[DragsterPS] Ghost in the Shell - SAC_2045 S01 [720p] [Japanese Audio] [Multi-Subs]/[DragsterPS] Ghost in the Shell - SAC_2045 S01E07 [720p] [Japanese Audio] [Multi-Subs] [3DA89D78].mkv,[DragsterPS] Ghost in the Shell - SAC_2045 S01E07 [720p] [Japanese Audio] [Multi-Subs] [3DA89D78].mkv,364045659,2020-04-23T13:12:32,anime,1280x720,h264,1458.134,1997 +/mnt/Downloads/anime/[DragsterPS] Ghost in the Shell - SAC_2045 S01 [720p] [Japanese Audio] [Multi-Subs]/[DragsterPS] Ghost in the Shell - SAC_2045 S01E10 [720p] [Japanese Audio] [Multi-Subs] [63349AB5].mkv,[DragsterPS] Ghost in the Shell - SAC_2045 S01E10 [720p] [Japanese Audio] [Multi-Subs] [63349AB5].mkv,646224744,2020-04-23T13:12:39,anime,1280x720,h264,1478.048,3497 +/mnt/Downloads/anime/[DragsterPS] Ghost in the Shell - SAC_2045 S01 [720p] [Japanese Audio] [Multi-Subs]/[DragsterPS] Ghost in the Shell - SAC_2045 S01E06 [720p] [Japanese Audio] [Multi-Subs] [7398EB28].mkv,[DragsterPS] Ghost in the Shell - SAC_2045 S01E06 [720p] [Japanese Audio] [Multi-Subs] [7398EB28].mkv,396191001,2020-04-23T13:10:10,anime,1280x720,h264,1478.048,2144 +/mnt/Downloads/anime/[ANi] 使人誤解的工房主~關於原英雄隊伍的雜役人員,實際上除了戰鬥能力外全是SSS的故事~ - 11 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 使人誤解的工房主~關於原英雄隊伍的雜役人員,實際上除了戰鬥能力外全是SSS的故事~ - 11 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,246819352,2025-06-08T23:38:57,anime,1920x1080,h264,1420.032,1390 +/mnt/Downloads/anime/[ANi] 戀上換裝娃娃 Season 2 - 14 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 戀上換裝娃娃 Season 2 - 14 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,405001546,2025-07-13T00:11:29,anime,1920x1080,h264,1425.027911,2273 +/mnt/Downloads/anime/[LoliHouse] Lv2 kara Cheat datta Motoyuusha Kouho no Mattari Isekai Life - 02 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,[LoliHouse] Lv2 kara Cheat datta Motoyuusha Kouho no Mattari Isekai Life - 02 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,642344214,2024-04-16T07:31:01,anime,1920x1080,hevc,1440.078,3568 +/mnt/Downloads/anime/[ANi] WIND BREAKER—防風少年— - 11 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] WIND BREAKER—防風少年— - 11 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,367188885,2024-06-14T05:18:05,anime,1920x1080,h264,1425.027911,2061 +/mnt/Downloads/anime/[ANi] 我內心的糟糕念頭 第二季 - 16 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 我內心的糟糕念頭 第二季 - 16 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,300253138,2024-01-28T00:07:08,anime,1920x1080,h264,1383.082667,1736 +/mnt/Downloads/anime/[Nekomoe kissaten][Tower of God S2][13][1080p][CHS].mp4,[Nekomoe kissaten][Tower of God S2][13][1080p][CHS].mp4,512925880,2024-10-13T06:08:12,anime,1920x1080,h264,1421.061224,2887 +/mnt/Downloads/anime/The.Garden.of.Words.2013.1080p.BluRay.x264-WiKi/The.Garden.of.Words.2013.1080p.BluRay.x264-WiKi.mkv,The.Garden.of.Words.2013.1080p.BluRay.x264-WiKi.mkv,3332357590,2019-03-23T14:52:11,anime,1920x1080,h264,2763.776,9645 +/mnt/Downloads/anime/The.Garden.of.Words.2013.1080p.BluRay.x264-WiKi/Sample/The.Garden.of.Words.2013.1080p.BluRay.x264-WiKi.Sample.mkv,The.Garden.of.Words.2013.1080p.BluRay.x264-WiKi.Sample.mkv,79889238,2019-03-23T14:40:40,anime,1920x1080,h264,61.077,10464 +/mnt/Downloads/anime/[Skymoon-Raws] Akuyaku Reijou Tensei Ojisan - 01 [ViuTV][WEB-DL][CHT][SRT][1080p][AVC AAC].mkv,[Skymoon-Raws] Akuyaku Reijou Tensei Ojisan - 01 [ViuTV][WEB-DL][CHT][SRT][1080p][AVC AAC].mkv,426551750,2025-01-14T12:09:40,anime,1920x1080,h264,1445.028,2361 +/mnt/Downloads/anime/[UHA-WINGS][Vindland Saga][BDRIP x264 1080p]/[UHA-WINGS][Vindland Saga][07][BDRIP x264 1080p].mkv,[UHA-WINGS][Vindland Saga][07][BDRIP x264 1080p].mkv,1121182851,2023-02-14T02:14:02,anime,1920x1080,h264,1466.01,6118 +/mnt/Downloads/anime/[UHA-WINGS][Vindland Saga][BDRIP x264 1080p]/[UHA-WINGS][Vindland Saga][10][BDRIP x264 1080p].mkv,[UHA-WINGS][Vindland Saga][10][BDRIP x264 1080p].mkv,972017390,2023-02-14T02:14:11,anime,1920x1080,h264,1466.01,5304 +/mnt/Downloads/anime/[UHA-WINGS][Vindland Saga][BDRIP x264 1080p]/[UHA-WINGS][Vindland Saga][22][BDRIP x264 1080p].mkv,[UHA-WINGS][Vindland Saga][22][BDRIP x264 1080p].mkv,1245177247,2023-02-14T02:14:10,anime,1920x1080,h264,1466.465,6792 +/mnt/Downloads/anime/[UHA-WINGS][Vindland Saga][BDRIP x264 1080p]/[UHA-WINGS][Vindland Saga][23][BDRIP x264 1080p].mkv,[UHA-WINGS][Vindland Saga][23][BDRIP x264 1080p].mkv,1120537192,2023-02-14T02:14:04,anime,1920x1080,h264,1466.465,6112 +/mnt/Downloads/anime/[UHA-WINGS][Vindland Saga][BDRIP x264 1080p]/[UHA-WINGS][Vindland Saga][11][BDRIP x264 1080p].mkv,[UHA-WINGS][Vindland Saga][11][BDRIP x264 1080p].mkv,1256585797,2023-02-14T02:14:03,anime,1920x1080,h264,1466.01,6857 +/mnt/Downloads/anime/[UHA-WINGS][Vindland Saga][BDRIP x264 1080p]/[UHA-WINGS][Vindland Saga][06][BDRIP x264 1080p].mkv,[UHA-WINGS][Vindland Saga][06][BDRIP x264 1080p].mkv,976636358,2023-02-14T02:14:04,anime,1920x1080,h264,1466.465,5327 +/mnt/Downloads/anime/[UHA-WINGS][Vindland Saga][BDRIP x264 1080p]/[UHA-WINGS][Vindland Saga][18][BDRIP x264 1080p].mkv,[UHA-WINGS][Vindland Saga][18][BDRIP x264 1080p].mkv,1268345739,2023-02-14T02:14:04,anime,1920x1080,h264,1466.465,6919 +/mnt/Downloads/anime/[UHA-WINGS][Vindland Saga][BDRIP x264 1080p]/[UHA-WINGS][Vindland Saga][13][BDRIP x264 1080p].mkv,[UHA-WINGS][Vindland Saga][13][BDRIP x264 1080p].mkv,1358636273,2023-02-14T02:14:03,anime,1920x1080,h264,1466.465,7411 +/mnt/Downloads/anime/[UHA-WINGS][Vindland Saga][BDRIP x264 1080p]/[UHA-WINGS][Vindland Saga][04][BDRIP x264 1080p].mkv,[UHA-WINGS][Vindland Saga][04][BDRIP x264 1080p].mkv,845485559,2023-02-14T02:13:57,anime,1920x1080,h264,1466.465,4612 +/mnt/Downloads/anime/[UHA-WINGS][Vindland Saga][BDRIP x264 1080p]/[UHA-WINGS][Vindland Saga][21][BDRIP x264 1080p].mkv,[UHA-WINGS][Vindland Saga][21][BDRIP x264 1080p].mkv,1197139557,2023-02-14T02:13:57,anime,1920x1080,h264,1466.465,6530 +/mnt/Downloads/anime/[UHA-WINGS][Vindland Saga][BDRIP x264 1080p]/[UHA-WINGS][Vindland Saga][20][BDRIP x264 1080p].mkv,[UHA-WINGS][Vindland Saga][20][BDRIP x264 1080p].mkv,1201024898,2023-02-14T02:14:04,anime,1920x1080,h264,1466.465,6551 +/mnt/Downloads/anime/[UHA-WINGS][Vindland Saga][BDRIP x264 1080p]/[UHA-WINGS][Vindland Saga][05][BDRIP x264 1080p].mkv,[UHA-WINGS][Vindland Saga][05][BDRIP x264 1080p].mkv,1099598320,2023-02-14T02:14:00,anime,1920x1080,h264,1466.465,5998 +/mnt/Downloads/anime/[UHA-WINGS][Vindland Saga][BDRIP x264 1080p]/[UHA-WINGS][Vindland Saga][12][BDRIP x264 1080p].mkv,[UHA-WINGS][Vindland Saga][12][BDRIP x264 1080p].mkv,1101381570,2023-02-14T02:14:03,anime,1920x1080,h264,1466.01,6010 +/mnt/Downloads/anime/[UHA-WINGS][Vindland Saga][BDRIP x264 1080p]/[UHA-WINGS][Vindland Saga][19][BDRIP x264 1080p].mkv,[UHA-WINGS][Vindland Saga][19][BDRIP x264 1080p].mkv,1214437821,2023-02-14T02:13:58,anime,1920x1080,h264,1466.465,6625 +/mnt/Downloads/anime/[UHA-WINGS][Vindland Saga][BDRIP x264 1080p]/[UHA-WINGS][Vindland Saga][24][BDRIP x264 1080p].mkv,[UHA-WINGS][Vindland Saga][24][BDRIP x264 1080p].mkv,1193184203,2023-02-14T02:14:05,anime,1920x1080,h264,1466.465,6509 +/mnt/Downloads/anime/[UHA-WINGS][Vindland Saga][BDRIP x264 1080p]/[UHA-WINGS][Vindland Saga][16][BDRIP x264 1080p].mkv,[UHA-WINGS][Vindland Saga][16][BDRIP x264 1080p].mkv,1226584006,2023-02-14T02:14:03,anime,1920x1080,h264,1466.465,6691 +/mnt/Downloads/anime/[UHA-WINGS][Vindland Saga][BDRIP x264 1080p]/[UHA-WINGS][Vindland Saga][01][BDRIP x264 1080p].mkv,[UHA-WINGS][Vindland Saga][01][BDRIP x264 1080p].mkv,1159315940,2023-02-14T02:14:04,anime,1920x1080,h264,1706.705,5434 +/mnt/Downloads/anime/[UHA-WINGS][Vindland Saga][BDRIP x264 1080p]/[UHA-WINGS][Vindland Saga][17][BDRIP x264 1080p].mkv,[UHA-WINGS][Vindland Saga][17][BDRIP x264 1080p].mkv,1424191405,2023-02-14T02:14:18,anime,1920x1080,h264,1466.465,7769 +/mnt/Downloads/anime/[UHA-WINGS][Vindland Saga][BDRIP x264 1080p]/[UHA-WINGS][Vindland Saga][02][BDRIP x264 1080p].mkv,[UHA-WINGS][Vindland Saga][02][BDRIP x264 1080p].mkv,944280817,2023-02-14T02:13:58,anime,1920x1080,h264,1466.465,5151 +/mnt/Downloads/anime/[UHA-WINGS][Vindland Saga][BDRIP x264 1080p]/[UHA-WINGS][Vindland Saga][09][BDRIP x264 1080p].mkv,[UHA-WINGS][Vindland Saga][09][BDRIP x264 1080p].mkv,1000487079,2023-02-14T02:14:03,anime,1920x1080,h264,1466.01,5459 +/mnt/Downloads/anime/[UHA-WINGS][Vindland Saga][BDRIP x264 1080p]/[UHA-WINGS][Vindland Saga][15][BDRIP x264 1080p].mkv,[UHA-WINGS][Vindland Saga][15][BDRIP x264 1080p].mkv,1168965151,2023-02-14T02:14:04,anime,1920x1080,h264,1466.465,6377 +/mnt/Downloads/anime/[UHA-WINGS][Vindland Saga][BDRIP x264 1080p]/[UHA-WINGS][Vindland Saga][14][BDRIP x264 1080p].mkv,[UHA-WINGS][Vindland Saga][14][BDRIP x264 1080p].mkv,1173406559,2023-02-14T02:14:05,anime,1920x1080,h264,1466.465,6401 +/mnt/Downloads/anime/[UHA-WINGS][Vindland Saga][BDRIP x264 1080p]/[UHA-WINGS][Vindland Saga][08][BDRIP x264 1080p].mkv,[UHA-WINGS][Vindland Saga][08][BDRIP x264 1080p].mkv,972868635,2023-02-14T02:14:19,anime,1920x1080,h264,1466.01,5308 +/mnt/Downloads/anime/[UHA-WINGS][Vindland Saga][BDRIP x264 1080p]/[UHA-WINGS][Vindland Saga][03][BDRIP x264 1080p].mkv,[UHA-WINGS][Vindland Saga][03][BDRIP x264 1080p].mkv,914102738,2023-02-14T02:14:04,anime,1920x1080,h264,1466.465,4986 +/mnt/Downloads/anime/[ANi] 我要【招架】一切~反誤解的世界最強想成為冒險家~ - 07 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 我要【招架】一切~反誤解的世界最強想成為冒險家~ - 07 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,415003408,2024-08-15T23:39:12,anime,1920x1080,h264,1420.022911,2338 +/mnt/Downloads/anime/[LoliHouse] Tsuki ga Michibiku Isekai Douchuu S2 - 23 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,[LoliHouse] Tsuki ga Michibiku Isekai Douchuu S2 - 23 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,422645099,2024-06-10T23:26:08,anime,1920x1080,hevc,1420.063,2380 +/mnt/Downloads/anime/[HYSUB]Dungeon Meshi[05][BIG5_MP4][1920X1080].mp4,[HYSUB]Dungeon Meshi[05][BIG5_MP4][1920X1080].mp4,286259525,2024-02-01T23:46:14,anime,1920x1080,h264,1470.122667,1557 +/mnt/Downloads/anime/[ANi] 盾之勇者成名錄 Season 4 - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 盾之勇者成名錄 Season 4 - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,507507662,2025-07-16T12:24:50,anime,1920x1080,h264,1420.074667,2859 +/mnt/Downloads/anime/[ANi] 我的英雄學院 FINAL SEASON - 164 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 我的英雄學院 FINAL SEASON - 164 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,698129676,2025-11-01T23:56:34,anime,1920x1080,h264,1430.165333,3905 +/mnt/Downloads/anime/[ANi] 戰國妖狐 - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 戰國妖狐 - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,693505041,2024-01-17T15:48:23,anime,1920x1080,h264,1420.032,3906 +/mnt/Downloads/anime/[LoliHouse] Hitoribocchi no Isekai Kouryaku - 01 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,[LoliHouse] Hitoribocchi no Isekai Kouryaku - 01 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,574189337,2024-10-04T04:13:39,anime,1920x1080,hevc,1422.463,3229 +/mnt/Downloads/anime/[ANi] 新人大叔冒險者,被最強隊伍操到死成無敵 - 05 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 新人大叔冒險者,被最強隊伍操到死成無敵 - 05 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,403962685,2024-07-29T23:56:58,anime,1920x1080,h264,1424.9862,2267 +/mnt/Downloads/anime/[ANi] 靠廢柴技能【狀態異常】成為最強的我將蹂躪一切 - 08 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 靠廢柴技能【狀態異常】成為最強的我將蹂躪一切 - 08 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,456259281,2024-08-29T23:30:25,anime,1920x1080,h264,1450.069333,2517 +/mnt/Downloads/anime/[ANi] 轉生貴族憑鑑定技能扭轉人生 第二季 - 16 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 轉生貴族憑鑑定技能扭轉人生 第二季 - 16 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,367540849,2024-10-21T12:35:31,anime,1920x1080,h264,1420.032,2070 +/mnt/Downloads/anime/[ANi] 差點在迷宮深處被信任的夥伴殺掉,但靠著天賜技能「無限扭蛋」獲得等級 9999 的夥伴,我要向前隊友和世界展開復仇&「給他們好看!」 - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 差點在迷宮深處被信任的夥伴殺掉,但靠著天賜技能「無限扭蛋」獲得等級 9999 的夥伴,我要向前隊友和世界展開復仇&「給他們好看!」 - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,403244440,2025-10-11T01:02:09,anime,1920x1080,h264,1431.075622,2254 +/mnt/Downloads/anime/[ANi] 我獨自升級 - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 我獨自升級 - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,732899105,2024-01-14T05:13:32,anime,1920x1080,h264,1425.237333,4113 +/mnt/Downloads/anime/[Nekomoe kissaten][Ishura][05][1080p][JPSC].mp4,[Nekomoe kissaten][Ishura][05][1080p][JPSC].mp4,315769808,2024-02-01T23:43:55,anime,1920x1080,h264,1422.045,1776 +/mnt/Downloads/anime/[HYSUB]Sono Bisque Doll wa Koi wo Suru[13][BIG5_MP4][1920X1080].mp4,[HYSUB]Sono Bisque Doll wa Koi wo Suru[13][BIG5_MP4][1920X1080].mp4,347861122,2025-07-06T01:27:23,anime,1920x1080,h264,1422.058667,1956 +/mnt/Downloads/anime/[Nekomoe kissaten] Chi. Chikyuu no Undou ni Tsuite [03][WebRip 1080p HEVC-10bit AAC ASSx2].mkv,[Nekomoe kissaten] Chi. Chikyuu no Undou ni Tsuite [03][WebRip 1080p HEVC-10bit AAC ASSx2].mkv,188246193,2024-11-22T11:20:06,anime,1920x1080,hevc,1502.081,1002 +/mnt/Downloads/anime/[Comicat][Ninja to Koroshiya no Futarigurashi][02][1080P][BIG5][MP4].mp4,[Comicat][Ninja to Koroshiya no Futarigurashi][02][1080P][BIG5][MP4].mp4,338669572,2025-04-21T01:10:36,anime,1920x1080,h264,1420.109206,1907 +/mnt/Downloads/anime/[ANi] 我獨自升級 第二季 -起於闇影- - 25 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 我獨自升級 第二季 -起於闇影- - 25 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,613366961,2025-03-29T23:05:53,anime,1920x1080,h264,1425.28,3442 +/mnt/Downloads/anime/[ANi] 最近的偵探真沒用 - 07 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 最近的偵探真沒用 - 07 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,437389343,2025-08-12T23:29:13,anime,1920x1080,h264,1420.074667,2464 +/mnt/Downloads/anime/[ANi] 膽大黨 - 07 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 膽大黨 - 07 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,805698514,2024-11-14T23:40:26,anime,1920x1080,h264,1437.039911,4485 +/mnt/Downloads/anime/[Nekomoe kissaten][Ishura][10][1080p][JPSC].mp4,[Nekomoe kissaten][Ishura][10][1080p][JPSC].mp4,375943380,2024-03-07T23:11:20,anime,1920x1080,h264,1422.086667,2114 +/mnt/Downloads/anime/[Nekomoe kissaten][Dungeon Meshi][18][1080p][JPTC].mp4,[Nekomoe kissaten][Dungeon Meshi][18][1080p][JPTC].mp4,531580172,2024-05-04T00:09:26,anime,1920x1080,h264,1441.066667,2951 +/mnt/Downloads/anime/[LoliHouse] Maougun Saikyou no Majutsushi wa Ningen datta - 01 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,[LoliHouse] Maougun Saikyou no Majutsushi wa Ningen datta - 01 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,452639752,2024-06-29T09:47:41,anime,1920x1080,hevc,1420.109,2549 +/mnt/Downloads/anime/[Dynamis One] Tsuyokute New Saga - 07 (CR 1920x1080 AVC AAC MKV) [3E2D0ED7].mkv,[Dynamis One] Tsuyokute New Saga - 07 (CR 1920x1080 AVC AAC MKV) [3E2D0ED7].mkv,732658416,2025-08-14T13:37:07,anime,1920x1080,h264,1421.58,4123 +/mnt/Downloads/anime/[ANi] 我與尼特女忍者的莫名同居生活 - 07 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 我與尼特女忍者的莫名同居生活 - 07 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,374841107,2025-02-16T12:38:28,anime,1920x1080,h264,1442.048,2079 +/mnt/Downloads/anime/[ANi] 小手指同學,請別亂摸 [年齡限制版] - 12 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 小手指同學,請別亂摸 [年齡限制版] - 12 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,141823656,2025-12-22T00:17:57,anime,1920x1080,h264,720.085333,1575 +/mnt/Downloads/anime/[ANi] 大江戶烈火殺手 - 鳳凰傳說 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 大江戶烈火殺手 - 鳳凰傳說 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,477506823,2026-01-11T23:52:44,anime,1920x1080,h264,1420.074667,2690 +/mnt/Downloads/anime/[ANi] 身為暗殺者的我明顯比勇者還強 - 09 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 身為暗殺者的我明顯比勇者還強 - 09 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,542517237,2025-12-02T00:55:27,anime,1920x1080,h264,1430.074622,3034 +/mnt/Downloads/anime/[ANi] 素材採集家的異世界旅行記 - 10 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 素材採集家的異世界旅行記 - 10 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,423760240,2025-12-02T00:56:33,anime,1920x1080,h264,1420.022911,2387 +/mnt/Downloads/anime/[ANi] 我要【招架】一切~反誤解的世界最強想成為冒險家~ - 03 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 我要【招架】一切~反誤解的世界最強想成為冒險家~ - 03 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,400875244,2024-07-18T15:35:25,anime,1920x1080,h264,1420.064622,2258 +/mnt/Downloads/anime/Star.Wars.Visions.S01.1080p.DSNP.WEB-DL.DDP5.1.H.264-FLUX/Star.Wars.Visions.S01E02.Tatooine.Rhapsody.1080p.DSNP.WEB-DL.DDP5.1.H.264-FLUX.mkv,Star.Wars.Visions.S01E02.Tatooine.Rhapsody.1080p.DSNP.WEB-DL.DDP5.1.H.264-FLUX.mkv,600364916,2021-09-22T16:55:33,anime,1920x1080,h264,765.344,6275 +/mnt/Downloads/anime/Star.Wars.Visions.S01.1080p.DSNP.WEB-DL.DDP5.1.H.264-FLUX/Star.Wars.Visions.S01E05.The.Ninth.Jedi.1080p.DSNP.WEB-DL.DDP5.1.H.264-FLUX.mkv,Star.Wars.Visions.S01E05.The.Ninth.Jedi.1080p.DSNP.WEB-DL.DDP5.1.H.264-FLUX.mkv,863075250,2021-09-22T16:55:32,anime,1920x1080,h264,1301.024,5307 +/mnt/Downloads/anime/Star.Wars.Visions.S01.1080p.DSNP.WEB-DL.DDP5.1.H.264-FLUX/Star.Wars.Visions.S01E01.The.Duel.1080p.DSNP.WEB-DL.DDP5.1.H.264-FLUX.mkv,Star.Wars.Visions.S01E01.The.Duel.1080p.DSNP.WEB-DL.DDP5.1.H.264-FLUX.mkv,782916821,2021-09-22T16:55:41,anime,1920x1080,h264,781.344,8016 +/mnt/Downloads/anime/Star.Wars.Visions.S01.1080p.DSNP.WEB-DL.DDP5.1.H.264-FLUX/Star.Wars.Visions.S01E08.Lop.Och.1080p.DSNP.WEB-DL.DDP5.1.H.264-FLUX.mkv,Star.Wars.Visions.S01E08.Lop.Och.1080p.DSNP.WEB-DL.DDP5.1.H.264-FLUX.mkv,1053661923,2021-09-22T16:55:28,anime,1920x1080,h264,1175.072,7173 +/mnt/Downloads/anime/Star.Wars.Visions.S01.1080p.DSNP.WEB-DL.DDP5.1.H.264-FLUX/Star.Wars.Visions.S01E03.The.Twins.1080p.DSNP.WEB-DL.DDP5.1.H.264-FLUX.mkv,Star.Wars.Visions.S01E03.The.Twins.1080p.DSNP.WEB-DL.DDP5.1.H.264-FLUX.mkv,885109595,2021-09-22T16:55:37,anime,1920x1080,h264,1010.112,7009 +/mnt/Downloads/anime/Star.Wars.Visions.S01.1080p.DSNP.WEB-DL.DDP5.1.H.264-FLUX/Star.Wars.Visions.S01E06.T0-B1.1080p.DSNP.WEB-DL.DDP5.1.H.264-FLUX.mkv,Star.Wars.Visions.S01E06.T0-B1.1080p.DSNP.WEB-DL.DDP5.1.H.264-FLUX.mkv,608110924,2021-09-22T16:55:36,anime,1920x1080,h264,797.0,6103 +/mnt/Downloads/anime/Star.Wars.Visions.S01.1080p.DSNP.WEB-DL.DDP5.1.H.264-FLUX/Star.Wars.Visions.S01E04.The.Village.Bride.1080p.DSNP.WEB-DL.DDP5.1.H.264-FLUX.mkv,Star.Wars.Visions.S01E04.The.Village.Bride.1080p.DSNP.WEB-DL.DDP5.1.H.264-FLUX.mkv,715085186,2021-09-22T16:55:42,anime,1920x1080,h264,1029.024,5559 +/mnt/Downloads/anime/Star.Wars.Visions.S01.1080p.DSNP.WEB-DL.DDP5.1.H.264-FLUX/Star.Wars.Visions.S01E07.The.Elder.1080p.DSNP.WEB-DL.DDP5.1.H.264-FLUX.mkv,Star.Wars.Visions.S01E07.The.Elder.1080p.DSNP.WEB-DL.DDP5.1.H.264-FLUX.mkv,714996939,2021-09-22T16:55:28,anime,1920x1080,h264,947.68,6035 +/mnt/Downloads/anime/Star.Wars.Visions.S01.1080p.DSNP.WEB-DL.DDP5.1.H.264-FLUX/Star.Wars.Visions.S01E09.Akakiri.1080p.DSNP.WEB-DL.DDP5.1.H.264-FLUX.mkv,Star.Wars.Visions.S01E09.Akakiri.1080p.DSNP.WEB-DL.DDP5.1.H.264-FLUX.mkv,552298462,2021-09-22T16:55:30,anime,1920x1080,h264,779.008,5671 +/mnt/Downloads/anime/[ANi] 膽大黨 第二季 - 16 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 膽大黨 第二季 - 16 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,601803163,2025-07-24T23:28:53,anime,1920x1080,h264,1447.091622,3326 +/mnt/Downloads/anime/[ANi] 貴族轉生~得天眷顧一出生就獲得最強力量~ - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 貴族轉生~得天眷顧一出生就獲得最強力量~ - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,346941955,2026-01-08T04:17:42,anime,1920x1080,h264,1422.122667,1951 +/mnt/Downloads/anime/[Lilith-Raws] Mushoku Tensei S02 - 15 [Baha][WebDL 1080p AVC AAC][CHT].mp4,[Lilith-Raws] Mushoku Tensei S02 - 15 [Baha][WebDL 1080p AVC AAC][CHT].mp4,727513608,2024-04-25T23:21:33,anime,1920x1080,h264,1420.053333,4098 +/mnt/Downloads/anime/[HYSUB]Dungeon Meshi[13][BIG5_MP4][1920X1080].mp4,[HYSUB]Dungeon Meshi[13][BIG5_MP4][1920X1080].mp4,237856593,2024-03-29T00:36:31,anime,1920x1080,h264,1440.128,1321 +/mnt/Downloads/anime/[ANi] 新人大叔冒險者,被最強隊伍操到死成無敵 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 新人大叔冒險者,被最強隊伍操到死成無敵 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,433421714,2024-07-02T01:12:10,anime,1920x1080,h264,1424.9862,2433 +/mnt/Downloads/anime/[Skymoon-Raws] SPY×FAMILY - 19 [ViuTV][WEB-DL][CHT][1080p][AVC AAC][MP4+ASS]/[Skymoon-Raws] SPY×FAMILY - 19 [ViuTV][WEB-DL][1080p][AVC AAC].mp4,[Skymoon-Raws] SPY×FAMILY - 19 [ViuTV][WEB-DL][1080p][AVC AAC].mp4,433514734,2022-11-13T10:11:39,anime,1920x1080,h264,1450.005333,2391 +/mnt/Downloads/anime/[ANi] 藍色管弦樂 第二季 - 13 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 藍色管弦樂 第二季 - 13 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,423462954,2026-01-06T00:18:05,anime,1920x1080,h264,1500.074667,2258 +/mnt/Downloads/anime/[ANi] 和機器人啪啪啪能算在經驗人數裡嗎?? [年齡限制版] - 03 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 和機器人啪啪啪能算在經驗人數裡嗎?? [年齡限制版] - 03 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,41593665,2026-01-24T02:58:08,anime,1920x1080,h264,210.24,1582 +/mnt/Downloads/anime/[ANi] 盾之勇者成名錄 Season 4 - 06 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 盾之勇者成名錄 Season 4 - 06 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,555112966,2025-08-13T23:55:54,anime,1920x1080,h264,1419.989333,3127 +/mnt/Downloads/anime/[ANi] 身為暗殺者的我明顯比勇者還強 - 12 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 身為暗殺者的我明顯比勇者還強 - 12 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,454472691,2025-12-23T03:50:01,anime,1920x1080,h264,1430.116322,2542 +/mnt/Downloads/anime/[ANi] 聽說你們要結婚!? - 04 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 聽說你們要結婚!? - 04 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,398648162,2024-10-24T23:41:49,anime,1920x1080,h264,1420.032,2245 +/mnt/Downloads/anime/[ANi] Silent Witch 沉默魔女的祕密 - 11 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] Silent Witch 沉默魔女的祕密 - 11 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,360994873,2025-09-20T00:33:44,anime,1920x1080,h264,1445.089622,1998 +/mnt/Downloads/anime/[ANi] 我獨自升級 - 06 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 我獨自升級 - 06 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,804841697,2024-05-18T05:23:44,anime,1920x1080,h264,1425.322667,4517 +/mnt/Downloads/anime/[LoliHouse] Hametsu no Oukoku [01-12][WebRip 1080p HEVC-10bit AAC ASSx2]/[LoliHouse] Hametsu no Oukoku - 08 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,[LoliHouse] Hametsu no Oukoku - 08 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,585480202,2024-01-10T13:17:52,anime,1920x1080,hevc,1452.059,3225 +/mnt/Downloads/anime/[LoliHouse] Hametsu no Oukoku [01-12][WebRip 1080p HEVC-10bit AAC ASSx2]/[LoliHouse] Hametsu no Oukoku - 04 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,[LoliHouse] Hametsu no Oukoku - 04 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,403632319,2024-01-10T13:17:49,anime,1920x1080,hevc,1467.106,2200 +/mnt/Downloads/anime/[LoliHouse] Hametsu no Oukoku [01-12][WebRip 1080p HEVC-10bit AAC ASSx2]/[LoliHouse] Hametsu no Oukoku - 05 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,[LoliHouse] Hametsu no Oukoku - 05 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,540757772,2024-01-10T13:17:48,anime,1920x1080,hevc,1467.153,2948 +/mnt/Downloads/anime/[LoliHouse] Hametsu no Oukoku [01-12][WebRip 1080p HEVC-10bit AAC ASSx2]/[LoliHouse] Hametsu no Oukoku - 01 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,[LoliHouse] Hametsu no Oukoku - 01 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,750143282,2024-01-10T13:17:39,anime,1920x1080,hevc,1467.106,4090 +/mnt/Downloads/anime/[LoliHouse] Hametsu no Oukoku [01-12][WebRip 1080p HEVC-10bit AAC ASSx2]/[LoliHouse] Hametsu no Oukoku - 12 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,[LoliHouse] Hametsu no Oukoku - 12 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,614486177,2024-01-10T13:17:51,anime,1920x1080,hevc,1452.083,3385 +/mnt/Downloads/anime/[LoliHouse] Hametsu no Oukoku [01-12][WebRip 1080p HEVC-10bit AAC ASSx2]/[LoliHouse] Hametsu no Oukoku - 09 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,[LoliHouse] Hametsu no Oukoku - 09 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,419495215,2024-01-10T13:17:52,anime,1920x1080,hevc,1452.059,2311 +/mnt/Downloads/anime/[LoliHouse] Hametsu no Oukoku [01-12][WebRip 1080p HEVC-10bit AAC ASSx2]/[LoliHouse] Hametsu no Oukoku - 07 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,[LoliHouse] Hametsu no Oukoku - 07 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,464999311,2024-01-10T13:17:49,anime,1920x1080,hevc,1467.059,2535 +/mnt/Downloads/anime/[LoliHouse] Hametsu no Oukoku [01-12][WebRip 1080p HEVC-10bit AAC ASSx2]/[LoliHouse] Hametsu no Oukoku - 03 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,[LoliHouse] Hametsu no Oukoku - 03 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,857645296,2024-01-10T13:17:50,anime,1920x1080,hevc,1467.106,4676 +/mnt/Downloads/anime/[LoliHouse] Hametsu no Oukoku [01-12][WebRip 1080p HEVC-10bit AAC ASSx2]/[LoliHouse] Hametsu no Oukoku - 10 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,[LoliHouse] Hametsu no Oukoku - 10 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,737744950,2024-01-10T13:17:53,anime,1920x1080,hevc,1452.082,4064 +/mnt/Downloads/anime/[LoliHouse] Hametsu no Oukoku [01-12][WebRip 1080p HEVC-10bit AAC ASSx2]/[LoliHouse] Hametsu no Oukoku - 11 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,[LoliHouse] Hametsu no Oukoku - 11 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,490267587,2024-01-10T13:17:49,anime,1920x1080,hevc,1452.083,2701 +/mnt/Downloads/anime/[LoliHouse] Hametsu no Oukoku [01-12][WebRip 1080p HEVC-10bit AAC ASSx2]/[LoliHouse] Hametsu no Oukoku - 06 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,[LoliHouse] Hametsu no Oukoku - 06 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,615333405,2024-01-10T13:17:50,anime,1920x1080,hevc,1467.106,3355 +/mnt/Downloads/anime/[LoliHouse] Hametsu no Oukoku [01-12][WebRip 1080p HEVC-10bit AAC ASSx2]/[LoliHouse] Hametsu no Oukoku - 02 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,[LoliHouse] Hametsu no Oukoku - 02 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,730208217,2024-01-10T13:17:52,anime,1920x1080,hevc,1467.014,3982 +/mnt/Downloads/anime/[Skymoon-Raws] Kaguya-sama wa Kokurasetai S03 - 10 [ViuTV][WEB-DL][CHT][1080p][AVC AAC][MP4+ASS]/[Skymoon-Raws] Kaguya-sama wa Kokurasetai S03 - 10 [ViuTV][WEB-DL][1080p][AVC AAC].mp4,[Skymoon-Raws] Kaguya-sama wa Kokurasetai S03 - 10 [ViuTV][WEB-DL][1080p][AVC AAC].mp4,409038034,2022-06-11T00:43:51,anime,1920x1080,h264,1440.192,2272 +/mnt/Downloads/anime/[ANi] 靠死亡遊戲混飯吃。 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 靠死亡遊戲混飯吃。 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,607870109,2026-01-08T04:20:24,anime,1920x1080,h264,2859.9197,1700 +/mnt/Downloads/anime/はねバド! 2018 1080P BDrip HEVC FLAC 2.0-SweetDreamDay/はねバド! EP07 (BDrip HEVC FLAC SUP).mkv,はねバド! EP07 (BDrip HEVC FLAC SUP).mkv,709238728,2020-05-09T13:54:37,anime,1920x1080,hevc,1442.11,3934 +/mnt/Downloads/anime/はねバド! 2018 1080P BDrip HEVC FLAC 2.0-SweetDreamDay/はねバド! EP012 (BDrip HEVC FLAC SUP).mkv,はねバド! EP012 (BDrip HEVC FLAC SUP).mkv,760332685,2020-05-09T13:54:17,anime,1920x1080,hevc,1441.11,4220 +/mnt/Downloads/anime/はねバド! 2018 1080P BDrip HEVC FLAC 2.0-SweetDreamDay/はねバド! EP04 (BDrip HEVC FLAC SUP).mkv,はねバド! EP04 (BDrip HEVC FLAC SUP).mkv,669630573,2020-05-09T13:55:09,anime,1920x1080,hevc,1441.11,3717 +/mnt/Downloads/anime/はねバド! 2018 1080P BDrip HEVC FLAC 2.0-SweetDreamDay/はねバド! EP011 (BDrip HEVC FLAC SUP).mkv,はねバド! EP011 (BDrip HEVC FLAC SUP).mkv,610224214,2020-05-09T13:54:32,anime,1920x1080,hevc,1442.11,3385 +/mnt/Downloads/anime/はねバド! 2018 1080P BDrip HEVC FLAC 2.0-SweetDreamDay/はねバド! EP01 (BDrip HEVC FLAC SUP).mkv,はねバド! EP01 (BDrip HEVC FLAC SUP).mkv,665621735,2020-05-09T13:54:59,anime,1920x1080,hevc,1441.11,3695 +/mnt/Downloads/anime/はねバド! 2018 1080P BDrip HEVC FLAC 2.0-SweetDreamDay/はねバド! EP02 (BDrip HEVC FLAC SUP).mkv,はねバド! EP02 (BDrip HEVC FLAC SUP).mkv,680543209,2020-05-09T13:54:51,anime,1920x1080,hevc,1441.11,3777 +/mnt/Downloads/anime/はねバド! 2018 1080P BDrip HEVC FLAC 2.0-SweetDreamDay/はねバド! EP08 (BDrip HEVC FLAC SUP).mkv,はねバド! EP08 (BDrip HEVC FLAC SUP).mkv,630711533,2020-05-09T13:55:29,anime,1920x1080,hevc,1441.11,3501 +/mnt/Downloads/anime/はねバド! 2018 1080P BDrip HEVC FLAC 2.0-SweetDreamDay/映像特典/『もりバド!』浜松合宿編~インターハイ2018の聖地へ~パッケージ特別編② (BDrip HEVC FLAC).mkv,『もりバド!』浜松合宿編~インターハイ2018の聖地へ~パッケージ特別編② (BDrip HEVC FLAC).mkv,2174579964,2020-05-09T13:53:58,anime,1920x1080,hevc,1921.92,9051 +/mnt/Downloads/anime/はねバド! 2018 1080P BDrip HEVC FLAC 2.0-SweetDreamDay/映像特典/Blu-ray&DVD VOLUME1 CM コニーx志波姬x多賀城 (BDrip HEVC FLAC).mkv,Blu-ray&DVD VOLUME1 CM コニーx志波姬x多賀城 (BDrip HEVC FLAC).mkv,9202884,2020-05-09T13:30:36,anime,1920x1080,hevc,17.017,4326 +/mnt/Downloads/anime/はねバド! 2018 1080P BDrip HEVC FLAC 2.0-SweetDreamDay/映像特典/Blu-ray&DVD VOLUME1 CM 石澤望x倉石監督 (BDrip HEVC FLAC).mkv,Blu-ray&DVD VOLUME1 CM 石澤望x倉石監督 (BDrip HEVC FLAC).mkv,11042543,2020-05-09T13:34:49,anime,1920x1080,hevc,17.017,5191 +/mnt/Downloads/anime/はねバド! 2018 1080P BDrip HEVC FLAC 2.0-SweetDreamDay/映像特典/オープニングムービー(クレジット有) (BDrip HEVC FLAC).mkv,オープニングムービー(クレジット有) (BDrip HEVC FLAC).mkv,76626205,2020-05-09T13:45:03,anime,1920x1080,hevc,92.092,6656 +/mnt/Downloads/anime/はねバド! 2018 1080P BDrip HEVC FLAC 2.0-SweetDreamDay/映像特典/Blu-ray&DVD VOLUME1 CM 羽咲綾乃x荒垣なぎさ(アナザーver.) (BDrip HEVC FLAC).mkv,Blu-ray&DVD VOLUME1 CM 羽咲綾乃x荒垣なぎさ(アナザーver.) (BDrip HEVC FLAC).mkv,11118201,2020-05-09T13:34:49,anime,1920x1080,hevc,17.017,5226 +/mnt/Downloads/anime/はねバド! 2018 1080P BDrip HEVC FLAC 2.0-SweetDreamDay/映像特典/Blu-ray&DVD VOLUME1 CM 羽咲綾乃x荒垣なぎさ(スタンダードver.) (BDrip HEVC FLAC).mkv,Blu-ray&DVD VOLUME1 CM 羽咲綾乃x荒垣なぎさ(スタンダードver.) (BDrip HEVC FLAC).mkv,13504149,2020-05-09T13:34:49,anime,1920x1080,hevc,17.017,6348 +/mnt/Downloads/anime/はねバド! 2018 1080P BDrip HEVC FLAC 2.0-SweetDreamDay/映像特典/『もりバド!』浜松合宿編~インターハイ2018の聖地へ~パッケージ特別編① (BDrip HEVC FLAC).mkv,『もりバド!』浜松合宿編~インターハイ2018の聖地へ~パッケージ特別編① (BDrip HEVC FLAC).mkv,1861171177,2020-05-09T13:53:47,anime,1920x1080,hevc,1594.593,9337 +/mnt/Downloads/anime/はねバド! 2018 1080P BDrip HEVC FLAC 2.0-SweetDreamDay/映像特典/#5 エンディングムービー (BDrip HEVC FLAC).mkv,#5 エンディングムービー (BDrip HEVC FLAC).mkv,79029196,2020-05-09T13:50:59,anime,1920x1080,hevc,140.14,4511 +/mnt/Downloads/anime/はねバド! 2018 1080P BDrip HEVC FLAC 2.0-SweetDreamDay/映像特典/Blu-ray&DVD Vol.1 発売記念イベント『もりバド!』夏のオープン戦 第一部 (BDrip HEVC FLAC).mkv,Blu-ray&DVD Vol.1 発売記念イベント『もりバド!』夏のオープン戦 第一部 (BDrip HEVC FLAC).mkv,4263095629,2020-05-09T13:54:49,anime,1920x1080,hevc,3300.297,10333 +/mnt/Downloads/anime/はねバド! 2018 1080P BDrip HEVC FLAC 2.0-SweetDreamDay/映像特典/エンディングムービー (BDrip HEVC FLAC).mkv,エンディングムービー (BDrip HEVC FLAC).mkv,53574029,2020-05-09T13:51:15,anime,1920x1080,hevc,92.092,4653 +/mnt/Downloads/anime/はねバド! 2018 1080P BDrip HEVC FLAC 2.0-SweetDreamDay/映像特典/オープニングムービー(クレジット無) (BDrip HEVC FLAC).mkv,オープニングムービー(クレジット無) (BDrip HEVC FLAC).mkv,72684284,2020-05-09T13:51:27,anime,1920x1080,hevc,92.092,6314 +/mnt/Downloads/anime/はねバド! 2018 1080P BDrip HEVC FLAC 2.0-SweetDreamDay/映像特典/Blu-ray&DVD VOLUME1 CM 荒垣なぎさx泉理子 (BDrip HEVC FLAC).mkv,Blu-ray&DVD VOLUME1 CM 荒垣なぎさx泉理子 (BDrip HEVC FLAC).mkv,7120053,2020-05-09T13:34:39,anime,1920x1080,hevc,17.017,3347 +/mnt/Downloads/anime/はねバド! 2018 1080P BDrip HEVC FLAC 2.0-SweetDreamDay/映像特典/Blu-ray&DVD Vol.1 発売記念イベント『もりバド!』夏のオープン戦 第二部 (BDrip HEVC FLAC).mkv,Blu-ray&DVD Vol.1 発売記念イベント『もりバド!』夏のオープン戦 第二部 (BDrip HEVC FLAC).mkv,4238319515,2020-05-09T13:55:20,anime,1920x1080,hevc,3201.198,10591 +/mnt/Downloads/anime/はねバド! 2018 1080P BDrip HEVC FLAC 2.0-SweetDreamDay/映像特典/PV (BDrip HEVC FLAC).mkv,PV (BDrip HEVC FLAC).mkv,62576196,2020-05-09T13:50:56,anime,1920x1080,hevc,92.092,5435 +/mnt/Downloads/anime/はねバド! 2018 1080P BDrip HEVC FLAC 2.0-SweetDreamDay/映像特典/ティザーPV (BDrip HEVC FLAC).mkv,ティザーPV (BDrip HEVC FLAC).mkv,22145355,2020-05-09T13:42:15,anime,1920x1080,hevc,44.295,3999 +/mnt/Downloads/anime/はねバド! 2018 1080P BDrip HEVC FLAC 2.0-SweetDreamDay/映像特典/Blu-ray&DVD VOLUME1 CM 芹ヶ谷薫子x立花健太郎 (BDrip HEVC FLAC).mkv,Blu-ray&DVD VOLUME1 CM 芹ヶ谷薫子x立花健太郎 (BDrip HEVC FLAC).mkv,7169744,2020-05-09T13:34:24,anime,1920x1080,hevc,17.017,3370 +/mnt/Downloads/anime/はねバド! 2018 1080P BDrip HEVC FLAC 2.0-SweetDreamDay/はねバド! EP06 (BDrip HEVC FLAC SUP).mkv,はねバド! EP06 (BDrip HEVC FLAC SUP).mkv,667229406,2020-05-09T13:54:03,anime,1920x1080,hevc,1440.94,3704 +/mnt/Downloads/anime/はねバド! 2018 1080P BDrip HEVC FLAC 2.0-SweetDreamDay/はねバド! EP013 (BDrip HEVC FLAC SUP).mkv,はねバド! EP013 (BDrip HEVC FLAC SUP).mkv,764722771,2020-05-09T13:54:24,anime,1920x1080,hevc,1442.11,4242 +/mnt/Downloads/anime/はねバド! 2018 1080P BDrip HEVC FLAC 2.0-SweetDreamDay/はねバド! EP05 (BDrip HEVC FLAC SUP).mkv,はねバド! EP05 (BDrip HEVC FLAC SUP).mkv,720364322,2020-05-09T13:55:32,anime,1920x1080,hevc,1442.11,3996 +/mnt/Downloads/anime/はねバド! 2018 1080P BDrip HEVC FLAC 2.0-SweetDreamDay/はねバド! EP010 (BDrip HEVC FLAC SUP).mkv,はねバド! EP010 (BDrip HEVC FLAC SUP).mkv,541131042,2020-05-09T13:55:22,anime,1920x1080,hevc,1441.11,3003 +/mnt/Downloads/anime/はねバド! 2018 1080P BDrip HEVC FLAC 2.0-SweetDreamDay/はねバド! EP03 (BDrip HEVC FLAC SUP).mkv,はねバド! EP03 (BDrip HEVC FLAC SUP).mkv,580129644,2020-05-09T13:55:24,anime,1920x1080,hevc,1442.11,3218 +/mnt/Downloads/anime/はねバド! 2018 1080P BDrip HEVC FLAC 2.0-SweetDreamDay/はねバド! EP09 (BDrip HEVC FLAC SUP).mkv,はねバド! EP09 (BDrip HEVC FLAC SUP).mkv,633445705,2020-05-09T13:54:45,anime,1920x1080,hevc,1442.11,3513 +/mnt/Downloads/anime/[ANi] 我獨自升級 第二季 -起於闇影- - 21 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 我獨自升級 第二季 -起於闇影- - 21 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,513026258,2025-03-02T00:55:37,anime,1920x1080,h264,1425.28,2879 +/mnt/Downloads/anime/[ANi] 黃昏旅店 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 黃昏旅店 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,354060094,2025-01-03T15:19:18,anime,1920x1080,h264,1419.9812,1994 +/mnt/Downloads/anime/Ghost.in.the.Shell.SAC.2nd.GIG.Individual.Eleven.2006.1080p.BluRay.x265.10bit-WiKi/Ghost.in.the.Shell.SAC.2nd.GIG.Individual.Eleven.2006.1080p.BluRay.x265.10bit-WiKi.mkv,Ghost.in.the.Shell.SAC.2nd.GIG.Individual.Eleven.2006.1080p.BluRay.x265.10bit-WiKi.mkv,6448341999,2025-04-03T04:36:49,anime,1920x1036,hevc,9693.952,5321 +/mnt/Downloads/anime/[ANi] 歲月流逝飯菜依舊美味 - 04 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 歲月流逝飯菜依舊美味 - 04 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,460151262,2025-05-04T08:40:07,anime,1920x1080,h264,1445.013333,2547 +/mnt/Downloads/anime/[ANi] 最近的偵探真沒用 - 03 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 最近的偵探真沒用 - 03 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,467884311,2025-07-15T23:39:32,anime,1920x1080,h264,1420.074667,2635 +/mnt/Downloads/anime/[ANi] 膽大黨 - 03 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 膽大黨 - 03 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,653857112,2024-10-17T23:54:23,anime,1920x1080,h264,1436.539411,3641 +/mnt/Downloads/anime/[Nekomoe kissaten&LoliHouse] Ao no Hako - 04 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,[Nekomoe kissaten&LoliHouse] Ao no Hako - 04 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,497910921,2024-11-10T10:13:57,anime,1920x1080,hevc,1417.301,2810 +/mnt/Downloads/anime/[BeanSub][Ao no Exorcist _Yosuga Hen][01][BIG5][1080P][x264_AAC].mp4,[BeanSub][Ao no Exorcist _Yosuga Hen][01][BIG5][1080P][x264_AAC].mp4,331497233,2025-01-12T01:28:21,anime,1920x1080,h264,1420.062766,1867 +/mnt/Downloads/anime/[ANi] 無職轉生~到了異世界就拿出真本事 第二季 - 17 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 無職轉生~到了異世界就拿出真本事 第二季 - 17 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,684897937,2024-05-06T00:04:49,anime,1920x1080,h264,1420.064622,3858 +/mnt/Downloads/anime/[ANi] 妻子變成小學生。 - 07 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 妻子變成小學生。 - 07 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,293961268,2024-11-11T00:05:25,anime,1920x1080,h264,1419.989333,1656 +/mnt/Downloads/anime/[NEO·QSW]劇場版 天元突破グレンラガン[UHDRIP HEVC DTS-7.1ch DOLBY ATMOS SDR 2160P&BDRIP HEVC DTS-5.1ch 1080P]/[NEO·QSW]劇場版 天元突破グレンラガン 螺巌編[UHDRIP HEVC DTS-7.1ch DOLBY ATMOS SDR 2160P].mkv,[NEO·QSW]劇場版 天元突破グレンラガン 螺巌編[UHDRIP HEVC DTS-7.1ch DOLBY ATMOS SDR 2160P].mkv,21697557682,2023-12-30T17:13:39,anime,3840x2160,hevc,7628.64,22753 +/mnt/Downloads/anime/[NEO·QSW]劇場版 天元突破グレンラガン[UHDRIP HEVC DTS-7.1ch DOLBY ATMOS SDR 2160P&BDRIP HEVC DTS-5.1ch 1080P]/[NEO·QSW]劇場版 天元突破グレンラガン 紅蓮篇[UHDRIP HEVC DTS-7.1ch DOLBY ATMOS SDR 2160P].mkv,[NEO·QSW]劇場版 天元突破グレンラガン 紅蓮篇[UHDRIP HEVC DTS-7.1ch DOLBY ATMOS SDR 2160P].mkv,15375217905,2023-12-30T17:14:53,anime,3840x2160,hevc,6793.792,18105 +/mnt/Downloads/anime/[LoliHouse] Kowloon Generic Romance - 11 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,[LoliHouse] Kowloon Generic Romance - 11 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,359795106,2025-06-15T00:28:48,anime,1920x1080,hevc,1430.117,2012 +/mnt/Downloads/anime/[ANi] 勇氣爆發 BANG BRAVERN - 09 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 勇氣爆發 BANG BRAVERN - 09 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,882603053,2024-03-07T23:12:18,anime,1920x1080,h264,1420.117333,4972 +/mnt/Downloads/anime/[Nekomoe kissaten][Unnamed Memory][01][1080p][JPSC].mp4,[Nekomoe kissaten][Unnamed Memory][01][1080p][JPSC].mp4,259452036,2024-04-09T23:38:33,anime,1920x1080,h264,1420.108345,1461 +/mnt/Downloads/anime/[Nekomoe kissaten][Silent Witch - Chinmoku no Majo no Kakushigoto][04][1080p][JPSC].mp4,[Nekomoe kissaten][Silent Witch - Chinmoku no Majo no Kakushigoto][04][1080p][JPSC].mp4,509962741,2025-07-25T23:31:07,anime,1920x1080,h264,1440.078345,2832 +/mnt/Downloads/anime/[ANi] 在沖繩喜歡上的女孩方言講得太過令人困擾 - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 在沖繩喜歡上的女孩方言講得太過令人困擾 - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,456949979,2025-01-12T01:22:25,anime,1920x1080,h264,1420.074667,2574 +/mnt/Downloads/anime/[Sakurato] Zenshuu. [02][HEVC-10bit 1080p AAC][CHS&CHT].mkv,[Sakurato] Zenshuu. [02][HEVC-10bit 1080p AAC][CHS&CHT].mkv,658587871,2025-01-17T16:17:47,anime,1920x1080,hevc,1435.016,3671 +/mnt/Downloads/anime/[Nekomoe kissaten&LoliHouse] Kaii to Otome to Kamikakushi - 02 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,[Nekomoe kissaten&LoliHouse] Kaii to Otome to Kamikakushi - 02 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,460399635,2024-04-26T00:29:48,anime,1920x1080,hevc,1420.086,2593 +/mnt/Downloads/anime/[LoliHouse] Tensei Shitara Slime Datta Ken 3rd Season - 59 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,[LoliHouse] Tensei Shitara Slime Datta Ken 3rd Season - 59 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,306263691,2024-06-14T23:08:37,anime,1920x1080,hevc,1470.101,1666 +/mnt/Downloads/anime/[ANi] LAZARUS 拉撒路 - 05 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] LAZARUS 拉撒路 - 05 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,624324611,2025-05-05T02:40:13,anime,1920x1080,h264,1439.978667,3468 +/mnt/Downloads/anime/[Nekomoe kissaten&LoliHouse] Mushoku Tensei S2 - 13 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,[Nekomoe kissaten&LoliHouse] Mushoku Tensei S2 - 13 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,742027572,2024-04-13T00:23:48,anime,1920x1080,hevc,1420.18,4179 +/mnt/Downloads/anime/[LoliHouse] Shin Samurai-den YAIBA - 11 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,[LoliHouse] Shin Samurai-den YAIBA - 11 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,843355336,2025-06-15T00:32:09,anime,1920x1080,hevc,1430.021,4718 +/mnt/Downloads/anime/The.Boys.S03.2160p.AMZN.WEB-DL.DDP5.1.HDR.H.265-BillyButcher/The.Boys.S03E08.The.Instant.White-Hot.Wild.2160p.AMZN.WEB-DL.DDP5.1.HDR.H.265-BillyButcher.mkv,The.Boys.S03E08.The.Instant.White-Hot.Wild.2160p.AMZN.WEB-DL.DDP5.1.HDR.H.265-BillyButcher.mkv,6896309567,2022-07-08T11:36:29,anime,3840x2160,hevc,3720.736,14827 +/mnt/Downloads/anime/[LoliHouse] Around 40 Otoko no Isekai Tsuuhan - 10 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,[LoliHouse] Around 40 Otoko no Isekai Tsuuhan - 10 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,594496188,2025-03-23T04:39:20,anime,1920x1080,hevc,1420.109,3349 +/mnt/Downloads/anime/[ANi] 香格里拉・開拓異境~糞作獵手挑戰神作~ 第二季 - 25 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 香格里拉・開拓異境~糞作獵手挑戰神作~ 第二季 - 25 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,342661428,2025-03-30T08:37:25,anime,1920x1080,h264,1407.009911,1948 +/mnt/Downloads/anime/[ANi] 香格里拉・開拓異境~糞作獵手挑戰神作~ - 14 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 香格里拉・開拓異境~糞作獵手挑戰神作~ - 14 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,618666892,2024-01-07T09:48:29,anime,1920x1080,h264,1431.242456,3458 +/mnt/Downloads/anime/[ANi] 勇氣爆發 BANG BRAVERN - 12 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 勇氣爆發 BANG BRAVERN - 12 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,817886715,2024-03-29T07:34:34,anime,1920x1080,h264,1419.946667,4607 +/mnt/Downloads/anime/[ANi] 魔都精兵的奴隸 第二季 - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 魔都精兵的奴隸 第二季 - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,379043214,2026-01-15T23:43:26,anime,1920x1080,h264,1422.024911,2132 +"/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Specials/S00E08 - 4-PCT #4 - Now I Can Relax!!, Nothing is More Expensive Than Free, Instinct, Turn Out.mkv","S00E08 - 4-PCT #4 - Now I Can Relax!!, Nothing is More Expensive Than Free, Instinct, Turn Out.mkv",19298727,2026-01-22T05:40:05,anime,1918x1078,hevc,134.635,1146 +"/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Specials/S00E05 - 4-PCT #1 - Steel and Alchemists, The Freezer, State Alchemist Exam.mkv","S00E05 - 4-PCT #1 - Steel and Alchemists, The Freezer, State Alchemist Exam.mkv",12287062,2026-01-22T05:40:03,anime,1920x1080,hevc,90.591,1085 +"/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Specials/S00E10 - 4-PCT #6 - Fluffy, Mr Train, Mach!!, Memories With My Father.mkv","S00E10 - 4-PCT #6 - Fluffy, Mr Train, Mach!!, Memories With My Father.mkv",19643388,2026-01-22T05:40:05,anime,1918x1078,hevc,144.144,1090 +/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Specials/Extras/Fifth Season Opening Theme - Rain by Sid.mkv,Fifth Season Opening Theme - Rain by Sid.mkv,55690092,2026-01-22T05:40:39,anime,1918x1076,hevc,93.095,4785 +/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Specials/Extras/Fourth Season Opening Theme - Period by Chemistry.mkv,Fourth Season Opening Theme - Period by Chemistry.mkv,63123087,2026-01-22T05:40:41,anime,1918x1078,hevc,93.095,5424 +/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Specials/Extras/First Season Ending Theme - USO by Sid.mkv,First Season Ending Theme - USO by Sid.mkv,66032369,2026-01-22T05:40:39,anime,1920x1078,hevc,93.595,5644 +/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Specials/Extras/Fourth Season Ending Theme - Shunkan Sentimental by Scandal.mkv,Fourth Season Ending Theme - Shunkan Sentimental by Scandal.mkv,43729626,2026-01-22T05:40:40,anime,1918x924,hevc,93.095,3757 +/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Specials/Extras/Third Season Opening Theme - Golden Time Lover by Sukima Switch.mkv,Third Season Opening Theme - Golden Time Lover by Sukima Switch.mkv,60154277,2026-01-22T05:40:48,anime,1918x1078,hevc,93.095,5169 +/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Specials/Extras/First Season Opening Theme - again by Yui.mkv,First Season Opening Theme - again by Yui.mkv,68345209,2026-01-22T05:40:39,anime,1918x1078,hevc,92.593,5905 +/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Specials/Extras/Making of Sacred Star of Milos.mkv,Making of Sacred Star of Milos.mkv,2541393304,2026-01-22T05:34:54,anime,1920x1080,hevc,3865.876,5259 +/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Specials/Extras/Second Season Opening Theme - HOLOGRAM by NICO Touches the Walls.mkv,Second Season Opening Theme - HOLOGRAM by NICO Touches the Walls.mkv,53565594,2026-01-22T05:40:46,anime,1918x1078,hevc,92.092,4653 +/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Specials/Extras/Fifth Season Ending Theme - Ray of Light by Shoko Nakagawa.mkv,Fifth Season Ending Theme - Ray of Light by Shoko Nakagawa.mkv,39629438,2026-01-22T05:40:38,anime,1916x822,hevc,93.095,3405 +/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Specials/Extras/Third Season Ending Theme - Tsunaida Te by Lil' B.mkv,Third Season Ending Theme - Tsunaida Te by Lil' B.mkv,73512586,2026-01-22T05:40:47,anime,1918x1078,hevc,93.095,6317 +/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Specials/Extras/Second Season Ending Theme - Let it Out by Miho Fukuhara.mkv,Second Season Ending Theme - Let it Out by Miho Fukuhara.mkv,41161155,2026-01-22T05:40:46,anime,1918x648,hevc,92.092,3575 +"/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Specials/S00E13 - 4-PCT #9 - I Can Do It Myself!, Terrifiying Little Boy!!, Run Away!!, Dealing With Adults.mkv","S00E13 - 4-PCT #9 - I Can Do It Myself!, Terrifiying Little Boy!!, Run Away!!, Dealing With Adults.mkv",17516372,2026-01-22T05:40:06,anime,1918x1078,hevc,160.16,874 +"/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Specials/S00E16 - 4-PCT #12 - Kiss if Death, The Road to Reunion, The Delighful Bradley Family, Earth-Friendly Terrorism.mkv","S00E16 - 4-PCT #12 - Kiss if Death, The Road to Reunion, The Delighful Bradley Family, Earth-Friendly Terrorism.mkv",23996882,2026-01-22T05:40:07,anime,1918x1078,hevc,161.912,1185 +"/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Specials/S00E07 - 4-PCT #3 - God!!, I Don't Think I Can Win, Why Didn't You Say So, Mustang In It Deep.mkv","S00E07 - 4-PCT #3 - God!!, I Don't Think I Can Win, Why Didn't You Say So, Mustang In It Deep.mkv",17130985,2026-01-22T05:40:05,anime,1918x1078,hevc,185.686,738 +"/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Specials/S00E15 - 4-PCT #11 - There'll Be No Undoing It!!, In The Bathroom, Beginnings of Love, The Legs are Just Decorative.mkv","S00E15 - 4-PCT #11 - There'll Be No Undoing It!!, In The Bathroom, Beginnings of Love, The Legs are Just Decorative.mkv",22578558,2026-01-22T05:40:06,anime,1918x1078,hevc,152.152,1187 +"/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Specials/S00E17 - 4-PCT #13 - It's Out!, You Can Do It If You Try, Stop Selim, Rebecca.mkv","S00E17 - 4-PCT #13 - It's Out!, You Can Do It If You Try, Stop Selim, Rebecca.mkv",15332607,2026-01-22T05:40:07,anime,1918x1076,hevc,122.122,1004 +"/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Specials/S00E09 - 4-PCT #5 - Identity, Love is Blind, Combustable Garbage, My Preference.mkv","S00E09 - 4-PCT #5 - Identity, Love is Blind, Combustable Garbage, My Preference.mkv",19161951,2026-01-22T05:40:05,anime,1918x1078,hevc,153.153,1000 +/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Specials/S00E02 - OVA - Simple People.mkv,S00E02 - OVA - Simple People.mkv,213404780,2026-01-22T05:39:54,anime,1920x1080,hevc,759.759,2247 +/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Specials/S00E21 - The Sacred Star of Milos (1080p BluRay x265 ImE).mkv,S00E21 - The Sacred Star of Milos (1080p BluRay x265 ImE).mkv,2351526655,2026-01-22T05:40:38,anime,1920x1080,hevc,6656.617,2826 +/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Specials/S00E04 - OVA - Yet Another Man's Battlefield.mkv,S00E04 - OVA - Yet Another Man's Battlefield.mkv,289157468,2026-01-22T05:40:02,anime,1920x1080,hevc,1069.068,2163 +"/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Specials/S00E20 - 4-PCT #16 - Power of a God, Man Inside Pride, Worst Strategy In History, Old Man!!, Leading Edge of Fasion.mkv","S00E20 - 4-PCT #16 - Power of a God, Man Inside Pride, Worst Strategy In History, Old Man!!, Leading Edge of Fasion.mkv",21246847,2026-01-22T05:40:10,anime,1918x1078,hevc,182.182,932 +"/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Specials/S00E19 - 4-PCT #15 - Come Over To My Place, Sparkle, The Death of Old Man Fu!!, The Dealth of Buccaneer!!, His Name is.mkv","S00E19 - 4-PCT #15 - Come Over To My Place, Sparkle, The Death of Old Man Fu!!, The Dealth of Buccaneer!!, His Name is.mkv",27625503,2026-01-22T05:40:09,anime,1920x1080,hevc,219.219,1008 +"/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Specials/S00E06 - 4-PCT #2 - Overdoing It, The Cursed House, Self-Introductions, The Perfect Woman.mkv","S00E06 - 4-PCT #2 - Overdoing It, The Cursed House, Self-Introductions, The Perfect Woman.mkv",28585026,2026-01-22T05:40:04,anime,1920x1080,hevc,156.657,1459 +"/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Specials/S00E14 - 4-PCT #10 - Something Warm, Kimblee Behind You Behind You!!, Humiliation!!, The Weather Man.mkv","S00E14 - 4-PCT #10 - Something Warm, Kimblee Behind You Behind You!!, Humiliation!!, The Weather Man.mkv",15506829,2026-01-22T05:40:06,anime,1918x1078,hevc,143.143,866 +"/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Specials/S00E11 - 4-PCT #7 - Agar Noodles, Vaunted Father, !!!, Wall-to-Wall.mkv","S00E11 - 4-PCT #7 - Agar Noodles, Vaunted Father, !!!, Wall-to-Wall.mkv",13649545,2026-01-22T05:40:06,anime,1918x1078,hevc,123.123,886 +"/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Specials/S00E18 - 4-PCT #14 - Step Forward!!, Going Back is a Bother, Sharp-Shooting, Combination.mkv","S00E18 - 4-PCT #14 - Step Forward!!, Going Back is a Bother, Sharp-Shooting, Combination.mkv",20751637,2026-01-22T05:40:09,anime,1920x1080,hevc,140.14,1184 +/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Specials/S00E03 - OVA - The Tale of Teacher.mkv,S00E03 - OVA - The Tale of Teacher.mkv,312138379,2026-01-22T05:39:59,anime,1920x1080,hevc,832.832,2998 +/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Specials/S00E01 - OVA - The Blind Alchemist.mkv,S00E01 - OVA - The Blind Alchemist.mkv,301019868,2026-01-22T05:39:52,anime,1920x1080,hevc,975.475,2468 +"/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Specials/S00E12 - 4-PCT #8 - Good Boy and Girls Don't Trry This At Home!, Healthy Appetite, Beautiful Memories, Smolder Garbage.mkv","S00E12 - 4-PCT #8 - Good Boy and Girls Don't Trry This At Home!, Healthy Appetite, Beautiful Memories, Smolder Garbage.mkv",18358413,2026-01-22T05:40:06,anime,1918x1078,hevc,150.15,978 +/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E58 - (58) - Sacrifices (1080p BluRay x265 ImE).mkv,Fullmetal Alchemist Brotherhood (2009) - S01E58 - (58) - Sacrifices (1080p BluRay x265 ImE).mkv,357637077,2026-01-22T05:39:15,anime,1920x1080,hevc,1469.162,1947 +/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E32 - (32) - The Führer's Son (1080p BluRay x265 ImE).mkv,Fullmetal Alchemist Brotherhood (2009) - S01E32 - (32) - The Führer's Son (1080p BluRay x265 ImE).mkv,397908610,2026-01-22T05:37:12,anime,1920x1080,hevc,1469.162,2166 +/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E27 - (27) - Interlude Party (1080p BluRay x265 ImE).mkv,Fullmetal Alchemist Brotherhood (2009) - S01E27 - (27) - Interlude Party (1080p BluRay x265 ImE).mkv,445587915,2026-01-22T05:36:52,anime,1920x1080,hevc,1469.162,2426 +/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E22 - (22) - Backs in the Distance (1080p BluRay x265 ImE).mkv,Fullmetal Alchemist Brotherhood (2009) - S01E22 - (22) - Backs in the Distance (1080p BluRay x265 ImE).mkv,424939049,2026-01-22T05:36:28,anime,1920x1080,hevc,1469.482,2313 +/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E43 - (43) - Bite of the Ant (1080p BluRay x265 ImE).mkv,Fullmetal Alchemist Brotherhood (2009) - S01E43 - (43) - Bite of the Ant (1080p BluRay x265 ImE).mkv,441268563,2026-01-22T05:38:05,anime,1920x1080,hevc,1470.165,2401 +/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E42 - (42) - Signs of a Counteroffensive (1080p BluRay x265 ImE).mkv,Fullmetal Alchemist Brotherhood (2009) - S01E42 - (42) - Signs of a Counteroffensive (1080p BluRay x265 ImE).mkv,430751937,2026-01-22T05:38:00,anime,1920x1080,hevc,1475.141,2336 +/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E63 - (63) - The Other Side of the Gateway (1080p BluRay x265 ImE).mkv,Fullmetal Alchemist Brotherhood (2009) - S01E63 - (63) - The Other Side of the Gateway (1080p BluRay x265 ImE).mkv,507810119,2026-01-22T05:39:44,anime,1920x1080,hevc,1469.482,2764 +/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E59 - (59) - Lost Light (1080p BluRay x265 ImE).mkv,Fullmetal Alchemist Brotherhood (2009) - S01E59 - (59) - Lost Light (1080p BluRay x265 ImE).mkv,313919682,2026-01-22T05:39:19,anime,1920x1080,hevc,1475.141,1702 +/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E52 - (52) - Combined Strength (1080p BluRay x265 ImE).mkv,Fullmetal Alchemist Brotherhood (2009) - S01E52 - (52) - Combined Strength (1080p BluRay x265 ImE).mkv,491783826,2026-01-22T05:38:43,anime,1920x1080,hevc,1469.162,2677 +/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E11 - (11) - Miracle at Rush Valley (1080p BluRay x265 ImE).mkv,Fullmetal Alchemist Brotherhood (2009) - S01E11 - (11) - Miracle at Rush Valley (1080p BluRay x265 ImE).mkv,466468627,2026-01-22T05:35:44,anime,1920x1080,hevc,1469.653,2539 +/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E64 - (64) - Journey's End (1080p BluRay x265 ImE).mkv,Fullmetal Alchemist Brotherhood (2009) - S01E64 - (64) - Journey's End (1080p BluRay x265 ImE).mkv,269329540,2026-01-22T05:39:49,anime,1920x1080,hevc,1445.111,1490 +/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E28 - (28) - Father (1080p BluRay x265 ImE).mkv,Fullmetal Alchemist Brotherhood (2009) - S01E28 - (28) - Father (1080p BluRay x265 ImE).mkv,498883493,2026-01-22T05:36:56,anime,1920x1080,hevc,1469.312,2716 +/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E16 - (16) - Footsteps of a Comrade-in-Arms (1080p BluRay x265 ImE).mkv,Fullmetal Alchemist Brotherhood (2009) - S01E16 - (16) - Footsteps of a Comrade-in-Arms (1080p BluRay x265 ImE).mkv,320146321,2026-01-22T05:36:07,anime,1920x1080,hevc,1469.653,1742 +/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E13 - (13) - Beasts of Dublith (1080p BluRay x265 ImE).mkv,Fullmetal Alchemist Brotherhood (2009) - S01E13 - (13) - Beasts of Dublith (1080p BluRay x265 ImE).mkv,415624776,2026-01-22T05:35:54,anime,1920x1080,hevc,1469.653,2262 +/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E53 - (53) - Flame of Vengeance (1080p BluRay x265 ImE).mkv,Fullmetal Alchemist Brotherhood (2009) - S01E53 - (53) - Flame of Vengeance (1080p BluRay x265 ImE).mkv,375161181,2026-01-22T05:38:51,anime,1920x1080,hevc,1469.141,2042 +/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E56 - (56) - The Return of the Führer (1080p BluRay x265 ImE).mkv,Fullmetal Alchemist Brotherhood (2009) - S01E56 - (56) - The Return of the Führer (1080p BluRay x265 ImE).mkv,464772653,2026-01-22T05:39:07,anime,1920x1080,hevc,1469.162,2530 +/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E40 - (40) - Homunculus (The Dwarf in the Flask) (1080p BluRay x265 ImE).mkv,Fullmetal Alchemist Brotherhood (2009) - S01E40 - (40) - Homunculus (The Dwarf in the Flask) (1080p BluRay x265 ImE).mkv,353280139,2026-01-22T05:37:51,anime,1920x1080,hevc,1469.482,1923 +/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E51 - (51) - The Immortal Legion (1080p BluRay x265 ImE).mkv,Fullmetal Alchemist Brotherhood (2009) - S01E51 - (51) - The Immortal Legion (1080p BluRay x265 ImE).mkv,433082226,2026-01-22T05:38:37,anime,1920x1080,hevc,1469.162,2358 +/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E05 - (5) - Rain of Sorrows (1080p BluRay x265 ImE).mkv,Fullmetal Alchemist Brotherhood (2009) - S01E05 - (5) - Rain of Sorrows (1080p BluRay x265 ImE).mkv,459506718,2026-01-22T05:35:15,anime,1920x1080,hevc,1475.641,2491 +/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E54 - (54) - Beyond the Inferno (1080p BluRay x265 ImE).mkv,Fullmetal Alchemist Brotherhood (2009) - S01E54 - (54) - Beyond the Inferno (1080p BluRay x265 ImE).mkv,431358335,2026-01-22T05:38:55,anime,1920x1080,hevc,1475.641,2338 +/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E24 - (24) - Inside the Belly (1080p BluRay x265 ImE).mkv,Fullmetal Alchemist Brotherhood (2009) - S01E24 - (24) - Inside the Belly (1080p BluRay x265 ImE).mkv,347233488,2026-01-22T05:36:34,anime,1920x1080,hevc,1469.653,1890 +/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E10 - (10) - Separate Destinations (1080p BluRay x265 ImE).mkv,Fullmetal Alchemist Brotherhood (2009) - S01E10 - (10) - Separate Destinations (1080p BluRay x265 ImE).mkv,364532041,2026-01-22T05:35:40,anime,1920x1080,hevc,1474.645,1977 +/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E38 - (38) - Conflict at Baschool (1080p BluRay x265 ImE).mkv,Fullmetal Alchemist Brotherhood (2009) - S01E38 - (38) - Conflict at Baschool (1080p BluRay x265 ImE).mkv,462044240,2026-01-22T05:37:44,anime,1920x1080,hevc,1469.162,2515 +/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E46 - (46) - Looming Shadows (1080p BluRay x265 ImE).mkv,Fullmetal Alchemist Brotherhood (2009) - S01E46 - (46) - Looming Shadows (1080p BluRay x265 ImE).mkv,326271712,2026-01-22T05:38:16,anime,1920x1080,hevc,1469.141,1776 +/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E14 - (14) - Those Who Lurk Underground (1080p BluRay x265 ImE).mkv,Fullmetal Alchemist Brotherhood (2009) - S01E14 - (14) - Those Who Lurk Underground (1080p BluRay x265 ImE).mkv,385056595,2026-01-22T05:35:58,anime,1920x1080,hevc,1469.653,2096 +/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E07 - (7) - Hidden Truths (1080p BluRay x265 ImE).mkv,Fullmetal Alchemist Brotherhood (2009) - S01E07 - (7) - Hidden Truths (1080p BluRay x265 ImE).mkv,396823210,2026-01-22T05:35:23,anime,1920x1080,hevc,1469.482,2160 +/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E04 - (4) - An Alchemist's Anguish (1080p BluRay x265 ImE).mkv,Fullmetal Alchemist Brotherhood (2009) - S01E04 - (4) - An Alchemist's Anguish (1080p BluRay x265 ImE).mkv,434532381,2026-01-22T05:35:11,anime,1920x1080,hevc,1469.482,2365 +"/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E60 - (60) - Eye of Heaven, Gateway of Earth (1080p BluRay x265 ImE).mkv","Fullmetal Alchemist Brotherhood (2009) - S01E60 - (60) - Eye of Heaven, Gateway of Earth (1080p BluRay x265 ImE).mkv",374340078,2026-01-22T05:39:24,anime,1920x1080,hevc,1470.165,2036 +/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E01 - (1) - Fullmetal Alchemist (1080p BluRay x265 ImE).mkv,Fullmetal Alchemist Brotherhood (2009) - S01E01 - (1) - Fullmetal Alchemist (1080p BluRay x265 ImE).mkv,397585082,2026-01-22T05:40:45,anime,1918x1078,hevc,1469.653,2164 +/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E23 - (23) - Girl on the Battlefield (1080p BluRay x265 ImE).mkv,Fullmetal Alchemist Brotherhood (2009) - S01E23 - (23) - Girl on the Battlefield (1080p BluRay x265 ImE).mkv,412496793,2026-01-22T05:36:31,anime,1920x1080,hevc,1469.653,2245 +/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E62 - (62) - A Fierce Counterattack (1080p BluRay x265 ImE).mkv,Fullmetal Alchemist Brotherhood (2009) - S01E62 - (62) - A Fierce Counterattack (1080p BluRay x265 ImE).mkv,532300771,2026-01-22T05:39:34,anime,1920x1080,hevc,1469.162,2898 +/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E41 - (41) - The Abyss (1080p BluRay x265 ImE).mkv,Fullmetal Alchemist Brotherhood (2009) - S01E41 - (41) - The Abyss (1080p BluRay x265 ImE).mkv,378162555,2026-01-22T05:37:58,anime,1920x1080,hevc,1469.162,2059 +/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E36 - (36) - Family Portrait (1080p BluRay x265 ImE).mkv,Fullmetal Alchemist Brotherhood (2009) - S01E36 - (36) - Family Portrait (1080p BluRay x265 ImE).mkv,349202259,2026-01-22T05:37:35,anime,1920x1080,hevc,1475.474,1893 +/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E45 - (45) - The Promised Day (1080p BluRay x265 ImE).mkv,Fullmetal Alchemist Brotherhood (2009) - S01E45 - (45) - The Promised Day (1080p BluRay x265 ImE).mkv,353542412,2026-01-22T05:38:13,anime,1920x1080,hevc,1469.162,1925 +/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E31 - (31) - The 520 Cenz Promise (1080p BluRay x265 ImE).mkv,Fullmetal Alchemist Brotherhood (2009) - S01E31 - (31) - The 520 Cenz Promise (1080p BluRay x265 ImE).mkv,355908523,2026-01-22T05:37:07,anime,1920x1080,hevc,1470.165,1936 +/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E02 - (2) - The First Day (1080p BluRay x265 ImE).mkv,Fullmetal Alchemist Brotherhood (2009) - S01E02 - (2) - The First Day (1080p BluRay x265 ImE).mkv,422140150,2026-01-22T05:34:59,anime,1918x1078,hevc,1469.653,2297 +/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E19 - (19) - Death of the Undying (1080p BluRay x265 ImE).mkv,Fullmetal Alchemist Brotherhood (2009) - S01E19 - (19) - Death of the Undying (1080p BluRay x265 ImE).mkv,396074789,2026-01-22T05:36:16,anime,1920x1080,hevc,1468.65,2157 +/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E37 - (37) - The First Homunculus (1080p BluRay x265 ImE).mkv,Fullmetal Alchemist Brotherhood (2009) - S01E37 - (37) - The First Homunculus (1080p BluRay x265 ImE).mkv,370978296,2026-01-22T05:37:38,anime,1920x1080,hevc,1469.162,2020 +/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E06 - (6) - Road of Hope (1080p BluRay x265 ImE).mkv,Fullmetal Alchemist Brotherhood (2009) - S01E06 - (6) - Road of Hope (1080p BluRay x265 ImE).mkv,412652080,2026-01-22T05:35:19,anime,1920x1080,hevc,1469.162,2247 +/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E30 - (30) - The Ishvalan War of Extermination (1080p BluRay x265 ImE).mkv,Fullmetal Alchemist Brotherhood (2009) - S01E30 - (30) - The Ishvalan War of Extermination (1080p BluRay x265 ImE).mkv,404514394,2026-01-22T05:37:04,anime,1920x1080,hevc,1475.141,2193 +/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E50 - (50) - Upheaval in Central (1080p BluRay x265 ImE).mkv,Fullmetal Alchemist Brotherhood (2009) - S01E50 - (50) - Upheaval in Central (1080p BluRay x265 ImE).mkv,378420328,2026-01-22T05:38:31,anime,1920x1080,hevc,1469.162,2060 +"/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E12 - (12) - One Is All, All Is One (1080p BluRay x265 ImE).mkv","Fullmetal Alchemist Brotherhood (2009) - S01E12 - (12) - One Is All, All Is One (1080p BluRay x265 ImE).mkv",526448416,2026-01-22T05:35:50,anime,1920x1080,hevc,1469.653,2865 +/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E35 - (35) - The Shape of This Country (1080p BluRay x265 ImE).mkv,Fullmetal Alchemist Brotherhood (2009) - S01E35 - (35) - The Shape of This Country (1080p BluRay x265 ImE).mkv,390973660,2026-01-22T05:37:27,anime,1920x1080,hevc,1469.312,2128 +/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E47 - (47) - Emissary of Darkness (1080p BluRay x265 ImE).mkv,Fullmetal Alchemist Brotherhood (2009) - S01E47 - (47) - Emissary of Darkness (1080p BluRay x265 ImE).mkv,329173085,2026-01-22T05:38:19,anime,1920x1080,hevc,1469.141,1792 +/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E21 - (21) - Advance of the Fool (1080p BluRay x265 ImE).mkv,Fullmetal Alchemist Brotherhood (2009) - S01E21 - (21) - Advance of the Fool (1080p BluRay x265 ImE).mkv,406498163,2026-01-22T05:36:24,anime,1920x1080,hevc,1469.653,2212 +/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E29 - (29) - Struggle of the Fool (1080p BluRay x265 ImE).mkv,Fullmetal Alchemist Brotherhood (2009) - S01E29 - (29) - Struggle of the Fool (1080p BluRay x265 ImE).mkv,359548672,2026-01-22T05:36:59,anime,1920x1080,hevc,1469.162,1957 +/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E33 - (33) - The Northern Wall of Briggs (1080p BluRay x265 ImE).mkv,Fullmetal Alchemist Brotherhood (2009) - S01E33 - (33) - The Northern Wall of Briggs (1080p BluRay x265 ImE).mkv,567350896,2026-01-22T05:37:17,anime,1920x1080,hevc,1469.162,3089 +/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E08 - (8) - The Fifth Laboratory (1080p BluRay x265 ImE).mkv,Fullmetal Alchemist Brotherhood (2009) - S01E08 - (8) - The Fifth Laboratory (1080p BluRay x265 ImE).mkv,404918512,2026-01-22T05:35:35,anime,1920x1080,hevc,1469.312,2204 +/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E49 - (49) - Filial Affection (1080p BluRay x265 ImE).mkv,Fullmetal Alchemist Brotherhood (2009) - S01E49 - (49) - Filial Affection (1080p BluRay x265 ImE).mkv,322376299,2026-01-22T05:38:28,anime,1920x1080,hevc,1470.485,1753 +/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E15 - (15) - Envoy from the East (1080p BluRay x265 ImE).mkv,Fullmetal Alchemist Brotherhood (2009) - S01E15 - (15) - Envoy from the East (1080p BluRay x265 ImE).mkv,401606532,2026-01-22T05:36:02,anime,1920x1080,hevc,1475.641,2177 +/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E44 - (44) - Revving at Full Throttle (1080p BluRay x265 ImE).mkv,Fullmetal Alchemist Brotherhood (2009) - S01E44 - (44) - Revving at Full Throttle (1080p BluRay x265 ImE).mkv,416143310,2026-01-22T05:38:10,anime,1920x1080,hevc,1469.653,2265 +/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E17 - (17) - Cold Flame (1080p BluRay x265 ImE).mkv,Fullmetal Alchemist Brotherhood (2009) - S01E17 - (17) - Cold Flame (1080p BluRay x265 ImE).mkv,290043940,2026-01-22T05:36:10,anime,1920x1080,hevc,1469.653,1578 +/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E25 - (25) - Doorway of Darkness (1080p BluRay x265 ImE).mkv,Fullmetal Alchemist Brotherhood (2009) - S01E25 - (25) - Doorway of Darkness (1080p BluRay x265 ImE).mkv,324987025,2026-01-22T05:36:42,anime,1920x1080,hevc,1475.641,1761 +/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E39 - (39) - Daydream (1080p BluRay x265 ImE).mkv,Fullmetal Alchemist Brotherhood (2009) - S01E39 - (39) - Daydream (1080p BluRay x265 ImE).mkv,362068899,2026-01-22T05:37:47,anime,1920x1080,hevc,1469.162,1971 +/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E26 - (26) - Reunion (1080p BluRay x265 ImE).mkv,Fullmetal Alchemist Brotherhood (2009) - S01E26 - (26) - Reunion (1080p BluRay x265 ImE).mkv,464642793,2026-01-22T05:36:46,anime,1920x1080,hevc,1469.482,2529 +/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E03 - (3) - City of Heresy (1080p BluRay x265 ImE).mkv,Fullmetal Alchemist Brotherhood (2009) - S01E03 - (3) - City of Heresy (1080p BluRay x265 ImE).mkv,459832979,2026-01-22T05:35:03,anime,1920x1080,hevc,1469.653,2503 +/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E48 - (48) - The Oath in the Tunnel (1080p BluRay x265 ImE).mkv,Fullmetal Alchemist Brotherhood (2009) - S01E48 - (48) - The Oath in the Tunnel (1080p BluRay x265 ImE).mkv,388047316,2026-01-22T05:38:25,anime,1920x1080,hevc,1475.474,2103 +/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E57 - (57) - Eternal Leave (1080p BluRay x265 ImE).mkv,Fullmetal Alchemist Brotherhood (2009) - S01E57 - (57) - Eternal Leave (1080p BluRay x265 ImE).mkv,439700265,2026-01-22T05:39:11,anime,1920x1080,hevc,1469.312,2394 +/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E34 - (34) - Ice Queen (1080p BluRay x265 ImE).mkv,Fullmetal Alchemist Brotherhood (2009) - S01E34 - (34) - Ice Queen (1080p BluRay x265 ImE).mkv,403810349,2026-01-22T05:37:24,anime,1920x1080,hevc,1469.162,2198 +/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E18 - (18) - The Arrogant Palm of a Small Human (1080p BluRay x265 ImE).mkv,Fullmetal Alchemist Brotherhood (2009) - S01E18 - (18) - The Arrogant Palm of a Small Human (1080p BluRay x265 ImE).mkv,324189007,2026-01-22T05:36:12,anime,1920x1080,hevc,1469.653,1764 +/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E09 - (9) - Created Feelings (1080p BluRay x265 ImE).mkv,Fullmetal Alchemist Brotherhood (2009) - S01E09 - (9) - Created Feelings (1080p BluRay x265 ImE).mkv,366596195,2026-01-22T05:35:37,anime,1920x1080,hevc,1469.482,1995 +/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E20 - (20) - Father Before the Grave (1080p BluRay x265 ImE).mkv,Fullmetal Alchemist Brotherhood (2009) - S01E20 - (20) - Father Before the Grave (1080p BluRay x265 ImE).mkv,358329686,2026-01-22T05:36:22,anime,1920x1080,hevc,1475.641,1942 +/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E55 - (55) - The Adults' Way of Life (1080p BluRay x265 ImE).mkv,Fullmetal Alchemist Brotherhood (2009) - S01E55 - (55) - The Adults' Way of Life (1080p BluRay x265 ImE).mkv,449157605,2026-01-22T05:38:59,anime,1920x1080,hevc,1470.165,2444 +/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E61 - (61) - He Who Would Swallow God (1080p BluRay x265 ImE).mkv,Fullmetal Alchemist Brotherhood (2009) - S01E61 - (61) - He Who Would Swallow God (1080p BluRay x265 ImE).mkv,452067402,2026-01-22T05:39:29,anime,1920x1080,hevc,1469.312,2461 +/mnt/Downloads/anime/[ANi] 記憶縫線 YOUR FORMA - 06 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 記憶縫線 YOUR FORMA - 06 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,504534641,2025-05-08T00:08:45,anime,1920x1080,h264,1425.069622,2832 +/mnt/Downloads/anime/[ANi] 忍者與殺手的兩人生活 - 10 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 忍者與殺手的兩人生活 - 10 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,355234071,2025-06-12T23:29:42,anime,1920x1080,h264,1420.074667,2001 +/mnt/Downloads/anime/[ANi] 擁有超常技能的異世界流浪美食家 S2 - 20 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 擁有超常技能的異世界流浪美食家 S2 - 20 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,397788756,2025-11-25T23:45:34,anime,1920x1080,h264,1435.079622,2217 +/mnt/Downloads/anime/[ANi] 瞬間治癒卻被當成廢物踢出隊伍的天才治療師,改當無照治療師快樂過活 - 11 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 瞬間治癒卻被當成廢物踢出隊伍的天才治療師,改當無照治療師快樂過活 - 11 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,284085264,2025-06-12T23:30:15,anime,1920x1080,h264,1440.085333,1578 +/mnt/Downloads/anime/[ANi] 貫徹輔助魔法支援弱小隊友的宮廷魔法師,慘遭驅逐後目標成為最強冒險者 - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 貫徹輔助魔法支援弱小隊友的宮廷魔法師,慘遭驅逐後目標成為最強冒險者 - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,409854913,2025-10-12T05:11:47,anime,1920x1080,h264,1417.152,2313 +/mnt/Downloads/anime/[Nekomoe kissaten][Ao no Hako][05][1080p][JPSC].mp4,[Nekomoe kissaten][Ao no Hako][05][1080p][JPSC].mp4,536395338,2024-11-10T10:07:45,anime,1920x1080,h264,1417.301333,3027 +/mnt/Downloads/anime/[LoliHouse] Mikata ga Yowasugite Hojo Maho ni Tesshite ita Kyutei Mahoshi - 12 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,[LoliHouse] Mikata ga Yowasugite Hojo Maho ni Tesshite ita Kyutei Mahoshi - 12 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,422601215,2025-12-21T00:02:14,anime,1920x1080,hevc,1417.067,2385 +/mnt/Downloads/anime/[HYSUB]Sono Bisque Doll wa Koi wo Suru[01~12][BIG5_MP4][1920X1080]/[HYSUB]Sono Bisque Doll wa Koi wo Suru[02][BIG5_MP4][1920X1080].mp4,[HYSUB]Sono Bisque Doll wa Koi wo Suru[02][BIG5_MP4][1920X1080].mp4,306606603,2025-07-06T02:54:05,anime,1920x1080,h264,1440.128,1703 +/mnt/Downloads/anime/[HYSUB]Sono Bisque Doll wa Koi wo Suru[01~12][BIG5_MP4][1920X1080]/[HYSUB]Sono Bisque Doll wa Koi wo Suru[01v2][BIG5_MP4][1920X1080].mp4,[HYSUB]Sono Bisque Doll wa Koi wo Suru[01v2][BIG5_MP4][1920X1080].mp4,250435913,2025-07-06T02:54:33,anime,1920x1080,h264,1440.064,1391 +/mnt/Downloads/anime/[HYSUB]Sono Bisque Doll wa Koi wo Suru[01~12][BIG5_MP4][1920X1080]/[HYSUB]Sono Bisque Doll wa Koi wo Suru[04][BIG5_MP4][1920X1080].mp4,[HYSUB]Sono Bisque Doll wa Koi wo Suru[04][BIG5_MP4][1920X1080].mp4,233835104,2025-07-06T02:54:39,anime,1920x1080,h264,1440.064,1299 +/mnt/Downloads/anime/[HYSUB]Sono Bisque Doll wa Koi wo Suru[01~12][BIG5_MP4][1920X1080]/[HYSUB]Sono Bisque Doll wa Koi wo Suru[11][BIG5_MP4][1920X1080].mp4,[HYSUB]Sono Bisque Doll wa Koi wo Suru[11][BIG5_MP4][1920X1080].mp4,259358476,2025-07-06T02:54:48,anime,1920x1080,h264,1440.085333,1440 +/mnt/Downloads/anime/[HYSUB]Sono Bisque Doll wa Koi wo Suru[01~12][BIG5_MP4][1920X1080]/[HYSUB]Sono Bisque Doll wa Koi wo Suru[12][BIG5_MP4][1920X1080][END].mp4,[HYSUB]Sono Bisque Doll wa Koi wo Suru[12][BIG5_MP4][1920X1080][END].mp4,340321555,2025-07-06T02:54:59,anime,1920x1080,h264,1440.085333,1890 +/mnt/Downloads/anime/[HYSUB]Sono Bisque Doll wa Koi wo Suru[01~12][BIG5_MP4][1920X1080]/[HYSUB]Sono Bisque Doll wa Koi wo Suru[07][BIG5_MP4][1920X1080].mp4,[HYSUB]Sono Bisque Doll wa Koi wo Suru[07][BIG5_MP4][1920X1080].mp4,265258030,2025-07-06T02:54:39,anime,1920x1080,h264,1440.064,1473 +/mnt/Downloads/anime/[HYSUB]Sono Bisque Doll wa Koi wo Suru[01~12][BIG5_MP4][1920X1080]/[HYSUB]Sono Bisque Doll wa Koi wo Suru[08][BIG5_MP4][1920X1080].mp4,[HYSUB]Sono Bisque Doll wa Koi wo Suru[08][BIG5_MP4][1920X1080].mp4,275576132,2025-07-06T02:54:39,anime,1920x1080,h264,1440.128,1530 +/mnt/Downloads/anime/[HYSUB]Sono Bisque Doll wa Koi wo Suru[01~12][BIG5_MP4][1920X1080]/[HYSUB]Sono Bisque Doll wa Koi wo Suru[03][BIG5_MP4][1920X1080].mp4,[HYSUB]Sono Bisque Doll wa Koi wo Suru[03][BIG5_MP4][1920X1080].mp4,281337912,2025-07-06T02:54:39,anime,1920x1080,h264,1440.128,1562 +/mnt/Downloads/anime/[HYSUB]Sono Bisque Doll wa Koi wo Suru[01~12][BIG5_MP4][1920X1080]/[HYSUB]Sono Bisque Doll wa Koi wo Suru[05][BIG5_MP4][1920X1080].mp4,[HYSUB]Sono Bisque Doll wa Koi wo Suru[05][BIG5_MP4][1920X1080].mp4,297465123,2025-07-06T02:54:39,anime,1920x1080,h264,1440.021333,1652 +/mnt/Downloads/anime/[HYSUB]Sono Bisque Doll wa Koi wo Suru[01~12][BIG5_MP4][1920X1080]/[HYSUB]Sono Bisque Doll wa Koi wo Suru[10][BIG5_MP4][1920X1080].mp4,[HYSUB]Sono Bisque Doll wa Koi wo Suru[10][BIG5_MP4][1920X1080].mp4,254026556,2025-07-06T02:54:44,anime,1920x1080,h264,1440.085333,1411 +/mnt/Downloads/anime/[HYSUB]Sono Bisque Doll wa Koi wo Suru[01~12][BIG5_MP4][1920X1080]/[HYSUB]Sono Bisque Doll wa Koi wo Suru[06][BIG5_MP4][1920X1080].mp4,[HYSUB]Sono Bisque Doll wa Koi wo Suru[06][BIG5_MP4][1920X1080].mp4,301517667,2025-07-06T02:54:39,anime,1920x1080,h264,1440.085333,1674 +/mnt/Downloads/anime/[HYSUB]Sono Bisque Doll wa Koi wo Suru[01~12][BIG5_MP4][1920X1080]/[HYSUB]Sono Bisque Doll wa Koi wo Suru[09][BIG5_MP4][1920X1080].mp4,[HYSUB]Sono Bisque Doll wa Koi wo Suru[09][BIG5_MP4][1920X1080].mp4,266729321,2025-07-06T02:54:39,anime,1920x1080,h264,1440.128,1481 +/mnt/Downloads/anime/[ANi] 最強肉盾的迷宮攻略~擁有稀少技能體力 9999 的肉盾,被勇者隊伍辭退了~ - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 最強肉盾的迷宮攻略~擁有稀少技能體力 9999 的肉盾,被勇者隊伍辭退了~ - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,421051701,2024-01-07T01:31:01,anime,1920x1080,h264,1404.010667,2399 +/mnt/Downloads/anime/[ANi] 香格里拉・開拓異境~糞作獵手挑戰神作~ 第二季 - 19 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 香格里拉・開拓異境~糞作獵手挑戰神作~ 第二季 - 19 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,743588356,2025-02-16T23:39:07,anime,1920x1080,h264,1421.899789,4183 +/mnt/Downloads/anime/[Sakurato][20210111] Mushoku Tensei Isekai Ittara Honki Dasu [01-11 Fin][TVRip][1080p@60FPS][CHT]/[Sakurato] Mushoku Tensei Isekai Ittara Honki Dasu [08v2][AVC-8bit 1080p@60FPS AAC][CHT].mp4,[Sakurato] Mushoku Tensei Isekai Ittara Honki Dasu [08v2][AVC-8bit 1080p@60FPS AAC][CHT].mp4,448396652,2021-07-28T00:56:39,anime,1920x1080,h264,1420.032,2526 +/mnt/Downloads/anime/[Sakurato][20210111] Mushoku Tensei Isekai Ittara Honki Dasu [01-11 Fin][TVRip][1080p@60FPS][CHT]/[Sakurato] Mushoku Tensei Isekai Ittara Honki Dasu [09v2][AVC-8bit 1080p@60FPS AAC][CHT].mp4,[Sakurato] Mushoku Tensei Isekai Ittara Honki Dasu [09v2][AVC-8bit 1080p@60FPS AAC][CHT].mp4,502427579,2021-07-28T00:56:35,anime,1920x1080,h264,1420.053333,2830 +/mnt/Downloads/anime/[Sakurato][20210111] Mushoku Tensei Isekai Ittara Honki Dasu [01-11 Fin][TVRip][1080p@60FPS][CHT]/[Sakurato] Mushoku Tensei Isekai Ittara Honki Dasu [10v2][AVC-8bit 1080p@60FPS AAC][CHT].mp4,[Sakurato] Mushoku Tensei Isekai Ittara Honki Dasu [10v2][AVC-8bit 1080p@60FPS AAC][CHT].mp4,491533019,2021-07-28T00:56:38,anime,1920x1080,h264,1420.032,2769 +/mnt/Downloads/anime/[Sakurato][20210111] Mushoku Tensei Isekai Ittara Honki Dasu [01-11 Fin][TVRip][1080p@60FPS][CHT]/[Sakurato] Mushoku Tensei Isekai Ittara Honki Dasu [06v2][AVC-8bit 1080p@60FPS AAC][CHT].mp4,[Sakurato] Mushoku Tensei Isekai Ittara Honki Dasu [06v2][AVC-8bit 1080p@60FPS AAC][CHT].mp4,601079417,2021-07-28T00:56:38,anime,1920x1080,h264,1419.989333,3386 +/mnt/Downloads/anime/[Sakurato][20210111] Mushoku Tensei Isekai Ittara Honki Dasu [01-11 Fin][TVRip][1080p@60FPS][CHT]/[Sakurato] Mushoku Tensei Isekai Ittara Honki Dasu [11v2][AVC-8bit 1080p@60FPS AAC][CHT].mp4,[Sakurato] Mushoku Tensei Isekai Ittara Honki Dasu [11v2][AVC-8bit 1080p@60FPS AAC][CHT].mp4,525736342,2021-07-28T00:56:33,anime,1920x1080,h264,1420.053333,2961 +/mnt/Downloads/anime/[Sakurato][20210111] Mushoku Tensei Isekai Ittara Honki Dasu [01-11 Fin][TVRip][1080p@60FPS][CHT]/[Sakurato] Mushoku Tensei Isekai Ittara Honki Dasu [07v2][AVC-8bit 1080p@60FPS AAC][CHT].mp4,[Sakurato] Mushoku Tensei Isekai Ittara Honki Dasu [07v2][AVC-8bit 1080p@60FPS AAC][CHT].mp4,547471463,2021-07-28T00:56:34,anime,1920x1080,h264,1420.053333,3084 +/mnt/Downloads/anime/[Sakurato][20210111] Mushoku Tensei Isekai Ittara Honki Dasu [01-11 Fin][TVRip][1080p@60FPS][CHT]/[Sakurato] Mushoku Tensei Isekai Ittara Honki Dasu [04v2][AVC-8bit 1080p@60FPS AAC][CHT].mp4,[Sakurato] Mushoku Tensei Isekai Ittara Honki Dasu [04v2][AVC-8bit 1080p@60FPS AAC][CHT].mp4,474447966,2021-07-28T00:56:37,anime,1920x1080,h264,1420.053333,2672 +/mnt/Downloads/anime/[Sakurato][20210111] Mushoku Tensei Isekai Ittara Honki Dasu [01-11 Fin][TVRip][1080p@60FPS][CHT]/[Sakurato] Mushoku Tensei Isekai Ittara Honki Dasu [05v2][AVC-8bit 1080p@60FPS AAC][CHT].mp4,[Sakurato] Mushoku Tensei Isekai Ittara Honki Dasu [05v2][AVC-8bit 1080p@60FPS AAC][CHT].mp4,481016583,2021-07-28T00:56:56,anime,1920x1080,h264,1420.032,2709 +/mnt/Downloads/anime/[Sakurato][20210111] Mushoku Tensei Isekai Ittara Honki Dasu [01-11 Fin][TVRip][1080p@60FPS][CHT]/[Sakurato] Mushoku Tensei Isekai Ittara Honki Dasu [02v2][AVC-8bit 1080p@60FPS AAC][CHT].mp4,[Sakurato] Mushoku Tensei Isekai Ittara Honki Dasu [02v2][AVC-8bit 1080p@60FPS AAC][CHT].mp4,536258965,2021-07-28T00:56:36,anime,1920x1080,h264,1420.053333,3021 +/mnt/Downloads/anime/[Sakurato][20210111] Mushoku Tensei Isekai Ittara Honki Dasu [01-11 Fin][TVRip][1080p@60FPS][CHT]/[Sakurato] Mushoku Tensei Isekai Ittara Honki Dasu [03v2][AVC-8bit 1080p@60FPS AAC][CHT].mp4,[Sakurato] Mushoku Tensei Isekai Ittara Honki Dasu [03v2][AVC-8bit 1080p@60FPS AAC][CHT].mp4,501171995,2021-07-28T00:56:55,anime,1920x1080,h264,1420.032,2823 +/mnt/Downloads/anime/[Sakurato][20210111] Mushoku Tensei Isekai Ittara Honki Dasu [01-11 Fin][TVRip][1080p@60FPS][CHT]/[Sakurato] Mushoku Tensei Isekai Ittara Honki Dasu [01v2][AVC-8bit 1080p@60FPS AAC][CHT].mp4,[Sakurato] Mushoku Tensei Isekai Ittara Honki Dasu [01v2][AVC-8bit 1080p@60FPS AAC][CHT].mp4,518462543,2021-07-28T00:56:37,anime,1920x1080,h264,1420.053333,2920 +/mnt/Downloads/anime/[ANi] 治癒魔法的錯誤使用法 - 11 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 治癒魔法的錯誤使用法 - 11 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,678254738,2024-03-16T01:50:44,anime,1920x1080,h264,1420.064622,3820 +/mnt/Downloads/anime/[ANi] 葬送的芙莉蓮 - 28 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 葬送的芙莉蓮 - 28 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,744913107,2024-03-23T00:17:41,anime,1920x1080,h264,1463.107622,4073 +/mnt/Downloads/anime/[DMG][Isekai_Ojisan][01-13 END][1080P][BIG5][MP4]/[DMG][Isekai_Ojisan][03][1080P][BIG5].mp4,[DMG][Isekai_Ojisan][03][1080P][BIG5].mp4,636481702,2023-03-20T17:48:34,anime,1920x1080,h264,1422.186667,3580 +/mnt/Downloads/anime/[DMG][Isekai_Ojisan][01-13 END][1080P][BIG5][MP4]/[DMG][Isekai_Ojisan][08][1080P][BIG5].mp4,[DMG][Isekai_Ojisan][08][1080P][BIG5].mp4,662978763,2023-03-20T17:48:43,anime,1920x1080,h264,1442.154667,3677 +/mnt/Downloads/anime/[DMG][Isekai_Ojisan][01-13 END][1080P][BIG5][MP4]/[DMG][Isekai_Ojisan][05][1080P][BIG5].mp4,[DMG][Isekai_Ojisan][05][1080P][BIG5].mp4,609502881,2023-03-20T17:47:13,anime,1920x1080,h264,1422.186667,3428 +/mnt/Downloads/anime/[DMG][Isekai_Ojisan][01-13 END][1080P][BIG5][MP4]/[DMG][Isekai_Ojisan][10][1080P][BIG5].mp4,[DMG][Isekai_Ojisan][10][1080P][BIG5].mp4,536746531,2023-03-20T17:48:42,anime,1920x1080,h264,1422.186667,3019 +/mnt/Downloads/anime/[DMG][Isekai_Ojisan][01-13 END][1080P][BIG5][MP4]/[DMG][Isekai_Ojisan][13 END][1080P][BIG5].mp4,[DMG][Isekai_Ojisan][13 END][1080P][BIG5].mp4,567949476,2023-03-20T17:48:40,anime,1920x1080,h264,1442.197333,3150 +/mnt/Downloads/anime/[DMG][Isekai_Ojisan][01-13 END][1080P][BIG5][MP4]/[DMG][Isekai_Ojisan][09][1080P][BIG5].mp4,[DMG][Isekai_Ojisan][09][1080P][BIG5].mp4,648158240,2023-03-20T17:48:54,anime,1920x1080,h264,1422.186667,3645 +/mnt/Downloads/anime/[DMG][Isekai_Ojisan][01-13 END][1080P][BIG5][MP4]/[DMG][Isekai_Ojisan][02][1080P][BIG5].mp4,[DMG][Isekai_Ojisan][02][1080P][BIG5].mp4,625665598,2023-03-20T17:47:33,anime,1920x1080,h264,1422.186667,3519 +/mnt/Downloads/anime/[DMG][Isekai_Ojisan][01-13 END][1080P][BIG5][MP4]/[DMG][Isekai_Ojisan][04][1080P][BIG5].mp4,[DMG][Isekai_Ojisan][04][1080P][BIG5].mp4,583142450,2023-03-20T17:48:51,anime,1920x1080,h264,1422.144,3280 +/mnt/Downloads/anime/[DMG][Isekai_Ojisan][01-13 END][1080P][BIG5][MP4]/[DMG][Isekai_Ojisan][11][1080P][BIG5].mp4,[DMG][Isekai_Ojisan][11][1080P][BIG5].mp4,678620067,2023-03-20T17:48:53,anime,1920x1080,h264,1422.186667,3817 +/mnt/Downloads/anime/[DMG][Isekai_Ojisan][01-13 END][1080P][BIG5][MP4]/[DMG][Isekai_Ojisan][01][1080P][BIG5].mp4,[DMG][Isekai_Ojisan][01][1080P][BIG5].mp4,684122306,2023-03-20T17:45:39,anime,1920x1080,h264,1422.186667,3848 +/mnt/Downloads/anime/[DMG][Isekai_Ojisan][01-13 END][1080P][BIG5][MP4]/[DMG][Isekai_Ojisan][12][1080P][BIG5].mp4,[DMG][Isekai_Ojisan][12][1080P][BIG5].mp4,588217737,2023-03-20T17:48:53,anime,1920x1080,h264,1442.154667,3262 +/mnt/Downloads/anime/[DMG][Isekai_Ojisan][01-13 END][1080P][BIG5][MP4]/[DMG][Isekai_Ojisan][07][1080P][BIG5].mp4,[DMG][Isekai_Ojisan][07][1080P][BIG5].mp4,611895526,2023-03-20T17:48:57,anime,1920x1080,h264,1422.186667,3441 +/mnt/Downloads/anime/[DMG][Isekai_Ojisan][01-13 END][1080P][BIG5][MP4]/[DMG][Isekai_Ojisan][06][1080P][BIG5].mp4,[DMG][Isekai_Ojisan][06][1080P][BIG5].mp4,543262157,2023-03-20T17:47:11,anime,1920x1080,h264,1422.186667,3055 +/mnt/Downloads/anime/[ANi] 機械臂 - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 機械臂 - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,416518578,2024-10-11T09:57:46,anime,1920x1080,h264,1422.037333,2343 +"/mnt/Downloads/anime/[LoliHouse] Kekkon suru tte, Hontou desu ka - 07 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv","[LoliHouse] Kekkon suru tte, Hontou desu ka - 07 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv",545429837,2024-11-22T02:44:43,anime,1920x1080,hevc,1420.016,3072 +/mnt/Downloads/anime/[ANi] 在地下城尋求邂逅是否搞錯了什麼 第五季 - 07 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 在地下城尋求邂逅是否搞錯了什麼 第五季 - 07 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,284812446,2024-11-15T01:16:46,anime,1920x1080,h264,1420.064622,1604 +/mnt/Downloads/anime/[ANi] 怪獸 8 號 - 09 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 怪獸 8 號 - 09 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,630190700,2024-06-08T15:40:01,anime,1920x1080,h264,1420.117333,3550 +/mnt/Downloads/anime/[Lilith-Raws] Kantei Skill - 03 [Baha][WebDL 1080p AVC AAC][CHT].mp4,[Lilith-Raws] Kantei Skill - 03 [Baha][WebDL 1080p AVC AAC][CHT].mp4,459913605,2024-04-25T23:23:11,anime,1920x1080,h264,1420.032,2591 +/mnt/Downloads/anime/[ANi] 水屬性的魔法師 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 水屬性的魔法師 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,364435812,2025-07-03T23:00:29,anime,1920x1080,h264,1454.976,2003 +/mnt/Downloads/anime/[ANi] 終末起點 - 07 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 終末起點 - 07 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,424682749,2025-05-15T00:38:14,anime,1920x1080,h264,1369.981875,2479 +/mnt/Downloads/anime/[ANi] 香格里拉・開拓異境~糞作獵手挑戰神作~ 第二季 - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 香格里拉・開拓異境~糞作獵手挑戰神作~ 第二季 - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,635269408,2024-10-20T11:36:18,anime,1920x1080,h264,1430.283156,3553 +/mnt/Downloads/anime/《咒術迴戰 第二季》- 閑話 - 前編/《咒術迴戰 第二季》- 閑話 - 前編 (日語原聲)【Ani-One Asia ULTRA】.mp4,《咒術迴戰 第二季》- 閑話 - 前編 (日語原聲)【Ani-One Asia ULTRA】.mp4,323679341,2023-08-16T14:59:58,anime,1920x1080,h264,1470.055329,1761 +/mnt/Downloads/anime/[XKsub&LoliHouse] Blue Lock [22-24][WebRip 1080p HEVC-10bit AAC ASSx2]/[XKsub&LoliHouse] Blue Lock - 24 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,[XKsub&LoliHouse] Blue Lock - 24 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,583065935,2023-05-19T15:42:30,anime,1920x1080,hevc,1375.004,3392 +/mnt/Downloads/anime/[XKsub&LoliHouse] Blue Lock [22-24][WebRip 1080p HEVC-10bit AAC ASSx2]/[XKsub&LoliHouse] Blue Lock - 23 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,[XKsub&LoliHouse] Blue Lock - 23 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,518874654,2023-05-19T15:42:32,anime,1920x1080,hevc,1431.892,2898 +/mnt/Downloads/anime/[XKsub&LoliHouse] Blue Lock [22-24][WebRip 1080p HEVC-10bit AAC ASSx2]/[XKsub&LoliHouse] Blue Lock - 22 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,[XKsub&LoliHouse] Blue Lock - 22 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,880111204,2023-05-19T15:42:26,anime,1920x1080,hevc,1430.104,4923 +/mnt/Downloads/anime/[ANi] 離開 A 級隊伍的我,和從前的弟子往迷宮深處邁進 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 離開 A 級隊伍的我,和從前的弟子往迷宮深處邁進 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,560885285,2025-01-12T00:20:20,anime,1920x1080,h264,1381.025622,3249 +/mnt/Downloads/anime/[Skymoon-Raws] SPY×FAMILY - 16 [ViuTV][WEB-DL][CHT][1080p][AVC AAC][MP4+ASS]/[Skymoon-Raws] SPY×FAMILY - 16 [ViuTV][WEB-DL][1080p][AVC AAC].mp4,[Skymoon-Raws] SPY×FAMILY - 16 [ViuTV][WEB-DL][1080p][AVC AAC].mp4,361964852,2022-10-23T05:02:22,anime,1920x1080,h264,1450.048,1996 +/mnt/Downloads/anime/Godzilla.The.Planet.Eater.2018.1080p.NF.WEBRip.DDP5.1.x264-NTG/Godzilla.The.Planet.Eater.2018.1080p.NF.WEB-DL.DDP5.1.x264-NTG.mkv,Godzilla.The.Planet.Eater.2018.1080p.NF.WEB-DL.DDP5.1.x264-NTG.mkv,5461522873,2019-01-09T16:34:01,anime,1920x1080,h264,5430.56,8045 +/mnt/Downloads/anime/[LoliHouse] Tensei Shitara Slime Datta Ken 3rd Season - 65 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,[LoliHouse] Tensei Shitara Slime Datta Ken 3rd Season - 65 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,575400681,2024-08-03T12:47:07,anime,1920x1080,hevc,1470.031,3131 +/mnt/Downloads/anime/[Nekomoe kissaten&LoliHouse] Sousou no Frieren - 28 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,[Nekomoe kissaten&LoliHouse] Sousou no Frieren - 28 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,601268371,2024-03-29T14:59:37,anime,1920x1080,hevc,1463.103,3287 +/mnt/Downloads/anime/【搬运】[我的妻子没有感情][僕の妻は感情がない][01][1080P][繁体]/【搬运】[我的妻子没有感情][僕の妻は感情がない][01][1080P][繁体].mp4,【搬运】[我的妻子没有感情][僕の妻は感情がない][01][1080P][繁体].mp4,308980362,2024-07-07T03:47:24,anime,1920x1080,h264,1420.086086,1740 +/mnt/Downloads/anime/[ANi] 遲早是最強的鍊金術師? - 06 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 遲早是最強的鍊金術師? - 06 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,371111025,2025-02-06T08:03:31,anime,1920x1080,h264,1420.032,2090 +/mnt/Downloads/anime/[SweetSub] CENCOROLL CONNECT [BDRip][1080P][AVC 8bit][CHT]/[SweetSub] CENCOROLL CONNECT [BDRip][1080P][AVC 8bit][CHT].mp4,[SweetSub] CENCOROLL CONNECT [BDRip][1080P][AVC 8bit][CHT].mp4,755777268,2019-11-19T14:23:33,anime,1920x1080,h264,4449.962667,1358 +/mnt/Downloads/anime/[ANi] Re:從零開始的異世界生活 第三季 - 14 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] Re:從零開始的異世界生活 第三季 - 14 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,407995143,2025-03-12T23:35:06,anime,1920x1080,h264,1420.064622,2298 +/mnt/Downloads/anime/[Nekomoe kissaten][Silent Witch - Chinmoku no Majo no Kakushigoto][01][1080p][JPTC].mp4,[Nekomoe kissaten][Silent Witch - Chinmoku no Majo no Kakushigoto][01][1080p][JPTC].mp4,521776668,2025-07-06T23:17:39,anime,1920x1080,h264,1440.078345,2898 +/mnt/Downloads/anime/[Nekomoe kissaten][Tower of God S2][12][1080p][CHS].mp4,[Nekomoe kissaten][Tower of God S2][12][1080p][CHS].mp4,491940350,2024-10-13T06:08:23,anime,1920x1080,h264,1421.061224,2769 +/mnt/Downloads/anime/[KitaujiSub&LoliHouse] Suicide Squad Isekai - 09 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,[KitaujiSub&LoliHouse] Suicide Squad Isekai - 09 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,448822913,2024-08-14T11:17:09,anime,1920x1080,hevc,1444.096,2486 +/mnt/Downloads/anime/[ANi] 新人大叔冒險者,被最強隊伍操到死成無敵 - 12 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 新人大叔冒險者,被最強隊伍操到死成無敵 - 12 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,565204800,2024-09-24T00:14:45,anime,1920x1080,h264,1424.9862,3173 +/mnt/Downloads/anime/[ANi] 身為暗殺者的我明顯比勇者還強 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 身為暗殺者的我明顯比勇者還強 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,503428349,2025-10-21T05:35:19,anime,1920x1080,h264,1430.032911,2816 +/mnt/Downloads/anime/[ANi] 我要【招架】一切~反誤解的世界最強想成為冒險家~ - 10 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 我要【招架】一切~反誤解的世界最強想成為冒險家~ - 10 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,368629761,2024-09-05T23:39:45,anime,1920x1080,h264,1420.064622,2076 +/mnt/Downloads/anime/[ANi] 素材採集家的異世界旅行記 - 03 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 素材採集家的異世界旅行記 - 03 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,298466087,2025-10-14T00:06:17,anime,1920x1080,h264,1420.064622,1681 +"/mnt/Downloads/anime/[Eternal][Modaete yo, Adam-kun][06][GB][720P][Uncensored].mp4","[Eternal][Modaete yo, Adam-kun][06][GB][720P][Uncensored].mp4",49246888,2024-03-03T23:59:25,anime,1280x720,h264,421.461333,934 +/mnt/Downloads/anime/Secret.Level.S01.1080p.AMZN.WEB-DL.DDP5.1.Atmos.H.264-FLUX/Secret.Level.S01E11.Exodus.Odyssey.1080p.AMZN.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv,Secret.Level.S01E11.Exodus.Odyssey.1080p.AMZN.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv,661509570,2024-12-22T01:04:00,anime,1920x960,h264,926.542,5711 +/mnt/Downloads/anime/Secret.Level.S01.1080p.AMZN.WEB-DL.DDP5.1.Atmos.H.264-FLUX/Secret.Level.S01E10.Mega.Man.Start.1080p.AMZN.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv,Secret.Level.S01E10.Mega.Man.Start.1080p.AMZN.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv,353994649,2024-12-22T01:02:12,anime,1920x960,h264,500.417,5659 +/mnt/Downloads/anime/Secret.Level.S01.1080p.AMZN.WEB-DL.DDP5.1.Atmos.H.264-FLUX/Secret.Level.S01E14.Honor.of.Kings.The.Way.of.All.Things.1080p.AMZN.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv,Secret.Level.S01E14.Honor.of.Kings.The.Way.of.All.Things.1080p.AMZN.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv,785826697,2024-12-22T01:07:19,anime,1920x960,h264,1104.459,5692 +/mnt/Downloads/anime/Secret.Level.S01.1080p.AMZN.WEB-DL.DDP5.1.Atmos.H.264-FLUX/Secret.Level.S01E07.Crossfire.Good.Conflict.1080p.AMZN.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv,Secret.Level.S01E07.Crossfire.Good.Conflict.1080p.AMZN.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv,1279825348,2024-12-22T01:26:19,anime,1920x960,h264,1153.875,8873 +/mnt/Downloads/anime/Secret.Level.S01.1080p.AMZN.WEB-DL.DDP5.1.Atmos.H.264-FLUX/Secret.Level.S01E13.Concord.Tale.of.the.Implacable.1080p.AMZN.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv,Secret.Level.S01E13.Concord.Tale.of.the.Implacable.1080p.AMZN.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv,987683578,2024-12-22T01:07:07,anime,1920x960,h264,1094.417,7219 +/mnt/Downloads/anime/Secret.Level.S01.1080p.AMZN.WEB-DL.DDP5.1.Atmos.H.264-FLUX/Secret.Level.S01E15.Playtime.Fulfillment.1080p.AMZN.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv,Secret.Level.S01E15.Playtime.Fulfillment.1080p.AMZN.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv,697258375,2024-12-22T01:07:25,anime,1920x960,h264,745.667,7480 +/mnt/Downloads/anime/Secret.Level.S01.1080p.AMZN.WEB-DL.DDP5.1.Atmos.H.264-FLUX/Secret.Level.S01E04.Unreal.Tournament.Xan.1080p.AMZN.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv,Secret.Level.S01E04.Unreal.Tournament.Xan.1080p.AMZN.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv,935297746,2024-12-22T01:26:11,anime,1920x960,h264,1140.709,6559 +/mnt/Downloads/anime/Secret.Level.S01.1080p.AMZN.WEB-DL.DDP5.1.Atmos.H.264-FLUX/Secret.Level.S01E06.PAC-MAN.Circle.1080p.AMZN.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv,Secret.Level.S01E06.PAC-MAN.Circle.1080p.AMZN.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv,666449821,2024-12-22T01:26:09,anime,1920x960,h264,684.084,7793 +/mnt/Downloads/anime/Secret.Level.S01.1080p.AMZN.WEB-DL.DDP5.1.Atmos.H.264-FLUX/Secret.Level.S01E08.Armored.Core.Asset.Management.1080p.AMZN.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv,Secret.Level.S01E08.Armored.Core.Asset.Management.1080p.AMZN.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv,584576245,2024-12-22T01:26:20,anime,1920x960,h264,860.542,5434 +/mnt/Downloads/anime/Secret.Level.S01.1080p.AMZN.WEB-DL.DDP5.1.Atmos.H.264-FLUX/Secret.Level.S01E01.Dungeons.and.Dragons.The.Queens.Cradle.1080p.AMZN.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv,Secret.Level.S01E01.Dungeons.and.Dragons.The.Queens.Cradle.1080p.AMZN.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv,850645656,2024-12-22T01:24:15,anime,1920x960,h264,959.834,7089 +/mnt/Downloads/anime/Secret.Level.S01.1080p.AMZN.WEB-DL.DDP5.1.Atmos.H.264-FLUX/Secret.Level.S01E05.Warhammer.40000.And.They.Shall.Know.No.Fear.1080p.AMZN.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv,Secret.Level.S01E05.Warhammer.40000.And.They.Shall.Know.No.Fear.1080p.AMZN.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv,918203058,2024-12-22T01:26:15,anime,1920x960,h264,1141.542,6434 +/mnt/Downloads/anime/Secret.Level.S01.1080p.AMZN.WEB-DL.DDP5.1.Atmos.H.264-FLUX/Secret.Level.S01E03.New.World.The.Once.and.Future.King.1080p.AMZN.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv,Secret.Level.S01E03.New.World.The.Once.and.Future.King.1080p.AMZN.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv,755441062,2024-12-22T01:25:55,anime,1920x960,h264,882.292,6849 +/mnt/Downloads/anime/Secret.Level.S01.1080p.AMZN.WEB-DL.DDP5.1.Atmos.H.264-FLUX/Secret.Level.S01E02.Sifu.It.Takes.a.Life.1080p.AMZN.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv,Secret.Level.S01E02.Sifu.It.Takes.a.Life.1080p.AMZN.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv,527727703,2024-12-22T01:25:23,anime,1920x960,h264,593.5,7113 +/mnt/Downloads/anime/Secret.Level.S01.1080p.AMZN.WEB-DL.DDP5.1.Atmos.H.264-FLUX/Secret.Level.S01E12.Spelunky.Tally.1080p.AMZN.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv,Secret.Level.S01E12.Spelunky.Tally.1080p.AMZN.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv,316368556,2024-12-22T01:01:58,anime,1920x960,h264,505.875,5003 +/mnt/Downloads/anime/Secret.Level.S01.1080p.AMZN.WEB-DL.DDP5.1.Atmos.H.264-FLUX/Secret.Level.S01E09.The.Outer.Worlds.The.Company.We.Keep.1080p.AMZN.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv,Secret.Level.S01E09.The.Outer.Worlds.The.Company.We.Keep.1080p.AMZN.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv,949264294,2024-12-22T01:06:52,anime,1920x960,h264,1124.667,6752 +/mnt/Downloads/anime/Baki.2018.S01.Part2.NF.1080p.WEB-DL.AAC.H.264@BWE/[第 2 部分.Ep14] 刃牙 - 不被允许的自由.mkv,[第 2 部分.Ep14] 刃牙 - 不被允许的自由.mkv,957190374,2023-11-07T16:57:20,anime,1920x1080,h264,1416.707,5405 +/mnt/Downloads/anime/Baki.2018.S01.Part2.NF.1080p.WEB-DL.AAC.H.264@BWE/[第 2 部分.Ep24] 刃牙 - 败北.mkv,[第 2 部分.Ep24] 刃牙 - 败北.mkv,421646173,2023-11-07T16:57:55,anime,1920x1080,h264,1451.742,2323 +/mnt/Downloads/anime/Baki.2018.S01.Part2.NF.1080p.WEB-DL.AAC.H.264@BWE/[第 2 部分.Ep18] 刃牙 - 谢谢.mkv,[第 2 部分.Ep18] 刃牙 - 谢谢.mkv,794529143,2023-11-07T16:57:53,anime,1920x1080,h264,1451.742,4378 +/mnt/Downloads/anime/Baki.2018.S01.Part2.NF.1080p.WEB-DL.AAC.H.264@BWE/[第 2 部分.Ep22] 刃牙 - 超雄对决.mkv,[第 2 部分.Ep22] 刃牙 - 超雄对决.mkv,923796180,2023-11-07T16:57:53,anime,1920x1080,h264,1411.702,5235 +/mnt/Downloads/anime/Baki.2018.S01.Part2.NF.1080p.WEB-DL.AAC.H.264@BWE/[第 2 部分.Ep20] 刃牙 - SAGA.mkv,[第 2 部分.Ep20] 刃牙 - SAGA.mkv,809046929,2023-11-07T16:56:54,anime,1920x1080,h264,1429.72,4527 +/mnt/Downloads/anime/Baki.2018.S01.Part2.NF.1080p.WEB-DL.AAC.H.264@BWE/[第 2 部分.Ep23] 刃牙 - 动真格的攻击.mkv,[第 2 部分.Ep23] 刃牙 - 动真格的攻击.mkv,967938026,2023-11-07T16:57:18,anime,1920x1080,h264,1346.637,5750 +/mnt/Downloads/anime/Baki.2018.S01.Part2.NF.1080p.WEB-DL.AAC.H.264@BWE/[第 2 部分.Ep26] 刃牙 - 大擂台赛.mkv,[第 2 部分.Ep26] 刃牙 - 大擂台赛.mkv,495854080,2023-11-07T16:57:44,anime,1920x1080,h264,1421.712,2790 +/mnt/Downloads/anime/Baki.2018.S01.Part2.NF.1080p.WEB-DL.AAC.H.264@BWE/[第 2 部分.Ep19] 刃牙 - 你要认输吗?.mkv,[第 2 部分.Ep19] 刃牙 - 你要认输吗?.mkv,916873346,2023-11-07T16:57:53,anime,1920x1080,h264,1451.742,5052 +/mnt/Downloads/anime/Baki.2018.S01.Part2.NF.1080p.WEB-DL.AAC.H.264@BWE/[第 2 部分.Ep25] 刃牙 - 神与鬼.mkv,[第 2 部分.Ep25] 刃牙 - 神与鬼.mkv,1345340937,2023-11-07T16:57:48,anime,1920x1080,h264,1451.742,7413 +/mnt/Downloads/anime/Baki.2018.S01.Part2.NF.1080p.WEB-DL.AAC.H.264@BWE/[第 2 部分.Ep17] 刃牙 - 父亲!!.mkv,[第 2 部分.Ep17] 刃牙 - 父亲!!.mkv,866929104,2023-11-07T16:57:38,anime,1920x1080,h264,1451.742,4777 +/mnt/Downloads/anime/Baki.2018.S01.Part2.NF.1080p.WEB-DL.AAC.H.264@BWE/[第 2 部分.Ep21] 刃牙 - 制裁.mkv,[第 2 部分.Ep21] 刃牙 - 制裁.mkv,990135838,2023-11-07T16:57:40,anime,1920x1080,h264,1385.676,5716 +/mnt/Downloads/anime/Baki.2018.S01.Part2.NF.1080p.WEB-DL.AAC.H.264@BWE/[第 2 部分.Ep15] 刃牙 - 超级体力.mkv,[第 2 部分.Ep15] 刃牙 - 超级体力.mkv,463518894,2023-11-07T16:57:15,anime,1920x1080,h264,1451.742,2554 +/mnt/Downloads/anime/Baki.2018.S01.Part2.NF.1080p.WEB-DL.AAC.H.264@BWE/[第 2 部分.Ep16] 刃牙 - 斩击.mkv,[第 2 部分.Ep16] 刃牙 - 斩击.mkv,837042801,2023-11-07T16:57:50,anime,1920x1080,h264,1451.742,4612 +/mnt/Downloads/anime/[ANi] 我獨自升級 第二季 -起於闇影- - 15 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 我獨自升級 第二季 -起於闇影- - 15 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,566921463,2025-01-19T00:36:27,anime,1920x1080,h264,1425.237333,3182 +/mnt/Downloads/anime/[ANi] 小手指同學,請別亂摸 [年齡限制版] - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 小手指同學,請別亂摸 [年齡限制版] - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,166446009,2025-10-06T03:18:27,anime,1920x1080,h264,720.042667,1849 +/mnt/Downloads/anime/[ANi] WIND BREAKER—防風少年— - 06 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] WIND BREAKER—防風少年— - 06 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,430512859,2024-05-09T23:32:00,anime,1920x1080,h264,1440.042911,2391 +/mnt/Downloads/anime/[ANi] 新人大叔冒險者,被最強隊伍操到死成無敵 - 09 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 新人大叔冒險者,被最強隊伍操到死成無敵 - 09 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,456292877,2024-09-03T02:06:31,anime,1920x1080,h264,1425.027911,2561 +/mnt/Downloads/anime/[ANi] 青梅竹馬的戀愛喜劇無法成立 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 青梅竹馬的戀愛喜劇無法成立 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,430029296,2026-01-06T00:16:04,anime,1920x1080,h264,1430.08,2405 +/mnt/Downloads/anime/《BLEACH 死神 千年血戰篇》#12/《BLEACH 死神 千年血戰篇》#12 (日語原聲)【Ani-One Asia ULTRA】.mp4,《BLEACH 死神 千年血戰篇》#12 (日語原聲)【Ani-One Asia ULTRA】.mp4,256893697,2022-12-27T01:27:22,anime,1920x1080,h264,1438.54585,1428 +/mnt/Downloads/anime/[LoliHouse] Class no Daikirai na Joshi to Kekkon suru Koto ni Natta. - 07 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,[LoliHouse] Class no Daikirai na Joshi to Kekkon suru Koto ni Natta. - 07 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,293449840,2025-02-16T09:00:48,anime,1920x1080,hevc,1420.063,1653 +/mnt/Downloads/anime/[ANi] 使人誤解的工房主~關於原英雄隊伍的雜役人員,實際上除了戰鬥能力外全是SSS的故事~ - 06 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 使人誤解的工房主~關於原英雄隊伍的雜役人員,實際上除了戰鬥能力外全是SSS的故事~ - 06 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,324080864,2025-05-05T02:40:54,anime,1920x1080,h264,1420.032,1825 +/mnt/Downloads/anime/[HYSUB]Dungeon Meshi[03][BIG5_MP4][1920X1080].mp4,[HYSUB]Dungeon Meshi[03][BIG5_MP4][1920X1080].mp4,304479284,2024-01-18T23:35:31,anime,1920x1080,h264,1440.170667,1691 +/mnt/Downloads/anime/[ANi] 最後可以再拜託您一件事嗎? - 10 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 最後可以再拜託您一件事嗎? - 10 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,397733836,2025-11-29T02:57:06,anime,1920x1080,h264,1425.130667,2232 +/mnt/Downloads/anime/[ANi] GNOSIA - 05 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] GNOSIA - 05 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,637150409,2025-11-09T00:23:27,anime,1920x1080,h264,1565.084489,3256 +/mnt/Downloads/anime/[ANi] 膽大黨 - 10 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 膽大黨 - 10 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,651317521,2024-12-05T23:42:16,anime,1920x1080,h264,1422.024911,3664 +/mnt/Downloads/anime/[LoliHouse] Oooku [WebRip 1080p HEVC-10bit AAC]/[LoliHouse] Oooku - 09 [WebRip 1080p HEVC-10bit AAC SRTx4].mkv,[LoliHouse] Oooku - 09 [WebRip 1080p HEVC-10bit AAC SRTx4].mkv,457089930,2023-07-13T04:19:09,anime,1920x1080,hevc,1540.288,2374 +/mnt/Downloads/anime/[LoliHouse] Oooku [WebRip 1080p HEVC-10bit AAC]/[LoliHouse] Oooku - 01 [WebRip 1080p HEVC-10bit AAC SRTx4].mkv,[LoliHouse] Oooku - 01 [WebRip 1080p HEVC-10bit AAC SRTx4].mkv,1400641516,2023-07-13T04:19:14,anime,1920x1080,hevc,4791.616,2338 +/mnt/Downloads/anime/[LoliHouse] Oooku [WebRip 1080p HEVC-10bit AAC]/[LoliHouse] Oooku - 05 [WebRip 1080p HEVC-10bit AAC SRTx4].mkv,[LoliHouse] Oooku - 05 [WebRip 1080p HEVC-10bit AAC SRTx4].mkv,494858179,2023-07-13T04:19:14,anime,1920x1080,hevc,1618.24,2446 +/mnt/Downloads/anime/[LoliHouse] Oooku [WebRip 1080p HEVC-10bit AAC]/[LoliHouse] Oooku - 04 [WebRip 1080p HEVC-10bit AAC SRTx4].mkv,[LoliHouse] Oooku - 04 [WebRip 1080p HEVC-10bit AAC SRTx4].mkv,488740006,2023-07-13T04:19:11,anime,1920x1080,hevc,1766.464,2213 +/mnt/Downloads/anime/[LoliHouse] Oooku [WebRip 1080p HEVC-10bit AAC]/[LoliHouse] Oooku - 08 [WebRip 1080p HEVC-10bit AAC SRTx4].mkv,[LoliHouse] Oooku - 08 [WebRip 1080p HEVC-10bit AAC SRTx4].mkv,494931349,2023-07-13T04:19:11,anime,1920x1080,hevc,1550.272,2554 +/mnt/Downloads/anime/[LoliHouse] Oooku [WebRip 1080p HEVC-10bit AAC]/[LoliHouse] Oooku - 02 [WebRip 1080p HEVC-10bit AAC SRTx4].mkv,[LoliHouse] Oooku - 02 [WebRip 1080p HEVC-10bit AAC SRTx4].mkv,481828449,2023-07-13T04:19:10,anime,1920x1080,hevc,1756.48,2194 +/mnt/Downloads/anime/[LoliHouse] Oooku [WebRip 1080p HEVC-10bit AAC]/[LoliHouse] Oooku - 06 [WebRip 1080p HEVC-10bit AAC SRTx4].mkv,[LoliHouse] Oooku - 06 [WebRip 1080p HEVC-10bit AAC SRTx4].mkv,503443572,2023-07-13T04:19:12,anime,1920x1080,hevc,1758.4,2290 +/mnt/Downloads/anime/[LoliHouse] Oooku [WebRip 1080p HEVC-10bit AAC]/[LoliHouse] Oooku - 10 [WebRip 1080p HEVC-10bit AAC SRTx4].mkv,[LoliHouse] Oooku - 10 [WebRip 1080p HEVC-10bit AAC SRTx4].mkv,554922077,2023-07-13T04:19:11,anime,1920x1080,hevc,1618.24,2743 +/mnt/Downloads/anime/[LoliHouse] Oooku [WebRip 1080p HEVC-10bit AAC]/[LoliHouse] Oooku - 03 [WebRip 1080p HEVC-10bit AAC SRTx4].mkv,[LoliHouse] Oooku - 03 [WebRip 1080p HEVC-10bit AAC SRTx4].mkv,436730278,2023-07-13T04:19:11,anime,1920x1080,hevc,1674.304,2086 +/mnt/Downloads/anime/[LoliHouse] Oooku [WebRip 1080p HEVC-10bit AAC]/[LoliHouse] Oooku - 07 [WebRip 1080p HEVC-10bit AAC SRTx4].mkv,[LoliHouse] Oooku - 07 [WebRip 1080p HEVC-10bit AAC SRTx4].mkv,466559155,2023-07-13T04:19:12,anime,1920x1080,hevc,1570.24,2377 +/mnt/Downloads/anime/[ANi] 膽大黨 第二季 - 22 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 膽大黨 第二季 - 22 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,602078391,2025-09-04T23:31:34,anime,1920x1080,h264,1432.034911,3363 +/mnt/Downloads/anime/[ANi] 靠廢柴技能【狀態異常】成為最強的我將蹂躪一切 - 04 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 靠廢柴技能【狀態異常】成為最強的我將蹂躪一切 - 04 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,461056086,2024-07-25T23:31:01,anime,1920x1080,h264,1450.069333,2543 +/mnt/Downloads/anime/[orion origin] Boukyaku Battery [05] [1080p] [H265 AAC] [CHT&JPN].mp4,[orion origin] Boukyaku Battery [05] [1080p] [H265 AAC] [CHT&JPN].mp4,428092789,2024-06-27T15:30:17,anime,1920x1080,hevc,1435.04,2386 +/mnt/Downloads/anime/[LoliHouse] Beheneko - 01 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,[LoliHouse] Beheneko - 01 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,494458922,2025-01-14T12:20:50,anime,1920x1080,hevc,1422.464,2780 +/mnt/Downloads/anime/[BeanSub&FZSD][Kimetsu_no_Yaiba][61][GB][1080P][x264_AAC].mp4,[BeanSub&FZSD][Kimetsu_no_Yaiba][61][GB][1080P][x264_AAC].mp4,536533093,2024-06-16T23:10:49,anime,1920x1080,h264,1420.178866,3022 +/mnt/Downloads/anime/[Skymoon-Raws] Kaguya-sama wa Kokurasetai S03 - 08 [ViuTV][WEB-DL][CHT][1080p][AVC AAC][MP4+ASS]/[Skymoon-Raws] Kaguya-sama wa Kokurasetai S03 - 08 [ViuTV][WEB-DL][1080p][AVC AAC].mp4,[Skymoon-Raws] Kaguya-sama wa Kokurasetai S03 - 08 [ViuTV][WEB-DL][1080p][AVC AAC].mp4,381320834,2022-05-27T23:50:53,anime,1920x1080,h264,1440.085333,2118 +/mnt/Downloads/anime/[Nekomoe kissaten][Ninja Kamui][09][1080p][CHT].mp4,[Nekomoe kissaten][Ninja Kamui][09][1080p][CHT].mp4,357889036,2024-04-16T11:22:02,anime,1920x1080,h264,1378.585542,2076 +"/mnt/Downloads/anime/[LoliHouse] Party kara Tsuihou sareta Sono Chiyushi, Jitsu wa Saikyou ni Tsuki - 04 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv","[LoliHouse] Party kara Tsuihou sareta Sono Chiyushi, Jitsu wa Saikyou ni Tsuki - 04 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv",397951975,2024-11-01T11:16:11,anime,1920x1080,hevc,1404.041,2267 +/mnt/Downloads/anime/[ANi] 和雨.和你 - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 和雨.和你 - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,280867397,2025-07-13T00:11:20,anime,1920x1080,h264,1368.064,1642 +/mnt/Downloads/anime/[Nekomoe kissaten&LoliHouse] Dungeon Meshi - 12 [WebRip 1080p HEVC-10bit AAC EAC3 ASSx2].mkv,[Nekomoe kissaten&LoliHouse] Dungeon Meshi - 12 [WebRip 1080p HEVC-10bit AAC EAC3 ASSx2].mkv,714680116,2024-03-23T10:24:01,anime,1920x1080,hevc,1440.024,3970 +/mnt/Downloads/anime/[LoliHouse] Re Monster - 10 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,[LoliHouse] Re Monster - 10 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,559865675,2024-06-04T15:09:53,anime,1920x1080,hevc,1420.109,3153 +/mnt/Downloads/anime/[LoliHouse] Ore dake Level Up na Ken - 16 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,[LoliHouse] Ore dake Level Up na Ken - 16 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,489562897,2025-01-31T08:04:52,anime,1920x1080,hevc,1420.063,2757 +/mnt/Downloads/anime/[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru no Darou ka V - Hoojou no Megami-hen - 14 [ViuTV][WEB-DL][CHT][SRT][1080p][AVC AAC].mkv,[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru no Darou ka V - Hoojou no Megami-hen - 14 [ViuTV][WEB-DL][CHT][SRT][1080p][AVC AAC].mkv,431990640,2025-02-27T00:23:36,anime,1920x1080,h264,1420.01,2433 +/mnt/Downloads/anime/[ANi] 戀上換裝娃娃 Season 2 - 24 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 戀上換裝娃娃 Season 2 - 24 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,313768113,2025-09-21T00:23:03,anime,1920x1080,h264,1425.027911,1761 +/mnt/Downloads/anime/[LoliHouse] Tensei Shitara Slime Datta Ken 3rd Season - 51 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,[LoliHouse] Tensei Shitara Slime Datta Ken 3rd Season - 51 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,390141426,2024-04-20T00:28:17,anime,1920x1080,hevc,1470.079,2123 +/mnt/Downloads/anime/[LoliHouse] Kaijuu 8-gou - 14 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,[LoliHouse] Kaijuu 8-gou - 14 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,892101721,2025-07-26T22:59:09,anime,1920x1080,hevc,1420.016,5025 +/mnt/Downloads/anime/[Nekomoe kissaten][Ao no Hako][22][1080p][JPSC].mp4,[Nekomoe kissaten][Ao no Hako][22][1080p][JPSC].mp4,475310241,2025-03-28T15:50:59,anime,1920x1080,h264,1417.301333,2682 +/mnt/Downloads/anime/[ANi] 貫徹輔助魔法支援弱小隊友的宮廷魔法師,慘遭驅逐後目標成為最強冒險者 - 11 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 貫徹輔助魔法支援弱小隊友的宮廷魔法師,慘遭驅逐後目標成為最強冒險者 - 11 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,539688564,2025-12-14T00:26:03,anime,1920x1080,h264,1417.066667,3046 +/mnt/Downloads/anime/[ANi] 轉生貴族憑鑑定技能扭轉人生 - 06 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 轉生貴族憑鑑定技能扭轉人生 - 06 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,380965848,2024-05-12T15:22:13,anime,1920x1080,h264,1419.989333,2146 +"/mnt/Downloads/anime/[Sakurato] Modaete yo, Adam-kun [01][AVC-8bit 1080p AAC][CHT].mp4","[Sakurato] Modaete yo, Adam-kun [01][AVC-8bit 1080p AAC][CHT].mp4",140395328,2024-01-29T00:45:27,anime,1920x1080,h264,392.486893,2861 +/mnt/Downloads/anime/[LoliHouse] Around 40 Otoko no Isekai Tsuuhan - 03 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,[LoliHouse] Around 40 Otoko no Isekai Tsuuhan - 03 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,596838349,2025-02-03T11:39:56,anime,1920x1080,hevc,1420.109,3362 +/mnt/Downloads/anime/[ANi] 醜男真戰士 - 05 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 醜男真戰士 - 05 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,390956538,2025-08-03T23:44:24,anime,1920x1080,h264,1430.997333,2185 +/mnt/Downloads/anime/[ANi] 因為不是真正的夥伴而被逐出勇者隊伍,流落到邊境展開慢活人生 第二季(僅限港澳台地區) - 01 [1080P][Bilibili][WEB-DL][AAC AVC][CHT CHS][V2].mp4,[ANi] 因為不是真正的夥伴而被逐出勇者隊伍,流落到邊境展開慢活人生 第二季(僅限港澳台地區) - 01 [1080P][Bilibili][WEB-DL][AAC AVC][CHT CHS][V2].mp4,264712423,2024-01-15T11:07:30,anime,1920x1080,h264,1419.989333,1491 +/mnt/Downloads/anime/[Nekomoe kissaten][Chi. Chikyuu no Undou ni Tsuite][06][1080p][JPSC].mp4,[Nekomoe kissaten][Chi. Chikyuu no Undou ni Tsuite][06][1080p][JPSC].mp4,203706580,2024-11-22T11:22:26,anime,1920x1080,h264,1502.122667,1084 +/mnt/Downloads/anime/[ANi] 勇氣爆發 BANG BRAVERN - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 勇氣爆發 BANG BRAVERN - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,792007838,2024-01-26T00:08:08,anime,1920x1080,h264,1420.074667,4461 +/mnt/Downloads/anime/[ANi] 地獄模式 ~喜歡挑戰特殊成就的玩家在廢設定的異世界成為無雙~ - 03 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 地獄模式 ~喜歡挑戰特殊成就的玩家在廢設定的異世界成為無雙~ - 03 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,471204725,2026-01-24T01:22:55,anime,1920x1080,h264,1425.002667,2645 +/mnt/Downloads/anime/[BeanSub&FZSD][Kimetsu_no_Yaiba][56][BIG5][1080P][x264_AAC].mp4,[BeanSub&FZSD][Kimetsu_no_Yaiba][56][BIG5][1080P][x264_AAC].mp4,961105436,2024-05-13T00:01:55,anime,1920x1080,h264,2937.024,2617 +/mnt/Downloads/anime/[HYSUB]The Fable[01][BIG5_MP4][1920X1080].mp4,[HYSUB]The Fable[01][BIG5_MP4][1920X1080].mp4,267604378,2024-04-07T23:35:23,anime,1920x1080,h264,1372.117333,1560 +/mnt/Downloads/anime/[LoliHouse] Mato Seihei no Slave [01-12][WebRip 1080p HEVC-10bit AAC]/[LoliHouse] Mato Seihei no Slave - 08 [WebRip 1080p HEVC-10bit AAC SRT].mkv,[LoliHouse] Mato Seihei no Slave - 08 [WebRip 1080p HEVC-10bit AAC SRT].mkv,440541531,2024-03-27T00:28:10,anime,1920x1080,hevc,1420.01,2481 +/mnt/Downloads/anime/[LoliHouse] Mato Seihei no Slave [01-12][WebRip 1080p HEVC-10bit AAC]/[LoliHouse] Mato Seihei no Slave - 09 [WebRip 1080p HEVC-10bit AAC SRT].mkv,[LoliHouse] Mato Seihei no Slave - 09 [WebRip 1080p HEVC-10bit AAC SRT].mkv,476428483,2024-03-27T00:28:11,anime,1920x1080,hevc,1420.053,2684 +/mnt/Downloads/anime/[LoliHouse] Mato Seihei no Slave [01-12][WebRip 1080p HEVC-10bit AAC]/[LoliHouse] Mato Seihei no Slave - 10 [WebRip 1080p HEVC-10bit AAC SRT].mkv,[LoliHouse] Mato Seihei no Slave - 10 [WebRip 1080p HEVC-10bit AAC SRT].mkv,502533379,2024-03-27T00:28:14,anime,1920x1080,hevc,1420.053,2831 +/mnt/Downloads/anime/[LoliHouse] Mato Seihei no Slave [01-12][WebRip 1080p HEVC-10bit AAC]/[LoliHouse] Mato Seihei no Slave - 06 [WebRip 1080p HEVC-10bit AAC SRT].mkv,[LoliHouse] Mato Seihei no Slave - 06 [WebRip 1080p HEVC-10bit AAC SRT].mkv,630012344,2024-03-27T00:28:14,anime,1920x1080,hevc,1420.053,3549 +/mnt/Downloads/anime/[LoliHouse] Mato Seihei no Slave [01-12][WebRip 1080p HEVC-10bit AAC]/[LoliHouse] Mato Seihei no Slave - 11 [WebRip 1080p HEVC-10bit AAC SRT].mkv,[LoliHouse] Mato Seihei no Slave - 11 [WebRip 1080p HEVC-10bit AAC SRT].mkv,690026580,2024-03-27T00:28:10,anime,1920x1080,hevc,1420.04,3887 +/mnt/Downloads/anime/[LoliHouse] Mato Seihei no Slave [01-12][WebRip 1080p HEVC-10bit AAC]/[LoliHouse] Mato Seihei no Slave - 07 [WebRip 1080p HEVC-10bit AAC SRT].mkv,[LoliHouse] Mato Seihei no Slave - 07 [WebRip 1080p HEVC-10bit AAC SRT].mkv,505336055,2024-03-27T00:28:10,anime,1920x1080,hevc,1422.421,2842 +/mnt/Downloads/anime/[LoliHouse] Mato Seihei no Slave [01-12][WebRip 1080p HEVC-10bit AAC]/[LoliHouse] Mato Seihei no Slave - 12 [WebRip 1080p HEVC-10bit AAC SRT].mkv,[LoliHouse] Mato Seihei no Slave - 12 [WebRip 1080p HEVC-10bit AAC SRT].mkv,475862062,2024-03-26T23:43:53,anime,1920x1080,hevc,1419.434,2681 +/mnt/Downloads/anime/[LoliHouse] Mato Seihei no Slave [01-12][WebRip 1080p HEVC-10bit AAC]/[LoliHouse] Mato Seihei no Slave - 04 [WebRip 1080p HEVC-10bit AAC SRT].mkv,[LoliHouse] Mato Seihei no Slave - 04 [WebRip 1080p HEVC-10bit AAC SRT].mkv,495578373,2024-03-27T00:26:58,anime,1920x1080,hevc,1420.01,2791 +/mnt/Downloads/anime/[LoliHouse] Mato Seihei no Slave [01-12][WebRip 1080p HEVC-10bit AAC]/[LoliHouse] Mato Seihei no Slave - 05 [WebRip 1080p HEVC-10bit AAC SRT].mkv,[LoliHouse] Mato Seihei no Slave - 05 [WebRip 1080p HEVC-10bit AAC SRT].mkv,490654884,2024-03-27T00:28:14,anime,1920x1080,hevc,1420.053,2764 +/mnt/Downloads/anime/[LoliHouse] Mato Seihei no Slave [01-12][WebRip 1080p HEVC-10bit AAC]/[LoliHouse] Mato Seihei no Slave - 02 [WebRip 1080p HEVC-10bit AAC SRT].mkv,[LoliHouse] Mato Seihei no Slave - 02 [WebRip 1080p HEVC-10bit AAC SRT].mkv,482601689,2024-03-27T00:27:06,anime,1920x1080,hevc,1420.053,2718 +/mnt/Downloads/anime/[LoliHouse] Mato Seihei no Slave [01-12][WebRip 1080p HEVC-10bit AAC]/[LoliHouse] Mato Seihei no Slave - 03 [WebRip 1080p HEVC-10bit AAC SRT].mkv,[LoliHouse] Mato Seihei no Slave - 03 [WebRip 1080p HEVC-10bit AAC SRT].mkv,542616909,2024-03-27T00:28:10,anime,1920x1080,hevc,1420.011,3056 +/mnt/Downloads/anime/[LoliHouse] Mato Seihei no Slave [01-12][WebRip 1080p HEVC-10bit AAC]/[LoliHouse] Mato Seihei no Slave - 01 [WebRip 1080p HEVC-10bit AAC SRT].mkv,[LoliHouse] Mato Seihei no Slave - 01 [WebRip 1080p HEVC-10bit AAC SRT].mkv,581487458,2024-03-27T00:27:20,anime,1920x1080,hevc,1420.053,3275 +/mnt/Downloads/anime/[Skymoon-Raws] Kaguya-sama wa Kokurasetai S03 - 07 [ViuTV][WEB-DL][CHT][1080p][AVC AAC][MP4+ASS]/[Skymoon-Raws] Kaguya-sama wa Kokurasetai S03 - 07 [ViuTV][WEB-DL][1080p][AVC AAC].mp4,[Skymoon-Raws] Kaguya-sama wa Kokurasetai S03 - 07 [ViuTV][WEB-DL][1080p][AVC AAC].mp4,394220788,2022-05-21T01:29:57,anime,1920x1080,h264,1440.085333,2189 +/mnt/Downloads/anime/Blue.Eye.Samurai.S01.2023.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-ADWeb/Blue.Eye.Samurai.S01E05.2023.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-ADWeb.mkv,Blue.Eye.Samurai.S01E05.2023.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-ADWeb.mkv,1953977604,2023-11-10T02:53:28,anime,1920x1080,h264,2804.667,5573 +/mnt/Downloads/anime/Blue.Eye.Samurai.S01.2023.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-ADWeb/Blue.Eye.Samurai.S01E01.2023.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-ADWeb.mkv,Blue.Eye.Samurai.S01E01.2023.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-ADWeb.mkv,2637281489,2023-11-10T02:53:25,anime,1920x1080,h264,3755.875,5617 +/mnt/Downloads/anime/Blue.Eye.Samurai.S01.2023.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-ADWeb/Blue.Eye.Samurai.S01E06.2023.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-ADWeb.mkv,Blue.Eye.Samurai.S01E06.2023.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-ADWeb.mkv,1460582373,2023-11-10T02:53:18,anime,1920x1080,h264,2115.209,5524 +/mnt/Downloads/anime/Blue.Eye.Samurai.S01.2023.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-ADWeb/Blue.Eye.Samurai.S01E02.2023.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-ADWeb.mkv,Blue.Eye.Samurai.S01E02.2023.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-ADWeb.mkv,2005606945,2023-11-10T02:53:18,anime,1920x1080,h264,2881.167,5568 +/mnt/Downloads/anime/Blue.Eye.Samurai.S01.2023.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-ADWeb/Blue.Eye.Samurai.S01E04.2023.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-ADWeb.mkv,Blue.Eye.Samurai.S01E04.2023.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-ADWeb.mkv,2004642756,2023-11-10T02:53:18,anime,1920x1080,h264,2877.209,5573 +/mnt/Downloads/anime/Blue.Eye.Samurai.S01.2023.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-ADWeb/Blue.Eye.Samurai.S01E08.2023.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-ADWeb.mkv,Blue.Eye.Samurai.S01E08.2023.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-ADWeb.mkv,2064926756,2023-11-10T02:53:15,anime,1920x1080,h264,2959.709,5581 +/mnt/Downloads/anime/Blue.Eye.Samurai.S01.2023.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-ADWeb/Blue.Eye.Samurai.S01E03.2023.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-ADWeb.mkv,Blue.Eye.Samurai.S01E03.2023.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-ADWeb.mkv,1908445395,2023-11-10T02:53:21,anime,1920x1080,h264,2733.334,5585 +/mnt/Downloads/anime/Blue.Eye.Samurai.S01.2023.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-ADWeb/Blue.Eye.Samurai.S01E07.2023.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-ADWeb.mkv,Blue.Eye.Samurai.S01E07.2023.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-ADWeb.mkv,1915197873,2023-11-10T02:53:25,anime,1920x1080,h264,2756.834,5557 +/mnt/Downloads/anime/[Dont be a simp] Ore dake Level Up na Ken Season 2 - 01-13 [CR WebRip 1080p HEVC-10bit AAC Multi-Subs]/[Dont be a simp] Ore dake Level Up na Ken Season 2 - 12 [CR WebRip 1080p HEVC-10bit AAC Multi-Subs].mkv,[Dont be a simp] Ore dake Level Up na Ken Season 2 - 12 [CR WebRip 1080p HEVC-10bit AAC Multi-Subs].mkv,515378933,2025-04-08T10:34:33,anime,1920x1080,hevc,1420.01,2903 +/mnt/Downloads/anime/[Dont be a simp] Ore dake Level Up na Ken Season 2 - 01-13 [CR WebRip 1080p HEVC-10bit AAC Multi-Subs]/[Dont be a simp] Ore dake Level Up na Ken Season 2 - 06 [CR WebRip 1080p HEVC-10bit AAC Multi-Subs].mkv,[Dont be a simp] Ore dake Level Up na Ken Season 2 - 06 [CR WebRip 1080p HEVC-10bit AAC Multi-Subs].mkv,512463925,2025-04-08T10:33:02,anime,1920x1080,hevc,1421.64,2883 +/mnt/Downloads/anime/[Dont be a simp] Ore dake Level Up na Ken Season 2 - 01-13 [CR WebRip 1080p HEVC-10bit AAC Multi-Subs]/[Dont be a simp] Ore dake Level Up na Ken Season 2 - 13 [CR WebRip 1080p HEVC-10bit AAC Multi-Subs].mkv,[Dont be a simp] Ore dake Level Up na Ken Season 2 - 13 [CR WebRip 1080p HEVC-10bit AAC Multi-Subs].mkv,517982921,2025-04-08T10:34:40,anime,1920x1080,hevc,1420.063,2918 +/mnt/Downloads/anime/[Dont be a simp] Ore dake Level Up na Ken Season 2 - 01-13 [CR WebRip 1080p HEVC-10bit AAC Multi-Subs]/[Dont be a simp] Ore dake Level Up na Ken Season 2 - 07 [CR WebRip 1080p HEVC-10bit AAC Multi-Subs].mkv,[Dont be a simp] Ore dake Level Up na Ken Season 2 - 07 [CR WebRip 1080p HEVC-10bit AAC Multi-Subs].mkv,373953756,2025-04-08T10:33:02,anime,1920x1080,hevc,1421.64,2104 +/mnt/Downloads/anime/[Dont be a simp] Ore dake Level Up na Ken Season 2 - 01-13 [CR WebRip 1080p HEVC-10bit AAC Multi-Subs]/[Dont be a simp] Ore dake Level Up na Ken Season 2 - 01 [CR WebRip 1080p HEVC-10bit AAC Multi-Subs].mkv,[Dont be a simp] Ore dake Level Up na Ken Season 2 - 01 [CR WebRip 1080p HEVC-10bit AAC Multi-Subs].mkv,447524939,2025-04-08T10:34:09,anime,1920x1080,hevc,1420.063,2521 +/mnt/Downloads/anime/[Dont be a simp] Ore dake Level Up na Ken Season 2 - 01-13 [CR WebRip 1080p HEVC-10bit AAC Multi-Subs]/[Dont be a simp] Ore dake Level Up na Ken Season 2 - 04 [CR WebRip 1080p HEVC-10bit AAC Multi-Subs].mkv,[Dont be a simp] Ore dake Level Up na Ken Season 2 - 04 [CR WebRip 1080p HEVC-10bit AAC Multi-Subs].mkv,352503733,2025-04-08T10:31:26,anime,1920x1080,hevc,1421.64,1983 +/mnt/Downloads/anime/[Dont be a simp] Ore dake Level Up na Ken Season 2 - 01-13 [CR WebRip 1080p HEVC-10bit AAC Multi-Subs]/[Dont be a simp] Ore dake Level Up na Ken Season 2 - 09 [CR WebRip 1080p HEVC-10bit AAC Multi-Subs].mkv,[Dont be a simp] Ore dake Level Up na Ken Season 2 - 09 [CR WebRip 1080p HEVC-10bit AAC Multi-Subs].mkv,424769996,2025-04-08T10:34:07,anime,1920x1080,hevc,1420.062,2392 +/mnt/Downloads/anime/[Dont be a simp] Ore dake Level Up na Ken Season 2 - 01-13 [CR WebRip 1080p HEVC-10bit AAC Multi-Subs]/[Dont be a simp] Ore dake Level Up na Ken Season 2 - 10 [CR WebRip 1080p HEVC-10bit AAC Multi-Subs].mkv,[Dont be a simp] Ore dake Level Up na Ken Season 2 - 10 [CR WebRip 1080p HEVC-10bit AAC Multi-Subs].mkv,446617638,2025-04-08T10:34:09,anime,1920x1080,hevc,1420.108,2515 +/mnt/Downloads/anime/[Dont be a simp] Ore dake Level Up na Ken Season 2 - 01-13 [CR WebRip 1080p HEVC-10bit AAC Multi-Subs]/[Dont be a simp] Ore dake Level Up na Ken Season 2 - 02 [CR WebRip 1080p HEVC-10bit AAC Multi-Subs].mkv,[Dont be a simp] Ore dake Level Up na Ken Season 2 - 02 [CR WebRip 1080p HEVC-10bit AAC Multi-Subs].mkv,504355708,2025-04-08T10:31:01,anime,1920x1080,hevc,1420.133,2841 +/mnt/Downloads/anime/[Dont be a simp] Ore dake Level Up na Ken Season 2 - 01-13 [CR WebRip 1080p HEVC-10bit AAC Multi-Subs]/[Dont be a simp] Ore dake Level Up na Ken Season 2 - 08 [CR WebRip 1080p HEVC-10bit AAC Multi-Subs].mkv,[Dont be a simp] Ore dake Level Up na Ken Season 2 - 08 [CR WebRip 1080p HEVC-10bit AAC Multi-Subs].mkv,539339022,2025-04-08T10:34:07,anime,1920x1080,hevc,1420.109,3038 +/mnt/Downloads/anime/[Dont be a simp] Ore dake Level Up na Ken Season 2 - 01-13 [CR WebRip 1080p HEVC-10bit AAC Multi-Subs]/[Dont be a simp] Ore dake Level Up na Ken Season 2 - 05 [CR WebRip 1080p HEVC-10bit AAC Multi-Subs].mkv,[Dont be a simp] Ore dake Level Up na Ken Season 2 - 05 [CR WebRip 1080p HEVC-10bit AAC Multi-Subs].mkv,421857830,2025-04-08T10:32:01,anime,1920x1080,hevc,1421.64,2373 +/mnt/Downloads/anime/[Dont be a simp] Ore dake Level Up na Ken Season 2 - 01-13 [CR WebRip 1080p HEVC-10bit AAC Multi-Subs]/[Dont be a simp] Ore dake Level Up na Ken Season 2 - 11 [CR WebRip 1080p HEVC-10bit AAC Multi-Subs].mkv,[Dont be a simp] Ore dake Level Up na Ken Season 2 - 11 [CR WebRip 1080p HEVC-10bit AAC Multi-Subs].mkv,614414122,2025-04-08T10:34:08,anime,1920x1080,hevc,1420.062,3461 +/mnt/Downloads/anime/[Dont be a simp] Ore dake Level Up na Ken Season 2 - 01-13 [CR WebRip 1080p HEVC-10bit AAC Multi-Subs]/[Dont be a simp] Ore dake Level Up na Ken Season 2 - 03 [CR WebRip 1080p HEVC-10bit AAC Multi-Subs].mkv,[Dont be a simp] Ore dake Level Up na Ken Season 2 - 03 [CR WebRip 1080p HEVC-10bit AAC Multi-Subs].mkv,486152603,2025-04-08T10:31:17,anime,1920x1080,hevc,1421.64,2735 +/mnt/Downloads/anime/[ANi] 擁有超常技能的異世界流浪美食家 S2 - 14 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 擁有超常技能的異世界流浪美食家 S2 - 14 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,399303924,2025-10-21T01:26:16,anime,1920x1080,h264,1435.037911,2226 +/mnt/Downloads/anime/[ANi] 結緣甘神神社 - 08 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 結緣甘神神社 - 08 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,358467443,2024-11-19T15:09:15,anime,1920x1080,h264,1419.989333,2019 +/mnt/Downloads/anime/[ANi] Re:從零開始的異世界生活 第三季 - 07 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] Re:從零開始的異世界生活 第三季 - 07 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,296176464,2024-11-13T14:50:38,anime,1920x1080,h264,1769.997533,1338 +/mnt/Downloads/anime/[LoliHouse] Gachiakuta - 01 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,[LoliHouse] Gachiakuta - 01 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,813302466,2025-07-08T23:28:47,anime,1920x1080,hevc,1419.969,4582 +/mnt/Downloads/anime/[ANi] 水屬性的魔法師 - 09 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 水屬性的魔法師 - 09 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,333934173,2025-09-04T23:31:36,anime,1920x1080,h264,1455.018667,1836 +/mnt/Downloads/anime/[Skymoon-Raws] Kaguya-sama wa Kokurasetai S03 - 01 [ViuTV][WEB-DL][CHT][1080p][AVC AAC][MP4+ASS]/[Skymoon-Raws] Kaguya-sama wa Kokurasetai S03 - 01 [ViuTV][WEB-DL][1080p][AVC AAC].mp4,[Skymoon-Raws] Kaguya-sama wa Kokurasetai S03 - 01 [ViuTV][WEB-DL][1080p][AVC AAC].mp4,409884188,2022-04-09T09:55:52,anime,1920x1080,h264,1500.053333,2185 +"/mnt/Downloads/anime/[LoliHouse] Katainaka no Ossan, Kensei ni Naru - 04 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv","[LoliHouse] Katainaka no Ossan, Kensei ni Naru - 04 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv",707344575,2025-04-27T10:38:27,anime,1920x1080,hevc,1441.024,3926 +/mnt/Downloads/anime/[ANi] 怪獸 8 號 第二季 - 20 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 怪獸 8 號 第二季 - 20 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,592160052,2025-09-07T00:23:35,anime,1920x1080,h264,1420.032,3336 +/mnt/Downloads/anime/[ANi] 香格里拉・開拓異境~糞作獵手挑戰神作~ - 20 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 香格里拉・開拓異境~糞作獵手挑戰神作~ - 20 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,673204612,2024-02-25T10:18:20,anime,1920x1080,h264,1513.366156,3558 +/mnt/Downloads/anime/[ANi] 香格里拉・開拓異境~糞作獵手挑戰神作~ 第二季 - 11 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 香格里拉・開拓異境~糞作獵手挑戰神作~ 第二季 - 11 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,763738341,2024-12-22T08:46:40,anime,1920x1080,h264,1422.024911,4296 +/mnt/Downloads/anime/[ANi] 29 歲單身中堅冒險家的日常 - 04 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 29 歲單身中堅冒險家的日常 - 04 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,422414577,2026-01-28T13:31:48,anime,1920x1080,h264,1425.027911,2371 +/mnt/Downloads/anime/[ANi] S 級怪獸《貝希摩斯》被誤認成小貓,成為精靈女孩的騎士(寵物)一起生活 - 04 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] S 級怪獸《貝希摩斯》被誤認成小貓,成為精靈女孩的騎士(寵物)一起生活 - 04 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,462920788,2025-01-19T00:35:52,anime,1920x1080,h264,1420.064622,2607 +/mnt/Downloads/anime/[ANi] 葬送的芙莉蓮 - 20 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 葬送的芙莉蓮 - 20 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,687959472,2024-01-26T15:19:26,anime,1920x1080,h264,1469.906078,3744 +/mnt/Downloads/anime/[ANi] 九龍大眾浪漫 - 04 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 九龍大眾浪漫 - 04 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,304441930,2025-04-27T00:02:51,anime,1920x1080,h264,1429.952,1703 +/mnt/Downloads/anime/[ANi] 氣絕勇者與暗殺公主 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 氣絕勇者與暗殺公主 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,459802405,2025-07-06T01:25:38,anime,1920x1080,h264,1420.064622,2590 +/mnt/Downloads/anime/[ANi] 結緣甘神神社 - 13 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 結緣甘神神社 - 13 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,356099404,2024-12-24T23:43:41,anime,1920x1080,h264,1420.032,2006 +/mnt/Downloads/anime/[ANi] 異世界悠閒紀行~邊養娃邊當冒險者~ - 05 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 異世界悠閒紀行~邊養娃邊當冒險者~ - 05 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,296754206,2024-07-28T23:51:53,anime,1920x1080,h264,1430.074622,1660 +/mnt/Downloads/anime/[Nekomoe kissaten][Tower of God S2][18][1080p][CHT].mp4,[Nekomoe kissaten][Tower of God S2][18][1080p][CHT].mp4,465587348,2024-11-17T13:26:01,anime,1920x1080,h264,1421.107664,2620 +/mnt/Downloads/anime/[ANi] DDDD 惡魔的破壞 [特別篇] - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] DDDD 惡魔的破壞 [特別篇] - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,359236008,2024-06-20T23:34:56,anime,1920x1080,h264,1430.037333,2009 +/mnt/Downloads/anime/[BeanSub&FZSD][BLEACH_Sennen_Kessen-hen][38][BIG5][1080P][x264_AAC].mp4,[BeanSub&FZSD][BLEACH_Sennen_Kessen-hen][38][BIG5][1080P][x264_AAC].mp4,701554934,2024-12-22T01:13:58,anime,1920x1080,h264,1523.0215,3685 +/mnt/Downloads/anime/[ANi] 水屬性的魔法師 - 12 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 水屬性的魔法師 - 12 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,322470189,2025-09-26T00:01:17,anime,1920x1080,h264,1440.021333,1791 +/mnt/Downloads/anime/[ANi] 被逐出隊伍的治癒師,其實是最強 - 03 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 被逐出隊伍的治癒師,其實是最強 - 03 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,288853797,2024-10-20T12:09:50,anime,1920x1080,h264,1404.053333,1645 +/mnt/Downloads/anime/[ANi] 刀劍神域外傳 Gun Gale Online II - 08 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 刀劍神域外傳 Gun Gale Online II - 08 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,577898280,2024-11-23T12:44:49,anime,1920x1080,h264,1425.111322,3244 +/mnt/Downloads/anime/[ANi] 治癒魔法的錯誤使用法 - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 治癒魔法的錯誤使用法 - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,652566631,2024-01-13T00:05:49,anime,1920x1080,h264,1420.022911,3676 +/mnt/Downloads/anime/[ANi] 無職轉生~到了異世界就拿出真本事 第二季 - 23 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 無職轉生~到了異世界就拿出真本事 第二季 - 23 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,453356075,2024-06-23T23:51:00,anime,1920x1080,h264,1419.9812,2554 +/mnt/Downloads/anime/[Lilith-Raws] Re:Monster - 02 [Baha][WebDL 1080p AVC AAC][CHT].mp4,[Lilith-Raws] Re:Monster - 02 [Baha][WebDL 1080p AVC AAC][CHT].mp4,564081040,2024-05-07T01:18:34,anime,1920x1080,h264,1420.053333,3177 +/mnt/Downloads/anime/[ANi] 地下城中的人 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 地下城中的人 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,431978517,2024-07-06T08:55:24,anime,1920x1080,h264,1467.072,2355 +/mnt/Downloads/anime/[LoliHouse] Tensei Shitara Slime Datta Ken 3rd Season - 55 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,[LoliHouse] Tensei Shitara Slime Datta Ken 3rd Season - 55 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,515701597,2024-05-18T00:09:52,anime,1920x1080,hevc,1470.079,2806 +/mnt/Downloads/anime/[ANi] 忍者與殺手的兩人生活 - 07 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 忍者與殺手的兩人生活 - 07 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,318194820,2025-05-23T00:15:25,anime,1920x1080,h264,1420.032,1792 +/mnt/Downloads/anime/[ANi] 瞬間治癒卻被當成廢物踢出隊伍的天才治療師,改當無照治療師快樂過活 - 06 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 瞬間治癒卻被當成廢物踢出隊伍的天才治療師,改當無照治療師快樂過活 - 06 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,319840385,2025-05-09T00:54:53,anime,1920x1080,h264,1440.085333,1776 +/mnt/Downloads/anime/[LoliHouse] Amagami-san Chi no Enmusubi - 05 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,[LoliHouse] Amagami-san Chi no Enmusubi - 05 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,572834300,2024-10-30T00:08:57,anime,1920x1080,hevc,1420.086,3227 +/mnt/Downloads/anime/[ANi] LAZARUS 拉撒路 - 09 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] LAZARUS 拉撒路 - 09 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,507266309,2025-06-02T00:48:02,anime,1920x1080,h264,1439.978667,2818 +/mnt/Downloads/anime/[BeanSub&FZSD][BLEACH_Sennen_Kessen-hen][34][BIG5][1080P][x264_AAC].mp4,[BeanSub&FZSD][BLEACH_Sennen_Kessen-hen][34][BIG5][1080P][x264_AAC].mp4,779845608,2024-11-24T00:35:37,anime,1920x1080,h264,1443.072,4323 +/mnt/Downloads/anime/[ANi] 記憶縫線 YOUR FORMA - 11 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 記憶縫線 YOUR FORMA - 11 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,623342114,2025-06-12T00:10:08,anime,1920x1080,h264,1425.069622,3499 +/mnt/Downloads/anime/[DHR][NanKoko][01-12][BIG5][720P][AVC_AAC][MP4]/[DHR][NanKoko][09][BIG5][720P][AVC_AAC].mp4,[DHR][NanKoko][09][BIG5][720P][AVC_AAC].mp4,100468198,2019-06-30T16:13:17,anime,1280x720,h264,690.026667,1164 +/mnt/Downloads/anime/[DHR][NanKoko][01-12][BIG5][720P][AVC_AAC][MP4]/[DHR][NanKoko][06][BIG5][720P][AVC_AAC].mp4,[DHR][NanKoko][06][BIG5][720P][AVC_AAC].mp4,123160449,2019-06-30T16:11:29,anime,1280x720,h264,690.026667,1427 +/mnt/Downloads/anime/[DHR][NanKoko][01-12][BIG5][720P][AVC_AAC][MP4]/[DHR][NanKoko][10][BIG5][720P][AVC_AAC].mp4,[DHR][NanKoko][10][BIG5][720P][AVC_AAC].mp4,108015671,2019-06-30T16:13:10,anime,1280x720,h264,689.984,1252 +/mnt/Downloads/anime/[DHR][NanKoko][01-12][BIG5][720P][AVC_AAC][MP4]/[DHR][NanKoko][05][BIG5][720P][AVC_AAC].mp4,[DHR][NanKoko][05][BIG5][720P][AVC_AAC].mp4,113801343,2019-06-30T16:11:52,anime,1280x720,h264,690.069333,1319 +/mnt/Downloads/anime/[DHR][NanKoko][01-12][BIG5][720P][AVC_AAC][MP4]/[DHR][NanKoko][03][BIG5][720P][AVC_AAC].mp4,[DHR][NanKoko][03][BIG5][720P][AVC_AAC].mp4,113254493,2019-06-30T16:11:23,anime,1280x720,h264,690.069333,1312 +/mnt/Downloads/anime/[DHR][NanKoko][01-12][BIG5][720P][AVC_AAC][MP4]/[DHR][NanKoko][08][BIG5][720P][AVC_AAC].mp4,[DHR][NanKoko][08][BIG5][720P][AVC_AAC].mp4,105842454,2019-06-30T16:09:12,anime,1280x720,h264,690.069333,1227 +/mnt/Downloads/anime/[DHR][NanKoko][01-12][BIG5][720P][AVC_AAC][MP4]/[DHR][NanKoko][12][BIG5][720P][AVC_AAC].mp4,[DHR][NanKoko][12][BIG5][720P][AVC_AAC].mp4,102142935,2019-06-30T16:13:19,anime,1280x720,h264,690.026667,1184 +/mnt/Downloads/anime/[DHR][NanKoko][01-12][BIG5][720P][AVC_AAC][MP4]/[DHR][NanKoko][07][BIG5][720P][AVC_AAC].mp4,[DHR][NanKoko][07][BIG5][720P][AVC_AAC].mp4,100723295,2019-06-30T16:09:28,anime,1280x720,h264,690.069333,1167 +/mnt/Downloads/anime/[DHR][NanKoko][01-12][BIG5][720P][AVC_AAC][MP4]/[DHR][NanKoko][11][BIG5][720P][AVC_AAC].mp4,[DHR][NanKoko][11][BIG5][720P][AVC_AAC].mp4,113678060,2019-06-30T16:11:56,anime,1280x720,h264,689.984,1318 +/mnt/Downloads/anime/[DHR][NanKoko][01-12][BIG5][720P][AVC_AAC][MP4]/[DHR][NanKoko][04][BIG5][720P][AVC_AAC].mp4,[DHR][NanKoko][04][BIG5][720P][AVC_AAC].mp4,120008591,2019-06-30T16:12:16,anime,1280x720,h264,690.112,1391 +/mnt/Downloads/anime/[DHR][NanKoko][01-12][BIG5][720P][AVC_AAC][MP4]/[DHR][NanKoko][01][BIG5][720P][AVC_AAC].mp4,[DHR][NanKoko][01][BIG5][720P][AVC_AAC].mp4,112232015,2019-06-30T16:13:17,anime,1280x720,h264,690.026667,1301 +/mnt/Downloads/anime/[DHR][NanKoko][01-12][BIG5][720P][AVC_AAC][MP4]/[DHR][NanKoko][02][BIG5][720P][AVC_AAC].mp4,[DHR][NanKoko][02][BIG5][720P][AVC_AAC].mp4,116899866,2019-06-30T16:11:18,anime,1280x720,h264,690.026667,1355 +/mnt/Downloads/anime/[ANi] 我的妻子不具感情 - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 我的妻子不具感情 - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,408782638,2024-07-07T04:00:42,anime,1920x1080,h264,1419.989333,2303 +/mnt/Downloads/anime/[LoliHouse] Shin Samurai-den YAIBA - 06 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,[LoliHouse] Shin Samurai-den YAIBA - 06 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,717043076,2025-05-11T23:50:24,anime,1920x1080,hevc,1430.021,4011 +/mnt/Downloads/anime/[BeanSub&FZSD][Kimetsu_no_Yaiba][58][BIG5][1080P][x264_AAC].mp4,[BeanSub&FZSD][Kimetsu_no_Yaiba][58][BIG5][1080P][x264_AAC].mp4,485851357,2024-05-26T23:31:01,anime,1920x1080,h264,1422.186667,2732 +/mnt/Downloads/anime/[HYSUB]Sono Bisque Doll wa Koi wo Suru[16][BIG5_MP4][1920X1080].mp4,[HYSUB]Sono Bisque Doll wa Koi wo Suru[16][BIG5_MP4][1920X1080].mp4,305732039,2025-07-26T22:58:27,anime,1920x1080,h264,1422.122667,1719 +/mnt/Downloads/anime/[ANi] LAZARUS 拉撒路 - 12 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] LAZARUS 拉撒路 - 12 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,568190831,2025-06-22T23:59:34,anime,1920x1080,h264,1439.978667,3156 +/mnt/Downloads/anime/[LoliHouse] Shangri-La Frontier - 40 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,[LoliHouse] Shangri-La Frontier - 40 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,730830971,2025-01-19T13:20:09,anime,1920x1080,hevc,1421.897,4111 +/mnt/Downloads/anime/[BeanSub][Ao no Exorcist _Shimane Illuminati Hen][03][BIG5][1080P][x264_AAC].mp4,[BeanSub][Ao no Exorcist _Shimane Illuminati Hen][03][BIG5][1080P][x264_AAC].mp4,293268285,2024-01-21T01:11:36,anime,1920x1080,h264,1420.109206,1652 +/mnt/Downloads/anime/[ANi] 怪獸 8 號 第二季 - 18 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 怪獸 8 號 第二季 - 18 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,624800931,2025-08-23T15:55:12,anime,1920x1080,h264,1420.074667,3519 +/mnt/Downloads/anime/[ANi] 香格里拉・開拓異境~糞作獵手挑戰神作~ - 18 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 香格里拉・開拓異境~糞作獵手挑戰神作~ - 18 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,892880173,2024-02-14T14:19:08,anime,1920x1080,h264,1526.295744,4679 +/mnt/Downloads/anime/[ANi] 葬送的芙莉蓮 - 18 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 葬送的芙莉蓮 - 18 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,750525162,2024-01-13T00:06:32,anime,1920x1080,h264,1470.0312,4084 +/mnt/Downloads/anime/[LoliHouse] ULTRAMAN [WebRip 1080p HEVC-10bit AAC SRTx4] v2/[LoliHouse] ULTRAMAN - 09 [WebRip 1080p HEVC-10bit AAC SRTx4].mkv,[LoliHouse] ULTRAMAN - 09 [WebRip 1080p HEVC-10bit AAC SRTx4].mkv,589167299,2019-04-05T13:25:45,anime,1920x1080,hevc,1372.053,3435 +/mnt/Downloads/anime/[LoliHouse] ULTRAMAN [WebRip 1080p HEVC-10bit AAC SRTx4] v2/[LoliHouse] ULTRAMAN - 12 [WebRip 1080p HEVC-10bit AAC SRTx4].mkv,[LoliHouse] ULTRAMAN - 12 [WebRip 1080p HEVC-10bit AAC SRTx4].mkv,448606609,2019-04-05T13:25:53,anime,1920x1080,hevc,1372.053,2615 +/mnt/Downloads/anime/[LoliHouse] ULTRAMAN [WebRip 1080p HEVC-10bit AAC SRTx4] v2/[LoliHouse] ULTRAMAN - 05 [WebRip 1080p HEVC-10bit AAC SRTx4].mkv,[LoliHouse] ULTRAMAN - 05 [WebRip 1080p HEVC-10bit AAC SRTx4].mkv,451328474,2019-04-05T13:25:37,anime,1920x1080,hevc,1372.053,2631 +/mnt/Downloads/anime/[LoliHouse] ULTRAMAN [WebRip 1080p HEVC-10bit AAC SRTx4] v2/[LoliHouse] ULTRAMAN - 01 [WebRip 1080p HEVC-10bit AAC SRTx4].mkv,[LoliHouse] ULTRAMAN - 01 [WebRip 1080p HEVC-10bit AAC SRTx4].mkv,523274518,2019-04-05T13:27:10,anime,1920x1080,hevc,1372.053,3051 +/mnt/Downloads/anime/[LoliHouse] ULTRAMAN [WebRip 1080p HEVC-10bit AAC SRTx4] v2/[LoliHouse] ULTRAMAN - 04 [WebRip 1080p HEVC-10bit AAC SRTx4].mkv,[LoliHouse] ULTRAMAN - 04 [WebRip 1080p HEVC-10bit AAC SRTx4].mkv,553365862,2019-04-05T13:24:49,anime,1920x1080,hevc,1372.053,3226 +/mnt/Downloads/anime/[LoliHouse] ULTRAMAN [WebRip 1080p HEVC-10bit AAC SRTx4] v2/[LoliHouse] ULTRAMAN - 13 [WebRip 1080p HEVC-10bit AAC SRTx4].mkv,[LoliHouse] ULTRAMAN - 13 [WebRip 1080p HEVC-10bit AAC SRTx4].mkv,703854742,2019-04-05T13:27:23,anime,1920x1080,hevc,1494.058,3768 +/mnt/Downloads/anime/[LoliHouse] ULTRAMAN [WebRip 1080p HEVC-10bit AAC SRTx4] v2/[LoliHouse] ULTRAMAN - 08 [WebRip 1080p HEVC-10bit AAC SRTx4].mkv,[LoliHouse] ULTRAMAN - 08 [WebRip 1080p HEVC-10bit AAC SRTx4].mkv,503144808,2019-04-05T13:27:23,anime,1920x1080,hevc,1372.053,2933 +/mnt/Downloads/anime/[LoliHouse] ULTRAMAN [WebRip 1080p HEVC-10bit AAC SRTx4] v2/[LoliHouse] ULTRAMAN - 06 [WebRip 1080p HEVC-10bit AAC SRTx4].mkv,[LoliHouse] ULTRAMAN - 06 [WebRip 1080p HEVC-10bit AAC SRTx4].mkv,404813869,2019-04-05T13:27:35,anime,1920x1080,hevc,1372.053,2360 +/mnt/Downloads/anime/[LoliHouse] ULTRAMAN [WebRip 1080p HEVC-10bit AAC SRTx4] v2/[LoliHouse] ULTRAMAN - 02 [WebRip 1080p HEVC-10bit AAC SRTx4].mkv,[LoliHouse] ULTRAMAN - 02 [WebRip 1080p HEVC-10bit AAC SRTx4].mkv,601850661,2019-04-05T13:25:47,anime,1920x1080,hevc,1372.053,3509 +/mnt/Downloads/anime/[LoliHouse] ULTRAMAN [WebRip 1080p HEVC-10bit AAC SRTx4] v2/[LoliHouse] ULTRAMAN - 11 [WebRip 1080p HEVC-10bit AAC SRTx4].mkv,[LoliHouse] ULTRAMAN - 11 [WebRip 1080p HEVC-10bit AAC SRTx4].mkv,689032511,2019-04-05T13:27:10,anime,1920x1080,hevc,1372.053,4017 +/mnt/Downloads/anime/[LoliHouse] ULTRAMAN [WebRip 1080p HEVC-10bit AAC SRTx4] v2/[LoliHouse] ULTRAMAN - 10 [WebRip 1080p HEVC-10bit AAC SRTx4].mkv,[LoliHouse] ULTRAMAN - 10 [WebRip 1080p HEVC-10bit AAC SRTx4].mkv,372304146,2019-04-05T13:26:37,anime,1920x1080,hevc,1372.053,2170 +/mnt/Downloads/anime/[LoliHouse] ULTRAMAN [WebRip 1080p HEVC-10bit AAC SRTx4] v2/[LoliHouse] ULTRAMAN - 07 [WebRip 1080p HEVC-10bit AAC SRTx4].mkv,[LoliHouse] ULTRAMAN - 07 [WebRip 1080p HEVC-10bit AAC SRTx4].mkv,729987363,2019-04-05T13:27:08,anime,1920x1080,hevc,1372.053,4256 +/mnt/Downloads/anime/[LoliHouse] ULTRAMAN [WebRip 1080p HEVC-10bit AAC SRTx4] v2/[LoliHouse] ULTRAMAN - 03 [WebRip 1080p HEVC-10bit AAC SRTx4].mkv,[LoliHouse] ULTRAMAN - 03 [WebRip 1080p HEVC-10bit AAC SRTx4].mkv,518631884,2019-04-05T13:25:06,anime,1920x1080,hevc,1372.053,3023 +/mnt/Downloads/anime/[ANi] 杖與劍的魔劍譚 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 杖與劍的魔劍譚 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,403263721,2024-07-07T23:45:18,anime,1920x1080,h264,1426.028911,2262 +/mnt/Downloads/anime/[ANi] 怪獸 8 號 - 05 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 怪獸 8 號 - 05 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,659848277,2024-05-11T23:54:36,anime,1920x1080,h264,1420.032,3717 +/mnt/Downloads/anime/[LoliHouse] Tensei Shitara Slime Datta Ken 3rd Season - 72 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,[LoliHouse] Tensei Shitara Slime Datta Ken 3rd Season - 72 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,271986240,2024-09-27T23:34:21,anime,1920x1080,hevc,1470.101,1480 +/mnt/Downloads/anime/[ANi] 一拳超人(第三季) - 28 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 一拳超人(第三季) - 28 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,384523377,2025-11-03T00:07:25,anime,1920x1080,h264,1441.043911,2134 +/mnt/Downloads/anime/[Nekomoe kissaten][Tower of God S2][10][1080p][CHS].mp4,[Nekomoe kissaten][Tower of God S2][10][1080p][CHS].mp4,564349768,2024-09-19T01:30:09,anime,1920x1080,h264,1421.061224,3177 +/mnt/Downloads/anime/[ANi] Re:從零開始的異世界生活 第三季 - 03 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] Re:從零開始的異世界生活 第三季 - 03 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,397108838,2024-10-16T14:56:45,anime,1920x1080,h264,1420.064622,2237 +/mnt/Downloads/anime/[ANi] 葬送的芙莉蓮 - 24 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 葬送的芙莉蓮 - 24 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,673483953,2024-02-23T15:58:16,anime,1920x1080,h264,1470.072911,3665 +/mnt/Downloads/anime/[Nekomoe kissaten&LoliHouse] Sono Bisque Doll wa Koi wo Suru - 14 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,[Nekomoe kissaten&LoliHouse] Sono Bisque Doll wa Koi wo Suru - 14 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,562801883,2025-07-17T15:26:53,anime,1920x1080,hevc,1420.063,3170 +/mnt/Downloads/anime/[BeanSub&FZSD][BLEACH_Sennen_Kessen-hen][36][BIG5][1080P][x264_AAC].mp4,[BeanSub&FZSD][BLEACH_Sennen_Kessen-hen][36][BIG5][1080P][x264_AAC].mp4,591329563,2024-12-08T01:27:07,anime,1920x1080,h264,1443.050667,3278 +/mnt/Downloads/anime/[Nekomoe kissaten][Dungeon Meshi][21][1080p][JPTC].mp4,[Nekomoe kissaten][Dungeon Meshi][21][1080p][JPTC].mp4,467955651,2024-05-25T13:39:46,anime,1920x1080,h264,1606.058667,2330 +/mnt/Downloads/anime/[ANi] 香格里拉・開拓異境~糞作獵手挑戰神作~ - 24 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 香格里拉・開拓異境~糞作獵手挑戰神作~ - 24 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,848952342,2024-03-31T11:11:16,anime,1920x1080,h264,1561.414156,4349 +/mnt/Downloads/anime/[BeanSub][Ao no Exorcist _Shimane Illuminati Hen][01][BIG5][1080P][x264_AAC].mp4,[BeanSub][Ao no Exorcist _Shimane Illuminati Hen][01][BIG5][1080P][x264_AAC].mp4,383808070,2024-01-07T01:04:32,anime,1920x1080,h264,1420.062766,2162 +/mnt/Downloads/anime/[ANi] 被逐出隊伍的治癒師,其實是最強 - 07 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 被逐出隊伍的治癒師,其實是最強 - 07 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,268653364,2024-11-16T23:31:19,anime,1920x1080,h264,1404.010667,1530 +/mnt/Downloads/anime/[ANi] 終末起點 - 10 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 終末起點 - 10 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,331317992,2025-06-05T01:56:26,anime,1920x1080,h264,1370.152542,1934 +/mnt/Downloads/anime/[ANi] 一拳超人(第三季) - 33 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 一拳超人(第三季) - 33 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,702107904,2025-12-07T23:55:18,anime,1920x1080,h264,1441.043911,3897 +/mnt/Downloads/anime/[ANi] 結緣甘神神社 - 17 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 結緣甘神神社 - 17 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,353624167,2025-02-04T23:35:56,anime,1920x1080,h264,1420.117333,1992 +/mnt/Downloads/anime/Terminator.Zero.S01.2024.1080p.NF.WEB-DL.x264.DDP5.1-ADWeb/Terminator.Zero.S01E08.2024.1080p.NF.WEB-DL.x264.DDP5.1-ADWeb.mkv,Terminator.Zero.S01E08.2024.1080p.NF.WEB-DL.x264.DDP5.1-ADWeb.mkv,1310880514,2024-09-05T23:33:40,anime,1920x1080,h264,1713.728,6119 +/mnt/Downloads/anime/Terminator.Zero.S01.2024.1080p.NF.WEB-DL.x264.DDP5.1-ADWeb/Terminator.Zero.S01E06.2024.1080p.NF.WEB-DL.x264.DDP5.1-ADWeb.mkv,Terminator.Zero.S01E06.2024.1080p.NF.WEB-DL.x264.DDP5.1-ADWeb.mkv,1178374717,2024-09-05T23:33:31,anime,1920x1080,h264,1550.549,6079 +/mnt/Downloads/anime/Terminator.Zero.S01.2024.1080p.NF.WEB-DL.x264.DDP5.1-ADWeb/Terminator.Zero.S01E07.2024.1080p.NF.WEB-DL.x264.DDP5.1-ADWeb.mkv,Terminator.Zero.S01E07.2024.1080p.NF.WEB-DL.x264.DDP5.1-ADWeb.mkv,1305439808,2024-09-05T23:33:39,anime,1920x1080,h264,1719.872,6072 +/mnt/Downloads/anime/Terminator.Zero.S01.2024.1080p.NF.WEB-DL.x264.DDP5.1-ADWeb/Terminator.Zero.S01E04.2024.1080p.NF.WEB-DL.x264.DDP5.1-ADWeb.mkv,Terminator.Zero.S01E04.2024.1080p.NF.WEB-DL.x264.DDP5.1-ADWeb.mkv,1246583858,2024-09-05T23:33:04,anime,1920x1080,h264,1635.776,6096 +/mnt/Downloads/anime/Terminator.Zero.S01.2024.1080p.NF.WEB-DL.x264.DDP5.1-ADWeb/Terminator.Zero.S01E05.2024.1080p.NF.WEB-DL.x264.DDP5.1-ADWeb.mkv,Terminator.Zero.S01E05.2024.1080p.NF.WEB-DL.x264.DDP5.1-ADWeb.mkv,1353474267,2024-09-05T23:33:31,anime,1920x1080,h264,1782.08,6075 +/mnt/Downloads/anime/Terminator.Zero.S01.2024.1080p.NF.WEB-DL.x264.DDP5.1-ADWeb/Terminator.Zero.S01E02.2024.1080p.NF.WEB-DL.x264.DDP5.1-ADWeb.mkv,Terminator.Zero.S01E02.2024.1080p.NF.WEB-DL.x264.DDP5.1-ADWeb.mkv,1309809940,2024-09-05T23:33:07,anime,1920x1080,h264,1729.856,6057 +/mnt/Downloads/anime/Terminator.Zero.S01.2024.1080p.NF.WEB-DL.x264.DDP5.1-ADWeb/Terminator.Zero.S01E03.2024.1080p.NF.WEB-DL.x264.DDP5.1-ADWeb.mkv,Terminator.Zero.S01E03.2024.1080p.NF.WEB-DL.x264.DDP5.1-ADWeb.mkv,1368323554,2024-09-05T23:32:38,anime,1920x1080,h264,1798.976,6084 +/mnt/Downloads/anime/Terminator.Zero.S01.2024.1080p.NF.WEB-DL.x264.DDP5.1-ADWeb/Terminator.Zero.S01E01.2024.1080p.NF.WEB-DL.x264.DDP5.1-ADWeb.mkv,Terminator.Zero.S01E01.2024.1080p.NF.WEB-DL.x264.DDP5.1-ADWeb.mkv,1290310634,2024-09-05T23:32:03,anime,1920x1080,h264,1700.288,6071 +/mnt/Downloads/anime/[ANi] 異世界悠閒紀行~邊養娃邊當冒險者~ - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 異世界悠閒紀行~邊養娃邊當冒險者~ - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,344852012,2024-07-07T23:43:57,anime,1920x1080,h264,1430.032911,1929 +/mnt/Downloads/anime/[ANi] 在地下城尋求邂逅是否搞錯了什麼 第五季 - 10 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 在地下城尋求邂逅是否搞錯了什麼 第五季 - 10 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,328264219,2024-12-19T13:55:46,anime,1920x1080,h264,1420.022911,1849 +/mnt/Downloads/anime/[LoliHouse] Grand Blue S2 - 03 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,[LoliHouse] Grand Blue S2 - 03 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,451714675,2025-07-30T00:27:27,anime,1920x1080,hevc,1440.078,2509 +/mnt/Downloads/anime/[UHA-WINGS][Kakegurui XX][01-12][x264 1080p][tc_jp]/[UHA-WINGS][Kakegurui XX][06][x264 1080p][tc_jp].mp4,[UHA-WINGS][Kakegurui XX][06][x264 1080p][tc_jp].mp4,301726359,2019-04-03T09:48:28,anime,1920x1080,h264,1462.250667,1650 +/mnt/Downloads/anime/[UHA-WINGS][Kakegurui XX][01-12][x264 1080p][tc_jp]/[UHA-WINGS][Kakegurui XX][02][x264 1080p][tc_jp].mp4,[UHA-WINGS][Kakegurui XX][02][x264 1080p][tc_jp].mp4,241465030,2019-04-03T09:51:34,anime,1920x1080,h264,1462.250667,1321 +/mnt/Downloads/anime/[UHA-WINGS][Kakegurui XX][01-12][x264 1080p][tc_jp]/[UHA-WINGS][Kakegurui XX][12][x264 1080p][tc_jp].mp4,[UHA-WINGS][Kakegurui XX][12][x264 1080p][tc_jp].mp4,290859169,2019-04-03T09:49:56,anime,1920x1080,h264,1462.250667,1591 +/mnt/Downloads/anime/[UHA-WINGS][Kakegurui XX][01-12][x264 1080p][tc_jp]/[UHA-WINGS][Kakegurui XX][05][x264 1080p][tc_jp].mp4,[UHA-WINGS][Kakegurui XX][05][x264 1080p][tc_jp].mp4,282463537,2019-04-03T09:49:52,anime,1920x1080,h264,1462.250667,1545 +/mnt/Downloads/anime/[UHA-WINGS][Kakegurui XX][01-12][x264 1080p][tc_jp]/[UHA-WINGS][Kakegurui XX][11][x264 1080p][tc_jp].mp4,[UHA-WINGS][Kakegurui XX][11][x264 1080p][tc_jp].mp4,267346779,2019-04-03T09:56:48,anime,1920x1080,h264,1462.122667,1462 +/mnt/Downloads/anime/[UHA-WINGS][Kakegurui XX][01-12][x264 1080p][tc_jp]/[UHA-WINGS][Kakegurui XX][01][x264 1080p][tc_jp].mp4,[UHA-WINGS][Kakegurui XX][01][x264 1080p][tc_jp].mp4,336887611,2019-04-03T09:47:45,anime,1920x1080,h264,1462.250667,1843 +/mnt/Downloads/anime/[UHA-WINGS][Kakegurui XX][01-12][x264 1080p][tc_jp]/[UHA-WINGS][Kakegurui XX][09][x264 1080p][tc_jp].mp4,[UHA-WINGS][Kakegurui XX][09][x264 1080p][tc_jp].mp4,231322893,2019-04-03T09:57:10,anime,1920x1080,h264,1462.250667,1265 +/mnt/Downloads/anime/[UHA-WINGS][Kakegurui XX][01-12][x264 1080p][tc_jp]/[UHA-WINGS][Kakegurui XX][07][x264 1080p][tc_jp].mp4,[UHA-WINGS][Kakegurui XX][07][x264 1080p][tc_jp].mp4,243698467,2019-04-03T09:57:10,anime,1920x1080,h264,1462.250667,1333 +/mnt/Downloads/anime/[UHA-WINGS][Kakegurui XX][01-12][x264 1080p][tc_jp]/[UHA-WINGS][Kakegurui XX][03][x264 1080p][tc_jp].mp4,[UHA-WINGS][Kakegurui XX][03][x264 1080p][tc_jp].mp4,240849574,2019-04-03T09:52:11,anime,1920x1080,h264,1462.250667,1317 +/mnt/Downloads/anime/[UHA-WINGS][Kakegurui XX][01-12][x264 1080p][tc_jp]/[UHA-WINGS][Kakegurui XX][08][x264 1080p][tc_jp].mp4,[UHA-WINGS][Kakegurui XX][08][x264 1080p][tc_jp].mp4,263538508,2019-04-03T09:57:08,anime,1920x1080,h264,1462.250667,1441 +/mnt/Downloads/anime/[UHA-WINGS][Kakegurui XX][01-12][x264 1080p][tc_jp]/[UHA-WINGS][Kakegurui XX][04][x264 1080p][tc_jp].mp4,[UHA-WINGS][Kakegurui XX][04][x264 1080p][tc_jp].mp4,280839338,2019-04-03T09:47:53,anime,1920x1080,h264,1462.250667,1536 +/mnt/Downloads/anime/[UHA-WINGS][Kakegurui XX][01-12][x264 1080p][tc_jp]/[UHA-WINGS][Kakegurui XX][10][x264 1080p][tc_jp].mp4,[UHA-WINGS][Kakegurui XX][10][x264 1080p][tc_jp].mp4,274912185,2019-04-03T09:57:11,anime,1920x1080,h264,1462.250667,1504 +/mnt/Downloads/anime/[ANi] 身為暗殺者的我明顯比勇者還強 - 05 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 身為暗殺者的我明顯比勇者還強 - 05 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,806251394,2025-11-04T01:29:54,anime,1920x1080,h264,1430.074622,4510 +/mnt/Downloads/anime/[ANi] 盾之勇者成名錄 Season 4 - 11 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 盾之勇者成名錄 Season 4 - 11 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,536999490,2025-09-17T12:26:00,anime,1920x1080,h264,1420.032,3025 +/mnt/Downloads/anime/[ANi] 龍族II 悼亡者之瞳 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 龍族II 悼亡者之瞳 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,946077702,2025-10-09T00:21:59,anime,1920x1080,h264,1425.28,5310 +/mnt/Downloads/anime/[2021][Kaifuku Jutsushi no Yarinaoshi][BDRIP][1080P][1-12Fin+SP]/[Kaifuku Jutsushi no Yarinaoshi][05][BDRIP][1080P][H264_FLAC].mkv,[Kaifuku Jutsushi no Yarinaoshi][05][BDRIP][1080P][H264_FLAC].mkv,1507357874,2022-10-20T06:55:04,anime,1920x1080,h264,1425.05,8462 +/mnt/Downloads/anime/[2021][Kaifuku Jutsushi no Yarinaoshi][BDRIP][1080P][1-12Fin+SP]/[Kaifuku Jutsushi no Yarinaoshi][03][BDRIP][1080P][H264_FLAC].mkv,[Kaifuku Jutsushi no Yarinaoshi][03][BDRIP][1080P][H264_FLAC].mkv,1564662895,2022-10-20T06:55:07,anime,1920x1080,h264,1425.05,8783 +/mnt/Downloads/anime/[2021][Kaifuku Jutsushi no Yarinaoshi][BDRIP][1080P][1-12Fin+SP]/[Kaifuku Jutsushi no Yarinaoshi][Vol.02][SP01][PV #01][BDRIP][1080P][H264_FLAC].mkv,[Kaifuku Jutsushi no Yarinaoshi][Vol.02][SP01][PV #01][BDRIP][1080P][H264_FLAC].mkv,120905777,2022-10-20T06:54:56,anime,1920x1080,h264,64.4,15019 +/mnt/Downloads/anime/[2021][Kaifuku Jutsushi no Yarinaoshi][BDRIP][1080P][1-12Fin+SP]/[Kaifuku Jutsushi no Yarinaoshi][09][BDRIP][1080P][H264_FLAC].mkv,[Kaifuku Jutsushi no Yarinaoshi][09][BDRIP][1080P][H264_FLAC].mkv,1448986462,2022-10-20T06:55:05,anime,1920x1080,h264,1425.007,8134 +/mnt/Downloads/anime/[2021][Kaifuku Jutsushi no Yarinaoshi][BDRIP][1080P][1-12Fin+SP]/[Kaifuku Jutsushi no Yarinaoshi][12][BDRIP][1080P][H264_FLAC].mkv,[Kaifuku Jutsushi no Yarinaoshi][12][BDRIP][1080P][H264_FLAC].mkv,1542074433,2022-10-20T06:55:04,anime,1920x1080,h264,1420.002,8687 +/mnt/Downloads/anime/[2021][Kaifuku Jutsushi no Yarinaoshi][BDRIP][1080P][1-12Fin+SP]/[Kaifuku Jutsushi no Yarinaoshi][04][BDRIP][1080P][H264_FLAC].mkv,[Kaifuku Jutsushi no Yarinaoshi][04][BDRIP][1080P][H264_FLAC].mkv,1629265975,2022-10-20T06:55:04,anime,1920x1080,h264,1425.007,9146 +/mnt/Downloads/anime/[2021][Kaifuku Jutsushi no Yarinaoshi][BDRIP][1080P][1-12Fin+SP]/[Kaifuku Jutsushi no Yarinaoshi][02][BDRIP][1080P][H264_FLAC].mkv,[Kaifuku Jutsushi no Yarinaoshi][02][BDRIP][1080P][H264_FLAC].mkv,1568940602,2022-10-20T06:31:00,anime,1920x1080,h264,1424.965,8808 +/mnt/Downloads/anime/[2021][Kaifuku Jutsushi no Yarinaoshi][BDRIP][1080P][1-12Fin+SP]/[Kaifuku Jutsushi no Yarinaoshi][Vol.01][SP02][NCED][BDRIP][1080P][H264_FLAC].mkv,[Kaifuku Jutsushi no Yarinaoshi][Vol.01][SP02][NCED][BDRIP][1080P][H264_FLAC].mkv,186216836,2022-10-20T06:54:49,anime,1920x1080,h264,93.01,16016 +/mnt/Downloads/anime/[2021][Kaifuku Jutsushi no Yarinaoshi][BDRIP][1080P][1-12Fin+SP]/[Kaifuku Jutsushi no Yarinaoshi][Vol.03][SP01][TV-CM][BDRIP][1080P][H264_FLAC].mkv,[Kaifuku Jutsushi no Yarinaoshi][Vol.03][SP01][TV-CM][BDRIP][1080P][H264_FLAC].mkv,26437391,2022-10-20T06:53:48,anime,1920x1080,h264,17.017,12428 +/mnt/Downloads/anime/[2021][Kaifuku Jutsushi no Yarinaoshi][BDRIP][1080P][1-12Fin+SP]/[Kaifuku Jutsushi no Yarinaoshi][08][BDRIP][1080P][H264_FLAC].mkv,[Kaifuku Jutsushi no Yarinaoshi][08][BDRIP][1080P][H264_FLAC].mkv,1453334495,2022-10-20T06:55:07,anime,1920x1080,h264,1424.925,8159 +/mnt/Downloads/anime/[2021][Kaifuku Jutsushi no Yarinaoshi][BDRIP][1080P][1-12Fin+SP]/[Kaifuku Jutsushi no Yarinaoshi][Vol.01][SP01][NCOP][BDRIP][1080P][H264_FLAC].mkv,[Kaifuku Jutsushi no Yarinaoshi][Vol.01][SP01][NCOP][BDRIP][1080P][H264_FLAC].mkv,183832757,2022-10-20T06:54:59,anime,1920x1080,h264,93.01,15811 +/mnt/Downloads/anime/[2021][Kaifuku Jutsushi no Yarinaoshi][BDRIP][1080P][1-12Fin+SP]/[Kaifuku Jutsushi no Yarinaoshi][07][BDRIP][1080P][H264_FLAC].mkv,[Kaifuku Jutsushi no Yarinaoshi][07][BDRIP][1080P][H264_FLAC].mkv,1512717975,2022-10-20T06:55:07,anime,1920x1080,h264,1424.965,8492 +/mnt/Downloads/anime/[2021][Kaifuku Jutsushi no Yarinaoshi][BDRIP][1080P][1-12Fin+SP]/[Kaifuku Jutsushi no Yarinaoshi][01][BDRIP][1080P][H264_FLAC].mkv,[Kaifuku Jutsushi no Yarinaoshi][01][BDRIP][1080P][H264_FLAC].mkv,1681901438,2022-10-20T06:31:04,anime,1920x1080,h264,1425.007,9442 +/mnt/Downloads/anime/[2021][Kaifuku Jutsushi no Yarinaoshi][BDRIP][1080P][1-12Fin+SP]/[Kaifuku Jutsushi no Yarinaoshi][Logo][BDRIP][1080P][H264_FLAC].mkv,[Kaifuku Jutsushi no Yarinaoshi][Logo][BDRIP][1080P][H264_FLAC].mkv,20916317,2022-10-20T06:50:54,anime,1920x1080,h264,19.019,8798 +/mnt/Downloads/anime/[2021][Kaifuku Jutsushi no Yarinaoshi][BDRIP][1080P][1-12Fin+SP]/[Kaifuku Jutsushi no Yarinaoshi][10][BDRIP][1080P][H264_FLAC].mkv,[Kaifuku Jutsushi no Yarinaoshi][10][BDRIP][1080P][H264_FLAC].mkv,1423009909,2022-10-20T06:55:19,anime,1920x1080,h264,1425.05,7988 +/mnt/Downloads/anime/[2021][Kaifuku Jutsushi no Yarinaoshi][BDRIP][1080P][1-12Fin+SP]/[Kaifuku Jutsushi no Yarinaoshi][06][BDRIP][1080P][H264_FLAC].mkv,[Kaifuku Jutsushi no Yarinaoshi][06][BDRIP][1080P][H264_FLAC].mkv,1488355765,2022-10-20T06:55:06,anime,1920x1080,h264,1424.965,8355 +/mnt/Downloads/anime/[2021][Kaifuku Jutsushi no Yarinaoshi][BDRIP][1080P][1-12Fin+SP]/[Kaifuku Jutsushi no Yarinaoshi][Producer Logo][BDRIP][1080P][H264_FLAC].mkv,[Kaifuku Jutsushi no Yarinaoshi][Producer Logo][BDRIP][1080P][H264_FLAC].mkv,54090,2022-10-20T06:00:31,anime,1920x1080,h264,6.006,72 +/mnt/Downloads/anime/[2021][Kaifuku Jutsushi no Yarinaoshi][BDRIP][1080P][1-12Fin+SP]/[Kaifuku Jutsushi no Yarinaoshi][Vol.02][SP02][PV #02][BDRIP][1080P][H264_FLAC].mkv,[Kaifuku Jutsushi no Yarinaoshi][Vol.02][SP02][PV #02][BDRIP][1080P][H264_FLAC].mkv,157923810,2022-10-20T06:54:58,anime,1920x1080,h264,99.535,12692 +/mnt/Downloads/anime/[2021][Kaifuku Jutsushi no Yarinaoshi][BDRIP][1080P][1-12Fin+SP]/[Kaifuku Jutsushi no Yarinaoshi][Vol.03][SP02][Blu-ray & DVD Selling Notice CM][BDRIP][1080P][H264_FLAC].mkv,[Kaifuku Jutsushi no Yarinaoshi][Vol.03][SP02][Blu-ray & DVD Selling Notice CM][BDRIP][1080P][H264_FLAC].mkv,18914611,2022-10-20T06:54:41,anime,1920x1080,h264,17.017,8892 +/mnt/Downloads/anime/[2021][Kaifuku Jutsushi no Yarinaoshi][BDRIP][1080P][1-12Fin+SP]/[Kaifuku Jutsushi no Yarinaoshi][11][BDRIP][1080P][H264_FLAC].mkv,[Kaifuku Jutsushi no Yarinaoshi][11][BDRIP][1080P][H264_FLAC].mkv,1531853371,2022-10-20T06:55:06,anime,1920x1080,h264,1425.007,8599 +/mnt/Downloads/anime/[ANi] Re:Monster - 07 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] Re:Monster - 07 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,593000195,2024-05-14T02:22:10,anime,1920x1080,h264,1420.022911,3340 +/mnt/Downloads/anime/[BeanSub][Ao no Exorcist _Shimane Illuminati Hen][07][BIG5][1080P][x264_AAC].mp4,[BeanSub][Ao no Exorcist _Shimane Illuminati Hen][07][BIG5][1080P][x264_AAC].mp4,346475826,2024-02-18T02:44:31,anime,1920x1080,h264,1420.062766,1951 +/mnt/Downloads/anime/[ANi] 判處勇者刑 - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 判處勇者刑 - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,452723534,2026-01-15T14:58:04,anime,1920x1080,h264,1514.965333,2390 +/mnt/Downloads/anime/[ANi] 異世界的處置依社畜而定 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 異世界的處置依社畜而定 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,381191736,2026-01-07T00:02:09,anime,1920x1080,h264,1510.08,2019 +/mnt/Downloads/anime/[ANi] 素材採集家的異世界旅行記 - 07 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 素材採集家的異世界旅行記 - 07 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,302685319,2025-11-11T01:33:46,anime,1920x1080,h264,1420.022911,1705 +/mnt/Downloads/anime/Pantheon.S02.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb/Pantheon.S02E04.Olivia.&.Farhad.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv,Pantheon.S02E04.Olivia.&.Farhad.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv,3135711618,2023-11-15T00:40:42,anime,1920x1080,h264,2487.0,10086 +/mnt/Downloads/anime/Pantheon.S02.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb/Pantheon.S02E07.The.World.to.Come.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv,Pantheon.S02E07.The.World.to.Come.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv,3160217584,2023-11-15T00:40:41,anime,1920x1080,h264,2435.584,10380 +/mnt/Downloads/anime/Pantheon.S02.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb/Pantheon.S02E03.Joey.Coupet.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv,Pantheon.S02E03.Joey.Coupet.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv,3298856167,2023-11-15T00:40:40,anime,1920x1080,h264,2545.042,10369 +/mnt/Downloads/anime/Pantheon.S02.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb/Pantheon.S02E01.The.Gods.Have.Not.Died.in.Vain.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv,Pantheon.S02E01.The.Gods.Have.Not.Died.in.Vain.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv,3272748608,2023-11-15T00:40:47,anime,1920x1080,h264,2522.25,10380 +/mnt/Downloads/anime/Pantheon.S02.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb/Pantheon.S02E08.Deep.Time.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv,Pantheon.S02E08.Deep.Time.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv,3415452612,2023-11-15T00:40:49,anime,1920x1080,h264,2756.709,9911 +/mnt/Downloads/anime/Pantheon.S02.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb/Pantheon.S02E05.Yair.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv,Pantheon.S02E05.Yair.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv,3260824045,2023-11-15T00:40:42,anime,1920x1080,h264,2533.0,10298 +/mnt/Downloads/anime/Pantheon.S02.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb/Pantheon.S02E02.Crack.Integrity.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv,Pantheon.S02E02.Crack.Integrity.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv,3138519006,2023-11-15T00:40:42,anime,1920x1080,h264,2486.125,10099 +/mnt/Downloads/anime/Pantheon.S02.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb/Pantheon.S02E06.Apokalypsis.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv,Pantheon.S02E06.Apokalypsis.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv,3207339646,2023-11-15T00:40:41,anime,1920x1080,h264,2519.084,10185 +/mnt/Downloads/anime/[LoliHouse] Mugen Gacha - 12 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,[LoliHouse] Mugen Gacha - 12 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,558715764,2025-12-20T01:42:37,anime,1920x1080,hevc,1430.975,3123 +/mnt/Downloads/anime/[ANi] 青梅竹馬的戀愛喜劇無法成立 - 05 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 青梅竹馬的戀愛喜劇無法成立 - 05 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,369089272,2026-02-02T15:51:04,anime,1920x1080,h264,1430.037333,2064 +/mnt/Downloads/anime/[ANi] 男女之間存在純友情嗎?(不,不存在!) - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 男女之間存在純友情嗎?(不,不存在!) - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,300583770,2025-04-04T17:12:56,anime,1920x1080,h264,1420.074667,1693 +/mnt/Downloads/anime/[BeanSub&FZSD][BLEACH_Sennen_Kessen-hen][39-40][GB][1080P][MP4]/[BeanSub&FZSD][BLEACH_Sennen_Kessen-hen][40][GB][1080P][x264_AAC].mp4,[BeanSub&FZSD][BLEACH_Sennen_Kessen-hen][40][GB][1080P][x264_AAC].mp4,608331509,2024-12-29T03:02:05,anime,1920x1080,h264,1368.042667,3557 +/mnt/Downloads/anime/[BeanSub&FZSD][BLEACH_Sennen_Kessen-hen][39-40][GB][1080P][MP4]/[BeanSub&FZSD][BLEACH_Sennen_Kessen-hen][39][GB][1080P][x264_AAC].mp4,[BeanSub&FZSD][BLEACH_Sennen_Kessen-hen][39][GB][1080P][x264_AAC].mp4,713338256,2024-12-29T03:01:36,anime,1920x1080,h264,1443.024917,3954 +/mnt/Downloads/anime/[HYSUB]Dungeon Meshi[15][BIG5_MP4][1920X1080].mp4,[HYSUB]Dungeon Meshi[15][BIG5_MP4][1920X1080].mp4,300916322,2024-04-12T12:28:39,anime,1920x1080,h264,1530.090667,1573 +/mnt/Downloads/anime/[ANi] FARMAGIA 魔農傳記 - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] FARMAGIA 魔農傳記 - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,440349065,2025-01-17T16:17:12,anime,1920x1080,h264,1440.128,2446 +/mnt/Downloads/anime/[Nekomoe kissaten&LoliHouse] Megami no Cafe Terrace - 14 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,[Nekomoe kissaten&LoliHouse] Megami no Cafe Terrace - 14 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,394620747,2024-07-22T11:05:55,anime,1920x1080,hevc,1435.109,2199 +/mnt/Downloads/anime/[Skymoon-Raws] Jujutsu Kaisen S2 - 01 [ViuTV][WEB-DL][CHT][1080p][AVC AAC][MP4+ASS]/[Skymoon-Raws] Jujutsu Kaisen S2 - 01 [ViuTV][WEB-DL][1080p][AVC AAC].mp4,[Skymoon-Raws] Jujutsu Kaisen S2 - 01 [ViuTV][WEB-DL][1080p][AVC AAC].mp4,456818720,2023-07-06T23:18:08,anime,1920x1080,h264,1435.093333,2546 +/mnt/Downloads/anime/[Nekomoe kissaten][Ishura][08][1080p][JPSC].mp4,[Nekomoe kissaten][Ishura][08][1080p][JPSC].mp4,315991494,2024-02-22T23:59:10,anime,1920x1080,h264,1422.086667,1777 +/mnt/Downloads/anime/[Nekomoe kissaten][Tower of God S2][19][1080p][CHT].mp4,[Nekomoe kissaten][Tower of God S2][19][1080p][CHT].mp4,497453803,2024-11-17T13:26:28,anime,1920x1080,h264,1421.107664,2800 +/mnt/Downloads/anime/《BLEACH 死神 千年血戰篇》#2/《BLEACH 死神 千年血戰篇》#2 (日語原聲)【Ani-One Asia ULTRA】.mp4,《BLEACH 死神 千年血戰篇》#2 (日語原聲)【Ani-One Asia ULTRA】.mp4,233856344,2022-10-18T00:45:46,anime,1920x1080,h264,1438.87093,1300 +/mnt/Downloads/anime/[BeanSub][Ao no Exorcist _Shimane Illuminati Hen][05][BIG5][1080P][x264_AAC].mp4,[BeanSub][Ao no Exorcist _Shimane Illuminati Hen][05][BIG5][1080P][x264_AAC].mp4,368609476,2024-02-04T08:40:14,anime,1920x1080,h264,1420.178866,2076 +/mnt/Downloads/anime/[Nekomoe kissaten][Ninja Kamui][01][1080p][CHS].mp4,[Nekomoe kissaten][Ninja Kamui][01][1080p][CHS].mp4,366463836,2024-03-13T13:38:57,anime,1920x1080,h264,1377.556667,2128 +/mnt/Downloads/anime/[ANi] GNOSIA - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] GNOSIA - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,672257245,2025-10-21T05:44:43,anime,1920x1080,h264,1625.066667,3309 +/mnt/Downloads/anime/[ANi] 休假的壞人先生 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 休假的壞人先生 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,425612840,2024-01-07T23:32:53,anime,1920x1080,h264,1429.757792,2381 +/mnt/Downloads/anime/[LoliHouse] Shangri-La Frontier - 32 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,[LoliHouse] Shangri-La Frontier - 32 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,1173415729,2024-11-26T10:38:00,anime,1920x1080,hevc,1421.967,6601 +/mnt/Downloads/anime/[LoliHouse] Ore dake Level Up na Ken - 09 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,[LoliHouse] Ore dake Level Up na Ken - 09 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,646393693,2024-03-10T02:28:21,anime,1920x1080,hevc,1420.109,3641 +/mnt/Downloads/anime/[ANi] 聽說你們要結婚!? - 08 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 聽說你們要結婚!? - 08 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,425845872,2024-11-22T00:37:53,anime,1920x1080,h264,1419.989333,2399 +/mnt/Downloads/anime/[orion origin] Boukyaku Battery [09] [1080p] [H265 AAC] [CHT&JPN].mp4,[orion origin] Boukyaku Battery [09] [1080p] [H265 AAC] [CHT&JPN].mp4,456810835,2024-06-27T14:47:50,anime,1920x1080,hevc,1435.039002,2546 +/mnt/Downloads/anime/[ANi] 不中用的前輩。 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 不中用的前輩。 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,249496148,2025-10-03T00:06:16,anime,1920x1080,h264,1422.165333,1403 +/mnt/Downloads/anime/[ANi] 我獨自升級 - 11 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 我獨自升級 - 11 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,839212648,2024-03-24T01:11:08,anime,1920x1080,h264,1425.28,4710 +/mnt/Downloads/anime/[ANi] Silent Witch 沉默魔女的祕密 - 06 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] Silent Witch 沉默魔女的祕密 - 06 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,353303126,2025-08-09T01:21:42,anime,1920x1080,h264,1444.964489,1956 +/mnt/Downloads/anime/[ANi] 歲月流逝飯菜依舊美味 - 08 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 歲月流逝飯菜依舊美味 - 08 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,487922055,2025-05-31T23:50:03,anime,1920x1080,h264,1445.098667,2701 +/mnt/Downloads/anime/[HYSUB]The Fable[02][BIG5_MP4][1920X1080].mp4,[HYSUB]The Fable[02][BIG5_MP4][1920X1080].mp4,309345740,2024-04-15T14:25:41,anime,1920x1080,h264,1380.010667,1793 +/mnt/Downloads/anime/[ANi] 差點在迷宮深處被信任的夥伴殺掉,但靠著天賜技能「無限扭蛋」獲得等級 9999 的夥伴,我要向前隊友和世界展開復仇&「給他們好看!」 - 11 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 差點在迷宮深處被信任的夥伴殺掉,但靠著天賜技能「無限扭蛋」獲得等級 9999 的夥伴,我要向前隊友和世界展開復仇&「給他們好看!」 - 11 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,429653833,2025-12-13T01:18:37,anime,1920x1080,h264,1431.033911,2401 +/mnt/Downloads/anime/[Dymy][Kimetsu no Yaiba - Yuukaku Hen][01-11][BIG5][1920X1080]/[Dymy][Kimetsu no Yaiba - Yuukaku Hen][10][BIG5][1920X1080].mp4,[Dymy][Kimetsu no Yaiba - Yuukaku Hen][10][BIG5][1920X1080].mp4,476587200,2022-10-04T12:06:21,anime,1920x1080,h264,1420.095,2684 +/mnt/Downloads/anime/[Dymy][Kimetsu no Yaiba - Yuukaku Hen][01-11][BIG5][1920X1080]/[Dymy][Kimetsu no Yaiba - Yuukaku Hen][06][BIG5][1920X1080].mp4,[Dymy][Kimetsu no Yaiba - Yuukaku Hen][06][BIG5][1920X1080].mp4,435331358,2022-10-04T12:06:23,anime,1920x1080,h264,1420.136667,2452 +/mnt/Downloads/anime/[Dymy][Kimetsu no Yaiba - Yuukaku Hen][01-11][BIG5][1920X1080]/[Dymy][Kimetsu no Yaiba - Yuukaku Hen][07][BIG5][1920X1080].mp4,[Dymy][Kimetsu no Yaiba - Yuukaku Hen][07][BIG5][1920X1080].mp4,429083557,2022-10-04T12:06:18,anime,1920x1080,h264,1420.136667,2417 +/mnt/Downloads/anime/[Dymy][Kimetsu no Yaiba - Yuukaku Hen][01-11][BIG5][1920X1080]/[Dymy][Kimetsu no Yaiba - Yuukaku Hen][01][BIG5][1920X1080].mp4,[Dymy][Kimetsu no Yaiba - Yuukaku Hen][01][BIG5][1920X1080].mp4,801693515,2022-10-04T12:05:21,anime,1920x1080,h264,2811.966667,2280 +/mnt/Downloads/anime/[Dymy][Kimetsu no Yaiba - Yuukaku Hen][01-11][BIG5][1920X1080]/[Dymy][Kimetsu no Yaiba - Yuukaku Hen][08][BIG5][1920X1080].mp4,[Dymy][Kimetsu no Yaiba - Yuukaku Hen][08][BIG5][1920X1080].mp4,441948446,2022-10-04T12:06:17,anime,1920x1080,h264,1420.136667,2489 +/mnt/Downloads/anime/[Dymy][Kimetsu no Yaiba - Yuukaku Hen][01-11][BIG5][1920X1080]/[Dymy][Kimetsu no Yaiba - Yuukaku Hen][02][BIG5][1920X1080].mp4,[Dymy][Kimetsu no Yaiba - Yuukaku Hen][02][BIG5][1920X1080].mp4,406180823,2022-10-04T12:06:02,anime,1920x1080,h264,1420.095,2288 +/mnt/Downloads/anime/[Dymy][Kimetsu no Yaiba - Yuukaku Hen][01-11][BIG5][1920X1080]/[Dymy][Kimetsu no Yaiba - Yuukaku Hen][04][BIG5][1920X1080].mp4,[Dymy][Kimetsu no Yaiba - Yuukaku Hen][04][BIG5][1920X1080].mp4,370610783,2022-10-04T12:04:54,anime,1920x1080,h264,1420.136667,2087 +/mnt/Downloads/anime/[Dymy][Kimetsu no Yaiba - Yuukaku Hen][01-11][BIG5][1920X1080]/[Dymy][Kimetsu no Yaiba - Yuukaku Hen][09][BIG5][1920X1080].mp4,[Dymy][Kimetsu no Yaiba - Yuukaku Hen][09][BIG5][1920X1080].mp4,436110831,2022-10-04T12:06:18,anime,1920x1080,h264,1420.095,2456 +/mnt/Downloads/anime/[Dymy][Kimetsu no Yaiba - Yuukaku Hen][01-11][BIG5][1920X1080]/[Dymy][Kimetsu no Yaiba - Yuukaku Hen][11][END][BIG5][1920X1080].mp4,[Dymy][Kimetsu no Yaiba - Yuukaku Hen][11][END][BIG5][1920X1080].mp4,547432564,2022-10-04T12:06:11,anime,1920x1080,h264,1946.068333,2250 +/mnt/Downloads/anime/[Dymy][Kimetsu no Yaiba - Yuukaku Hen][01-11][BIG5][1920X1080]/[Dymy][Kimetsu no Yaiba - Yuukaku Hen][03][BIG5][1920X1080].mp4,[Dymy][Kimetsu no Yaiba - Yuukaku Hen][03][BIG5][1920X1080].mp4,407365909,2022-10-04T12:05:06,anime,1920x1080,h264,1420.136667,2294 +/mnt/Downloads/anime/[Dymy][Kimetsu no Yaiba - Yuukaku Hen][01-11][BIG5][1920X1080]/[Dymy][Kimetsu no Yaiba - Yuukaku Hen][05][BIG5][1920X1080].mp4,[Dymy][Kimetsu no Yaiba - Yuukaku Hen][05][BIG5][1920X1080].mp4,403066194,2022-10-04T12:06:25,anime,1920x1080,h264,1420.136667,2270 +/mnt/Downloads/anime/[LoliHouse] Izure Saikyou no Renkinjutsushi - 01 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,[LoliHouse] Izure Saikyou no Renkinjutsushi - 01 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,521238406,2025-01-16T14:52:00,anime,1920x1080,hevc,1420.063,2936 +/mnt/Downloads/anime/[ANi] WIND BREAKER—防風少年— - 07 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] WIND BREAKER—防風少年— - 07 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,544845894,2024-05-16T23:35:39,anime,1920x1080,h264,1440.042911,3026 +/mnt/Downloads/anime/[BeanSub&FZSD][Jigokuraku][17][GB][1080P][x264_AAC].mp4,[BeanSub&FZSD][Jigokuraku][17][GB][1080P][x264_AAC].mp4,571285205,2026-02-02T11:03:24,anime,1920x1080,h264,1450.073625,3151 +/mnt/Downloads/anime/[HYSUB]Dungeon Meshi[23][BIG5_MP4][1920X1080].mp4,[HYSUB]Dungeon Meshi[23][BIG5_MP4][1920X1080].mp4,323546548,2024-06-07T00:54:21,anime,1920x1080,h264,1680.056599,1540 +/mnt/Downloads/anime/[ANi] 新人大叔冒險者,被最強隊伍操到死成無敵 - 08 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 新人大叔冒險者,被最強隊伍操到死成無敵 - 08 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,579552878,2024-08-27T02:38:28,anime,1920x1080,h264,1425.027911,3253 +/mnt/Downloads/anime/[ANi] 最後可以再拜託您一件事嗎? - 11 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 最後可以再拜託您一件事嗎? - 11 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,405036971,2025-12-05T23:58:10,anime,1920x1080,h264,1425.002667,2273 +/mnt/Downloads/anime/[ANi] 使人誤解的工房主~關於原英雄隊伍的雜役人員,實際上除了戰鬥能力外全是SSS的故事~ - 07 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 使人誤解的工房主~關於原英雄隊伍的雜役人員,實際上除了戰鬥能力外全是SSS的故事~ - 07 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,296888606,2025-05-11T15:22:52,anime,1920x1080,h264,1420.074667,1672 +/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] 我獨自升級 第二季 -起於闇影- - 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 +/mnt/Downloads/anime/Record.of.Ragnarok.S02E01.1080p.NF.WEB-DL.DUAL.DDP2.0.H.264-SMURF/Record.of.Ragnarok.S02E06.Conflicting.Motives.1080p.NF.WEB-DL.DUAL.DDP2.0.H.264-SMURF.mkv,Record.of.Ragnarok.S02E06.Conflicting.Motives.1080p.NF.WEB-DL.DUAL.DDP2.0.H.264-SMURF.mkv,943716501,2023-02-05T02:57:52,anime,1920x1080,h264,1508.0,5006 +/mnt/Downloads/anime/Record.of.Ragnarok.S02E01.1080p.NF.WEB-DL.DUAL.DDP2.0.H.264-SMURF/Record.of.Ragnarok.S02E05.Requiem.1080p.NF.WEB-DL.DUAL.DDP2.0.H.264-SMURF.mkv,Record.of.Ragnarok.S02E05.Requiem.1080p.NF.WEB-DL.DUAL.DDP2.0.H.264-SMURF.mkv,1240580656,2023-02-05T02:57:53,anime,1920x1080,h264,1500.064,6616 +/mnt/Downloads/anime/Record.of.Ragnarok.S02E01.1080p.NF.WEB-DL.DUAL.DDP2.0.H.264-SMURF/Record.of.Ragnarok.S02E03.Birth.of.a.Monster.1080p.NF.WEB-DL.DUAL.DDP2.0.H.264-SMURF.mkv,Record.of.Ragnarok.S02E03.Birth.of.a.Monster.1080p.NF.WEB-DL.DUAL.DDP2.0.H.264-SMURF.mkv,1180074164,2023-02-05T02:57:53,anime,1920x1080,h264,1492.0,6327 +/mnt/Downloads/anime/Record.of.Ragnarok.S02E01.1080p.NF.WEB-DL.DUAL.DDP2.0.H.264-SMURF/Record.of.Ragnarok.S02E01.Good.vs.Evil.1080p.NF.WEB-DL.DUAL.DDP2.0.H.264-SMURF.mkv,Record.of.Ragnarok.S02E01.Good.vs.Evil.1080p.NF.WEB-DL.DUAL.DDP2.0.H.264-SMURF.mkv,1176099565,2023-02-05T02:57:50,anime,1920x1080,h264,1492.0,6306 +/mnt/Downloads/anime/Record.of.Ragnarok.S02E01.1080p.NF.WEB-DL.DUAL.DDP2.0.H.264-SMURF/Record.of.Ragnarok.S02E07.Hundred.Seals.1080p.NF.WEB-DL.DUAL.DDP2.0.H.264-SMURF.mkv,Record.of.Ragnarok.S02E07.Hundred.Seals.1080p.NF.WEB-DL.DUAL.DDP2.0.H.264-SMURF.mkv,935458844,2023-02-05T02:57:53,anime,1920x1080,h264,1494.048,5008 +/mnt/Downloads/anime/Record.of.Ragnarok.S02E01.1080p.NF.WEB-DL.DUAL.DDP2.0.H.264-SMURF/Record.of.Ragnarok.S02E09.Resonance.1080p.NF.WEB-DL.DUAL.DDP2.0.H.264-SMURF.mkv,Record.of.Ragnarok.S02E09.Resonance.1080p.NF.WEB-DL.DUAL.DDP2.0.H.264-SMURF.mkv,942632891,2023-02-05T02:57:53,anime,1920x1080,h264,1496.096,5040 +/mnt/Downloads/anime/Record.of.Ragnarok.S02E01.1080p.NF.WEB-DL.DUAL.DDP2.0.H.264-SMURF/Record.of.Ragnarok.S02E10.The.Brink.1080p.NF.WEB-DL.DUAL.DDP2.0.H.264-SMURF.mkv,Record.of.Ragnarok.S02E10.The.Brink.1080p.NF.WEB-DL.DUAL.DDP2.0.H.264-SMURF.mkv,1002733299,2023-02-05T02:57:52,anime,1920x1080,h264,1592.096,5038 +/mnt/Downloads/anime/Record.of.Ragnarok.S02E01.1080p.NF.WEB-DL.DUAL.DDP2.0.H.264-SMURF/Record.of.Ragnarok.S02E02.The.Indomitable.War.God.1080p.NF.WEB-DL.DUAL.DDP2.0.H.264-SMURF.mkv,Record.of.Ragnarok.S02E02.The.Indomitable.War.God.1080p.NF.WEB-DL.DUAL.DDP2.0.H.264-SMURF.mkv,1123471634,2023-02-05T02:57:53,anime,1920x1080,h264,1490.08,6031 +/mnt/Downloads/anime/Record.of.Ragnarok.S02E01.1080p.NF.WEB-DL.DUAL.DDP2.0.H.264-SMURF/Record.of.Ragnarok.S02E08.The.Pinnacle.of.1116.1080p.NF.WEB-DL.DUAL.DDP2.0.H.264-SMURF.mkv,Record.of.Ragnarok.S02E08.The.Pinnacle.of.1116.1080p.NF.WEB-DL.DUAL.DDP2.0.H.264-SMURF.mkv,906307661,2023-02-05T02:57:53,anime,1920x1080,h264,1500.064,4833 +/mnt/Downloads/anime/[KyokuSai] Adam's Sweet Agony [06][720P][WEB-DL][UNC].mp4,[KyokuSai] Adam's Sweet Agony [06][720P][WEB-DL][UNC].mp4,52302464,2024-02-19T23:56:10,anime,1280x720,h264,421.441989,992 +/mnt/Downloads/anime/[ANi] 我要【招架】一切~反誤解的世界最強想成為冒險家~ - 11 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 我要【招架】一切~反誤解的世界最強想成為冒險家~ - 11 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,314913274,2024-09-12T22:53:16,anime,1920x1080,h264,1420.106322,1774 +/mnt/Downloads/anime/[LoliHouse] Yuusha Kei ni Shosu Choubatsu Yuusha 9004-tai Keimu Kiroku - 01 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,[LoliHouse] Yuusha Kei ni Shosu Choubatsu Yuusha 9004-tai Keimu Kiroku - 01 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,1391733710,2026-01-13T00:33:21,anime,1920x1080,hevc,3480.114,3199 +/mnt/Downloads/anime/[ANi] 完美到難以接近的聖女遭到解除婚約後被賣到鄰國 - 05 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 完美到難以接近的聖女遭到解除婚約後被賣到鄰國 - 05 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,415541677,2025-05-01T01:02:47,anime,1920x1080,h264,1420.074667,2340 +/mnt/Downloads/anime/[Skymoon-Raws] Mushoku Tensei 2nd Season - 00 [ViuTV][WEB-DL][CHT][1080p][AVC AAC][MP4+ASS]/[Skymoon-Raws] Mushoku Tensei 2nd Season - 00 [ViuTV][WEB-DL][1080p][AVC AAC].mp4,[Skymoon-Raws] Mushoku Tensei 2nd Season - 00 [ViuTV][WEB-DL][1080p][AVC AAC].mp4,366840688,2023-07-02T15:53:56,anime,1920x1080,h264,1420.086288,2066 +/mnt/Downloads/anime/Mobile.Suit.Gundam.Hathaway’s.Flash.2021.BluRay.1080p.10bit.TrueHD(Atmos).7.1.x265-beAst/Mobile.Suit.Gundam.Hathaway’s.Flash.2021.BluRay.1080p.10bit.TrueHD(Atmos).7.1.x265-beAst.mkv,Mobile.Suit.Gundam.Hathaway’s.Flash.2021.BluRay.1080p.10bit.TrueHD(Atmos).7.1.x265-beAst.mkv,10736860754,2021-12-07T11:04:51,anime,1920x1080,hevc,5727.744,14996 +/mnt/Downloads/anime/[ANi] Silent Witch 沉默魔女的祕密 - 03 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] Silent Witch 沉默魔女的祕密 - 03 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,318066463,2025-07-18T23:39:29,anime,1920x1080,h264,1445.0062,1760 +/mnt/Downloads/anime/The.Apothecary.Diaries.S02E16.Festering.Resentment.1080p.NF.WEB-DL.JPN.AAC2.0.H.264.MSubs-ToonsHub.mkv,The.Apothecary.Diaries.S02E16.Festering.Resentment.1080p.NF.WEB-DL.JPN.AAC2.0.H.264.MSubs-ToonsHub.mkv,922958754,2025-04-26T02:07:40,anime,1920x1080,h264,1442.091,5120 +/mnt/Downloads/anime/[CASO&Airota&LoliHouse] Spice and Wolf (2024) [01-25][WebRip 1080p HEVC-10bit AAC ASSx2]/[CASO&Airota&LoliHouse] Spice and Wolf (2024) - 13 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,[CASO&Airota&LoliHouse] Spice and Wolf (2024) - 13 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,314662552,2024-10-07T14:04:45,anime,1920x1080,hevc,1430.024,1760 +/mnt/Downloads/anime/[CASO&Airota&LoliHouse] Spice and Wolf (2024) [01-25][WebRip 1080p HEVC-10bit AAC ASSx2]/[CASO&Airota&LoliHouse] Spice and Wolf (2024) - 08 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,[CASO&Airota&LoliHouse] Spice and Wolf (2024) - 08 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,366773475,2024-10-07T13:57:27,anime,1920x1080,hevc,1430.071,2051 +/mnt/Downloads/anime/[CASO&Airota&LoliHouse] Spice and Wolf (2024) [01-25][WebRip 1080p HEVC-10bit AAC ASSx2]/[CASO&Airota&LoliHouse] Spice and Wolf (2024) - 17 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,[CASO&Airota&LoliHouse] Spice and Wolf (2024) - 17 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,257530870,2024-10-07T14:01:42,anime,1920x1080,hevc,1430.024,1440 +/mnt/Downloads/anime/[CASO&Airota&LoliHouse] Spice and Wolf (2024) [01-25][WebRip 1080p HEVC-10bit AAC ASSx2]/[CASO&Airota&LoliHouse] Spice and Wolf (2024) - 04 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,[CASO&Airota&LoliHouse] Spice and Wolf (2024) - 04 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,250305708,2024-10-07T14:07:12,anime,1920x1080,hevc,1430.071,1400 +/mnt/Downloads/anime/[CASO&Airota&LoliHouse] Spice and Wolf (2024) [01-25][WebRip 1080p HEVC-10bit AAC ASSx2]/[CASO&Airota&LoliHouse] Spice and Wolf (2024) - 23 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,[CASO&Airota&LoliHouse] Spice and Wolf (2024) - 23 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,230974273,2024-10-07T14:06:44,anime,1920x1080,hevc,1429.977,1292 +/mnt/Downloads/anime/[CASO&Airota&LoliHouse] Spice and Wolf (2024) [01-25][WebRip 1080p HEVC-10bit AAC ASSx2]/[CASO&Airota&LoliHouse] Spice and Wolf (2024) - 05 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,[CASO&Airota&LoliHouse] Spice and Wolf (2024) - 05 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,272944908,2024-10-07T14:04:47,anime,1920x1080,hevc,1430.117,1526 +/mnt/Downloads/anime/[CASO&Airota&LoliHouse] Spice and Wolf (2024) [01-25][WebRip 1080p HEVC-10bit AAC ASSx2]/[CASO&Airota&LoliHouse] Spice and Wolf (2024) - 22 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,[CASO&Airota&LoliHouse] Spice and Wolf (2024) - 22 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,237864522,2024-10-07T13:54:44,anime,1920x1080,hevc,1430.024,1330 +/mnt/Downloads/anime/[CASO&Airota&LoliHouse] Spice and Wolf (2024) [01-25][WebRip 1080p HEVC-10bit AAC ASSx2]/[CASO&Airota&LoliHouse] Spice and Wolf (2024) - 01 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,[CASO&Airota&LoliHouse] Spice and Wolf (2024) - 01 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,383300575,2024-10-07T14:06:57,anime,1920x1080,hevc,1430.024,2144 +/mnt/Downloads/anime/[CASO&Airota&LoliHouse] Spice and Wolf (2024) [01-25][WebRip 1080p HEVC-10bit AAC ASSx2]/[CASO&Airota&LoliHouse] Spice and Wolf (2024) - 09 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,[CASO&Airota&LoliHouse] Spice and Wolf (2024) - 09 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,270284409,2024-10-07T14:06:27,anime,1920x1080,hevc,1430.024,1512 +/mnt/Downloads/anime/[CASO&Airota&LoliHouse] Spice and Wolf (2024) [01-25][WebRip 1080p HEVC-10bit AAC ASSx2]/[CASO&Airota&LoliHouse] Spice and Wolf (2024) - 12 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,[CASO&Airota&LoliHouse] Spice and Wolf (2024) - 12 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,500842315,2024-10-07T14:05:13,anime,1920x1080,hevc,1430.071,2801 +/mnt/Downloads/anime/[CASO&Airota&LoliHouse] Spice and Wolf (2024) [01-25][WebRip 1080p HEVC-10bit AAC ASSx2]/[CASO&Airota&LoliHouse] Spice and Wolf (2024) - 16 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,[CASO&Airota&LoliHouse] Spice and Wolf (2024) - 16 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,275171597,2024-10-07T14:06:59,anime,1920x1080,hevc,1430.071,1539 +/mnt/Downloads/anime/[CASO&Airota&LoliHouse] Spice and Wolf (2024) [01-25][WebRip 1080p HEVC-10bit AAC ASSx2]/[CASO&Airota&LoliHouse] Spice and Wolf (2024) - 20 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,[CASO&Airota&LoliHouse] Spice and Wolf (2024) - 20 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,345658015,2024-10-07T13:55:16,anime,1920x1080,hevc,1430.071,1933 +/mnt/Downloads/anime/[CASO&Airota&LoliHouse] Spice and Wolf (2024) [01-25][WebRip 1080p HEVC-10bit AAC ASSx2]/[CASO&Airota&LoliHouse] Spice and Wolf (2024) - 07 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,[CASO&Airota&LoliHouse] Spice and Wolf (2024) - 07 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,334433865,2024-10-07T14:07:08,anime,1920x1080,hevc,1430.024,1870 +/mnt/Downloads/anime/[CASO&Airota&LoliHouse] Spice and Wolf (2024) [01-25][WebRip 1080p HEVC-10bit AAC ASSx2]/[CASO&Airota&LoliHouse] Spice and Wolf (2024) - 24 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,[CASO&Airota&LoliHouse] Spice and Wolf (2024) - 24 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,350100067,2024-10-07T14:00:10,anime,1920x1080,hevc,1430.024,1958 +/mnt/Downloads/anime/[CASO&Airota&LoliHouse] Spice and Wolf (2024) [01-25][WebRip 1080p HEVC-10bit AAC ASSx2]/[CASO&Airota&LoliHouse] Spice and Wolf (2024) - 03 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,[CASO&Airota&LoliHouse] Spice and Wolf (2024) - 03 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,296534208,2024-10-07T13:58:09,anime,1920x1080,hevc,1430.14,1658 +/mnt/Downloads/anime/[CASO&Airota&LoliHouse] Spice and Wolf (2024) [01-25][WebRip 1080p HEVC-10bit AAC ASSx2]/[CASO&Airota&LoliHouse] Spice and Wolf (2024) - 18 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,[CASO&Airota&LoliHouse] Spice and Wolf (2024) - 18 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,248233152,2024-10-07T14:00:07,anime,1920x1080,hevc,1430.024,1388 +/mnt/Downloads/anime/[CASO&Airota&LoliHouse] Spice and Wolf (2024) [01-25][WebRip 1080p HEVC-10bit AAC ASSx2]/[CASO&Airota&LoliHouse] Spice and Wolf (2024) - 10 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,[CASO&Airota&LoliHouse] Spice and Wolf (2024) - 10 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,248453982,2024-10-07T14:02:57,anime,1920x1080,hevc,1430.071,1389 +/mnt/Downloads/anime/[CASO&Airota&LoliHouse] Spice and Wolf (2024) [01-25][WebRip 1080p HEVC-10bit AAC ASSx2]/[CASO&Airota&LoliHouse] Spice and Wolf (2024) - 14 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,[CASO&Airota&LoliHouse] Spice and Wolf (2024) - 14 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,319240105,2024-10-07T14:06:53,anime,1920x1080,hevc,1430.117,1785 +/mnt/Downloads/anime/[CASO&Airota&LoliHouse] Spice and Wolf (2024) [01-25][WebRip 1080p HEVC-10bit AAC ASSx2]/[CASO&Airota&LoliHouse] Spice and Wolf (2024) - 11 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,[CASO&Airota&LoliHouse] Spice and Wolf (2024) - 11 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,396180064,2024-10-07T13:48:47,anime,1920x1080,hevc,1430.071,2216 +/mnt/Downloads/anime/[CASO&Airota&LoliHouse] Spice and Wolf (2024) [01-25][WebRip 1080p HEVC-10bit AAC ASSx2]/[CASO&Airota&LoliHouse] Spice and Wolf (2024) - 15 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,[CASO&Airota&LoliHouse] Spice and Wolf (2024) - 15 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,279337407,2024-10-07T14:05:21,anime,1920x1080,hevc,1430.117,1562 +/mnt/Downloads/anime/[CASO&Airota&LoliHouse] Spice and Wolf (2024) [01-25][WebRip 1080p HEVC-10bit AAC ASSx2]/[CASO&Airota&LoliHouse] Spice and Wolf (2024) - 21 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,[CASO&Airota&LoliHouse] Spice and Wolf (2024) - 21 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,308247069,2024-10-07T14:03:56,anime,1920x1080,hevc,1430.071,1724 +/mnt/Downloads/anime/[CASO&Airota&LoliHouse] Spice and Wolf (2024) [01-25][WebRip 1080p HEVC-10bit AAC ASSx2]/[CASO&Airota&LoliHouse] Spice and Wolf (2024) - 06 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,[CASO&Airota&LoliHouse] Spice and Wolf (2024) - 06 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,300738466,2024-10-07T13:49:05,anime,1920x1080,hevc,1430.071,1682 +/mnt/Downloads/anime/[CASO&Airota&LoliHouse] Spice and Wolf (2024) [01-25][WebRip 1080p HEVC-10bit AAC ASSx2]/[CASO&Airota&LoliHouse] Spice and Wolf (2024) - 25 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,[CASO&Airota&LoliHouse] Spice and Wolf (2024) - 25 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,391227944,2024-10-07T13:52:42,anime,1920x1080,hevc,1430.117,2188 +/mnt/Downloads/anime/[CASO&Airota&LoliHouse] Spice and Wolf (2024) [01-25][WebRip 1080p HEVC-10bit AAC ASSx2]/[CASO&Airota&LoliHouse] Spice and Wolf (2024) - 19 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,[CASO&Airota&LoliHouse] Spice and Wolf (2024) - 19 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,294107287,2024-10-07T13:55:50,anime,1920x1080,hevc,1430.024,1645 +/mnt/Downloads/anime/[CASO&Airota&LoliHouse] Spice and Wolf (2024) [01-25][WebRip 1080p HEVC-10bit AAC ASSx2]/[CASO&Airota&LoliHouse] Spice and Wolf (2024) - 02 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,[CASO&Airota&LoliHouse] Spice and Wolf (2024) - 02 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,333863586,2024-10-07T14:01:07,anime,1920x1080,hevc,1430.071,1867 +/mnt/Downloads/anime/[ANi] 膽大黨 - 11 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 膽大黨 - 11 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,717706557,2024-12-12T23:58:50,anime,1920x1080,h264,1422.024911,4037 +/mnt/Downloads/anime/KENGAN.ASHURA.S02.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG/KENGAN.ASHURA.S02E23.Wholehearted.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG.mkv,KENGAN.ASHURA.S02E23.Wholehearted.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG.mkv,1170791083,2024-08-21T00:26:25,anime,,,, +/mnt/Downloads/anime/KENGAN.ASHURA.S02.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG/KENGAN.ASHURA.S02E11.Rebel.Flag.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG.mkv,KENGAN.ASHURA.S02E11.Rebel.Flag.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG.mkv,1310414570,2024-08-21T13:00:00,anime,1920x1080,h264,1526.432,6867 +/mnt/Downloads/anime/KENGAN.ASHURA.S02.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG/KENGAN.ASHURA.S02E22.Wakatsuki.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG.mkv,KENGAN.ASHURA.S02E22.Wakatsuki.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG.mkv,1166069877,2024-08-21T00:49:52,anime,,,, +/mnt/Downloads/anime/KENGAN.ASHURA.S02.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG/KENGAN.ASHURA.S02E26.The.Finals.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG.mkv,KENGAN.ASHURA.S02E26.The.Finals.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG.mkv,1168844794,2024-08-21T00:49:52,anime,,,, +/mnt/Downloads/anime/KENGAN.ASHURA.S02.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG/KENGAN.ASHURA.S02E02.Blast.Core.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG.mkv,KENGAN.ASHURA.S02E02.Blast.Core.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG.mkv,1310670704,2024-08-21T11:36:33,anime,1920x1080,h264,1526.432,6869 +/mnt/Downloads/anime/KENGAN.ASHURA.S02.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG/KENGAN.ASHURA.S02E25.Giant.Star.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG.mkv,KENGAN.ASHURA.S02E25.Giant.Star.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG.mkv,173643,2024-08-21T00:26:19,anime,1920x1080,h264,1512.128,0 +/mnt/Downloads/anime/KENGAN.ASHURA.S02.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG/KENGAN.ASHURA.S02E10.Life.and.Death.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG.mkv,KENGAN.ASHURA.S02E10.Life.and.Death.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG.mkv,1308151777,2024-08-21T13:01:53,anime,1920x1080,h264,1528.352,6847 +/mnt/Downloads/anime/KENGAN.ASHURA.S02.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG/KENGAN.ASHURA.S02E03.The.Clown.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG.mkv,KENGAN.ASHURA.S02E03.The.Clown.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG.mkv,1307270596,2024-08-21T12:31:23,anime,1920x1080,h264,1518.368,6887 +/mnt/Downloads/anime/KENGAN.ASHURA.S02.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG/KENGAN.ASHURA.S02E12.Melee.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG.mkv,KENGAN.ASHURA.S02E12.Melee.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG.mkv,1309815948,2024-08-21T00:36:22,anime,1920x1080,h264,1528.352,6856 +/mnt/Downloads/anime/KENGAN.ASHURA.S02.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG/KENGAN.ASHURA.S02E01.Omen.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG.mkv,KENGAN.ASHURA.S02E01.Omen.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG.mkv,1310463731,2024-08-21T11:13:32,anime,1920x1080,h264,1530.272,6850 +/mnt/Downloads/anime/KENGAN.ASHURA.S02.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG/KENGAN.ASHURA.S02E21.Farewell.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG.mkv,KENGAN.ASHURA.S02E21.Farewell.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG.mkv,1155891507,2024-08-21T00:49:52,anime,,,, +/mnt/Downloads/anime/KENGAN.ASHURA.S02.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG/KENGAN.ASHURA.S02E06.An.Old.Friend.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG.mkv,KENGAN.ASHURA.S02E06.An.Old.Friend.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG.mkv,1459490327,2024-08-21T13:03:41,anime,1920x1080,h264,1522.208,7670 +/mnt/Downloads/anime/KENGAN.ASHURA.S02.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG/KENGAN.ASHURA.S02E07.Hell.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG.mkv,KENGAN.ASHURA.S02E07.Hell.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG.mkv,1308445880,2024-08-21T13:00:28,anime,1920x1080,h264,1516.448,6902 +/mnt/Downloads/anime/KENGAN.ASHURA.S02.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG/KENGAN.ASHURA.S02E28.Finale.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG.mkv,KENGAN.ASHURA.S02E28.Finale.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG.mkv,1162835333,2024-08-21T00:49:52,anime,,,, +/mnt/Downloads/anime/KENGAN.ASHURA.S02.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG/KENGAN.ASHURA.S02E13.Headstrong.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG.mkv,KENGAN.ASHURA.S02E13.Headstrong.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG.mkv,12957952,2024-08-21T00:49:52,anime,1920x1080,h264,1530.176,67 +/mnt/Downloads/anime/KENGAN.ASHURA.S02.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG/KENGAN.ASHURA.S02E05.Suicide.Attack.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG.mkv,KENGAN.ASHURA.S02E05.Suicide.Attack.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG.mkv,1306237716,2024-08-21T13:10:22,anime,1920x1080,h264,1510.304,6919 +/mnt/Downloads/anime/KENGAN.ASHURA.S02.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG/KENGAN.ASHURA.S02E19.Predicament.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG.mkv,KENGAN.ASHURA.S02E19.Predicament.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG.mkv,1220742613,2024-08-21T00:26:26,anime,,,, +/mnt/Downloads/anime/KENGAN.ASHURA.S02.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG/KENGAN.ASHURA.S02E09.Superiority.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG.mkv,KENGAN.ASHURA.S02E09.Superiority.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG.mkv,1310215695,2024-08-21T13:01:24,anime,1920x1080,h264,1520.288,6894 +/mnt/Downloads/anime/KENGAN.ASHURA.S02.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG/KENGAN.ASHURA.S02E04.Dignity.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG.mkv,KENGAN.ASHURA.S02E04.Dignity.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG.mkv,1307839165,2024-08-21T12:49:58,anime,1920x1080,h264,1518.368,6890 +/mnt/Downloads/anime/KENGAN.ASHURA.S02.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG/KENGAN.ASHURA.S02E27.Victory.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG.mkv,KENGAN.ASHURA.S02E27.Victory.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG.mkv,1170847585,2024-08-21T00:49:52,anime,1920x1080,h264,1522.112,6153 +/mnt/Downloads/anime/KENGAN.ASHURA.S02.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG/KENGAN.ASHURA.S02E24.Supreme.Strength.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG.mkv,KENGAN.ASHURA.S02E24.Supreme.Strength.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG.mkv,1173597683,2024-08-21T00:26:24,anime,,,, +/mnt/Downloads/anime/KENGAN.ASHURA.S02.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG/KENGAN.ASHURA.S02E08.Resurrection.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG.mkv,KENGAN.ASHURA.S02E08.Resurrection.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG.mkv,1309272275,2024-08-21T13:01:39,anime,1920x1080,h264,1518.368,6898 +/mnt/Downloads/anime/[Sakurato] City the Animation [01][HEVC-10bit 1080P AAC][CHS&CHT].mkv,[Sakurato] City the Animation [01][HEVC-10bit 1080P AAC][CHS&CHT].mkv,377894666,2025-07-10T13:21:28,anime,1920x1080,hevc,1656.789,1824 +/mnt/Downloads/anime/[ANi] GNOSIA - 04 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] GNOSIA - 04 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,589991952,2025-11-01T23:54:13,anime,1920x1080,h264,1445.131322,3266 +/mnt/Downloads/anime/[ANi] 靠廢柴技能【狀態異常】成為最強的我將蹂躪一切 - 05 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 靠廢柴技能【狀態異常】成為最強的我將蹂躪一切 - 05 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,478658350,2024-08-02T00:15:52,anime,1920x1080,h264,1450.026667,2640 +/mnt/Downloads/anime/Psycho-Pass.Sinners.of.the.System.Case.1-3.2019.HK.1080p.BluRay.DualAudio.DTS-HD.MA.5.1.x265.10bit-monster6688/Psycho-Pass.Sinners.of.the.System.Case.1-3.2019.HK.1080p.BluRay.DualAudio.DTS-HD.MA.5.1.x265.10bit-monster6688.mkv,Psycho-Pass.Sinners.of.the.System.Case.1-3.2019.HK.1080p.BluRay.DualAudio.DTS-HD.MA.5.1.x265.10bit-monster6688.mkv,8322382863,2019-11-24T04:43:08,anime,1920x1080,hevc,11277.28,5903 +/mnt/Downloads/anime/[LoliHouse] Tsuki ga Michibiku Isekai Douchuu S2 - 12 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,[LoliHouse] Tsuki ga Michibiku Isekai Douchuu S2 - 12 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,405320251,2024-03-25T23:54:08,anime,1920x1080,hevc,1420.132,2283 +/mnt/Downloads/anime/[ANi] 膽大黨 第二季 - 23 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 膽大黨 第二季 - 23 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,855274095,2025-09-11T23:34:34,anime,1920x1080,h264,1431.576122,4779 +/mnt/Downloads/anime/[Skymoon-Raws] Mushoku Tensei 2nd Season - 03 [ViuTV][WEB-DL][CHT][1080p][AVC AAC][MP4+ASS]/[Skymoon-Raws] Mushoku Tensei 2nd Season - 03 [ViuTV][WEB-DL][1080p][AVC AAC].mp4,[Skymoon-Raws] Mushoku Tensei 2nd Season - 03 [ViuTV][WEB-DL][1080p][AVC AAC].mp4,344805872,2023-07-23T23:48:50,anime,1920x1080,h264,1795.002488,1536 +/mnt/Downloads/anime/[Skymoon-Raws] Bofuri S02 - 03 [ViuTV][CHT][WEB-DL][1080p][AVC AAC][MP4+ASS]/[Skymoon-Raws] Bofuri S02 - 03 [ViuTV][WEB-DL][1080p][AVC AAC].mp4,[Skymoon-Raws] Bofuri S02 - 03 [ViuTV][WEB-DL][1080p][AVC AAC].mp4,399181542,2023-01-26T03:02:08,anime,1920x1080,h264,1420.096,2248 +/mnt/Downloads/anime/[HYSUB]Sono Bisque Doll wa Koi wo Suru[20][BIG5_MP4][1920X1080].mp4,[HYSUB]Sono Bisque Doll wa Koi wo Suru[20][BIG5_MP4][1920X1080].mp4,313902075,2025-09-07T23:39:28,anime,1920x1080,h264,1422.08,1765 +/mnt/Downloads/anime/[ANi] 永遠的黃昏 - 09 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 永遠的黃昏 - 09 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,441869251,2025-11-27T23:52:20,anime,1920x1080,h264,1434.965333,2463 +/mnt/Downloads/anime/[ANi] 地獄模式 ~喜歡挑戰特殊成就的玩家在廢設定的異世界成為無雙~ - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 地獄模式 ~喜歡挑戰特殊成就的玩家在廢設定的異世界成為無雙~ - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,488791267,2026-01-17T04:27:31,anime,1920x1080,h264,1425.045333,2744 +/mnt/Downloads/anime/[ANi] 孤單一人的異世界攻略 - 11 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 孤單一人的異世界攻略 - 11 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,486373630,2024-12-05T15:14:06,anime,1920x1080,h264,1420.064622,2740 +/mnt/Downloads/anime/[ANi] 異世界自殺突擊隊 - 05 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 異世界自殺突擊隊 - 05 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,527562992,2024-07-11T12:45:05,anime,1920x1080,h264,1444.138667,2922 +/mnt/Downloads/anime/[LoliHouse] Shangri-La Frontier - 45 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,[LoliHouse] Shangri-La Frontier - 45 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,1146062627,2025-03-01T10:02:34,anime,1920x1080,hevc,1422.059,6447 +/mnt/Downloads/anime/[Nekomoe kissaten][Your Forma][12][1080p][JPSC].mp4,[Nekomoe kissaten][Your Forma][12][1080p][JPSC].mp4,422974420,2025-06-22T23:59:34,anime,1920x1080,h264,1425.09,2374 +/mnt/Downloads/anime/[LoliHouse] DanMachi S5 - 05 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,[LoliHouse] DanMachi S5 - 05 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,324512611,2024-10-31T23:47:18,anime,1920x1080,hevc,1420.062,1828 +/mnt/Downloads/anime/[ANi] 異國日記 - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 異國日記 - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,222924558,2026-01-11T23:49:43,anime,1920x1080,h264,1419.989333,1255 +/mnt/Downloads/anime/[ANi] 杖與劍的魔劍譚 - 04 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 杖與劍的魔劍譚 - 04 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,416949991,2024-08-04T23:29:48,anime,1920x1080,h264,1426.112322,2338 +/mnt/Downloads/anime/[ANi] 地下城中的人 - 04 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 地下城中的人 - 04 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,358220589,2024-07-27T02:25:15,anime,1920x1080,h264,1467.114667,1953 +/mnt/Downloads/anime/[ANi] 費馬的料理 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 費馬的料理 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,365326744,2025-07-05T15:25:09,anime,1920x1080,h264,1417.109333,2062 +/mnt/Downloads/anime/[LoliHouse] Tensei Shitara Slime Datta Ken 3rd Season - 50 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,[LoliHouse] Tensei Shitara Slime Datta Ken 3rd Season - 50 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,287686644,2024-04-13T00:24:56,anime,1920x1080,hevc,1470.032,1565 +/mnt/Downloads/anime/[ANi] 貫徹輔助魔法支援弱小隊友的宮廷魔法師,慘遭驅逐後目標成為最強冒險者 - 10 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 貫徹輔助魔法支援弱小隊友的宮廷魔法師,慘遭驅逐後目標成為最強冒險者 - 10 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,538430634,2025-12-07T00:41:46,anime,1920x1080,h264,1417.024,3039 +/mnt/Downloads/anime/[LoliHouse] Around 40 Otoko no Isekai Tsuuhan - 02 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,[LoliHouse] Around 40 Otoko no Isekai Tsuuhan - 02 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,564067319,2025-02-03T10:29:53,anime,1920x1080,hevc,1420.016,3177 +/mnt/Downloads/anime/[ANi] 醜男真戰士 - 04 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 醜男真戰士 - 04 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,314405362,2025-07-27T15:10:24,anime,1920x1080,h264,1431.04,1757 +/mnt/Downloads/anime/[Skymoon-Raws] Kaijuu 8 gou - 13 [ViuTV][WEB-DL][CHT][SRT][1080p][AVC AAC].mkv,[Skymoon-Raws] Kaijuu 8 gou - 13 [ViuTV][WEB-DL][CHT][SRT][1080p][AVC AAC].mkv,373156015,2025-07-06T23:19:10,anime,1920x1080,h264,1420.074,2102 +/mnt/Downloads/anime/[SweetSub&LoliHouse] Bâan - The Boundaries of Adulthood [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,[SweetSub&LoliHouse] Bâan - The Boundaries of Adulthood [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,285168016,2025-10-06T03:08:07,anime,1920x1080,hevc,1132.507,2014 +/mnt/Downloads/anime/[Nekomoe kissaten][Hibi wa Sugiredo Meshi Umashi][06][1080p][JPTC].mp4,[Nekomoe kissaten][Hibi wa Sugiredo Meshi Umashi][06][1080p][JPTC].mp4,575179309,2025-05-20T00:01:29,anime,1920x1080,h264,1440.078345,3195 +/mnt/Downloads/anime/[ANi] 被逐出隊伍的治癒師,其實是最強 - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 被逐出隊伍的治癒師,其實是最強 - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,314481192,2024-10-13T00:07:46,anime,1920x1080,h264,1403.968,1791 +/mnt/Downloads/anime/[ANi] 刀劍神域外傳 Gun Gale Online II - 09 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 刀劍神域外傳 Gun Gale Online II - 09 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,466197785,2024-11-30T00:52:40,anime,1920x1080,h264,1424.9862,2617 +/mnt/Downloads/anime/[ANi] 一拳超人(第三季) - 36 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 一拳超人(第三季) - 36 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,680885465,2025-12-29T00:03:59,anime,1920x1080,h264,1436.080622,3793 +/mnt/Downloads/anime/[ANi] 結緣甘神神社 - 12 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 結緣甘神神社 - 12 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,372159626,2024-12-17T23:42:30,anime,1920x1080,h264,1420.117333,2096 +/mnt/Downloads/anime/[H-Enc] Souryo to Majiwaru Shikiyoku no Yoru ni... (BDRip 1080p HEVC FLAC)/Souryo to Majiwaru Shikiyoku no Yoru ni... - 09.mkv,Souryo to Majiwaru Shikiyoku no Yoru ni... - 09.mkv,167298794,2025-02-14T03:29:35,anime,1920x1080,hevc,249.875,5356 +/mnt/Downloads/anime/[H-Enc] Souryo to Majiwaru Shikiyoku no Yoru ni... (BDRip 1080p HEVC FLAC)/Souryo to Majiwaru Shikiyoku no Yoru ni... - 07.mkv,Souryo to Majiwaru Shikiyoku no Yoru ni... - 07.mkv,128219309,2025-02-14T03:29:28,anime,1920x1080,hevc,249.5,4111 +/mnt/Downloads/anime/[H-Enc] Souryo to Majiwaru Shikiyoku no Yoru ni... (BDRip 1080p HEVC FLAC)/Souryo to Majiwaru Shikiyoku no Yoru ni... - 11.mkv,Souryo to Majiwaru Shikiyoku no Yoru ni... - 11.mkv,109531203,2025-02-14T03:29:36,anime,1920x1080,hevc,227.978,3843 +/mnt/Downloads/anime/[H-Enc] Souryo to Majiwaru Shikiyoku no Yoru ni... (BDRip 1080p HEVC FLAC)/Souryo to Majiwaru Shikiyoku no Yoru ni... - 06.mkv,Souryo to Majiwaru Shikiyoku no Yoru ni... - 06.mkv,182038805,2025-02-14T03:29:27,anime,1920x1080,hevc,260.01,5600 +/mnt/Downloads/anime/[H-Enc] Souryo to Majiwaru Shikiyoku no Yoru ni... (BDRip 1080p HEVC FLAC)/Souryo to Majiwaru Shikiyoku no Yoru ni... - 01.mkv,Souryo to Majiwaru Shikiyoku no Yoru ni... - 01.mkv,156984139,2025-02-14T03:29:28,anime,1920x1080,hevc,269.567,4658 +/mnt/Downloads/anime/[H-Enc] Souryo to Majiwaru Shikiyoku no Yoru ni... (BDRip 1080p HEVC FLAC)/Souryo to Majiwaru Shikiyoku no Yoru ni... - 08.mkv,Souryo to Majiwaru Shikiyoku no Yoru ni... - 08.mkv,208864438,2025-02-14T03:29:27,anime,1920x1080,hevc,292.266,5717 +/mnt/Downloads/anime/[H-Enc] Souryo to Majiwaru Shikiyoku no Yoru ni... (BDRip 1080p HEVC FLAC)/Souryo to Majiwaru Shikiyoku no Yoru ni... - 10.mkv,Souryo to Majiwaru Shikiyoku no Yoru ni... - 10.mkv,123323060,2025-02-14T03:30:13,anime,1920x1080,hevc,246.371,4004 +/mnt/Downloads/anime/[H-Enc] Souryo to Majiwaru Shikiyoku no Yoru ni... (BDRip 1080p HEVC FLAC)/Souryo to Majiwaru Shikiyoku no Yoru ni... - 02.mkv,Souryo to Majiwaru Shikiyoku no Yoru ni... - 02.mkv,112912073,2025-02-14T03:29:27,anime,1920x1080,hevc,210.233,4296 +/mnt/Downloads/anime/[H-Enc] Souryo to Majiwaru Shikiyoku no Yoru ni... (BDRip 1080p HEVC FLAC)/Souryo to Majiwaru Shikiyoku no Yoru ni... - 05.mkv,Souryo to Majiwaru Shikiyoku no Yoru ni... - 05.mkv,186999886,2025-02-14T03:28:23,anime,1920x1080,hevc,231.0,6476 +/mnt/Downloads/anime/[H-Enc] Souryo to Majiwaru Shikiyoku no Yoru ni... (BDRip 1080p HEVC FLAC)/Souryo to Majiwaru Shikiyoku no Yoru ni... - 12.mkv,Souryo to Majiwaru Shikiyoku no Yoru ni... - 12.mkv,168400599,2025-02-14T03:31:04,anime,1920x1080,hevc,246.872,5457 +/mnt/Downloads/anime/[H-Enc] Souryo to Majiwaru Shikiyoku no Yoru ni... (BDRip 1080p HEVC FLAC)/Souryo to Majiwaru Shikiyoku no Yoru ni... - 04.mkv,Souryo to Majiwaru Shikiyoku no Yoru ni... - 04.mkv,171466309,2025-02-14T03:29:27,anime,1920x1080,hevc,242.117,5665 +/mnt/Downloads/anime/[H-Enc] Souryo to Majiwaru Shikiyoku no Yoru ni... (BDRip 1080p HEVC FLAC)/Souryo to Majiwaru Shikiyoku no Yoru ni... - 03.mkv,Souryo to Majiwaru Shikiyoku no Yoru ni... - 03.mkv,177513382,2025-02-14T03:29:27,anime,1920x1080,hevc,265.641,5345 +/mnt/Downloads/anime/[ANi] 在地下城尋求邂逅是否搞錯了什麼 第五季 - 15 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 在地下城尋求邂逅是否搞錯了什麼 第五季 - 15 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,564153764,2025-03-05T14:08:31,anime,1920x1080,h264,1420.022911,3178 +/mnt/Downloads/anime/[ANi] 治癒魔法的錯誤使用法 - 03 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 治癒魔法的錯誤使用法 - 03 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,722831256,2024-01-19T16:07:10,anime,1920x1080,h264,1420.064622,4072 +/mnt/Downloads/anime/[ANi] 無職轉生~到了異世界就拿出真本事 第二季 - 22 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 無職轉生~到了異世界就拿出真本事 第二季 - 22 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,679770967,2024-06-16T23:10:58,anime,1920x1080,h264,1420.064622,3829 +/mnt/Downloads/anime/[orion origin] Kaijuu 8 Gou [12] [END] [1080p] [H265 AAC] [CHT&JPN].mp4,[orion origin] Kaijuu 8 Gou [12] [END] [1080p] [H265 AAC] [CHT&JPN].mp4,558773913,2024-09-25T23:34:47,anime,1920x1080,hevc,1420.061995,3147 +/mnt/Downloads/anime/[Nekomoe kissaten][Your Forma][02][1080p][JPTC].mp4,[Nekomoe kissaten][Your Forma][02][1080p][JPTC].mp4,431210548,2025-04-18T00:40:54,anime,1920x1080,h264,1425.09,2420 +/mnt/Downloads/anime/[LoliHouse] Shin no Nakama 2nd - 09 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,[LoliHouse] Shin no Nakama 2nd - 09 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,363132288,2024-03-04T11:03:18,anime,1920x1080,hevc,1420.132,2045 +"/mnt/Downloads/anime/[LoliHouse] Katainaka no Ossan, Kensei ni Naru - 05 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv","[LoliHouse] Katainaka no Ossan, Kensei ni Naru - 05 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv",513203665,2025-05-05T03:40:56,anime,1920x1080,hevc,1441.087,2848 +/mnt/Downloads/anime/[ANi] 水屬性的魔法師 - 08 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 水屬性的魔法師 - 08 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,299608010,2025-08-28T23:25:30,anime,1920x1080,h264,1454.933333,1647 +/mnt/Downloads/anime/[ANi] 刀劍神域外傳 Gun Gale Online II - 12 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 刀劍神域外傳 Gun Gale Online II - 12 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,472473981,2024-12-21T01:48:50,anime,1920x1080,h264,1435.121322,2633 +/mnt/Downloads/anime/[ANi] 最狂輔助職業【話術士】世界最強戰團聽我號令 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 最狂輔助職業【話術士】世界最強戰團聽我號令 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,539311786,2024-10-07T23:42:54,anime,1920x1080,h264,1420.022911,3038 +/mnt/Downloads/anime/[ANi] 擁有超常技能的異世界流浪美食家 S2 - 15 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 擁有超常技能的異世界流浪美食家 S2 - 15 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,456365596,2025-10-21T23:28:55,anime,1920x1080,h264,1434.9962,2544 +/mnt/Downloads/anime/[ANi] 結緣甘神神社 - 09 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 結緣甘神神社 - 09 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,346591516,2024-11-27T00:13:14,anime,1920x1080,h264,1420.032,1952 +/mnt/Downloads/anime/[Nekomoe kissaten&LoliHouse] Dosanko Gal wa Namara Menkoi - 05 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,[Nekomoe kissaten&LoliHouse] Dosanko Gal wa Namara Menkoi - 05 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,397765406,2024-02-20T14:18:42,anime,1920x1080,hevc,1440.124,2209 +/mnt/Downloads/anime/[Nekomoe kissaten][Kusuriya no Hitorigoto][18][1080p][JPTC].mp4,[Nekomoe kissaten][Kusuriya no Hitorigoto][18][1080p][JPTC].mp4,367518500,2024-02-29T01:27:24,anime,1920x1080,h264,1370.093333,2145 +/mnt/Downloads/anime/[ANi] Re:從零開始的異世界生活 第三季 - 06 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] Re:從零開始的異世界生活 第三季 - 06 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,312659735,2024-11-07T01:21:08,anime,1920x1080,h264,1420.022911,1761 +/mnt/Downloads/anime/[DMG][Sono_Bisque_Doll_wa_Koi_wo_Suru][01-12 END][1080P][HEVC_Ma10P][MKV]/[DMG][Sono_Bisque_Doll_wa_Koi_wo_Suru][05][1080P_Ma10P][HEVC_AAC](6D557DD3).mkv,[DMG][Sono_Bisque_Doll_wa_Koi_wo_Suru][05][1080P_Ma10P][HEVC_AAC](6D557DD3).mkv,392469480,2022-06-15T16:43:51,anime,1920x1080,hevc,1420.073,2210 +/mnt/Downloads/anime/[DMG][Sono_Bisque_Doll_wa_Koi_wo_Suru][01-12 END][1080P][HEVC_Ma10P][MKV]/[DMG][Sono_Bisque_Doll_wa_Koi_wo_Suru][07][1080P_Ma10P][HEVC_AAC](39D93280).mkv,[DMG][Sono_Bisque_Doll_wa_Koi_wo_Suru][07][1080P_Ma10P][HEVC_AAC](39D93280).mkv,334574241,2022-06-15T16:43:58,anime,1920x1080,hevc,1420.119,1884 +/mnt/Downloads/anime/[DMG][Sono_Bisque_Doll_wa_Koi_wo_Suru][01-12 END][1080P][HEVC_Ma10P][MKV]/[DMG][Sono_Bisque_Doll_wa_Koi_wo_Suru][11][1080P_Ma10P][HEVC_AAC](8FA0B618).mkv,[DMG][Sono_Bisque_Doll_wa_Koi_wo_Suru][11][1080P_Ma10P][HEVC_AAC](8FA0B618).mkv,351579241,2022-06-15T16:44:10,anime,1920x1080,hevc,1420.026,1980 +/mnt/Downloads/anime/[DMG][Sono_Bisque_Doll_wa_Koi_wo_Suru][01-12 END][1080P][HEVC_Ma10P][MKV]/[DMG][Sono_Bisque_Doll_wa_Koi_wo_Suru][10][1080P_Ma10P][HEVC_AAC](BC1C80E6).mkv,[DMG][Sono_Bisque_Doll_wa_Koi_wo_Suru][10][1080P_Ma10P][HEVC_AAC](BC1C80E6).mkv,318140418,2022-06-15T16:43:46,anime,1920x1080,hevc,1420.119,1792 +/mnt/Downloads/anime/[DMG][Sono_Bisque_Doll_wa_Koi_wo_Suru][01-12 END][1080P][HEVC_Ma10P][MKV]/[DMG][Sono_Bisque_Doll_wa_Koi_wo_Suru][03][1080P_Ma10P][HEVC_AAC](56DB4442).mkv,[DMG][Sono_Bisque_Doll_wa_Koi_wo_Suru][03][1080P_Ma10P][HEVC_AAC](56DB4442).mkv,361530482,2022-06-15T16:43:51,anime,1920x1080,hevc,1420.166,2036 +/mnt/Downloads/anime/[DMG][Sono_Bisque_Doll_wa_Koi_wo_Suru][01-12 END][1080P][HEVC_Ma10P][MKV]/[DMG][Sono_Bisque_Doll_wa_Koi_wo_Suru][12 END][1080P_Ma10P][HEVC_AAC](ECF54792).mkv,[DMG][Sono_Bisque_Doll_wa_Koi_wo_Suru][12 END][1080P_Ma10P][HEVC_AAC](ECF54792).mkv,477770249,2022-06-15T16:44:01,anime,1920x1080,hevc,1420.073,2691 +/mnt/Downloads/anime/[DMG][Sono_Bisque_Doll_wa_Koi_wo_Suru][01-12 END][1080P][HEVC_Ma10P][MKV]/[DMG][Sono_Bisque_Doll_wa_Koi_wo_Suru][09][1080P_Ma10P][HEVC_AAC](8E806DDE).mkv,[DMG][Sono_Bisque_Doll_wa_Koi_wo_Suru][09][1080P_Ma10P][HEVC_AAC](8E806DDE).mkv,346836914,2022-06-15T16:43:47,anime,1920x1080,hevc,1420.166,1953 +/mnt/Downloads/anime/[DMG][Sono_Bisque_Doll_wa_Koi_wo_Suru][01-12 END][1080P][HEVC_Ma10P][MKV]/[DMG][Sono_Bisque_Doll_wa_Koi_wo_Suru][08][1080P_Ma10P][HEVC_AAC](42BD6F4D).mkv,[DMG][Sono_Bisque_Doll_wa_Koi_wo_Suru][08][1080P_Ma10P][HEVC_AAC](42BD6F4D).mkv,361789182,2022-06-15T16:44:00,anime,1920x1080,hevc,1420.073,2038 +/mnt/Downloads/anime/[DMG][Sono_Bisque_Doll_wa_Koi_wo_Suru][01-12 END][1080P][HEVC_Ma10P][MKV]/[DMG][Sono_Bisque_Doll_wa_Koi_wo_Suru][06][1080P_Ma10P][HEVC_AAC](B2AC1FF9).mkv,[DMG][Sono_Bisque_Doll_wa_Koi_wo_Suru][06][1080P_Ma10P][HEVC_AAC](B2AC1FF9).mkv,399415744,2022-06-15T16:44:10,anime,1920x1080,hevc,1420.026,2250 +/mnt/Downloads/anime/[DMG][Sono_Bisque_Doll_wa_Koi_wo_Suru][01-12 END][1080P][HEVC_Ma10P][MKV]/[DMG][Sono_Bisque_Doll_wa_Koi_wo_Suru][02][1080P_Ma10P][HEVC_AAC](54121EBD).mkv,[DMG][Sono_Bisque_Doll_wa_Koi_wo_Suru][02][1080P_Ma10P][HEVC_AAC](54121EBD).mkv,416270104,2022-06-15T16:44:06,anime,1920x1080,hevc,1420.212,2344 +/mnt/Downloads/anime/[DMG][Sono_Bisque_Doll_wa_Koi_wo_Suru][01-12 END][1080P][HEVC_Ma10P][MKV]/[DMG][Sono_Bisque_Doll_wa_Koi_wo_Suru][01][1080P_Ma10P][HEVC_AAC](6EDD0A83).mkv,[DMG][Sono_Bisque_Doll_wa_Koi_wo_Suru][01][1080P_Ma10P][HEVC_AAC](6EDD0A83).mkv,332890735,2022-06-15T16:43:57,anime,1920x1080,hevc,1420.073,1875 +/mnt/Downloads/anime/[DMG][Sono_Bisque_Doll_wa_Koi_wo_Suru][01-12 END][1080P][HEVC_Ma10P][MKV]/[DMG][Sono_Bisque_Doll_wa_Koi_wo_Suru][04][1080P_Ma10P][HEVC_AAC](994D2BE2).mkv,[DMG][Sono_Bisque_Doll_wa_Koi_wo_Suru][04][1080P_Ma10P][HEVC_AAC](994D2BE2).mkv,298765267,2022-06-15T16:44:02,anime,1920x1080,hevc,1420.119,1683 +/mnt/Downloads/anime/[ANi] 葬送的芙莉蓮 - 21 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 葬送的芙莉蓮 - 21 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,747543651,2024-02-03T08:11:50,anime,1920x1080,h264,1470.072911,4068 +/mnt/Downloads/anime/[Nekomoe kissaten&LoliHouse] Tokidoki Bosotto Russia-go de Dereru Tonari no Alya-san - 07 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,[Nekomoe kissaten&LoliHouse] Tokidoki Bosotto Russia-go de Dereru Tonari no Alya-san - 07 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,388720563,2024-08-20T23:42:16,anime,1920x1080,hevc,1479.947,2101 +/mnt/Downloads/anime/[ANi] Fate/strange Fake - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] Fate/strange Fake - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,489020615,2026-01-11T01:58:19,anime,1920x1080,h264,1424.9862,2745 +/mnt/Downloads/anime/[ANi] 怪獸 8 號 第二季 - 21 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 怪獸 8 號 第二季 - 21 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,540282138,2025-09-13T16:16:15,anime,1920x1080,h264,1420.074667,3043 +/mnt/Downloads/anime/[DMG&LoliHouse] Spy x Family [01-25][WebRip 1080p HEVC-10bit AAC ASSx2]/[DMG&LoliHouse] Spy x Family - 25 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,[DMG&LoliHouse] Spy x Family - 25 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,451142017,2023-03-16T08:54:56,anime,1920x1080,hevc,1450.086,2488 +/mnt/Downloads/anime/[DMG&LoliHouse] Spy x Family [01-25][WebRip 1080p HEVC-10bit AAC ASSx2]/[DMG&LoliHouse] Spy x Family - 02 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,[DMG&LoliHouse] Spy x Family - 02 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,387883549,2023-03-16T08:41:58,anime,1920x1080,hevc,1450.016,2140 +/mnt/Downloads/anime/[DMG&LoliHouse] Spy x Family [01-25][WebRip 1080p HEVC-10bit AAC ASSx2]/[DMG&LoliHouse] Spy x Family - 19 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,[DMG&LoliHouse] Spy x Family - 19 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,454888633,2023-03-16T08:54:55,anime,1920x1080,hevc,1450.016,2509 +/mnt/Downloads/anime/[DMG&LoliHouse] Spy x Family [01-25][WebRip 1080p HEVC-10bit AAC ASSx2]/[DMG&LoliHouse] Spy x Family - 21 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,[DMG&LoliHouse] Spy x Family - 21 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,420153750,2023-03-16T08:54:51,anime,1920x1080,hevc,1450.016,2318 +/mnt/Downloads/anime/[DMG&LoliHouse] Spy x Family [01-25][WebRip 1080p HEVC-10bit AAC ASSx2]/[DMG&LoliHouse] Spy x Family - 06 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,[DMG&LoliHouse] Spy x Family - 06 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,520347443,2023-03-16T08:42:33,anime,1920x1080,hevc,1450.016,2870 +/mnt/Downloads/anime/[DMG&LoliHouse] Spy x Family [01-25][WebRip 1080p HEVC-10bit AAC ASSx2]/[DMG&LoliHouse] Spy x Family - 15 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,[DMG&LoliHouse] Spy x Family - 15 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,448227470,2023-03-16T08:54:50,anime,1920x1080,hevc,1450.039,2472 +/mnt/Downloads/anime/[DMG&LoliHouse] Spy x Family [01-25][WebRip 1080p HEVC-10bit AAC ASSx2]/[DMG&LoliHouse] Spy x Family - 11 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,[DMG&LoliHouse] Spy x Family - 11 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,501121835,2023-03-16T08:42:16,anime,1920x1080,hevc,1449.97,2764 +/mnt/Downloads/anime/[DMG&LoliHouse] Spy x Family [01-25][WebRip 1080p HEVC-10bit AAC ASSx2]/[DMG&LoliHouse] Spy x Family - 14 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,[DMG&LoliHouse] Spy x Family - 14 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,521037830,2023-03-16T08:54:56,anime,1920x1080,hevc,1450.017,2874 +/mnt/Downloads/anime/[DMG&LoliHouse] Spy x Family [01-25][WebRip 1080p HEVC-10bit AAC ASSx2]/[DMG&LoliHouse] Spy x Family - 10 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,[DMG&LoliHouse] Spy x Family - 10 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,647711811,2023-03-16T08:42:04,anime,1920x1080,hevc,1450.016,3573 +/mnt/Downloads/anime/[DMG&LoliHouse] Spy x Family [01-25][WebRip 1080p HEVC-10bit AAC ASSx2]/[DMG&LoliHouse] Spy x Family - 24 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,[DMG&LoliHouse] Spy x Family - 24 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,382179606,2023-03-16T08:54:47,anime,1920x1080,hevc,1450.039,2108 +/mnt/Downloads/anime/[DMG&LoliHouse] Spy x Family [01-25][WebRip 1080p HEVC-10bit AAC ASSx2]/[DMG&LoliHouse] Spy x Family - 18 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,[DMG&LoliHouse] Spy x Family - 18 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,293610433,2023-03-16T08:54:46,anime,1920x1080,hevc,1450.086,1619 +/mnt/Downloads/anime/[DMG&LoliHouse] Spy x Family [01-25][WebRip 1080p HEVC-10bit AAC ASSx2]/[DMG&LoliHouse] Spy x Family - 03 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,[DMG&LoliHouse] Spy x Family - 03 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,569112507,2023-03-16T08:42:49,anime,1920x1080,hevc,1450.039,3139 +/mnt/Downloads/anime/[DMG&LoliHouse] Spy x Family [01-25][WebRip 1080p HEVC-10bit AAC ASSx2]/[DMG&LoliHouse] Spy x Family - 20 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,[DMG&LoliHouse] Spy x Family - 20 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,479087514,2023-03-16T08:54:59,anime,1920x1080,hevc,1450.04,2643 +/mnt/Downloads/anime/[DMG&LoliHouse] Spy x Family [01-25][WebRip 1080p HEVC-10bit AAC ASSx2]/[DMG&LoliHouse] Spy x Family - 07 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,[DMG&LoliHouse] Spy x Family - 07 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,546052618,2023-03-16T08:41:55,anime,1920x1080,hevc,1450.039,3012 +/mnt/Downloads/anime/[DMG&LoliHouse] Spy x Family [01-25][WebRip 1080p HEVC-10bit AAC ASSx2]/[DMG&LoliHouse] Spy x Family - 16 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,[DMG&LoliHouse] Spy x Family - 16 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,347071381,2023-03-16T08:54:46,anime,1920x1080,hevc,1450.039,1914 +/mnt/Downloads/anime/[DMG&LoliHouse] Spy x Family [01-25][WebRip 1080p HEVC-10bit AAC ASSx2]/[DMG&LoliHouse] Spy x Family - 12 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,[DMG&LoliHouse] Spy x Family - 12 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,520950257,2023-03-16T08:42:03,anime,1920x1080,hevc,1450.086,2874 +/mnt/Downloads/anime/[DMG&LoliHouse] Spy x Family [01-25][WebRip 1080p HEVC-10bit AAC ASSx2]/[DMG&LoliHouse] Spy x Family - 09 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,[DMG&LoliHouse] Spy x Family - 09 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,508722635,2023-03-16T08:42:33,anime,1920x1080,hevc,1450.016,2806 +/mnt/Downloads/anime/[DMG&LoliHouse] Spy x Family [01-25][WebRip 1080p HEVC-10bit AAC ASSx2]/[DMG&LoliHouse] Spy x Family - 01 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,[DMG&LoliHouse] Spy x Family - 01 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,385990071,2023-03-16T08:42:02,anime,1920x1080,hevc,1449.97,2129 +/mnt/Downloads/anime/[DMG&LoliHouse] Spy x Family [01-25][WebRip 1080p HEVC-10bit AAC ASSx2]/[DMG&LoliHouse] Spy x Family - 05 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,[DMG&LoliHouse] Spy x Family - 05 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,602626493,2023-03-16T08:42:55,anime,1920x1080,hevc,1450.01,3324 +/mnt/Downloads/anime/[DMG&LoliHouse] Spy x Family [01-25][WebRip 1080p HEVC-10bit AAC ASSx2]/[DMG&LoliHouse] Spy x Family - 22 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,[DMG&LoliHouse] Spy x Family - 22 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,477253452,2023-03-16T08:54:47,anime,1920x1080,hevc,1450.039,2633 +/mnt/Downloads/anime/[DMG&LoliHouse] Spy x Family [01-25][WebRip 1080p HEVC-10bit AAC ASSx2]/[DMG&LoliHouse] Spy x Family - 04 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,[DMG&LoliHouse] Spy x Family - 04 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,537735818,2023-03-16T08:42:05,anime,1920x1080,hevc,1450.016,2966 +/mnt/Downloads/anime/[DMG&LoliHouse] Spy x Family [01-25][WebRip 1080p HEVC-10bit AAC ASSx2]/[DMG&LoliHouse] Spy x Family - 23 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,[DMG&LoliHouse] Spy x Family - 23 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,438804438,2023-03-16T08:54:54,anime,1920x1080,hevc,1450.039,2420 +/mnt/Downloads/anime/[DMG&LoliHouse] Spy x Family [01-25][WebRip 1080p HEVC-10bit AAC ASSx2]/[DMG&LoliHouse] Spy x Family - 17 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,[DMG&LoliHouse] Spy x Family - 17 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,449423350,2023-03-16T08:54:52,anime,1920x1080,hevc,1450.016,2479 +/mnt/Downloads/anime/[DMG&LoliHouse] Spy x Family [01-25][WebRip 1080p HEVC-10bit AAC ASSx2]/[DMG&LoliHouse] Spy x Family - 08 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,[DMG&LoliHouse] Spy x Family - 08 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,434425417,2023-03-16T08:42:17,anime,1920x1080,hevc,1449.97,2396 +/mnt/Downloads/anime/[DMG&LoliHouse] Spy x Family [01-25][WebRip 1080p HEVC-10bit AAC ASSx2]/[DMG&LoliHouse] Spy x Family - 13 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,[DMG&LoliHouse] Spy x Family - 13 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,464323819,2023-03-16T08:54:46,anime,1920x1080,hevc,1450.016,2561 +/mnt/Downloads/anime/[ANi] 香格里拉・開拓異境~糞作獵手挑戰神作~ - 21 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 香格里拉・開拓異境~糞作獵手挑戰神作~ - 21 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,592309635,2024-03-03T13:57:43,anime,1920x1080,h264,1415.393289,3347 +/mnt/Downloads/anime/[Airota][ZatsuTabi][01][1080p HEVC-10bit AAC ASS].mkv,[Airota][ZatsuTabi][01][1080p HEVC-10bit AAC ASS].mkv,402347333,2025-04-12T11:31:48,anime,1920x1080,hevc,1420.016,2266 +/mnt/Downloads/anime/[ANi] 異世界自殺突擊隊 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 異世界自殺突擊隊 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,592839295,2024-06-27T08:54:10,anime,1920x1080,h264,1444.053333,3284 +/mnt/Downloads/anime/[Sakurato][20230703] Fuufu Koukan: Modorenai Yoru [01-08 Fin][TVRip][1080p][CHS]/[Sakurato] Fuufu Koukan: Modorenai Yoru [06][AVC-8bit 1080p AAC][CHS].mp4,[Sakurato] Fuufu Koukan: Modorenai Yoru [06][AVC-8bit 1080p AAC][CHS].mp4,130870284,2023-09-24T00:10:12,anime,1920x1080,h264,414.52263,2525 +/mnt/Downloads/anime/[Sakurato][20230703] Fuufu Koukan: Modorenai Yoru [01-08 Fin][TVRip][1080p][CHS]/[Sakurato] Fuufu Koukan: Modorenai Yoru [08v2][AVC-8bit 1080p AAC][CHS].mp4,[Sakurato] Fuufu Koukan: Modorenai Yoru [08v2][AVC-8bit 1080p AAC][CHS].mp4,157638210,2023-09-24T00:10:13,anime,1920x1080,h264,422.022676,2988 +/mnt/Downloads/anime/[Sakurato][20230703] Fuufu Koukan: Modorenai Yoru [01-08 Fin][TVRip][1080p][CHS]/[Sakurato] Fuufu Koukan: Modorenai Yoru [07][AVC-8bit 1080p AAC][CHS].mp4,[Sakurato] Fuufu Koukan: Modorenai Yoru [07][AVC-8bit 1080p AAC][CHS].mp4,147911227,2023-09-24T00:10:14,anime,1920x1080,h264,403.539592,2932 +/mnt/Downloads/anime/[Sakurato][20230703] Fuufu Koukan: Modorenai Yoru [01-08 Fin][TVRip][1080p][CHS]/[Sakurato] Fuufu Koukan: Modorenai Yoru [01][AVC-8bit 1080p AAC][CHS].mp4,[Sakurato] Fuufu Koukan: Modorenai Yoru [01][AVC-8bit 1080p AAC][CHS].mp4,153937853,2023-09-24T00:10:11,anime,1920x1080,h264,411.527256,2992 +/mnt/Downloads/anime/[Sakurato][20230703] Fuufu Koukan: Modorenai Yoru [01-08 Fin][TVRip][1080p][CHS]/[Sakurato] Fuufu Koukan: Modorenai Yoru [04][AVC-8bit 1080p AAC][CHS].mp4,[Sakurato] Fuufu Koukan: Modorenai Yoru [04][AVC-8bit 1080p AAC][CHS].mp4,176295643,2023-09-24T00:10:12,anime,1920x1080,h264,407.533424,3460 +/mnt/Downloads/anime/[Sakurato][20230703] Fuufu Koukan: Modorenai Yoru [01-08 Fin][TVRip][1080p][CHS]/[Sakurato] Fuufu Koukan: Modorenai Yoru [02][AVC-8bit 1080p AAC][CHS].mp4,[Sakurato] Fuufu Koukan: Modorenai Yoru [02][AVC-8bit 1080p AAC][CHS].mp4,156415808,2023-09-24T00:10:13,anime,1920x1080,h264,412.548934,3033 +/mnt/Downloads/anime/[Sakurato][20230703] Fuufu Koukan: Modorenai Yoru [01-08 Fin][TVRip][1080p][CHS]/[Sakurato] Fuufu Koukan: Modorenai Yoru [05][AVC-8bit 1080p AAC][CHS].mp4,[Sakurato] Fuufu Koukan: Modorenai Yoru [05][AVC-8bit 1080p AAC][CHS].mp4,163912239,2023-09-24T00:10:14,anime,1920x1080,h264,423.531973,3096 +/mnt/Downloads/anime/[Sakurato][20230703] Fuufu Koukan: Modorenai Yoru [01-08 Fin][TVRip][1080p][CHS]/[Sakurato] Fuufu Koukan: Modorenai Yoru [03][AVC-8bit 1080p AAC][CHS].mp4,[Sakurato] Fuufu Koukan: Modorenai Yoru [03][AVC-8bit 1080p AAC][CHS].mp4,160939645,2023-09-24T00:10:14,anime,1920x1080,h264,391.488435,3288 +/mnt/Downloads/anime/Made.in.Abyss.Wandering.Twilight.2019.1080p.BluRay.x264.DTS-WiKi/Sample/Made.in.Abyss.Wandering.Twilight.2019.1080p.BluRay.x264.DTS-WiKi.sample.mkv,Made.in.Abyss.Wandering.Twilight.2019.1080p.BluRay.x264.DTS-WiKi.sample.mkv,113130410,2021-06-23T10:50:34,anime,1920x1080,h264,62.769,14418 +/mnt/Downloads/anime/Made.in.Abyss.Wandering.Twilight.2019.1080p.BluRay.x264.DTS-WiKi/Made.in.Abyss.Wandering.Twilight.2019.1080p.BluRay.x264.DTS-WiKi.mkv,Made.in.Abyss.Wandering.Twilight.2019.1080p.BluRay.x264.DTS-WiKi.mkv,8535860840,2021-06-23T10:52:45,anime,1920x1080,h264,6337.334,10775 +/mnt/Downloads/anime/[ANi] LAZARUS 拉撒路 - 13 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] LAZARUS 拉撒路 - 13 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,611211263,2025-06-29T23:26:35,anime,1920x1080,h264,1439.978667,3395 +/mnt/Downloads/anime/[ANi] 妻子變成小學生。 - 11 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 妻子變成小學生。 - 11 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,270860746,2024-12-08T14:55:17,anime,1920x1080,h264,1420.032,1525 +/mnt/Downloads/anime/[ANi] 葬送的芙莉蓮 - 19 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 葬送的芙莉蓮 - 19 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,712683655,2024-01-19T16:11:06,anime,1920x1080,h264,1470.072911,3878 +/mnt/Downloads/anime/[ANi] 異國日記 - 06 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 異國日記 - 06 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,214819272,2026-02-08T16:15:20,anime,1920x1080,h264,1420.032,1210 +/mnt/Downloads/anime/[ANi] 香格里拉・開拓異境~糞作獵手挑戰神作~ - 19 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 香格里拉・開拓異境~糞作獵手挑戰神作~ - 19 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,880091929,2024-02-18T09:45:53,anime,1920x1080,h264,1606.459156,4382 +/mnt/Downloads/anime/[Skymoon-Raws] Re:Zero kara Hajimeru Isekai Seikatsu 3rd Season - 10 [ViuTV][WEB-DL][CHT][SRT][1080p][AVC AAC].mkv,[Skymoon-Raws] Re:Zero kara Hajimeru Isekai Seikatsu 3rd Season - 10 [ViuTV][WEB-DL][CHT][SRT][1080p][AVC AAC].mkv,429871843,2025-02-12T16:10:56,anime,1920x1080,h264,1420.128,2421 +/mnt/Downloads/anime/[ANi] 記憶縫線 YOUR FORMA - 10 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 記憶縫線 YOUR FORMA - 10 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,506239190,2025-06-05T01:58:49,anime,1920x1080,h264,1425.069622,2841 +/mnt/Downloads/anime/[UHA-WINGS][Overtake!][x264 1080p][CHT]/[UHA-WINGS][Overtake!][10][x264 1080p][CHT].mp4,[UHA-WINGS][Overtake!][10][x264 1080p][CHT].mp4,376477470,2024-04-07T08:19:04,anime,1920x1080,h264,1417.508571,2124 +/mnt/Downloads/anime/[UHA-WINGS][Overtake!][x264 1080p][CHT]/[UHA-WINGS][Overtake!][06][x264 1080p][CHT].mp4,[UHA-WINGS][Overtake!][06][x264 1080p][CHT].mp4,412615907,2024-04-07T08:19:04,anime,1920x1080,h264,1420.202086,2324 +/mnt/Downloads/anime/[UHA-WINGS][Overtake!][x264 1080p][CHT]/[UHA-WINGS][Overtake!][11][x264 1080p][CHT].mp4,[UHA-WINGS][Overtake!][11][x264 1080p][CHT].mp4,312061179,2024-04-07T08:19:04,anime,1920x1080,h264,1420.178866,1757 +/mnt/Downloads/anime/[UHA-WINGS][Overtake!][x264 1080p][CHT]/[UHA-WINGS][Overtake!][01][x264 1080p][CHT].mp4,[UHA-WINGS][Overtake!][01][x264 1080p][CHT].mp4,319635590,2024-04-07T08:19:03,anime,1920x1080,h264,1510.132971,1693 +/mnt/Downloads/anime/[UHA-WINGS][Overtake!][x264 1080p][CHT]/[UHA-WINGS][Overtake!][07][x264 1080p][CHT].mp4,[UHA-WINGS][Overtake!][07][x264 1080p][CHT].mp4,242640154,2024-04-07T08:19:05,anime,1920x1080,h264,1420.178866,1366 +/mnt/Downloads/anime/[UHA-WINGS][Overtake!][x264 1080p][CHT]/[UHA-WINGS][Overtake!][12][x264 1080p][CHT].mp4,[UHA-WINGS][Overtake!][12][x264 1080p][CHT].mp4,383924096,2024-04-07T08:19:04,anime,1920x1080,h264,1510.17941,2033 +/mnt/Downloads/anime/[UHA-WINGS][Overtake!][x264 1080p][CHT]/[UHA-WINGS][Overtake!][04][x264 1080p][CHT].mp4,[UHA-WINGS][Overtake!][04][x264 1080p][CHT].mp4,293152581,2024-04-07T08:19:09,anime,1920x1080,h264,1420.202086,1651 +/mnt/Downloads/anime/[UHA-WINGS][Overtake!][x264 1080p][CHT]/[UHA-WINGS][Overtake!][02][x264 1080p][CHT].mp4,[UHA-WINGS][Overtake!][02][x264 1080p][CHT].mp4,239259955,2024-04-07T08:19:03,anime,1920x1080,h264,1417.508571,1350 +/mnt/Downloads/anime/[UHA-WINGS][Overtake!][x264 1080p][CHT]/[UHA-WINGS][Overtake!][08][x264 1080p][CHT].mp4,[UHA-WINGS][Overtake!][08][x264 1080p][CHT].mp4,297007424,2024-04-07T08:19:03,anime,1920x1080,h264,1420.178866,1673 +/mnt/Downloads/anime/[UHA-WINGS][Overtake!][x264 1080p][CHT]/[UHA-WINGS][Overtake!][05][x264 1080p][CHT].mp4,[UHA-WINGS][Overtake!][05][x264 1080p][CHT].mp4,373811453,2024-04-07T08:19:03,anime,1920x1080,h264,1420.178866,2105 +/mnt/Downloads/anime/[UHA-WINGS][Overtake!][x264 1080p][CHT]/[UHA-WINGS][Overtake!][03][x264 1080p][CHT].mp4,[UHA-WINGS][Overtake!][03][x264 1080p][CHT].mp4,374758421,2024-04-07T08:19:05,anime,1920x1080,h264,1420.178866,2111 +/mnt/Downloads/anime/[UHA-WINGS][Overtake!][x264 1080p][CHT]/[UHA-WINGS][Overtake!][09][x264 1080p][CHT].mp4,[UHA-WINGS][Overtake!][09][x264 1080p][CHT].mp4,206087567,2024-04-07T08:19:03,anime,1920x1080,h264,1510.063311,1091 +/mnt/Downloads/anime/[ANi] 忍者與殺手的兩人生活 - 06 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 忍者與殺手的兩人生活 - 06 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,397902618,2025-05-15T23:25:35,anime,1920x1080,h264,1420.074667,2241 +/mnt/Downloads/anime/[ANi] 瞬間治癒卻被當成廢物踢出隊伍的天才治療師,改當無照治療師快樂過活 - 07 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 瞬間治癒卻被當成廢物踢出隊伍的天才治療師,改當無照治療師快樂過活 - 07 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,312423392,2025-05-15T23:25:00,anime,1920x1080,h264,1440.064,1735 +/mnt/Downloads/anime/[ANi] LAZARUS 拉撒路 - 08 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] LAZARUS 拉撒路 - 08 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,602446817,2025-05-25T23:39:51,anime,1920x1080,h264,1440.085333,3346 +/mnt/Downloads/anime/[LoliHouse] Amagami-san Chi no Enmusubi - 04 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,[LoliHouse] Amagami-san Chi no Enmusubi - 04 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,380842436,2024-10-29T01:31:36,anime,1920x1080,hevc,1420.062,2145 +/mnt/Downloads/anime/[ANi] 我的妻子不具感情 - 03 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 我的妻子不具感情 - 03 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,416026440,2024-07-14T09:19:46,anime,1920x1080,h264,1420.117333,2343 +/mnt/Downloads/anime/[ANi] 轉生貴族憑鑑定技能扭轉人生 - 03 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 轉生貴族憑鑑定技能扭轉人生 - 03 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,460332239,2024-04-21T23:46:03,anime,1920x1080,h264,1420.032,2593 +/mnt/Downloads/anime/[LoliHouse] Shin Samurai-den YAIBA - 07 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,[LoliHouse] Shin Samurai-den YAIBA - 07 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,702855556,2025-05-17T16:25:52,anime,1920x1080,hevc,1429.978,3932 +/mnt/Downloads/anime/[LoliHouse] Around 40 Otoko no Isekai Tsuuhan - 06 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,[LoliHouse] Around 40 Otoko no Isekai Tsuuhan - 06 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,672734750,2025-02-27T23:40:43,anime,1920x1080,hevc,1420.016,3790 +/mnt/Downloads/anime/Made.in.Abyss.Dawn.of.the.Deep.Soul.2020.1080p.BluRay.x264-WiKi/Sample/Made.in.Abyss.Dawn.of.the.Deep.Soul.2020.1080p.BluRay.x264-WiKi.Sample.mkv,Made.in.Abyss.Dawn.of.the.Deep.Soul.2020.1080p.BluRay.x264-WiKi.Sample.mkv,108350785,2020-11-13T15:06:00,anime,1920x1080,h264,66.442,13046 +/mnt/Downloads/anime/Made.in.Abyss.Dawn.of.the.Deep.Soul.2020.1080p.BluRay.x264-WiKi/Made.in.Abyss.Dawn.of.the.Deep.Soul.2020.1080p.BluRay.x264-WiKi.mkv,Made.in.Abyss.Dawn.of.the.Deep.Soul.2020.1080p.BluRay.x264-WiKi.mkv,9988422371,2020-11-13T15:29:10,anime,1920x1080,h264,6293.568,12696 +/mnt/Downloads/anime/[BeanSub&FZSD][Jujutsu_Kaisen][51][GB][1080P][x264_AAC].mp4,[BeanSub&FZSD][Jujutsu_Kaisen][51][GB][1080P][x264_AAC].mp4,604951500,2026-01-22T23:52:43,anime,1920x1080,h264,1685.141769,2871 +/mnt/Downloads/anime/[ANi] 勇氣爆發 BANG BRAVERN - 04 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 勇氣爆發 BANG BRAVERN - 04 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,550857538,2024-02-02T11:36:25,anime,1920x1080,h264,1420.032,3103 +/mnt/Downloads/anime/[Nekomoe kissaten&LoliHouse] Dungeon Meshi - 17 [WebRip 1080p HEVC-10bit AAC EAC3 ASSx2].mkv,[Nekomoe kissaten&LoliHouse] Dungeon Meshi - 17 [WebRip 1080p HEVC-10bit AAC EAC3 ASSx2].mkv,630773653,2024-04-27T14:54:47,anime,1920x1080,hevc,1529.975,3298 +/mnt/Downloads/anime/[ANi] 一拳超人(第三季) - 32 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 一拳超人(第三季) - 32 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,655731191,2025-11-30T23:37:18,anime,1920x1080,h264,1441.085622,3640 +/mnt/Downloads/anime/[ANi] 在地下城尋求邂逅是否搞錯了什麼 第五季 - 11 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 在地下城尋求邂逅是否搞錯了什麼 第五季 - 11 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,436984215,2024-12-19T13:16:30,anime,1920x1080,h264,1420.106322,2461 +/mnt/Downloads/anime/[Lilith-Raws] Rinkai! - 01 [Baha][WebDL 1080p AVC AAC][CHT].mp4,[Lilith-Raws] Rinkai! - 01 [Baha][WebDL 1080p AVC AAC][CHT].mp4,426388907,2024-04-10T11:15:06,anime,1920x1080,h264,1420.032,2402 +/mnt/Downloads/anime/[ANi] 被逐出隊伍的治癒師,其實是最強 - 06 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 被逐出隊伍的治癒師,其實是最強 - 06 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,381728553,2024-11-10T00:12:52,anime,1920x1080,h264,1404.010667,2175 +/mnt/Downloads/anime/[BeanSub&FZSD][Jigokuraku][14][GB][1080P][x264_AAC].mp4,[BeanSub&FZSD][Jigokuraku][14][GB][1080P][x264_AAC].mp4,559788268,2026-01-12T13:40:27,anime,1920x1080,h264,1450.073625,3088 +/mnt/Downloads/anime/[ANi] 終末起點 - 11 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 終末起點 - 11 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,341311822,2025-06-12T00:10:05,anime,1920x1080,h264,1370.067208,1992 +/mnt/Downloads/anime/[LoliHouse] Grand Blue S2 - 02 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,[LoliHouse] Grand Blue S2 - 02 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,441329542,2025-07-30T00:26:50,anime,1920x1080,hevc,1440.032,2451 +/mnt/Downloads/anime/[ANi] 黃昏光影 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 黃昏光影 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,379748242,2024-07-04T16:06:20,anime,1920x1080,h264,1419.989333,2139 +/mnt/Downloads/anime/[ANi] 治癒魔法的錯誤使用法 - 07 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 治癒魔法的錯誤使用法 - 07 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,546267641,2024-02-16T15:57:34,anime,1920x1080,h264,1430.074622,3055 +/mnt/Downloads/anime/[ANi] 一拳超人(第三季) - 29 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 一拳超人(第三季) - 29 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,633180026,2025-11-09T16:16:24,anime,1920x1080,h264,1441.043911,3515 +/mnt/Downloads/anime/[ANi] 遲早是最強的鍊金術師? - 10 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 遲早是最強的鍊金術師? - 10 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,395106364,2025-03-05T14:09:23,anime,1920x1080,h264,1420.074667,2225 +/mnt/Downloads/anime/[Sakurato][20220107] Shuumatsu no Harem [1-11 Fin][TV][AVC-8bit 1080P AAC][CHT]/[Sakurato] Shuumatsu no Harem [05][AVC-8bit 1080P AAC][CHT].mp4,[Sakurato] Shuumatsu no Harem [05][AVC-8bit 1080P AAC][CHT].mp4,527085351,2022-04-16T05:12:29,anime,1920x1080,h264,1440.195,2927 +/mnt/Downloads/anime/[Sakurato][20220107] Shuumatsu no Harem [1-11 Fin][TV][AVC-8bit 1080P AAC][CHT]/[Sakurato] Shuumatsu no Harem [03][AVC-8bit 1080P AAC][CHT].mp4,[Sakurato] Shuumatsu no Harem [03][AVC-8bit 1080P AAC][CHT].mp4,569317258,2022-04-16T05:12:27,anime,1920x1080,h264,1440.148,3162 +/mnt/Downloads/anime/[Sakurato][20220107] Shuumatsu no Harem [1-11 Fin][TV][AVC-8bit 1080P AAC][CHT]/[Sakurato] Shuumatsu no Harem [09][AVC-8bit 1080P AAC][CHT].mp4,[Sakurato] Shuumatsu no Harem [09][AVC-8bit 1080P AAC][CHT].mp4,608072488,2022-04-15T16:35:27,anime,1920x1080,h264,1440.195,3377 +/mnt/Downloads/anime/[Sakurato][20220107] Shuumatsu no Harem [1-11 Fin][TV][AVC-8bit 1080P AAC][CHT]/[Sakurato] Shuumatsu no Harem [04][AVC-8bit 1080P AAC][CHT].mp4,[Sakurato] Shuumatsu no Harem [04][AVC-8bit 1080P AAC][CHT].mp4,619123174,2022-04-16T05:12:28,anime,1920x1080,h264,1440.148,3439 +/mnt/Downloads/anime/[Sakurato][20220107] Shuumatsu no Harem [1-11 Fin][TV][AVC-8bit 1080P AAC][CHT]/[Sakurato] Shuumatsu no Harem [02][AVC-8bit 1080P AAC][CHT].mp4,[Sakurato] Shuumatsu no Harem [02][AVC-8bit 1080P AAC][CHT].mp4,453601779,2022-04-16T05:10:06,anime,1920x1080,h264,1440.148,2519 +/mnt/Downloads/anime/[Sakurato][20220107] Shuumatsu no Harem [1-11 Fin][TV][AVC-8bit 1080P AAC][CHT]/[Sakurato] Shuumatsu no Harem [08][AVC-8bit 1080P AAC][CHT].mp4,[Sakurato] Shuumatsu no Harem [08][AVC-8bit 1080P AAC][CHT].mp4,536501999,2022-04-15T16:35:25,anime,1920x1080,h264,1440.125,2980 +/mnt/Downloads/anime/[Sakurato][20220107] Shuumatsu no Harem [1-11 Fin][TV][AVC-8bit 1080P AAC][CHT]/[Sakurato] Shuumatsu no Harem [07][AVC-8bit 1080P AAC][CHT].mp4,[Sakurato] Shuumatsu no Harem [07][AVC-8bit 1080P AAC][CHT].mp4,503345789,2022-04-16T05:12:28,anime,1920x1080,h264,1440.148,2796 +/mnt/Downloads/anime/[Sakurato][20220107] Shuumatsu no Harem [1-11 Fin][TV][AVC-8bit 1080P AAC][CHT]/[Sakurato] Shuumatsu no Harem [01][AVC-8bit 1080P AAC][CHT].mp4,[Sakurato] Shuumatsu no Harem [01][AVC-8bit 1080P AAC][CHT].mp4,616821694,2022-04-16T05:12:23,anime,1920x1080,h264,1430.141,3450 +/mnt/Downloads/anime/[Sakurato][20220107] Shuumatsu no Harem [1-11 Fin][TV][AVC-8bit 1080P AAC][CHT]/[Sakurato] Shuumatsu no Harem [10][AVC-8bit 1080P AAC][CHT].mp4,[Sakurato] Shuumatsu no Harem [10][AVC-8bit 1080P AAC][CHT].mp4,475282436,2022-04-15T16:35:26,anime,1920x1080,h264,1440.125,2640 +/mnt/Downloads/anime/[Sakurato][20220107] Shuumatsu no Harem [1-11 Fin][TV][AVC-8bit 1080P AAC][CHT]/[Sakurato] Shuumatsu no Harem [06][AVC-8bit 1080P AAC][CHT].mp4,[Sakurato] Shuumatsu no Harem [06][AVC-8bit 1080P AAC][CHT].mp4,525770215,2022-04-16T05:12:27,anime,1920x1080,h264,1440.148,2920 +/mnt/Downloads/anime/[Sakurato][20220107] Shuumatsu no Harem [1-11 Fin][TV][AVC-8bit 1080P AAC][CHT]/[Sakurato] Shuumatsu no Harem [11][AVC-8bit 1080P AAC][CHT].mp4,[Sakurato] Shuumatsu no Harem [11][AVC-8bit 1080P AAC][CHT].mp4,375986152,2022-04-16T05:11:55,anime,1920x1080,h264,1440.148,2088 +/mnt/Downloads/anime/[Nekomoe kissaten&LoliHouse] Dosanko Gal wa Namara Menkoi - 01 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,[Nekomoe kissaten&LoliHouse] Dosanko Gal wa Namara Menkoi - 01 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,440774214,2024-01-27T06:11:15,anime,1920x1080,hevc,1440.124,2448 +/mnt/Downloads/anime/[ANi] Re:從零開始的異世界生活 第三季 - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] Re:從零開始的異世界生活 第三季 - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,471541911,2024-10-09T15:05:33,anime,1920x1080,h264,1420.022911,2656 +/mnt/Downloads/anime/[Skymoon-Raws] SPY×FAMILY - 23 [ViuTV][WEB-DL][CHT][1080p][AVC AAC][MP4+ASS]/[Skymoon-Raws] SPY×FAMILY - 23 [ViuTV][WEB-DL][1080p][AVC AAC].mp4,[Skymoon-Raws] SPY×FAMILY - 23 [ViuTV][WEB-DL][1080p][AVC AAC].mp4,404558982,2022-12-11T00:07:23,anime,1920x1080,h264,1450.048,2231 +"/mnt/Downloads/anime/[LoliHouse] Katainaka no Ossan, Kensei ni Naru - 01 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv","[LoliHouse] Katainaka no Ossan, Kensei ni Naru - 01 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv",570502263,2025-04-06T15:20:08,anime,1920x1080,hevc,1440.939,3167 +/mnt/Downloads/anime/[BeanSub&FZSD][Kimetsu_no_Yaiba][62][BIG5][1080P][x264_AAC].mp4,[BeanSub&FZSD][Kimetsu_no_Yaiba][62][BIG5][1080P][x264_AAC].mp4,694228256,2024-06-23T23:49:33,anime,1920x1080,h264,1915.158639,2899 +/mnt/Downloads/anime/[ANi] 香格里拉・開拓異境~糞作獵手挑戰神作~ - 25 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 香格里拉・開拓異境~糞作獵手挑戰神作~ - 25 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,641685816,2024-03-31T09:15:44,anime,1920x1080,h264,1538.432867,3336 +/mnt/Downloads/anime/[ANi] 香格里拉・開拓異境~糞作獵手挑戰神作~ 第二季 - 14 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 香格里拉・開拓異境~糞作獵手挑戰神作~ 第二季 - 14 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,984706257,2025-01-19T13:41:38,anime,1920x1080,h264,1422.066622,5539 +/mnt/Downloads/anime/[ANi] 葬送的芙莉蓮 - 25 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 葬送的芙莉蓮 - 25 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,718050550,2024-03-01T15:14:45,anime,1920x1080,h264,1470.0312,3907 +/mnt/Downloads/anime/[ANi] 29 歲單身中堅冒險家的日常 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 29 歲單身中堅冒險家的日常 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,338466186,2026-01-22T01:42:16,anime,1920x1080,h264,1425.111322,1900 +/mnt/Downloads/anime/[ANi] 野原廣志 午餐的流派 - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 野原廣志 午餐的流派 - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,395192380,2025-10-11T01:03:49,anime,1920x1080,h264,1429.056,2212 +/mnt/Downloads/anime/[LoliHouse] Izure Saikyou no Renkinjutsushi - 05 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,[LoliHouse] Izure Saikyou no Renkinjutsushi - 05 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,441481795,2025-02-06T01:35:12,anime,1920x1080,hevc,1420.063,2487 +/mnt/Downloads/anime/[Nekomoe kissaten][Boku no Kokoro no Yabai Yatsu][22][1080p][JPSC].mp4,[Nekomoe kissaten][Boku no Kokoro no Yabai Yatsu][22][1080p][JPSC].mp4,284871903,2024-03-10T11:00:22,anime,1920x1080,h264,1382.975,1647 +/mnt/Downloads/anime/[Nekomoe kissaten&LoliHouse] Pon no Michi - 07 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,[Nekomoe kissaten&LoliHouse] Pon no Michi - 07 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,491758707,2024-02-24T12:25:35,anime,1920x1080,hevc,1463.978,2687 +/mnt/Downloads/anime/《盾之勇者成名錄 第二季》#12/《盾之勇者成名錄 第二季》#12 (日語原聲)【Ani-One ULTRA】.mp4,《盾之勇者成名錄 第二季》#12 (日語原聲)【Ani-One ULTRA】.mp4,350842382,2022-06-23T00:17:59,anime,1920x1080,h264,1420.062766,1976 +/mnt/Downloads/anime/[Nekomoe kissaten][Ame to Kimi to][05][1080p][JPSC].mp4,[Nekomoe kissaten][Ame to Kimi to][05][1080p][JPSC].mp4,240339464,2025-08-04T02:26:26,anime,1920x1080,h264,1368.003628,1405 +/mnt/Downloads/anime/[Nekomoe kissaten][Chi. Chikyuu no Undou ni Tsuite][01][1080p][JPSC].mp4,[Nekomoe kissaten][Chi. Chikyuu no Undou ni Tsuite][01][1080p][JPSC].mp4,223940490,2024-11-22T11:24:52,anime,1920x1080,h264,1502.122667,1192 +/mnt/Downloads/anime/Baki.2018.S01.Part1.1080p.NF.WEB-DL.AAC.H.264@BWE/[第 1 部分.Ep6] 刃牙 - 片平警官的报告.mkv,[第 1 部分.Ep6] 刃牙 - 片平警官的报告.mkv,1174958508,2023-11-07T17:32:27,anime,1920x1080,h264,1350.641,6959 +/mnt/Downloads/anime/Baki.2018.S01.Part1.1080p.NF.WEB-DL.AAC.H.264@BWE/[第 1 部分.Ep9] 刃牙 - 激愤的神心会.mkv,[第 1 部分.Ep9] 刃牙 - 激愤的神心会.mkv,451391034,2023-11-07T17:32:39,anime,1920x1080,h264,1451.742,2487 +/mnt/Downloads/anime/Baki.2018.S01.Part1.1080p.NF.WEB-DL.AAC.H.264@BWE/[第 1 部分.Ep5] 刃牙 - 想要更多吗?.mkv,[第 1 部分.Ep5] 刃牙 - 想要更多吗?.mkv,764313571,2023-11-07T17:30:29,anime,1920x1080,h264,1413.704,4325 +/mnt/Downloads/anime/Baki.2018.S01.Part1.1080p.NF.WEB-DL.AAC.H.264@BWE/[第 1 部分.Ep13] 刃牙 - 奥利弗先生.mkv,[第 1 部分.Ep13] 刃牙 - 奥利弗先生.mkv,433805298,2023-11-07T17:32:14,anime,1920x1080,h264,1451.742,2390 +/mnt/Downloads/anime/Baki.2018.S01.Part1.1080p.NF.WEB-DL.AAC.H.264@BWE/[第 1 部分.Ep7] 刃牙 - 最强的组合.mkv,[第 1 部分.Ep7] 刃牙 - 最强的组合.mkv,556766706,2023-11-07T17:32:47,anime,1920x1080,h264,1369.66,3251 +/mnt/Downloads/anime/Baki.2018.S01.Part1.1080p.NF.WEB-DL.AAC.H.264@BWE/[第 1 部分.Ep8] 刃牙 - 比赛与决斗.mkv,[第 1 部分.Ep8] 刃牙 - 比赛与决斗.mkv,899557126,2023-11-07T17:31:50,anime,1920x1080,h264,1451.742,4957 +/mnt/Downloads/anime/Baki.2018.S01.Part1.1080p.NF.WEB-DL.AAC.H.264@BWE/[第 1 部分.Ep12] 刃牙 - 糖果.mkv,[第 1 部分.Ep12] 刃牙 - 糖果.mkv,753759053,2023-11-07T17:32:40,anime,1920x1080,h264,1451.742,4153 +/mnt/Downloads/anime/Baki.2018.S01.Part1.1080p.NF.WEB-DL.AAC.H.264@BWE/[第 1 部分.Ep10] 刃牙 - 空中决战.mkv,[第 1 部分.Ep10] 刃牙 - 空中决战.mkv,1496148494,2023-11-07T17:32:54,anime,1920x1080,h264,1451.742,8244 +/mnt/Downloads/anime/Baki.2018.S01.Part1.1080p.NF.WEB-DL.AAC.H.264@BWE/[第 1 部分.Ep3] 刃牙 - 他们终于来了!.mkv,[第 1 部分.Ep3] 刃牙 - 他们终于来了!.mkv,784001129,2023-11-07T17:32:11,anime,1920x1080,h264,1382.673,4536 +/mnt/Downloads/anime/Baki.2018.S01.Part1.1080p.NF.WEB-DL.AAC.H.264@BWE/[第 1 部分.Ep2] 刃牙 - 黑格斗.mkv,[第 1 部分.Ep2] 刃牙 - 黑格斗.mkv,478931225,2023-11-07T17:31:41,anime,1920x1080,h264,1453.244,2636 +/mnt/Downloads/anime/Baki.2018.S01.Part1.1080p.NF.WEB-DL.AAC.H.264@BWE/[第 1 部分.Ep1] 刃牙 - 共时现象.mkv,[第 1 部分.Ep1] 刃牙 - 共时现象.mkv,665371955,2023-11-07T17:32:53,anime,1920x1080,h264,1453.744,3661 +/mnt/Downloads/anime/Baki.2018.S01.Part1.1080p.NF.WEB-DL.AAC.H.264@BWE/[第 1 部分.Ep4] 刃牙 - 比赛开始.mkv,[第 1 部分.Ep4] 刃牙 - 比赛开始.mkv,835356869,2023-11-07T17:32:23,anime,1920x1080,h264,1452.243,4601 +/mnt/Downloads/anime/Baki.2018.S01.Part1.1080p.NF.WEB-DL.AAC.H.264@BWE/[第 1 部分.Ep11] 刃牙 - 虎杀.mkv,[第 1 部分.Ep11] 刃牙 - 虎杀.mkv,713844968,2023-11-07T17:32:53,anime,1920x1080,h264,1451.742,3933 +/mnt/Downloads/anime/《不要欺負我,長瀞同學 2nd Attack》#1/《不要欺負我,長瀞同學 2nd Attack》#1 (日語原聲)【Ani-One Asia】.mp4,《不要欺負我,長瀞同學 2nd Attack》#1 (日語原聲)【Ani-One Asia】.mp4,118682775,2023-01-09T01:40:01,anime,1920x1080,av1,1420.085986,668 +/mnt/Downloads/anime/[Lilith-Raws] Re:Monster - 01 [Baha][WebDL 1080p AVC AAC][CHT].mp4,[Lilith-Raws] Re:Monster - 01 [Baha][WebDL 1080p AVC AAC][CHT].mp4,509908859,2024-05-07T00:51:20,anime,1920x1080,h264,1420.010667,2872 +/mnt/Downloads/anime/[ANi] 身為暗殺者的我明顯比勇者還強 - 04 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 身為暗殺者的我明顯比勇者還強 - 04 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,970408622,2025-10-28T00:57:37,anime,1920x1080,h264,1429.9912,5428 +/mnt/Downloads/anime/[ANi] 素材採集家的異世界旅行記 - 06 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 素材採集家的異世界旅行記 - 06 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,311128900,2025-11-04T01:30:36,anime,1920x1080,h264,1420.064622,1752 +/mnt/Downloads/anime/[orion origin] Boukyaku Battery [08] [1080p] [H265 AAC] [CHT&JPN].mp4,[orion origin] Boukyaku Battery [08] [1080p] [H265 AAC] [CHT&JPN].mp4,448661347,2024-06-27T15:02:35,anime,1920x1080,hevc,1435.085986,2501 +/mnt/Downloads/anime/KENGAN.ASHURA.S02.Part2.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG/KENGAN.ASHURA.S02E21.Farewell.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG.mkv,KENGAN.ASHURA.S02E21.Farewell.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG.mkv,1164341438,2024-08-21T00:16:16,anime,1920x1080,h264,1504.064,6193 +/mnt/Downloads/anime/KENGAN.ASHURA.S02.Part2.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG/KENGAN.ASHURA.S02E22.Wakatsuki.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG.mkv,KENGAN.ASHURA.S02E22.Wakatsuki.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG.mkv,1170929098,2024-08-21T00:16:16,anime,1920x1080,h264,1520.192,6162 +/mnt/Downloads/anime/KENGAN.ASHURA.S02.Part2.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG/KENGAN.ASHURA.S02E23.Wholehearted.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG.mkv,KENGAN.ASHURA.S02E23.Wholehearted.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG.mkv,1172489837,2024-08-21T00:16:17,anime,1920x1080,h264,1522.112,6162 +/mnt/Downloads/anime/KENGAN.ASHURA.S02.Part2.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG/KENGAN.ASHURA.S02E24.Supreme.Strength.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG.mkv,KENGAN.ASHURA.S02E24.Supreme.Strength.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG.mkv,1173597683,2024-08-21T00:16:09,anime,1920x1080,h264,1530.176,6135 +/mnt/Downloads/anime/KENGAN.ASHURA.S02.Part2.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG/KENGAN.ASHURA.S02E26.The.Finals.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG.mkv,KENGAN.ASHURA.S02E26.The.Finals.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG.mkv,1168844794,2024-08-21T00:16:15,anime,1920x1080,h264,1514.048,6175 +/mnt/Downloads/anime/KENGAN.ASHURA.S02.Part2.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG/KENGAN.ASHURA.S02E25.Giant.Star.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG.mkv,KENGAN.ASHURA.S02E25.Giant.Star.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG.mkv,1167116016,2024-08-21T00:16:16,anime,1920x1080,h264,1512.128,6174 +/mnt/Downloads/anime/KENGAN.ASHURA.S02.Part2.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG/KENGAN.ASHURA.S02E27.Victory.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG.mkv,KENGAN.ASHURA.S02E27.Victory.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG.mkv,1171575863,2024-08-21T00:16:17,anime,1920x1080,h264,1522.112,6157 +/mnt/Downloads/anime/KENGAN.ASHURA.S02.Part2.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG/KENGAN.ASHURA.S02E16.Culmination.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG.mkv,KENGAN.ASHURA.S02E16.Culmination.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG.mkv,1167716503,2024-08-21T00:16:18,anime,1920x1080,h264,1514.048,6170 +/mnt/Downloads/anime/KENGAN.ASHURA.S02.Part2.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG/KENGAN.ASHURA.S02E19.Predicament.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG.mkv,KENGAN.ASHURA.S02E19.Predicament.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG.mkv,1232040135,2024-08-21T00:16:06,anime,1920x1080,h264,1510.208,6526 +/mnt/Downloads/anime/KENGAN.ASHURA.S02.Part2.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG/KENGAN.ASHURA.S02E20.Demon.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG.mkv,KENGAN.ASHURA.S02E20.Demon.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG.mkv,1315265499,2024-08-21T00:16:17,anime,1920x1080,h264,1500.224,7013 +/mnt/Downloads/anime/KENGAN.ASHURA.S02.Part2.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG/KENGAN.ASHURA.S02E28.Finale.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG.mkv,KENGAN.ASHURA.S02E28.Finale.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG.mkv,1162835333,2024-08-21T00:15:44,anime,1920x1080,h264,1509.44,6163 +/mnt/Downloads/anime/KENGAN.ASHURA.S02.Part2.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG/KENGAN.ASHURA.S02E17.Gathering.Clouds.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG.mkv,KENGAN.ASHURA.S02E17.Gathering.Clouds.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG.mkv,1171010832,2024-08-21T00:16:09,anime,1920x1080,h264,1522.112,6154 +/mnt/Downloads/anime/KENGAN.ASHURA.S02.Part2.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG/KENGAN.ASHURA.S02E14.Reflecting.Water.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG.mkv,KENGAN.ASHURA.S02E14.Reflecting.Water.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG.mkv,1173152976,2024-08-21T00:00:34,anime,1920x1080,h264,1522.112,6165 +/mnt/Downloads/anime/KENGAN.ASHURA.S02.Part2.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG/KENGAN.ASHURA.S02E13.Headstrong.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG.mkv,KENGAN.ASHURA.S02E13.Headstrong.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG.mkv,1174545420,2024-08-20T23:57:53,anime,1920x1080,h264,1530.176,6140 +/mnt/Downloads/anime/KENGAN.ASHURA.S02.Part2.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG/KENGAN.ASHURA.S02E18.The.Floating.Cloud.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG.mkv,KENGAN.ASHURA.S02E18.The.Floating.Cloud.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG.mkv,1171029044,2024-08-21T00:16:17,anime,1920x1080,h264,1522.112,6154 +/mnt/Downloads/anime/KENGAN.ASHURA.S02.Part2.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG/KENGAN.ASHURA.S02E15.Ace.In.The.Hole.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG.mkv,KENGAN.ASHURA.S02E15.Ace.In.The.Hole.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG.mkv,1172963444,2024-08-21T00:16:12,anime,1920x1080,h264,1520.192,6172 +/mnt/Downloads/anime/[ANi] 判處勇者刑 - 03 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 判處勇者刑 - 03 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,549350185,2026-01-22T15:58:50,anime,1920x1080,h264,1470.122667,2989 +/mnt/Downloads/anime/[orion origin] Lv2 kara Cheat datta Moto Yuusha Kouho no Mattari Isekai Life [03] [1080p] [H265 AAC] [CHT&JPN].mp4,[orion origin] Lv2 kara Cheat datta Moto Yuusha Kouho no Mattari Isekai Life [03] [1080p] [H265 AAC] [CHT&JPN].mp4,410802076,2024-04-27T09:16:42,anime,1920x1080,hevc,1440.078005,2282 +/mnt/Downloads/anime/[ANi] Silent Witch 沉默魔女的祕密 - 07 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] Silent Witch 沉默魔女的祕密 - 07 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,374853126,2025-08-15T23:34:15,anime,1920x1080,h264,1505.024489,1992 +/mnt/Downloads/anime/[ANi] 歲月流逝飯菜依舊美味 - 09 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 歲月流逝飯菜依舊美味 - 09 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,486836720,2025-06-07T23:30:02,anime,1920x1080,h264,1445.056,2695 +/mnt/Downloads/anime/[ANi] 我獨自升級 - 10 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 我獨自升級 - 10 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,642120514,2024-03-17T00:13:28,anime,1920x1080,h264,1425.322667,3604 +/mnt/Downloads/anime/[ANi] 我內心的糟糕念頭 第二季 - 23 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 我內心的糟糕念頭 第二季 - 23 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,354999961,2024-03-17T00:10:34,anime,1920x1080,h264,1368.064,2075 +/mnt/Downloads/anime/[Skymoon-Raws] Shin Samurai-den YAIBA - 03 [ViuTV][WEB-DL][CHT][SRT][1080p][AVC AAC].mkv,[Skymoon-Raws] Shin Samurai-den YAIBA - 03 [ViuTV][WEB-DL][CHT][SRT][1080p][AVC AAC].mkv,460979219,2025-04-20T01:39:00,anime,1920x1080,h264,1433.066,2573 +/mnt/Downloads/anime/[ANi] 差點在迷宮深處被信任的夥伴殺掉,但靠著天賜技能「無限扭蛋」獲得等級 9999 的夥伴,我要向前隊友和世界展開復仇&「給他們好看!」 - 10 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 差點在迷宮深處被信任的夥伴殺掉,但靠著天賜技能「無限扭蛋」獲得等級 9999 的夥伴,我要向前隊友和世界展開復仇&「給他們好看!」 - 10 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,462716106,2025-12-05T23:57:58,anime,1920x1080,h264,1431.075622,2586 +/mnt/Downloads/anime/[ANi] 聽說你們要結婚!? - 12 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 聽說你們要結婚!? - 12 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,398661887,2024-12-20T12:33:01,anime,1920x1080,h264,1420.032,2245 +/mnt/Downloads/anime/[ANi] 戀上換裝娃娃 Season 2 - 21 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 戀上換裝娃娃 Season 2 - 21 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,350252663,2025-08-31T02:13:20,anime,1920x1080,h264,1425.069622,1966 +/mnt/Downloads/anime/The.Legend.of.Vox.Machina.S01.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb/The.Legend.of.Vox.Machina.S01E07.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv,The.Legend.of.Vox.Machina.S01E07.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv,1844824625,2022-03-20T17:18:26,anime,1920x1080,h264,1486.976,9925 +/mnt/Downloads/anime/The.Legend.of.Vox.Machina.S01.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb/The.Legend.of.Vox.Machina.S01E03.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv,The.Legend.of.Vox.Machina.S01E03.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv,1804580717,2022-03-20T17:18:27,anime,1920x1080,h264,1465.952,9847 +/mnt/Downloads/anime/The.Legend.of.Vox.Machina.S01.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb/The.Legend.of.Vox.Machina.S01E12.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv,The.Legend.of.Vox.Machina.S01E12.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv,2020457158,2022-03-20T17:18:32,anime,1920x1080,h264,1625.44,9944 +/mnt/Downloads/anime/The.Legend.of.Vox.Machina.S01.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb/The.Legend.of.Vox.Machina.S01E02.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv,The.Legend.of.Vox.Machina.S01E02.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv,2093430810,2022-03-20T17:17:48,anime,1920x1080,h264,1683.84,9945 +/mnt/Downloads/anime/The.Legend.of.Vox.Machina.S01.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb/The.Legend.of.Vox.Machina.S01E06.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv,The.Legend.of.Vox.Machina.S01E06.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv,1834342352,2022-03-20T17:17:39,anime,1920x1080,h264,1476.096,9941 +/mnt/Downloads/anime/The.Legend.of.Vox.Machina.S01.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb/The.Legend.of.Vox.Machina.S01E11.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv,The.Legend.of.Vox.Machina.S01E11.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv,1755499058,2022-03-20T17:18:12,anime,1920x1080,h264,1423.104,9868 +/mnt/Downloads/anime/The.Legend.of.Vox.Machina.S01.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb/The.Legend.of.Vox.Machina.S01E09.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv,The.Legend.of.Vox.Machina.S01E09.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv,1803260148,2022-03-20T17:18:12,anime,1920x1080,h264,1453.92,9922 +/mnt/Downloads/anime/The.Legend.of.Vox.Machina.S01.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb/The.Legend.of.Vox.Machina.S01E04.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv,The.Legend.of.Vox.Machina.S01E04.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv,1842332975,2022-03-20T17:18:22,anime,1920x1080,h264,1486.016,9918 +/mnt/Downloads/anime/The.Legend.of.Vox.Machina.S01.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb/The.Legend.of.Vox.Machina.S01E05.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv,The.Legend.of.Vox.Machina.S01E05.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv,1873290122,2022-03-20T17:18:15,anime,1920x1080,h264,1507.456,9941 +/mnt/Downloads/anime/The.Legend.of.Vox.Machina.S01.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb/The.Legend.of.Vox.Machina.S01E01.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv,The.Legend.of.Vox.Machina.S01E01.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv,2014390677,2022-03-20T17:18:09,anime,1920x1080,h264,1627.68,9900 +/mnt/Downloads/anime/The.Legend.of.Vox.Machina.S01.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb/The.Legend.of.Vox.Machina.S01E08.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv,The.Legend.of.Vox.Machina.S01E08.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv,1823345091,2022-03-20T17:17:32,anime,1920x1080,h264,1473.504,9899 +/mnt/Downloads/anime/The.Legend.of.Vox.Machina.S01.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb/The.Legend.of.Vox.Machina.S01E10.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv,The.Legend.of.Vox.Machina.S01E10.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv,1810496776,2022-03-20T17:18:26,anime,1920x1080,h264,1463.232,9898 +/mnt/Downloads/anime/[ANi] 歲月流逝飯菜依舊美味 - 12 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 歲月流逝飯菜依舊美味 - 12 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,480351447,2025-06-29T00:46:53,anime,1920x1080,h264,1445.056,2659 +/mnt/Downloads/anime/[Nekomoe kissaten&LoliHouse] Dandadan - 24 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,[Nekomoe kissaten&LoliHouse] Dandadan - 24 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,787884535,2025-09-21T23:43:47,anime,1920x1080,hevc,1407.011,4479 +/mnt/Downloads/anime/[Sakurato.sub][Tensei Shitara Slime Datta Ken][OVA01][BIG5][1080P]/[Sakurato.sub][Tensei Shitara Slime Datta Ken][OVA01][BIG5][1080P].mp4,[Sakurato.sub][Tensei Shitara Slime Datta Ken][OVA01][BIG5][1080P].mp4,262232845,2019-12-19T12:08:50,anime,1920x1080,h264,1394.033197,1504 +/mnt/Downloads/anime/Record.of.Ragnarok.S02.1080p.NF.WEB-DL.AAC2.0.H.264-VARYG/Record.of.Ragnarok.S02E01.Good.vs.Evil.1080p.NF.WEB-DL.AAC2.0.H.264-VARYG.mkv,Record.of.Ragnarok.S02E01.Good.vs.Evil.1080p.NF.WEB-DL.AAC2.0.H.264-VARYG.mkv,1176203648,2023-07-16T11:50:21,anime,1920x1080,h264,1492.054,6306 +/mnt/Downloads/anime/Record.of.Ragnarok.S02.1080p.NF.WEB-DL.AAC2.0.H.264-VARYG/Record.of.Ragnarok.S02E03.Birth.of.a.Monster.1080p.NF.WEB-DL.AAC2.0.H.264-VARYG.mkv,Record.of.Ragnarok.S02E03.Birth.of.a.Monster.1080p.NF.WEB-DL.AAC2.0.H.264-VARYG.mkv,1180177425,2023-07-16T11:50:27,anime,1920x1080,h264,1492.054,6327 +/mnt/Downloads/anime/Record.of.Ragnarok.S02.1080p.NF.WEB-DL.AAC2.0.H.264-VARYG/Record.of.Ragnarok.S02E09.Resonance.1080p.NF.WEB-DL.AAC2.0.H.264-VARYG.mkv,Record.of.Ragnarok.S02E09.Resonance.1080p.NF.WEB-DL.AAC2.0.H.264-VARYG.mkv,942731746,2023-07-16T11:50:10,anime,1920x1080,h264,1496.064,5041 +/mnt/Downloads/anime/Record.of.Ragnarok.S02.1080p.NF.WEB-DL.AAC2.0.H.264-VARYG/Record.of.Ragnarok.S02E13.The.strongest.puberty.in.history.1080p.NF.WEB-DL.AAC2.0.H.264-VARYG.mkv,Record.of.Ragnarok.S02E13.The.strongest.puberty.in.history.1080p.NF.WEB-DL.AAC2.0.H.264-VARYG.mkv,986369167,2023-07-16T11:50:32,anime,1920x1080,h264,1502.038,5253 +/mnt/Downloads/anime/Record.of.Ragnarok.S02.1080p.NF.WEB-DL.AAC2.0.H.264-VARYG/Record.of.Ragnarok.S02E07.Hundred.Seals.1080p.NF.WEB-DL.AAC2.0.H.264-VARYG.mkv,Record.of.Ragnarok.S02E07.Hundred.Seals.1080p.NF.WEB-DL.AAC2.0.H.264-VARYG.mkv,935554436,2023-07-16T11:49:53,anime,1920x1080,h264,1494.059,5009 +/mnt/Downloads/anime/Record.of.Ragnarok.S02.1080p.NF.WEB-DL.AAC2.0.H.264-VARYG/Record.of.Ragnarok.S02E15.The.Way.of.Light.1080p.NF.WEB-DL.AAC2.0.H.264-VARYG.mkv,Record.of.Ragnarok.S02E15.The.Way.of.Light.1080p.NF.WEB-DL.AAC2.0.H.264-VARYG.mkv,965615318,2023-07-16T11:50:32,anime,1920x1080,h264,1504.171,5135 +/mnt/Downloads/anime/Record.of.Ragnarok.S02.1080p.NF.WEB-DL.AAC2.0.H.264-VARYG/Record.of.Ragnarok.S02E04.The.Final.Labor.1080p.NF.WEB-DL.AAC2.0.H.264-VARYG.mkv,Record.of.Ragnarok.S02E04.The.Final.Labor.1080p.NF.WEB-DL.AAC2.0.H.264-VARYG.mkv,1210439994,2023-07-16T11:49:43,anime,1920x1080,h264,1496.064,6472 +/mnt/Downloads/anime/Record.of.Ragnarok.S02.1080p.NF.WEB-DL.AAC2.0.H.264-VARYG/Record.of.Ragnarok.S02E11.Round.Six.1080p.NF.WEB-DL.AAC2.0.H.264-VARYG.mkv,Record.of.Ragnarok.S02E11.Round.Six.1080p.NF.WEB-DL.AAC2.0.H.264-VARYG.mkv,942849649,2023-07-16T11:50:37,anime,1920x1080,h264,1498.027,5035 +/mnt/Downloads/anime/Record.of.Ragnarok.S02.1080p.NF.WEB-DL.AAC2.0.H.264-VARYG/Record.of.Ragnarok.S02E02.The.Indomitable.War.God.1080p.NF.WEB-DL.AAC2.0.H.264-VARYG.mkv,Record.of.Ragnarok.S02E02.The.Indomitable.War.God.1080p.NF.WEB-DL.AAC2.0.H.264-VARYG.mkv,1123571587,2023-07-16T11:49:45,anime,1920x1080,h264,1490.048,6032 +/mnt/Downloads/anime/Record.of.Ragnarok.S02.1080p.NF.WEB-DL.AAC2.0.H.264-VARYG/Record.of.Ragnarok.S02E14.Legend.of.the.Underworld.1080p.NF.WEB-DL.AAC2.0.H.264-VARYG.mkv,Record.of.Ragnarok.S02E14.Legend.of.the.Underworld.1080p.NF.WEB-DL.AAC2.0.H.264-VARYG.mkv,953002362,2023-07-16T11:50:34,anime,1920x1080,h264,1494.187,5102 +/mnt/Downloads/anime/Record.of.Ragnarok.S02.1080p.NF.WEB-DL.AAC2.0.H.264-VARYG/Record.of.Ragnarok.S02E12.Zero.1080p.NF.WEB-DL.AAC2.0.H.264-VARYG.mkv,Record.of.Ragnarok.S02E12.Zero.1080p.NF.WEB-DL.AAC2.0.H.264-VARYG.mkv,1001424166,2023-07-16T11:50:34,anime,1920x1080,h264,1496.064,5354 +/mnt/Downloads/anime/Record.of.Ragnarok.S02.1080p.NF.WEB-DL.AAC2.0.H.264-VARYG/Record.of.Ragnarok.S02E10.The.Brink.1080p.NF.WEB-DL.AAC2.0.H.264-VARYG.mkv,Record.of.Ragnarok.S02E10.The.Brink.1080p.NF.WEB-DL.AAC2.0.H.264-VARYG.mkv,1002840712,2023-07-16T11:50:28,anime,1920x1080,h264,1592.15,5038 +/mnt/Downloads/anime/Record.of.Ragnarok.S02.1080p.NF.WEB-DL.AAC2.0.H.264-VARYG/Record.of.Ragnarok.S02E05.Requiem.1080p.NF.WEB-DL.AAC2.0.H.264-VARYG.mkv,Record.of.Ragnarok.S02E05.Requiem.1080p.NF.WEB-DL.AAC2.0.H.264-VARYG.mkv,1240670360,2023-07-16T11:50:18,anime,1920x1080,h264,1500.032,6616 +/mnt/Downloads/anime/Record.of.Ragnarok.S02.1080p.NF.WEB-DL.AAC2.0.H.264-VARYG/Record.of.Ragnarok.S02E06.Conflicting.Motives.1080p.NF.WEB-DL.AAC2.0.H.264-VARYG.mkv,Record.of.Ragnarok.S02E06.Conflicting.Motives.1080p.NF.WEB-DL.AAC2.0.H.264-VARYG.mkv,943812655,2023-07-16T11:49:44,anime,1920x1080,h264,1508.054,5006 +/mnt/Downloads/anime/Record.of.Ragnarok.S02.1080p.NF.WEB-DL.AAC2.0.H.264-VARYG/Record.of.Ragnarok.S02E08.The.Pinnacle.of.1116.1080p.NF.WEB-DL.AAC2.0.H.264-VARYG.mkv,Record.of.Ragnarok.S02E08.The.Pinnacle.of.1116.1080p.NF.WEB-DL.AAC2.0.H.264-VARYG.mkv,906378514,2023-07-16T11:50:07,anime,1920x1080,h264,1500.032,4833 +/mnt/Downloads/anime/[Nekomoe kissaten][Ao no Hako][20][1080p][JPTC].mp4,[Nekomoe kissaten][Ao no Hako][20][1080p][JPTC].mp4,484807006,2025-03-01T15:20:37,anime,1920x1080,h264,1417.301333,2736 +/mnt/Downloads/anime/[Sakurato.sub][Psycho-Pass 3][08][CHT][1080P]/[Sakurato.sub][Psycho-Pass 3][08][CHT][1080P].mp4,[Sakurato.sub][Psycho-Pass 3][08][CHT][1080P].mp4,583463662,2019-12-28T11:50:56,anime,1920x1080,h264,2750.122667,1697 +/mnt/Downloads/anime/[ANi] 聽說你們要結婚!? - 09 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 聽說你們要結婚!? - 09 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,414068907,2024-11-29T00:06:54,anime,1920x1080,h264,1420.074667,2332 +/mnt/Downloads/anime/[Nekomoe kissaten][Chi. Chikyuu no Undou ni Tsuite][04][1080p][JPTC].mp4,[Nekomoe kissaten][Chi. Chikyuu no Undou ni Tsuite][04][1080p][JPTC].mp4,224032191,2024-11-22T11:26:17,anime,1920x1080,h264,1502.122667,1193 +/mnt/Downloads/anime/[ANi] 靠廢柴技能【狀態異常】成為最強的我將蹂躪一切 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 靠廢柴技能【狀態異常】成為最強的我將蹂躪一切 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,556611863,2024-07-05T04:18:37,anime,1920x1080,h264,1450.026667,3070 +/mnt/Downloads/anime/[ANi] 怪獸 8 號 第二季 - 特別篇 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 怪獸 8 號 第二季 - 特別篇 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,422404452,2025-07-05T15:23:45,anime,1920x1080,h264,1420.032,2379 +/mnt/Downloads/anime/[LoliHouse] Tsuki ga Michibiku Isekai Douchuu S2 - 16 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,[LoliHouse] Tsuki ga Michibiku Isekai Douchuu S2 - 16 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,453487395,2024-04-23T03:22:23,anime,1920x1080,hevc,1420.109,2554 +/mnt/Downloads/anime/[ANi] 我的妻子不具感情 - 10 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 我的妻子不具感情 - 10 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,390257730,2024-09-01T02:06:16,anime,1920x1080,h264,1419.989333,2198 +/mnt/Downloads/anime/[LoliHouse] Shin Samurai-den YAIBA - 14 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,[LoliHouse] Shin Samurai-den YAIBA - 14 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,756711589,2025-07-13T00:11:37,anime,1920x1080,hevc,1430.021,4233 +/mnt/Downloads/anime/[DMG&LoliHouse] Spy x Family - 19/[DMG&LoliHouse] Spy x Family - 19 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,[DMG&LoliHouse] Spy x Family - 19 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,432932398,2022-12-02T04:30:04,anime,1920x1080,hevc,1450.016,2388 +/mnt/Downloads/anime/[ANi] 杖與劍的魔劍譚 - 08 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 杖與劍的魔劍譚 - 08 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,349505540,2024-09-01T09:27:54,anime,1920x1080,h264,1426.154033,1960 +"/mnt/Downloads/anime/[Sakurato] Haite Kudasai, Takamine-san [06][AVC-8bit 1080p AAC][CHT&JPN].mp4","[Sakurato] Haite Kudasai, Takamine-san [06][AVC-8bit 1080p AAC][CHT&JPN].mp4",449574031,2025-05-25T00:26:50,anime,1920x1080,h264,1440.055,2497 +/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] 永遠的黃昏 - 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 +/mnt/Downloads/anime/Mars.Express.2023.1080p.BluRay.x265.10bit.DTS-WiKi/Mars.Express.2023.1080p.BluRay.x265.10bit.DTS-WiKi.mkv,Mars.Express.2023.1080p.BluRay.x265.10bit.DTS-WiKi.mkv,6135870046,2024-07-10T11:36:56,anime,1920x952,hevc,5321.504,9224 +/mnt/Downloads/anime/[Nekomoe kissaten][Chi. Chikyuu no Undou ni Tsuite][02][1080p][JPTC].mp4,[Nekomoe kissaten][Chi. Chikyuu no Undou ni Tsuite][02][1080p][JPTC].mp4,236297889,2024-11-22T11:30:36,anime,1920x1080,h264,1502.122667,1258 +/mnt/Downloads/anime/[ANi] 妻子變成小學生。 - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 妻子變成小學生。 - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,305224758,2024-10-07T01:56:21,anime,1920x1080,h264,1420.032,1719 +/mnt/Downloads/anime/[Nekomoe kissaten&LoliHouse] Shoushimin Series - 01 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,[Nekomoe kissaten&LoliHouse] Shoushimin Series - 01 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,385113156,2024-07-08T11:56:00,anime,1920x1080,hevc,1383.05,2227 +/mnt/Downloads/anime/[猫眼三姐妹].Cats.Eye.S01.2025.1080p.DSNP.WEB-DL.H264.AAC-CMCTV/[猫眼三姐妹].Cats.Eye.S01E06.2025.1080p.DSNP.WEB-DL.H264.AAC-CMCTV.mkv,[猫眼三姐妹].Cats.Eye.S01E06.2025.1080p.DSNP.WEB-DL.H264.AAC-CMCTV.mkv,782455102,2026-02-03T05:02:18,anime,1920x1080,h264,1422.058,4401 +/mnt/Downloads/anime/[猫眼三姐妹].Cats.Eye.S01.2025.1080p.DSNP.WEB-DL.H264.AAC-CMCTV/[猫眼三姐妹].Cats.Eye.S01E09.2025.1080p.DSNP.WEB-DL.H264.AAC-CMCTV.mkv,[猫眼三姐妹].Cats.Eye.S01E09.2025.1080p.DSNP.WEB-DL.H264.AAC-CMCTV.mkv,855885306,2026-02-03T05:02:29,anime,1920x1080,h264,1422.058,4814 +/mnt/Downloads/anime/[猫眼三姐妹].Cats.Eye.S01.2025.1080p.DSNP.WEB-DL.H264.AAC-CMCTV/[猫眼三姐妹].Cats.Eye.S01E11.2025.1080p.DSNP.WEB-DL.H264.AAC-CMCTV.mkv,[猫眼三姐妹].Cats.Eye.S01E11.2025.1080p.DSNP.WEB-DL.H264.AAC-CMCTV.mkv,801366626,2026-02-03T05:02:37,anime,1920x1080,h264,1422.058,4508 +/mnt/Downloads/anime/[猫眼三姐妹].Cats.Eye.S01.2025.1080p.DSNP.WEB-DL.H264.AAC-CMCTV/[猫眼三姐妹].Cats.Eye.S01E01.2025.1080p.DSNP.WEB-DL.H264.AAC-CMCTV.mkv,[猫眼三姐妹].Cats.Eye.S01E01.2025.1080p.DSNP.WEB-DL.H264.AAC-CMCTV.mkv,812775286,2026-02-03T05:02:01,anime,1920x1080,h264,1422.016,4572 +/mnt/Downloads/anime/[猫眼三姐妹].Cats.Eye.S01.2025.1080p.DSNP.WEB-DL.H264.AAC-CMCTV/[猫眼三姐妹].Cats.Eye.S01E07.2025.1080p.DSNP.WEB-DL.H264.AAC-CMCTV.mkv,[猫眼三姐妹].Cats.Eye.S01E07.2025.1080p.DSNP.WEB-DL.H264.AAC-CMCTV.mkv,768259497,2026-02-03T05:02:21,anime,1920x1080,h264,1422.016,4322 +/mnt/Downloads/anime/[猫眼三姐妹].Cats.Eye.S01.2025.1080p.DSNP.WEB-DL.H264.AAC-CMCTV/[猫眼三姐妹].Cats.Eye.S01E10.2025.1080p.DSNP.WEB-DL.H264.AAC-CMCTV.mkv,[猫眼三姐妹].Cats.Eye.S01E10.2025.1080p.DSNP.WEB-DL.H264.AAC-CMCTV.mkv,842737492,2026-02-03T05:02:33,anime,1920x1080,h264,1422.058,4740 +/mnt/Downloads/anime/[猫眼三姐妹].Cats.Eye.S01.2025.1080p.DSNP.WEB-DL.H264.AAC-CMCTV/[猫眼三姐妹].Cats.Eye.S01E08.2025.1080p.DSNP.WEB-DL.H264.AAC-CMCTV.mkv,[猫眼三姐妹].Cats.Eye.S01E08.2025.1080p.DSNP.WEB-DL.H264.AAC-CMCTV.mkv,775173750,2026-02-03T05:02:26,anime,1920x1080,h264,1422.058,4360 +/mnt/Downloads/anime/[猫眼三姐妹].Cats.Eye.S01.2025.1080p.DSNP.WEB-DL.H264.AAC-CMCTV/[猫眼三姐妹].Cats.Eye.S01E03.2025.1080p.DSNP.WEB-DL.H264.AAC-CMCTV.mkv,[猫眼三姐妹].Cats.Eye.S01E03.2025.1080p.DSNP.WEB-DL.H264.AAC-CMCTV.mkv,836011199,2026-02-03T05:02:07,anime,1920x1080,h264,1422.058,4703 +/mnt/Downloads/anime/[猫眼三姐妹].Cats.Eye.S01.2025.1080p.DSNP.WEB-DL.H264.AAC-CMCTV/[猫眼三姐妹].Cats.Eye.S01E04.2025.1080p.DSNP.WEB-DL.H264.AAC-CMCTV.mkv,[猫眼三姐妹].Cats.Eye.S01E04.2025.1080p.DSNP.WEB-DL.H264.AAC-CMCTV.mkv,741413173,2026-02-03T05:02:11,anime,1920x1080,h264,1422.058,4170 +/mnt/Downloads/anime/[猫眼三姐妹].Cats.Eye.S01.2025.1080p.DSNP.WEB-DL.H264.AAC-CMCTV/[猫眼三姐妹].Cats.Eye.S01E02.2025.1080p.DSNP.WEB-DL.H264.AAC-CMCTV.mkv,[猫眼三姐妹].Cats.Eye.S01E02.2025.1080p.DSNP.WEB-DL.H264.AAC-CMCTV.mkv,831219924,2026-02-03T05:02:03,anime,1920x1080,h264,1422.058,4676 +/mnt/Downloads/anime/[猫眼三姐妹].Cats.Eye.S01.2025.1080p.DSNP.WEB-DL.H264.AAC-CMCTV/[猫眼三姐妹].Cats.Eye.S01E12.2025.1080p.DSNP.WEB-DL.H264.AAC-CMCTV.mkv,[猫眼三姐妹].Cats.Eye.S01E12.2025.1080p.DSNP.WEB-DL.H264.AAC-CMCTV.mkv,737018798,2026-02-03T05:02:42,anime,1920x1080,h264,1422.058,4146 +/mnt/Downloads/anime/[猫眼三姐妹].Cats.Eye.S01.2025.1080p.DSNP.WEB-DL.H264.AAC-CMCTV/[猫眼三姐妹].Cats.Eye.S01E05.2025.1080p.DSNP.WEB-DL.H264.AAC-CMCTV.mkv,[猫眼三姐妹].Cats.Eye.S01E05.2025.1080p.DSNP.WEB-DL.H264.AAC-CMCTV.mkv,768117153,2026-02-03T05:02:14,anime,1920x1080,h264,1422.058,4321 +/mnt/Downloads/anime/[Nekomoe kissaten][Tower of God S2][14][1080p][CHS].mp4,[Nekomoe kissaten][Tower of God S2][14][1080p][CHS].mp4,489618879,2024-10-13T06:08:52,anime,1920x1080,h264,1421.130884,2756 +/mnt/Downloads/anime/[Nekomoe kissaten][Tower of God S2][08][1080p][CHT].mp4,[Nekomoe kissaten][Tower of God S2][08][1080p][CHT].mp4,553206555,2024-09-18T15:12:53,anime,1920x1080,h264,1421.107664,3114 +/mnt/Downloads/anime/[LoliHouse] Oshi no Ko - 15 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,[LoliHouse] Oshi no Ko - 15 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,447452809,2024-07-25T11:13:29,anime,1920x1080,hevc,1420.011,2520 +/mnt/Downloads/anime/[ANi] Let′s Play 充滿挑戰的人生 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] Let′s Play 充滿挑戰的人生 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,368424564,2025-10-02T00:27:12,anime,1920x1080,h264,1375.146667,2143 +/mnt/Downloads/anime/[ANi] 結緣甘神神社 - 22 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 結緣甘神神社 - 22 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,340604141,2025-03-11T23:31:43,anime,1920x1080,h264,1420.074667,1918 +/mnt/Downloads/anime/[ANi] 地下城中的人 - 08 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 地下城中的人 - 08 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,384350904,2024-08-31T09:50:06,anime,1920x1080,h264,1452.117333,2117 +/mnt/Downloads/anime/[BeanSub&FZSD][BLEACH_Sennen_Kessen-hen][32][GB][1080P][x264_AAC].mp4,[BeanSub&FZSD][BLEACH_Sennen_Kessen-hen][32][GB][1080P][x264_AAC].mp4,599073047,2024-11-10T00:11:00,anime,1920x1080,h264,1443.072,3321 +/mnt/Downloads/anime/[LoliHouse] Kaijuu 8-gou - 19 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,[LoliHouse] Kaijuu 8-gou - 19 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,1050458545,2025-08-31T02:12:34,anime,1920x1080,hevc,1420.063,5917 +/mnt/Downloads/anime/《咒術迴戰 第二季》- 閑話 - 後編/《咒術迴戰 第二季》- 閑話 - 後編 (日語原聲)【Ani-One Asia ULTRA】.mp4,《咒術迴戰 第二季》- 閑話 - 後編 (日語原聲)【Ani-One Asia ULTRA】.mp4,259678603,2023-08-23T14:15:29,anime,1920x1080,h264,1470.032109,1413 +/mnt/Downloads/anime/[ANi] 香格里拉・開拓異境~糞作獵手挑戰神作~ 第二季 - 07 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 香格里拉・開拓異境~糞作獵手挑戰神作~ 第二季 - 07 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,875973391,2024-11-24T23:59:10,anime,1920x1080,h264,1421.9832,4928 +/mnt/Downloads/anime/[Nekomoe kissaten][Chi. Chikyuu no Undou ni Tsuite][07][1080p][JPSC].mp4,[Nekomoe kissaten][Chi. Chikyuu no Undou ni Tsuite][07][1080p][JPSC].mp4,223747605,2024-11-22T11:23:45,anime,1920x1080,h264,1502.122667,1191 +/mnt/Downloads/anime/[Nekomoe kissaten][Ao no Hako][19][1080p][JPTC].mp4,[Nekomoe kissaten][Ao no Hako][19][1080p][JPTC].mp4,491555357,2025-02-26T11:25:42,anime,1920x1080,h264,1417.301333,2774 +/mnt/Downloads/anime/《夫婦以上,戀人未滿。》#11/《夫婦以上,戀人未滿。》#11 (日語原聲)【Ani-One Asia】.mp4,《夫婦以上,戀人未滿。》#11 (日語原聲)【Ani-One Asia】.mp4,124397922,2022-12-18T18:13:03,anime,1920x1080,h264,1450.086168,686 +/mnt/Downloads/anime/[ANi] 九龍大眾浪漫 - 12 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 九龍大眾浪漫 - 12 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,324917490,2025-06-21T23:57:00,anime,1920x1080,h264,1429.994667,1817 +/mnt/Downloads/anime/[LoliHouse] Tensei Shitara Slime Datta Ken 3rd Season - 60 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,[LoliHouse] Tensei Shitara Slime Datta Ken 3rd Season - 60 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,389706747,2024-06-22T14:03:18,anime,1920x1080,hevc,1470.032,2120 +/mnt/Downloads/anime/[LoliHouse] Nozomanu Fushi no Boukensha - 01 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,[LoliHouse] Nozomanu Fushi no Boukensha - 01 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,661043220,2024-01-07T01:02:57,anime,1920x1080,hevc,1420.063,3724 +/mnt/Downloads/anime/[ANi] Re:從零開始的異世界生活 第三季 - 11 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] Re:從零開始的異世界生活 第三季 - 11 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,515375696,2025-02-19T15:06:10,anime,1920x1080,h264,1419.9812,2903 +/mnt/Downloads/anime/[ANi] 關於我轉生變成史萊姆這檔事 第三季 - 70 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 關於我轉生變成史萊姆這檔事 第三季 - 70 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,354692282,2024-09-13T23:49:44,anime,1920x1080,h264,1481.000489,1915 +/mnt/Downloads/anime/[ANi] 刀劍神域外傳 Gun Gale Online II - 05 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 刀劍神域外傳 Gun Gale Online II - 05 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,428531207,2024-11-02T01:45:58,anime,1920x1080,h264,1425.088,2405 +"/mnt/Downloads/anime/[LoliHouse] Katainaka no Ossan, Kensei ni Naru - 12 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv","[LoliHouse] Katainaka no Ossan, Kensei ni Naru - 12 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv",767407306,2025-06-21T23:56:30,anime,1920x1080,hevc,1425.983,4305 +/mnt/Downloads/anime/[Nekomoe kissaten&VCB-Studio] ODDTAXI [Ma10p_1080p]/[Nekomoe kissaten&VCB-Studio] ODDTAXI [12][Ma10p_1080p][x265_flac_aac].mkv,[Nekomoe kissaten&VCB-Studio] ODDTAXI [12][Ma10p_1080p][x265_flac_aac].mkv,951653070,2024-04-21T13:07:57,anime,1920x1080,hevc,1431.018,5320 +/mnt/Downloads/anime/[Nekomoe kissaten&VCB-Studio] ODDTAXI [Ma10p_1080p]/[Nekomoe kissaten&VCB-Studio] ODDTAXI [05][Ma10p_1080p][x265_flac_aac].mkv,[Nekomoe kissaten&VCB-Studio] ODDTAXI [05][Ma10p_1080p][x265_flac_aac].mkv,949063429,2024-04-21T13:07:08,anime,1920x1080,hevc,1430.976,5305 +/mnt/Downloads/anime/[Nekomoe kissaten&VCB-Studio] ODDTAXI [Ma10p_1080p]/[Nekomoe kissaten&VCB-Studio] ODDTAXI [08][Ma10p_1080p][x265_flac_aac].mkv,[Nekomoe kissaten&VCB-Studio] ODDTAXI [08][Ma10p_1080p][x265_flac_aac].mkv,887988674,2024-04-21T13:06:27,anime,1920x1080,hevc,1431.061,4964 +/mnt/Downloads/anime/[Nekomoe kissaten&VCB-Studio] ODDTAXI [Ma10p_1080p]/[Nekomoe kissaten&VCB-Studio] ODDTAXI [01][Ma10p_1080p][x265_flac_aac].mkv,[Nekomoe kissaten&VCB-Studio] ODDTAXI [01][Ma10p_1080p][x265_flac_aac].mkv,1055053742,2024-04-21T13:07:59,anime,1920x1080,hevc,1431.018,5898 +/mnt/Downloads/anime/[Nekomoe kissaten&VCB-Studio] ODDTAXI [Ma10p_1080p]/[Nekomoe kissaten&VCB-Studio] ODDTAXI [09][Ma10p_1080p][x265_flac_aac].mkv,[Nekomoe kissaten&VCB-Studio] ODDTAXI [09][Ma10p_1080p][x265_flac_aac].mkv,1022476327,2024-04-21T13:07:54,anime,1920x1080,hevc,1430.976,5716 +/mnt/Downloads/anime/[Nekomoe kissaten&VCB-Studio] ODDTAXI [Ma10p_1080p]/[Nekomoe kissaten&VCB-Studio] ODDTAXI [13][Ma10p_1080p][x265_flac_aac].mkv,[Nekomoe kissaten&VCB-Studio] ODDTAXI [13][Ma10p_1080p][x265_flac_aac].mkv,844116890,2024-04-21T13:07:49,anime,1920x1080,hevc,1416.042,4768 +/mnt/Downloads/anime/[Nekomoe kissaten&VCB-Studio] ODDTAXI [Ma10p_1080p]/[Nekomoe kissaten&VCB-Studio] ODDTAXI [04][Ma10p_1080p][x265_flac_aac].mkv,[Nekomoe kissaten&VCB-Studio] ODDTAXI [04][Ma10p_1080p][x265_flac_aac].mkv,1119510161,2024-04-21T13:07:59,anime,1920x1080,hevc,1430.976,6258 +/mnt/Downloads/anime/[Nekomoe kissaten&VCB-Studio] ODDTAXI [Ma10p_1080p]/[Nekomoe kissaten&VCB-Studio] ODDTAXI [02][Ma10p_1080p][x265_flac_aac].mkv,[Nekomoe kissaten&VCB-Studio] ODDTAXI [02][Ma10p_1080p][x265_flac_aac].mkv,1048292915,2024-04-21T13:08:00,anime,1920x1080,hevc,1431.018,5860 +/mnt/Downloads/anime/[Nekomoe kissaten&VCB-Studio] ODDTAXI [Ma10p_1080p]/[Nekomoe kissaten&VCB-Studio] ODDTAXI [11][Ma10p_1080p][x265_flac_aac].mkv,[Nekomoe kissaten&VCB-Studio] ODDTAXI [11][Ma10p_1080p][x265_flac_aac].mkv,989909340,2024-04-21T12:58:56,anime,1920x1080,hevc,1431.104,5533 +/mnt/Downloads/anime/[Nekomoe kissaten&VCB-Studio] ODDTAXI [Ma10p_1080p]/[Nekomoe kissaten&VCB-Studio] ODDTAXI [06][Ma10p_1080p][x265_flac_aac].mkv,[Nekomoe kissaten&VCB-Studio] ODDTAXI [06][Ma10p_1080p][x265_flac_aac].mkv,939583244,2024-04-21T13:07:36,anime,1920x1080,hevc,1431.104,5252 +/mnt/Downloads/anime/[Nekomoe kissaten&VCB-Studio] ODDTAXI [Ma10p_1080p]/SPs/[Nekomoe kissaten&VCB-Studio] ODDTAXI [Audio Drama 02.5][Ma10p_1080p][x265_flac].mkv,[Nekomoe kissaten&VCB-Studio] ODDTAXI [Audio Drama 02.5][Ma10p_1080p][x265_flac].mkv,34342325,2024-04-21T12:53:57,anime,1920x1080,hevc,308.895,889 +/mnt/Downloads/anime/[Nekomoe kissaten&VCB-Studio] ODDTAXI [Ma10p_1080p]/SPs/[Nekomoe kissaten&VCB-Studio] ODDTAXI [Audio Drama 07.8][Ma10p_1080p][x265_flac].mkv,[Nekomoe kissaten&VCB-Studio] ODDTAXI [Audio Drama 07.8][Ma10p_1080p][x265_flac].mkv,24527836,2024-04-21T12:52:11,anime,1920x1080,hevc,210.005,934 +/mnt/Downloads/anime/[Nekomoe kissaten&VCB-Studio] ODDTAXI [Ma10p_1080p]/SPs/[Nekomoe kissaten&VCB-Studio] ODDTAXI [Audio Drama 03.5][Ma10p_1080p][x265_flac].mkv,[Nekomoe kissaten&VCB-Studio] ODDTAXI [Audio Drama 03.5][Ma10p_1080p][x265_flac].mkv,48797188,2024-04-21T12:54:02,anime,1920x1080,hevc,438.565,890 +/mnt/Downloads/anime/[Nekomoe kissaten&VCB-Studio] ODDTAXI [Ma10p_1080p]/SPs/[Nekomoe kissaten&VCB-Studio] ODDTAXI [Picture Drama][Ma10p_1080p][x265_flac].mkv,[Nekomoe kissaten&VCB-Studio] ODDTAXI [Picture Drama][Ma10p_1080p][x265_flac].mkv,504766293,2024-04-21T12:55:30,anime,1920x1080,hevc,566.57,7127 +/mnt/Downloads/anime/[Nekomoe kissaten&VCB-Studio] ODDTAXI [Ma10p_1080p]/SPs/[Nekomoe kissaten&VCB-Studio] ODDTAXI [NCOP][Ma10p_1080p][x265_flac].mkv,[Nekomoe kissaten&VCB-Studio] ODDTAXI [NCOP][Ma10p_1080p][x265_flac].mkv,201812708,2024-04-21T12:54:34,anime,1920x1080,hevc,91.095,17723 +/mnt/Downloads/anime/[Nekomoe kissaten&VCB-Studio] ODDTAXI [Ma10p_1080p]/SPs/[Nekomoe kissaten&VCB-Studio] ODDTAXI [Audio Drama 06.7][Ma10p_1080p][x265_flac].mkv,[Nekomoe kissaten&VCB-Studio] ODDTAXI [Audio Drama 06.7][Ma10p_1080p][x265_flac].mkv,23510608,2024-04-21T12:54:01,anime,1920x1080,hevc,210.545,893 +/mnt/Downloads/anime/[Nekomoe kissaten&VCB-Studio] ODDTAXI [Ma10p_1080p]/SPs/[Nekomoe kissaten&VCB-Studio] ODDTAXI [Audio Drama 01.3][Ma10p_1080p][x265_flac].mkv,[Nekomoe kissaten&VCB-Studio] ODDTAXI [Audio Drama 01.3][Ma10p_1080p][x265_flac].mkv,30792844,2024-04-21T12:56:10,anime,1920x1080,hevc,257.72,955 +/mnt/Downloads/anime/[Nekomoe kissaten&VCB-Studio] ODDTAXI [Ma10p_1080p]/SPs/[Nekomoe kissaten&VCB-Studio] ODDTAXI [Audio Drama 12.11][Ma10p_1080p][x265_flac].mkv,[Nekomoe kissaten&VCB-Studio] ODDTAXI [Audio Drama 12.11][Ma10p_1080p][x265_flac].mkv,55845296,2024-04-21T12:53:42,anime,1920x1080,hevc,243.41,1835 +/mnt/Downloads/anime/[Nekomoe kissaten&VCB-Studio] ODDTAXI [Ma10p_1080p]/SPs/[Nekomoe kissaten&VCB-Studio] ODDTAXI [CM02][Ma10p_1080p][x265_flac].mkv,[Nekomoe kissaten&VCB-Studio] ODDTAXI [CM02][Ma10p_1080p][x265_flac].mkv,14748583,2024-04-21T12:51:00,anime,1920x1080,hevc,16.02,7365 +/mnt/Downloads/anime/[Nekomoe kissaten&VCB-Studio] ODDTAXI [Ma10p_1080p]/SPs/[Nekomoe kissaten&VCB-Studio] ODDTAXI [Audio Drama 04.6][Ma10p_1080p][x265_flac].mkv,[Nekomoe kissaten&VCB-Studio] ODDTAXI [Audio Drama 04.6][Ma10p_1080p][x265_flac].mkv,28853764,2024-04-21T12:53:24,anime,1920x1080,hevc,282.825,816 +/mnt/Downloads/anime/[Nekomoe kissaten&VCB-Studio] ODDTAXI [Ma10p_1080p]/SPs/[Nekomoe kissaten&VCB-Studio] ODDTAXI [Audio Drama 11.10][Ma10p_1080p][x265_flac].mkv,[Nekomoe kissaten&VCB-Studio] ODDTAXI [Audio Drama 11.10][Ma10p_1080p][x265_flac].mkv,25995439,2024-04-21T12:52:27,anime,1920x1080,hevc,221.14,940 +/mnt/Downloads/anime/[Nekomoe kissaten&VCB-Studio] ODDTAXI [Ma10p_1080p]/SPs/[Nekomoe kissaten&VCB-Studio] ODDTAXI [Audio Drama 10.10][Ma10p_1080p][x265_flac].mkv,[Nekomoe kissaten&VCB-Studio] ODDTAXI [Audio Drama 10.10][Ma10p_1080p][x265_flac].mkv,31791993,2024-04-21T12:54:28,anime,1920x1080,hevc,249.46,1019 +/mnt/Downloads/anime/[Nekomoe kissaten&VCB-Studio] ODDTAXI [Ma10p_1080p]/SPs/[Nekomoe kissaten&VCB-Studio] ODDTAXI [NCED][Ma10p_1080p][x265_flac].mkv,[Nekomoe kissaten&VCB-Studio] ODDTAXI [NCED][Ma10p_1080p][x265_flac].mkv,23598275,2024-04-21T12:53:37,anime,1920x1080,hevc,61.065,3091 +/mnt/Downloads/anime/[Nekomoe kissaten&VCB-Studio] ODDTAXI [Ma10p_1080p]/SPs/[Nekomoe kissaten&VCB-Studio] ODDTAXI [Audio Drama 08.8][Ma10p_1080p][x265_flac].mkv,[Nekomoe kissaten&VCB-Studio] ODDTAXI [Audio Drama 08.8][Ma10p_1080p][x265_flac].mkv,51001596,2024-04-21T12:54:49,anime,1920x1080,hevc,394.645,1033 +/mnt/Downloads/anime/[Nekomoe kissaten&VCB-Studio] ODDTAXI [Ma10p_1080p]/SPs/[Nekomoe kissaten&VCB-Studio] ODDTAXI [Audio Drama 13.13][Ma10p_1080p][x265_flac].mkv,[Nekomoe kissaten&VCB-Studio] ODDTAXI [Audio Drama 13.13][Ma10p_1080p][x265_flac].mkv,72120384,2024-04-21T12:54:07,anime,1920x1080,hevc,556.265,1037 +/mnt/Downloads/anime/[Nekomoe kissaten&VCB-Studio] ODDTAXI [Ma10p_1080p]/SPs/[Nekomoe kissaten&VCB-Studio] ODDTAXI [Audio Drama 05.6][Ma10p_1080p][x265_flac].mkv,[Nekomoe kissaten&VCB-Studio] ODDTAXI [Audio Drama 05.6][Ma10p_1080p][x265_flac].mkv,26857503,2024-04-21T12:52:27,anime,1920x1080,hevc,240.7,892 +/mnt/Downloads/anime/[Nekomoe kissaten&VCB-Studio] ODDTAXI [Ma10p_1080p]/SPs/[Nekomoe kissaten&VCB-Studio] ODDTAXI [Audio Drama 09.9][Ma10p_1080p][x265_flac].mkv,[Nekomoe kissaten&VCB-Studio] ODDTAXI [Audio Drama 09.9][Ma10p_1080p][x265_flac].mkv,31685981,2024-04-21T12:54:09,anime,1920x1080,hevc,231.485,1095 +/mnt/Downloads/anime/[Nekomoe kissaten&VCB-Studio] ODDTAXI [Ma10p_1080p]/SPs/[Nekomoe kissaten&VCB-Studio] ODDTAXI [CM01][Ma10p_1080p][x265_flac].mkv,[Nekomoe kissaten&VCB-Studio] ODDTAXI [CM01][Ma10p_1080p][x265_flac].mkv,26428575,2024-04-21T12:53:48,anime,1920x1080,hevc,31.035,6812 +/mnt/Downloads/anime/[Nekomoe kissaten&VCB-Studio] ODDTAXI [Ma10p_1080p]/[Nekomoe kissaten&VCB-Studio] ODDTAXI [10][Ma10p_1080p][x265_flac_aac].mkv,[Nekomoe kissaten&VCB-Studio] ODDTAXI [10][Ma10p_1080p][x265_flac_aac].mkv,980276425,2024-04-21T13:06:17,anime,1920x1080,hevc,1431.104,5479 +/mnt/Downloads/anime/[Nekomoe kissaten&VCB-Studio] ODDTAXI [Ma10p_1080p]/[Nekomoe kissaten&VCB-Studio] ODDTAXI [07][Ma10p_1080p][x265_flac_aac].mkv,[Nekomoe kissaten&VCB-Studio] ODDTAXI [07][Ma10p_1080p][x265_flac_aac].mkv,949439061,2024-04-21T13:08:00,anime,1920x1080,hevc,1430.976,5307 +/mnt/Downloads/anime/[Nekomoe kissaten&VCB-Studio] ODDTAXI [Ma10p_1080p]/[Nekomoe kissaten&VCB-Studio] ODDTAXI [03][Ma10p_1080p][x265_flac_aac].mkv,[Nekomoe kissaten&VCB-Studio] ODDTAXI [03][Ma10p_1080p][x265_flac_aac].mkv,1064598489,2024-04-21T13:07:58,anime,1920x1080,hevc,1430.976,5951 +/mnt/Downloads/anime/[Skymoon-Raws] Hoshi no Samidare - 01 [ViuTV][WEB-DL][CHT][1080p][AVC AAC][MP4+ASS]/[Skymoon-Raws] Hoshi no Samidare - 01 [ViuTV][WEB-DL][1080p][AVC AAC].mp4,[Skymoon-Raws] Hoshi no Samidare - 01 [ViuTV][WEB-DL][1080p][AVC AAC].mp4,362348434,2022-07-09T00:38:42,anime,1920x1080,h264,1467.029333,1975 +/mnt/Downloads/anime/[ANi] 名湯「異世界溫泉」開拓記~30 多歲溫泉狂熱者,轉生到悠閒的溫泉天國~ - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 名湯「異世界溫泉」開拓記~30 多歲溫泉狂熱者,轉生到悠閒的溫泉天國~ - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,113594409,2024-01-12T00:43:08,anime,1920x1080,h264,235.047456,3866 +/mnt/Downloads/anime/[orion origin] Ore wa Subete wo Parry Suru ~Gyaku Kanchigai no Sekai Saikyou wa Boukensha ni Naritai~ [01] [1080p] [H265 AAC] [CHT&JPN].mp4,[orion origin] Ore wa Subete wo Parry Suru ~Gyaku Kanchigai no Sekai Saikyou wa Boukensha ni Naritai~ [01] [1080p] [H265 AAC] [CHT&JPN].mp4,437381029,2024-07-09T09:41:13,anime,1920x1080,hevc,1511.51,2314 +/mnt/Downloads/anime/[ANi] 最強肉盾的迷宮攻略~擁有稀少技能體力 9999 的肉盾,被勇者隊伍辭退了~ - 04 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 最強肉盾的迷宮攻略~擁有稀少技能體力 9999 的肉盾,被勇者隊伍辭退了~ - 04 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,389403009,2024-01-28T00:08:59,anime,1920x1080,h264,1403.968,2218 +/mnt/Downloads/anime/[ANi] S 級怪獸《貝希摩斯》被誤認成小貓,成為精靈女孩的騎士(寵物)一起生活 - 09 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] S 級怪獸《貝希摩斯》被誤認成小貓,成為精靈女孩的騎士(寵物)一起生活 - 09 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,413547921,2025-02-22T16:03:19,anime,1920x1080,h264,1420.022911,2329 +/mnt/Downloads/anime/[ANi] 咒術迴戰 死滅迴游 前篇 - 50 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 咒術迴戰 死滅迴游 前篇 - 50 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,493842669,2026-01-15T23:32:49,anime,1920x1080,h264,1435.050667,2753 +/mnt/Downloads/anime/[Nekomoe kissaten&LoliHouse] 30-sai made Doutei dato Mahoutsukai ni Nareru Rashii - 01 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,[Nekomoe kissaten&LoliHouse] 30-sai made Doutei dato Mahoutsukai ni Nareru Rashii - 01 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,220746420,2024-01-18T00:52:15,anime,1920x1080,hevc,1420.063,1243 +"/mnt/Downloads/anime/[LoliHouse] Kekkon suru tte, Hontou desu ka - 02 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv","[LoliHouse] Kekkon suru tte, Hontou desu ka - 02 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv",578647811,2024-10-11T09:58:08,anime,1920x1080,hevc,1420.016,3259 +/mnt/Downloads/anime/[ANi] 在地下城尋求邂逅是否搞錯了什麼 第五季 - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 在地下城尋求邂逅是否搞錯了什麼 第五季 - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,349106441,2024-10-10T15:30:36,anime,1920x1080,h264,1420.064622,1966 +/mnt/Downloads/anime/[ANi] 葬送的芙莉蓮 第二季 - 30 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 葬送的芙莉蓮 第二季 - 30 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,637863840,2026-01-24T01:20:50,anime,1920x1080,h264,1440.0012,3543 +/mnt/Downloads/anime/[LoliHouse] Shin no Nakama 2nd - 05 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,[LoliHouse] Shin no Nakama 2nd - 05 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,349092346,2024-02-05T11:02:41,anime,1920x1080,hevc,1420.132,1966 +"/mnt/Downloads/anime/[Sakurato] Haite Kudasai, Takamine-san [12][AVC-8bit 1080p AAC][CHS&JPN].mp4","[Sakurato] Haite Kudasai, Takamine-san [12][AVC-8bit 1080p AAC][CHS&JPN].mp4",413559890,2025-06-20T15:22:39,anime,1920x1080,h264,1440.102,2297 +/mnt/Downloads/anime/[orion origin] Boukyaku Battery [10] [1080p] [H265 AAC] [CHT&JPN].mp4,[orion origin] Boukyaku Battery [10] [1080p] [H265 AAC] [CHT&JPN].mp4,434045534,2024-06-27T14:55:09,anime,1920x1080,hevc,1434.992993,2419 +/mnt/Downloads/anime/[ANi] 水屬性的魔法師 - 04 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 水屬性的魔法師 - 04 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,334768371,2025-07-24T23:31:00,anime,1920x1080,h264,1454.933333,1840 +"/mnt/Downloads/anime/[LoliHouse] Katainaka no Ossan, Kensei ni Naru - 09 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv","[LoliHouse] Katainaka no Ossan, Kensei ni Naru - 09 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv",579947651,2025-05-31T23:52:22,anime,1920x1080,hevc,1441.087,3219 +/mnt/Downloads/anime/[Skymoon-Raws] Shin Samurai-den YAIBA - 12 [ViuTV][WEB-DL][CHT][SRT][1080p][AVC AAC].mkv,[Skymoon-Raws] Shin Samurai-den YAIBA - 12 [ViuTV][WEB-DL][CHT][SRT][1080p][AVC AAC].mkv,457825691,2025-06-22T00:02:24,anime,1920x1080,h264,1434.179,2553 +/mnt/Downloads/anime/[ANi] 終末起點 - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 終末起點 - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,483025490,2025-04-10T08:55:44,anime,1920x1080,h264,1370.109896,2820 +/mnt/Downloads/anime/[ANi] 我要【招架】一切~反誤解的世界最強想成為冒險家~ - 06 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 我要【招架】一切~反誤解的世界最強想成為冒險家~ - 06 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,389663161,2024-08-09T05:25:44,anime,1920x1080,h264,1420.022911,2195 +/mnt/Downloads/anime/[BeanSub&FZSD][BLEACH_Sennen_Kessen-hen][28v2][GB][1080P][x264_AAC].mp4,[BeanSub&FZSD][BLEACH_Sennen_Kessen-hen][28v2][GB][1080P][x264_AAC].mp4,744015371,2024-10-20T00:36:59,anime,1920x1080,h264,1437.909333,4139 +/mnt/Downloads/anime/[LoliHouse] Tsuki ga Michibiku Isekai Douchuu S2 - 22 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,[LoliHouse] Tsuki ga Michibiku Isekai Douchuu S2 - 22 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,457793474,2024-06-04T00:11:06,anime,1920x1080,hevc,1420.063,2579 +/mnt/Downloads/anime/[ANi] 膽大黨 第二季 - 13 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 膽大黨 第二季 - 13 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,662222253,2025-07-03T23:00:29,anime,1920x1080,h264,1447.049911,3661 +/mnt/Downloads/anime/Mobile.Suit.Gundam.GQuuuuuuX.S01E01.The.Red.Gundam.1080p.AMZN.WEB-DL.MULTi.DDP2.0.H.264-VARYG.mkv,Mobile.Suit.Gundam.GQuuuuuuX.S01E01.The.Red.Gundam.1080p.AMZN.WEB-DL.MULTi.DDP2.0.H.264-VARYG.mkv,1394993199,2025-04-09T12:34:05,anime,1920x1080,h264,1501.088,7434 +/mnt/Downloads/anime/[ANi] 轉生後的我成了英雄爸爸和精靈媽媽的女兒 - 03 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 轉生後的我成了英雄爸爸和精靈媽媽的女兒 - 03 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,267132280,2025-10-19T23:37:14,anime,1920x1080,h264,1431.04,1493 +/mnt/Downloads/anime/[KyokuSai] Adam's Sweet Agony [08][720P][WEB-DL].mp4,[KyokuSai] Adam's Sweet Agony [08][720P][WEB-DL].mp4,53647438,2024-03-15T11:00:43,anime,1280x720,h264,419.439989,1023 +/mnt/Downloads/anime/[ANi] 新人大叔冒險者,被最強隊伍操到死成無敵 - 04 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 新人大叔冒險者,被最強隊伍操到死成無敵 - 04 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,471187786,2024-07-22T23:41:29,anime,1920x1080,h264,1424.944489,2645 +/mnt/Downloads/anime/[Nekomoe kissaten][Ao no Hako][17][1080p][JPSC].mp4,[Nekomoe kissaten][Ao no Hako][17][1080p][JPSC].mp4,441912115,2025-02-09T13:08:03,anime,1920x1080,h264,1417.301333,2494 +/mnt/Downloads/anime/[LoliHouse] Sword Art Online Alternative - Gun Gale Online II - 04 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,[LoliHouse] Sword Art Online Alternative - Gun Gale Online II - 04 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,544673749,2024-10-26T00:27:00,anime,1920x1080,hevc,1420.09,3068 +/mnt/Downloads/anime/[FZSD][Hime-sama Goumon no Jikan Desu][13][BIG5][1080P][x264_AAC].mp4,[FZSD][Hime-sama Goumon no Jikan Desu][13][BIG5][1080P][x264_AAC].mp4,526849702,2026-01-24T06:44:59,anime,1920x1080,h264,1425.124717,2957 +/mnt/Downloads/anime/晚安世界.Good.Night.World.2023.S01.1080p.NF.WEB-DL.x264.DDP5.1-PTerWEB/Good.Night.World.2023.S01E03.1080p.NF.WEB-DL.x264.DDP5.1-PTerWEB.mkv,Good.Night.World.2023.S01E03.1080p.NF.WEB-DL.x264.DDP5.1-PTerWEB.mkv,1034856990,2024-01-09T11:22:53,anime,1920x1080,h264,1484.576,5576 +/mnt/Downloads/anime/晚安世界.Good.Night.World.2023.S01.1080p.NF.WEB-DL.x264.DDP5.1-PTerWEB/Good.Night.World.2023.S01E07.1080p.NF.WEB-DL.x264.DDP5.1-PTerWEB.mkv,Good.Night.World.2023.S01E07.1080p.NF.WEB-DL.x264.DDP5.1-PTerWEB.mkv,1034636949,2024-01-09T11:22:46,anime,1920x1080,h264,1480.736,5589 +/mnt/Downloads/anime/晚安世界.Good.Night.World.2023.S01.1080p.NF.WEB-DL.x264.DDP5.1-PTerWEB/Good.Night.World.2023.S01E10.1080p.NF.WEB-DL.x264.DDP5.1-PTerWEB.mkv,Good.Night.World.2023.S01E10.1080p.NF.WEB-DL.x264.DDP5.1-PTerWEB.mkv,1031751155,2024-01-09T11:22:47,anime,1920x1080,h264,1480.736,5574 +/mnt/Downloads/anime/晚安世界.Good.Night.World.2023.S01.1080p.NF.WEB-DL.x264.DDP5.1-PTerWEB/Good.Night.World.2023.S01E11.1080p.NF.WEB-DL.x264.DDP5.1-PTerWEB.mkv,Good.Night.World.2023.S01E11.1080p.NF.WEB-DL.x264.DDP5.1-PTerWEB.mkv,1033639259,2024-01-09T11:22:55,anime,1920x1080,h264,1482.656,5577 +/mnt/Downloads/anime/晚安世界.Good.Night.World.2023.S01.1080p.NF.WEB-DL.x264.DDP5.1-PTerWEB/Good.Night.World.2023.S01E02.1080p.NF.WEB-DL.x264.DDP5.1-PTerWEB.mkv,Good.Night.World.2023.S01E02.1080p.NF.WEB-DL.x264.DDP5.1-PTerWEB.mkv,1030944195,2024-01-09T11:22:57,anime,1920x1080,h264,1478.816,5577 +/mnt/Downloads/anime/晚安世界.Good.Night.World.2023.S01.1080p.NF.WEB-DL.x264.DDP5.1-PTerWEB/Good.Night.World.2023.S01E06.1080p.NF.WEB-DL.x264.DDP5.1-PTerWEB.mkv,Good.Night.World.2023.S01E06.1080p.NF.WEB-DL.x264.DDP5.1-PTerWEB.mkv,1033299482,2024-01-09T11:22:56,anime,1920x1080,h264,1478.816,5589 +/mnt/Downloads/anime/晚安世界.Good.Night.World.2023.S01.1080p.NF.WEB-DL.x264.DDP5.1-PTerWEB/Good.Night.World.2023.S01E08.1080p.NF.WEB-DL.x264.DDP5.1-PTerWEB.mkv,Good.Night.World.2023.S01E08.1080p.NF.WEB-DL.x264.DDP5.1-PTerWEB.mkv,1035212832,2024-01-09T11:22:53,anime,1920x1080,h264,1478.816,5600 +/mnt/Downloads/anime/晚安世界.Good.Night.World.2023.S01.1080p.NF.WEB-DL.x264.DDP5.1-PTerWEB/Good.Night.World.2023.S01E04.1080p.NF.WEB-DL.x264.DDP5.1-PTerWEB.mkv,Good.Night.World.2023.S01E04.1080p.NF.WEB-DL.x264.DDP5.1-PTerWEB.mkv,1031035518,2024-01-09T11:22:36,anime,1920x1080,h264,1484.576,5555 +/mnt/Downloads/anime/晚安世界.Good.Night.World.2023.S01.1080p.NF.WEB-DL.x264.DDP5.1-PTerWEB/Good.Night.World.2023.S01E01.1080p.NF.WEB-DL.x264.DDP5.1-PTerWEB.mkv,Good.Night.World.2023.S01E01.1080p.NF.WEB-DL.x264.DDP5.1-PTerWEB.mkv,1028398969,2024-01-09T11:22:37,anime,1920x1080,h264,1484.576,5541 +/mnt/Downloads/anime/晚安世界.Good.Night.World.2023.S01.1080p.NF.WEB-DL.x264.DDP5.1-PTerWEB/Good.Night.World.2023.S01E05.1080p.NF.WEB-DL.x264.DDP5.1-PTerWEB.mkv,Good.Night.World.2023.S01E05.1080p.NF.WEB-DL.x264.DDP5.1-PTerWEB.mkv,1034780390,2024-01-09T11:22:58,anime,1920x1080,h264,1482.656,5583 +/mnt/Downloads/anime/晚安世界.Good.Night.World.2023.S01.1080p.NF.WEB-DL.x264.DDP5.1-PTerWEB/Good.Night.World.2023.S01E12.1080p.NF.WEB-DL.x264.DDP5.1-PTerWEB.mkv,Good.Night.World.2023.S01E12.1080p.NF.WEB-DL.x264.DDP5.1-PTerWEB.mkv,1031924541,2024-01-09T11:22:51,anime,1920x1080,h264,1482.656,5567 +/mnt/Downloads/anime/晚安世界.Good.Night.World.2023.S01.1080p.NF.WEB-DL.x264.DDP5.1-PTerWEB/Good.Night.World.2023.S01E09.1080p.NF.WEB-DL.x264.DDP5.1-PTerWEB.mkv,Good.Night.World.2023.S01E09.1080p.NF.WEB-DL.x264.DDP5.1-PTerWEB.mkv,1036196595,2024-01-09T11:22:57,anime,1920x1080,h264,1486.88,5575 +"/mnt/Downloads/anime/[orion origin] Benriya Saitou-san, Isekai ni Iku [01-12] [WebRip] [1080p] [H265 AAC] [CHT]/[orion origin] Benriya Saitou-san, Isekai ni Iku [08] [1080p] [H265 AAC] [CHT].mp4","[orion origin] Benriya Saitou-san, Isekai ni Iku [08] [1080p] [H265 AAC] [CHT].mp4",428180494,2023-03-28T11:03:21,anime,1920x1080,hevc,1430.07,2395 +"/mnt/Downloads/anime/[orion origin] Benriya Saitou-san, Isekai ni Iku [01-12] [WebRip] [1080p] [H265 AAC] [CHT]/[orion origin] Benriya Saitou-san, Isekai ni Iku [02] [1080p] [H265 AAC] [CHT].mp4","[orion origin] Benriya Saitou-san, Isekai ni Iku [02] [1080p] [H265 AAC] [CHT].mp4",439074289,2023-03-28T11:02:46,anime,1920x1080,hevc,1440.078005,2439 +"/mnt/Downloads/anime/[orion origin] Benriya Saitou-san, Isekai ni Iku [01-12] [WebRip] [1080p] [H265 AAC] [CHT]/[orion origin] Benriya Saitou-san, Isekai ni Iku [04] [1080p] [H265 AAC] [CHT].mp4","[orion origin] Benriya Saitou-san, Isekai ni Iku [04] [1080p] [H265 AAC] [CHT].mp4",418811795,2023-03-28T11:02:42,anime,1920x1080,hevc,1430.07,2342 +"/mnt/Downloads/anime/[orion origin] Benriya Saitou-san, Isekai ni Iku [01-12] [WebRip] [1080p] [H265 AAC] [CHT]/[orion origin] Benriya Saitou-san, Isekai ni Iku [09] [1080p] [H265 AAC] [CHT].mp4","[orion origin] Benriya Saitou-san, Isekai ni Iku [09] [1080p] [H265 AAC] [CHT].mp4",425738322,2023-03-28T11:03:22,anime,1920x1080,hevc,1420.061995,2398 +"/mnt/Downloads/anime/[orion origin] Benriya Saitou-san, Isekai ni Iku [01-12] [WebRip] [1080p] [H265 AAC] [CHT]/[orion origin] Benriya Saitou-san, Isekai ni Iku [03] [1080p] [H265 AAC] [CHT].mp4","[orion origin] Benriya Saitou-san, Isekai ni Iku [03] [1080p] [H265 AAC] [CHT].mp4",409274094,2023-03-28T11:01:51,anime,1920x1080,hevc,1420.061995,2305 +"/mnt/Downloads/anime/[orion origin] Benriya Saitou-san, Isekai ni Iku [01-12] [WebRip] [1080p] [H265 AAC] [CHT]/[orion origin] Benriya Saitou-san, Isekai ni Iku [05] [1080p] [H265 AAC] [CHT].mp4","[orion origin] Benriya Saitou-san, Isekai ni Iku [05] [1080p] [H265 AAC] [CHT].mp4",419842628,2023-03-28T11:03:16,anime,1920x1080,hevc,1420.109002,2365 +"/mnt/Downloads/anime/[orion origin] Benriya Saitou-san, Isekai ni Iku [01-12] [WebRip] [1080p] [H265 AAC] [CHT]/[orion origin] Benriya Saitou-san, Isekai ni Iku [11] [1080p] [H265 AAC] [CHT].mp4","[orion origin] Benriya Saitou-san, Isekai ni Iku [11] [1080p] [H265 AAC] [CHT].mp4",434433835,2023-03-28T11:03:24,anime,1920x1080,hevc,1420.016009,2447 +"/mnt/Downloads/anime/[orion origin] Benriya Saitou-san, Isekai ni Iku [01-12] [WebRip] [1080p] [H265 AAC] [CHT]/[orion origin] Benriya Saitou-san, Isekai ni Iku [12] [END] [1080p] [H265 AAC] [CHT].mp4","[orion origin] Benriya Saitou-san, Isekai ni Iku [12] [END] [1080p] [H265 AAC] [CHT].mp4",455242333,2023-03-28T11:03:27,anime,1920x1080,hevc,1420.016009,2564 +"/mnt/Downloads/anime/[orion origin] Benriya Saitou-san, Isekai ni Iku [01-12] [WebRip] [1080p] [H265 AAC] [CHT]/[orion origin] Benriya Saitou-san, Isekai ni Iku [06] [1080p] [H265 AAC] [CHT].mp4","[orion origin] Benriya Saitou-san, Isekai ni Iku [06] [1080p] [H265 AAC] [CHT].mp4",425666871,2023-03-28T11:03:16,anime,1920x1080,hevc,1420.109002,2397 +"/mnt/Downloads/anime/[orion origin] Benriya Saitou-san, Isekai ni Iku [01-12] [WebRip] [1080p] [H265 AAC] [CHT]/[orion origin] Benriya Saitou-san, Isekai ni Iku [10] [1080p] [H265 AAC] [CHT].mp4","[orion origin] Benriya Saitou-san, Isekai ni Iku [10] [1080p] [H265 AAC] [CHT].mp4",446842750,2023-03-28T11:03:26,anime,1920x1080,hevc,1440.031995,2482 +"/mnt/Downloads/anime/[orion origin] Benriya Saitou-san, Isekai ni Iku [01-12] [WebRip] [1080p] [H265 AAC] [CHT]/[orion origin] Benriya Saitou-san, Isekai ni Iku [01] [1080p] [H265 AAC] [CHT].mp4","[orion origin] Benriya Saitou-san, Isekai ni Iku [01] [1080p] [H265 AAC] [CHT].mp4",424217094,2023-03-28T11:02:04,anime,1920x1080,hevc,1420.109002,2389 +"/mnt/Downloads/anime/[orion origin] Benriya Saitou-san, Isekai ni Iku [01-12] [WebRip] [1080p] [H265 AAC] [CHT]/[orion origin] Benriya Saitou-san, Isekai ni Iku [07] [1080p] [H265 AAC] [CHT].mp4","[orion origin] Benriya Saitou-san, Isekai ni Iku [07] [1080p] [H265 AAC] [CHT].mp4",451159325,2023-03-28T11:03:22,anime,1920x1080,hevc,1420.109002,2541 +/mnt/Downloads/anime/[ANi] 盾之勇者成名錄 Season 4 - 03 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 盾之勇者成名錄 Season 4 - 03 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,464871889,2025-07-23T12:29:41,anime,1920x1080,h264,1420.074667,2618 +/mnt/Downloads/anime/[ANi] 使人誤解的工房主~關於原英雄隊伍的雜役人員,實際上除了戰鬥能力外全是SSS的故事~ - 10 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 使人誤解的工房主~關於原英雄隊伍的雜役人員,實際上除了戰鬥能力外全是SSS的故事~ - 10 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,292852003,2025-06-02T02:37:35,anime,1920x1080,h264,1420.032,1649 +/mnt/Downloads/anime/[HYSUB]Dungeon Meshi[19][BIG5_MP4][1920X1080].mp4,[HYSUB]Dungeon Meshi[19][BIG5_MP4][1920X1080].mp4,267284354,2024-05-10T11:01:11,anime,1920x1080,h264,1530.090667,1397 +/mnt/Downloads/anime/[ANi] 陰陽迴天 Re:Birth Verse - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 陰陽迴天 Re:Birth Verse - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,620833905,2025-07-02T23:53:05,anime,1920x1080,h264,1374.997333,3612 +/mnt/Downloads/anime/[ANi] 我與尼特女忍者的莫名同居生活 - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 我與尼特女忍者的莫名同居生活 - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,478651370,2025-01-12T01:18:07,anime,1920x1080,h264,1442.176,2655 +/mnt/Downloads/anime/[ANi] 最後可以再拜託您一件事嗎? - 06 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 最後可以再拜託您一件事嗎? - 06 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,410976597,2025-11-01T01:41:23,anime,1920x1080,h264,1425.088,2307 +/mnt/Downloads/anime/[ANi] 我獨自升級 第二季 -起於闇影- - 18 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 我獨自升級 第二季 -起於闇影- - 18 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,634542429,2025-02-09T00:15:16,anime,1920x1080,h264,1425.28,3561 +/mnt/Downloads/anime/[ANi] WIND BREAKER—防風少年— - 10 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] WIND BREAKER—防風少年— - 10 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,346176227,2024-06-07T00:55:10,anime,1920x1080,h264,1425.027911,1943 +/mnt/Downloads/anime/[ANi] 我內心的糟糕念頭 第二季 - 17 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 我內心的糟糕念頭 第二季 - 17 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,336319306,2024-02-04T00:23:00,anime,1920x1080,h264,1383.04,1945 +/mnt/Downloads/anime/[ANi] 輝夜姬想讓人告白 邁向大人的階梯 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 輝夜姬想讓人告白 邁向大人的階梯 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,485398803,2026-01-01T01:22:19,anime,1920x1080,h264,1536.639411,2527 +/mnt/Downloads/anime/[Nekomoe kissaten&LoliHouse] Ame to Kimi to - 01 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,[Nekomoe kissaten&LoliHouse] Ame to Kimi to - 01 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,319100186,2025-07-08T23:25:36,anime,1920x1080,hevc,1368.096,1865 +/mnt/Downloads/anime/[ANi] 我獨自升級 第二季 -起於闇影- - 24 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 我獨自升級 第二季 -起於闇影- - 24 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,630390916,2025-03-22T23:16:09,anime,1920x1080,h264,1425.216,3538 +/mnt/Downloads/anime/[ANi] 靠廢柴技能【狀態異常】成為最強的我將蹂躪一切 - 12 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 靠廢柴技能【狀態異常】成為最強的我將蹂躪一切 - 12 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,480535723,2024-09-26T23:31:22,anime,1920x1080,h264,1435.136,2678 +/mnt/Downloads/anime/[ANi] 膽大黨 - 06 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 膽大黨 - 06 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,667066076,2024-11-07T23:34:15,anime,1920x1080,h264,1435.163033,3718 +/mnt/Downloads/anime/[Nekomoe kissaten&LoliHouse] Ao no Hako - 01 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,[Nekomoe kissaten&LoliHouse] Ao no Hako - 01 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,557637102,2024-11-10T04:14:29,anime,1920x1080,hevc,1417.002,3148 +/mnt/Downloads/anime/[ANi] 聽說你們要結婚!? - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 聽說你們要結婚!? - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,434771663,2024-10-04T04:10:54,anime,1920x1080,h264,1420.032,2449 +/mnt/Downloads/anime/[orion origin] Ore wa Subete wo Parry Suru ~Gyaku Kanchigai no Sekai Saikyou wa Boukensha ni Naritai~ [05] [1080p] [H265 AAC] [CHT&JPN].mp4,[orion origin] Ore wa Subete wo Parry Suru ~Gyaku Kanchigai no Sekai Saikyou wa Boukensha ni Naritai~ [05] [1080p] [H265 AAC] [CHT&JPN].mp4,435523994,2024-08-06T04:09:06,anime,1920x1080,hevc,1422.464,2449 +/mnt/Downloads/anime/[ANi] 靠廢柴技能【狀態異常】成為最強的我將蹂躪一切 - 09 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 靠廢柴技能【狀態異常】成為最強的我將蹂躪一切 - 09 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,501559160,2024-09-05T23:38:43,anime,1920x1080,h264,1450.026667,2767 +/mnt/Downloads/anime/[Nekomoe kissaten][Ao no Hako][12][1080p][JPTC].mp4,[Nekomoe kissaten][Ao no Hako][12][1080p][JPTC].mp4,548628243,2024-12-29T00:05:47,anime,1920x1080,h264,1417.301333,3096 +/mnt/Downloads/anime/Pluto.S01.1080p.NF.WEB-DL.DDP5.1.H.264-QUiNTESSENCE/Pluto.S01E02.1080p.WEB.h264-QUiNTESSENCE.mkv,Pluto.S01E02.1080p.WEB.h264-QUiNTESSENCE.mkv,2379761660,2023-10-28T02:17:22,anime,1920x1080,h264,3456.8,5507 +/mnt/Downloads/anime/Pluto.S01.1080p.NF.WEB-DL.DDP5.1.H.264-QUiNTESSENCE/Pluto.S01E03.1080p.WEB.h264-QUiNTESSENCE.mkv,Pluto.S01E03.1080p.WEB.h264-QUiNTESSENCE.mkv,2602077655,2023-10-28T02:17:24,anime,1920x1080,h264,3773.216,5516 +/mnt/Downloads/anime/Pluto.S01.1080p.NF.WEB-DL.DDP5.1.H.264-QUiNTESSENCE/Pluto.S01E01.1080p.WEB.h264-QUiNTESSENCE.mkv,Pluto.S01E01.1080p.WEB.h264-QUiNTESSENCE.mkv,2925400076,2023-10-28T02:17:37,anime,1920x1080,h264,4261.28,5492 +/mnt/Downloads/anime/Pluto.S01.1080p.NF.WEB-DL.DDP5.1.H.264-QUiNTESSENCE/Pluto.S01E04.1080p.WEB.h264-QUiNTESSENCE.mkv,Pluto.S01E04.1080p.WEB.h264-QUiNTESSENCE.mkv,2414017498,2023-10-28T02:17:38,anime,1920x1080,h264,3516.32,5492 +/mnt/Downloads/anime/Pluto.S01.1080p.NF.WEB-DL.DDP5.1.H.264-QUiNTESSENCE/Pluto.S01E05.1080p.WEB.h264-QUiNTESSENCE.mkv,Pluto.S01E05.1080p.WEB.h264-QUiNTESSENCE.mkv,2418510589,2023-10-28T02:17:26,anime,1920x1080,h264,3593.12,5384 +/mnt/Downloads/anime/Pluto.S01.1080p.NF.WEB-DL.DDP5.1.H.264-QUiNTESSENCE/Pluto.S01E07.1080p.WEB.h264-QUiNTESSENCE.mkv,Pluto.S01E07.1080p.WEB.h264-QUiNTESSENCE.mkv,2270011735,2023-10-28T02:17:14,anime,1920x1080,h264,3351.2,5418 +/mnt/Downloads/anime/Pluto.S01.1080p.NF.WEB-DL.DDP5.1.H.264-QUiNTESSENCE/Pluto.S01E06.1080p.WEB.h264-QUiNTESSENCE.mkv,Pluto.S01E06.1080p.WEB.h264-QUiNTESSENCE.mkv,2462610576,2023-10-28T02:17:24,anime,1920x1080,h264,3602.72,5468 +/mnt/Downloads/anime/Pluto.S01.1080p.NF.WEB-DL.DDP5.1.H.264-QUiNTESSENCE/Pluto.S01E08.1080p.WEB.h264-QUiNTESSENCE.mkv,Pluto.S01E08.1080p.WEB.h264-QUiNTESSENCE.mkv,2797578881,2023-10-28T02:17:11,anime,1920x1080,h264,4072.352,5495 +/mnt/Downloads/anime/[ANi] 我獨自升級 - 03 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 我獨自升級 - 03 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,847045556,2024-01-21T01:14:15,anime,1920x1080,h264,1425.322667,4754 +/mnt/Downloads/anime/[LoliHouse] Re Monster - 06 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,[LoliHouse] Re Monster - 06 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,585272477,2024-05-07T23:34:04,anime,1920x1080,hevc,1420.109,3297 +/mnt/Downloads/anime/[SweetSub&LoliHouse] Horimiya Piece [WebRip 1080p HEVC-10bit AAC ASSx2]/Bonus/[SweetSub&LoliHouse] Horimiya Piece - Web Preview 09 [Web-DL 1080p AVC-8bit AAC ASSx2].mkv,[SweetSub&LoliHouse] Horimiya Piece - Web Preview 09 [Web-DL 1080p AVC-8bit AAC ASSx2].mkv,7543475,2024-01-01T23:53:22,anime,1920x1080,h264,31.44,1919 +/mnt/Downloads/anime/[SweetSub&LoliHouse] Horimiya Piece [WebRip 1080p HEVC-10bit AAC ASSx2]/Bonus/[SweetSub&LoliHouse] Horimiya Piece - Web Preview 08 [Web-DL 1080p AVC-8bit AAC ASSx2].mkv,[SweetSub&LoliHouse] Horimiya Piece - Web Preview 08 [Web-DL 1080p AVC-8bit AAC ASSx2].mkv,5895749,2024-01-01T23:49:00,anime,1920x1080,h264,38.638,1220 +/mnt/Downloads/anime/[SweetSub&LoliHouse] Horimiya Piece [WebRip 1080p HEVC-10bit AAC ASSx2]/Bonus/[SweetSub&LoliHouse] Horimiya Piece - Web Preview 07 [Web-DL 1080p AVC-8bit AAC ASSx2].mkv,[SweetSub&LoliHouse] Horimiya Piece - Web Preview 07 [Web-DL 1080p AVC-8bit AAC ASSx2].mkv,8379070,2024-01-01T23:53:20,anime,1920x1080,h264,36.966,1813 +/mnt/Downloads/anime/[SweetSub&LoliHouse] Horimiya Piece [WebRip 1080p HEVC-10bit AAC ASSx2]/Bonus/[SweetSub&LoliHouse] Horimiya Piece - Web Preview 11 [Web-DL 1080p AVC-8bit AAC ASSx2].mkv,[SweetSub&LoliHouse] Horimiya Piece - Web Preview 11 [Web-DL 1080p AVC-8bit AAC ASSx2].mkv,9001069,2024-01-01T23:51:37,anime,1920x1080,h264,34.133,2109 +/mnt/Downloads/anime/[SweetSub&LoliHouse] Horimiya Piece [WebRip 1080p HEVC-10bit AAC ASSx2]/Bonus/[SweetSub&LoliHouse] Horimiya Piece - Web Preview 06 [Web-DL 1080p AVC-8bit AAC ASSx2].mkv,[SweetSub&LoliHouse] Horimiya Piece - Web Preview 06 [Web-DL 1080p AVC-8bit AAC ASSx2].mkv,3866165,2024-01-01T23:49:39,anime,1920x1080,h264,32.601,948 +/mnt/Downloads/anime/[SweetSub&LoliHouse] Horimiya Piece [WebRip 1080p HEVC-10bit AAC ASSx2]/Bonus/[SweetSub&LoliHouse] Horimiya Piece - Web Preview 10 [Web-DL 1080p AVC-8bit AAC ASSx2].mkv,[SweetSub&LoliHouse] Horimiya Piece - Web Preview 10 [Web-DL 1080p AVC-8bit AAC ASSx2].mkv,3858017,2024-01-01T23:50:25,anime,1920x1080,h264,35.805,862 +/mnt/Downloads/anime/[SweetSub&LoliHouse] Horimiya Piece [WebRip 1080p HEVC-10bit AAC ASSx2]/Bonus/[SweetSub&LoliHouse] Horimiya Piece - Web Preview 05 [Web-DL 1080p AVC-8bit AAC ASSx2].mkv,[SweetSub&LoliHouse] Horimiya Piece - Web Preview 05 [Web-DL 1080p AVC-8bit AAC ASSx2].mkv,5251142,2024-01-01T23:53:04,anime,1920x1080,h264,32.624,1287 +/mnt/Downloads/anime/[SweetSub&LoliHouse] Horimiya Piece [WebRip 1080p HEVC-10bit AAC ASSx2]/Bonus/[SweetSub&LoliHouse] Horimiya Piece - Web Preview 13 [Web-DL 1080p AVC-8bit AAC ASSx2].mkv,[SweetSub&LoliHouse] Horimiya Piece - Web Preview 13 [Web-DL 1080p AVC-8bit AAC ASSx2].mkv,5102703,2024-01-01T23:49:15,anime,1920x1080,h264,35.503,1149 +/mnt/Downloads/anime/[SweetSub&LoliHouse] Horimiya Piece [WebRip 1080p HEVC-10bit AAC ASSx2]/Bonus/[SweetSub&LoliHouse] Horimiya Piece - Web Preview 04 [Web-DL 1080p AVC-8bit AAC ASSx2].mkv,[SweetSub&LoliHouse] Horimiya Piece - Web Preview 04 [Web-DL 1080p AVC-8bit AAC ASSx2].mkv,5957653,2024-01-01T23:49:50,anime,1920x1080,h264,37.128,1283 +/mnt/Downloads/anime/[SweetSub&LoliHouse] Horimiya Piece [WebRip 1080p HEVC-10bit AAC ASSx2]/Bonus/[SweetSub&LoliHouse] Horimiya Piece - Web Preview 12 [Web-DL 1080p AVC-8bit AAC ASSx2].mkv,[SweetSub&LoliHouse] Horimiya Piece - Web Preview 12 [Web-DL 1080p AVC-8bit AAC ASSx2].mkv,5415441,2024-01-01T23:50:25,anime,1920x1080,h264,34.18,1267 +/mnt/Downloads/anime/[SweetSub&LoliHouse] Horimiya Piece [WebRip 1080p HEVC-10bit AAC ASSx2]/Bonus/[SweetSub&LoliHouse] Horimiya Piece - Final PV [Web-DL 1080p AVC-8bit AAC ASSx2].mkv,[SweetSub&LoliHouse] Horimiya Piece - Final PV [Web-DL 1080p AVC-8bit AAC ASSx2].mkv,20297603,2024-01-01T23:53:24,anime,1920x1080,h264,110.178,1473 +/mnt/Downloads/anime/[SweetSub&LoliHouse] Horimiya Piece [WebRip 1080p HEVC-10bit AAC ASSx2]/Bonus/[SweetSub&LoliHouse] Horimiya Piece - Web Preview 03 [Web-DL 1080p AVC-8bit AAC ASSx2].mkv,[SweetSub&LoliHouse] Horimiya Piece - Web Preview 03 [Web-DL 1080p AVC-8bit AAC ASSx2].mkv,7856240,2024-01-01T23:50:26,anime,1920x1080,h264,34.505,1821 +/mnt/Downloads/anime/[SweetSub&LoliHouse] Horimiya Piece [WebRip 1080p HEVC-10bit AAC ASSx2]/Bonus/[SweetSub&LoliHouse] Horimiya Piece - Web Preview 02 [Web-DL 1080p AVC-8bit AAC ASSx2].mkv,[SweetSub&LoliHouse] Horimiya Piece - Web Preview 02 [Web-DL 1080p AVC-8bit AAC ASSx2].mkv,4400865,2024-01-01T23:50:48,anime,1920x1080,h264,29.303,1201 +/mnt/Downloads/anime/[SweetSub&LoliHouse] Horimiya Piece [WebRip 1080p HEVC-10bit AAC ASSx2]/Bonus/[SweetSub&LoliHouse] Horimiya Piece - Web Preview 01 [Web-DL 1080p AVC-8bit AAC ASSx2].mkv,[SweetSub&LoliHouse] Horimiya Piece - Web Preview 01 [Web-DL 1080p AVC-8bit AAC ASSx2].mkv,7606652,2024-01-01T23:52:18,anime,1920x1080,h264,36.084,1686 +/mnt/Downloads/anime/[SweetSub&LoliHouse] Horimiya Piece [WebRip 1080p HEVC-10bit AAC ASSx2]/[SweetSub&LoliHouse] Horimiya Piece - 07 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,[SweetSub&LoliHouse] Horimiya Piece - 07 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,439465767,2024-01-01T23:53:33,anime,1920x1080,hevc,1420.063,2475 +/mnt/Downloads/anime/[SweetSub&LoliHouse] Horimiya Piece [WebRip 1080p HEVC-10bit AAC ASSx2]/[SweetSub&LoliHouse] Horimiya Piece - 03 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,[SweetSub&LoliHouse] Horimiya Piece - 03 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,388901680,2024-01-01T23:53:31,anime,1920x1080,hevc,1420.086,2190 +/mnt/Downloads/anime/[SweetSub&LoliHouse] Horimiya Piece [WebRip 1080p HEVC-10bit AAC ASSx2]/[SweetSub&LoliHouse] Horimiya Piece - 10 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,[SweetSub&LoliHouse] Horimiya Piece - 10 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,303816560,2024-01-01T23:53:30,anime,1920x1080,hevc,1420.063,1711 +/mnt/Downloads/anime/[SweetSub&LoliHouse] Horimiya Piece [WebRip 1080p HEVC-10bit AAC ASSx2]/[SweetSub&LoliHouse] Horimiya Piece - 11 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,[SweetSub&LoliHouse] Horimiya Piece - 11 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,328524030,2024-01-01T23:53:27,anime,1920x1080,hevc,1420.062,1850 +/mnt/Downloads/anime/[SweetSub&LoliHouse] Horimiya Piece [WebRip 1080p HEVC-10bit AAC ASSx2]/[SweetSub&LoliHouse] Horimiya Piece - 06 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,[SweetSub&LoliHouse] Horimiya Piece - 06 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,301288761,2024-01-01T23:53:27,anime,1920x1080,hevc,1419.97,1697 +/mnt/Downloads/anime/[SweetSub&LoliHouse] Horimiya Piece [WebRip 1080p HEVC-10bit AAC ASSx2]/[SweetSub&LoliHouse] Horimiya Piece - 02 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,[SweetSub&LoliHouse] Horimiya Piece - 02 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,304205887,2024-01-01T23:53:29,anime,1920x1080,hevc,1420.063,1713 +/mnt/Downloads/anime/[SweetSub&LoliHouse] Horimiya Piece [WebRip 1080p HEVC-10bit AAC ASSx2]/[SweetSub&LoliHouse] Horimiya Piece - 13 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,[SweetSub&LoliHouse] Horimiya Piece - 13 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,473789847,2024-01-01T23:53:30,anime,1920x1080,hevc,1581.999,2395 +/mnt/Downloads/anime/[SweetSub&LoliHouse] Horimiya Piece [WebRip 1080p HEVC-10bit AAC ASSx2]/[SweetSub&LoliHouse] Horimiya Piece - 08 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,[SweetSub&LoliHouse] Horimiya Piece - 08 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,298995880,2024-01-01T23:53:31,anime,1920x1080,hevc,1420.063,1684 +/mnt/Downloads/anime/[SweetSub&LoliHouse] Horimiya Piece [WebRip 1080p HEVC-10bit AAC ASSx2]/[SweetSub&LoliHouse] Horimiya Piece - 04 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,[SweetSub&LoliHouse] Horimiya Piece - 04 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,316610968,2024-01-01T23:53:27,anime,1920x1080,hevc,1420.063,1783 +/mnt/Downloads/anime/[SweetSub&LoliHouse] Horimiya Piece [WebRip 1080p HEVC-10bit AAC ASSx2]/[SweetSub&LoliHouse] Horimiya Piece - 05 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,[SweetSub&LoliHouse] Horimiya Piece - 05 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,327369575,2024-01-01T23:53:21,anime,1920x1080,hevc,1419.97,1844 +/mnt/Downloads/anime/[SweetSub&LoliHouse] Horimiya Piece [WebRip 1080p HEVC-10bit AAC ASSx2]/[SweetSub&LoliHouse] Horimiya Piece - 01 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,[SweetSub&LoliHouse] Horimiya Piece - 01 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,431513327,2024-01-01T23:53:34,anime,1920x1080,hevc,1420.016,2431 +/mnt/Downloads/anime/[SweetSub&LoliHouse] Horimiya Piece [WebRip 1080p HEVC-10bit AAC ASSx2]/[SweetSub&LoliHouse] Horimiya Piece - 09 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,[SweetSub&LoliHouse] Horimiya Piece - 09 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,323211968,2024-01-01T23:53:33,anime,1920x1080,hevc,1420.017,1820 +/mnt/Downloads/anime/[SweetSub&LoliHouse] Horimiya Piece [WebRip 1080p HEVC-10bit AAC ASSx2]/[SweetSub&LoliHouse] Horimiya Piece - 12 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,[SweetSub&LoliHouse] Horimiya Piece - 12 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,375256120,2024-01-01T23:53:32,anime,1920x1080,hevc,1420.063,2114 +/mnt/Downloads/anime/[ANi] 膽大黨 第二季 - 17 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 膽大黨 第二季 - 17 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,636610602,2025-07-31T23:36:46,anime,1920x1080,h264,1447.049911,3519 +/mnt/Downloads/anime/[ANi] 我要【招架】一切~反誤解的世界最強想成為冒險家~ - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 我要【招架】一切~反誤解的世界最強想成為冒險家~ - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,317880545,2024-07-11T23:41:12,anime,1920x1080,h264,1420.022911,1790 +/mnt/Downloads/anime/[ANi] 素材採集家的異世界旅行記 - 11 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 素材採集家的異世界旅行記 - 11 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,383371732,2025-12-09T01:20:02,anime,1920x1080,h264,1420.022911,2159 +/mnt/Downloads/anime/[LoliHouse] Amagami-san Chi no Enmusubi [01-24][WebRip 1080p HEVC-10bit AAC]/[LoliHouse] Amagami-san Chi no Enmusubi - 11 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,[LoliHouse] Amagami-san Chi no Enmusubi - 11 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,365370907,2025-05-26T00:25:29,anime,1920x1080,hevc,1420.062,2058 +/mnt/Downloads/anime/[LoliHouse] Amagami-san Chi no Enmusubi [01-24][WebRip 1080p HEVC-10bit AAC]/[LoliHouse] Amagami-san Chi no Enmusubi - 15 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,[LoliHouse] Amagami-san Chi no Enmusubi - 15 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,352941826,2025-05-26T00:26:20,anime,1920x1080,hevc,1420.062,1988 +/mnt/Downloads/anime/[LoliHouse] Amagami-san Chi no Enmusubi [01-24][WebRip 1080p HEVC-10bit AAC]/[LoliHouse] Amagami-san Chi no Enmusubi - 06 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,[LoliHouse] Amagami-san Chi no Enmusubi - 06 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,433385258,2025-05-26T00:17:14,anime,1920x1080,hevc,1420.062,2441 +/mnt/Downloads/anime/[LoliHouse] Amagami-san Chi no Enmusubi [01-24][WebRip 1080p HEVC-10bit AAC]/[LoliHouse] Amagami-san Chi no Enmusubi - 21 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,[LoliHouse] Amagami-san Chi no Enmusubi - 21 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,320217491,2025-05-26T00:28:17,anime,1920x1080,hevc,1420.086,1803 +/mnt/Downloads/anime/[LoliHouse] Amagami-san Chi no Enmusubi [01-24][WebRip 1080p HEVC-10bit AAC]/[LoliHouse] Amagami-san Chi no Enmusubi - 02 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,[LoliHouse] Amagami-san Chi no Enmusubi - 02 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,395982330,2025-05-26T00:02:37,anime,1920x1080,hevc,1420.017,2230 +/mnt/Downloads/anime/[LoliHouse] Amagami-san Chi no Enmusubi [01-24][WebRip 1080p HEVC-10bit AAC]/[LoliHouse] Amagami-san Chi no Enmusubi - 19 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,[LoliHouse] Amagami-san Chi no Enmusubi - 19 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,249436523,2025-05-26T00:28:01,anime,1920x1080,hevc,1420.063,1405 +/mnt/Downloads/anime/[LoliHouse] Amagami-san Chi no Enmusubi [01-24][WebRip 1080p HEVC-10bit AAC]/[LoliHouse] Amagami-san Chi no Enmusubi - 07 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,[LoliHouse] Amagami-san Chi no Enmusubi - 07 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,421521177,2025-05-26T00:20:02,anime,1920x1080,hevc,1420.063,2374 +/mnt/Downloads/anime/[LoliHouse] Amagami-san Chi no Enmusubi [01-24][WebRip 1080p HEVC-10bit AAC]/[LoliHouse] Amagami-san Chi no Enmusubi - 20 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,[LoliHouse] Amagami-san Chi no Enmusubi - 20 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,296806410,2025-05-26T00:27:53,anime,1920x1080,hevc,1420.063,1672 +/mnt/Downloads/anime/[LoliHouse] Amagami-san Chi no Enmusubi [01-24][WebRip 1080p HEVC-10bit AAC]/[LoliHouse] Amagami-san Chi no Enmusubi - 18 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,[LoliHouse] Amagami-san Chi no Enmusubi - 18 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,312764700,2025-05-26T00:27:56,anime,1920x1080,hevc,1420.016,1762 +/mnt/Downloads/anime/[LoliHouse] Amagami-san Chi no Enmusubi [01-24][WebRip 1080p HEVC-10bit AAC]/[LoliHouse] Amagami-san Chi no Enmusubi - 03 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,[LoliHouse] Amagami-san Chi no Enmusubi - 03 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,400467586,2025-05-26T00:03:02,anime,1920x1080,hevc,1420.063,2256 +/mnt/Downloads/anime/[LoliHouse] Amagami-san Chi no Enmusubi [01-24][WebRip 1080p HEVC-10bit AAC]/[LoliHouse] Amagami-san Chi no Enmusubi - 24 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,[LoliHouse] Amagami-san Chi no Enmusubi - 24 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,313709787,2025-05-26T00:28:00,anime,1920x1080,hevc,1419.969,1767 +/mnt/Downloads/anime/[LoliHouse] Amagami-san Chi no Enmusubi [01-24][WebRip 1080p HEVC-10bit AAC]/[LoliHouse] Amagami-san Chi no Enmusubi - 10 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,[LoliHouse] Amagami-san Chi no Enmusubi - 10 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,423263017,2025-05-26T00:23:12,anime,1920x1080,hevc,1420.086,2384 +/mnt/Downloads/anime/[LoliHouse] Amagami-san Chi no Enmusubi [01-24][WebRip 1080p HEVC-10bit AAC]/[LoliHouse] Amagami-san Chi no Enmusubi - 14 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,[LoliHouse] Amagami-san Chi no Enmusubi - 14 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,404975411,2025-05-26T00:25:44,anime,1920x1080,hevc,1420.086,2281 +/mnt/Downloads/anime/[LoliHouse] Amagami-san Chi no Enmusubi [01-24][WebRip 1080p HEVC-10bit AAC]/[LoliHouse] Amagami-san Chi no Enmusubi - 22 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,[LoliHouse] Amagami-san Chi no Enmusubi - 22 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,343591298,2025-05-26T00:28:19,anime,1920x1080,hevc,1420.063,1935 +/mnt/Downloads/anime/[LoliHouse] Amagami-san Chi no Enmusubi [01-24][WebRip 1080p HEVC-10bit AAC]/[LoliHouse] Amagami-san Chi no Enmusubi - 05 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,[LoliHouse] Amagami-san Chi no Enmusubi - 05 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,572834300,2025-05-26T00:16:23,anime,1920x1080,hevc,1420.086,3227 +/mnt/Downloads/anime/[LoliHouse] Amagami-san Chi no Enmusubi [01-24][WebRip 1080p HEVC-10bit AAC]/[LoliHouse] Amagami-san Chi no Enmusubi - 01 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,[LoliHouse] Amagami-san Chi no Enmusubi - 01 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,320814304,2025-05-25T23:55:59,anime,1920x1080,hevc,1419.97,1807 +/mnt/Downloads/anime/[LoliHouse] Amagami-san Chi no Enmusubi [01-24][WebRip 1080p HEVC-10bit AAC]/[LoliHouse] Amagami-san Chi no Enmusubi - 12 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,[LoliHouse] Amagami-san Chi no Enmusubi - 12 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,371894444,2025-05-26T00:24:05,anime,1920x1080,hevc,1420.086,2095 +/mnt/Downloads/anime/[LoliHouse] Amagami-san Chi no Enmusubi [01-24][WebRip 1080p HEVC-10bit AAC]/[LoliHouse] Amagami-san Chi no Enmusubi - 09 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,[LoliHouse] Amagami-san Chi no Enmusubi - 09 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,354407410,2025-05-26T00:21:44,anime,1920x1080,hevc,1420.017,1996 +/mnt/Downloads/anime/[LoliHouse] Amagami-san Chi no Enmusubi [01-24][WebRip 1080p HEVC-10bit AAC]/[LoliHouse] Amagami-san Chi no Enmusubi - 16 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,[LoliHouse] Amagami-san Chi no Enmusubi - 16 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,366098937,2025-05-26T00:27:11,anime,1920x1080,hevc,1420.017,2062 +/mnt/Downloads/anime/[LoliHouse] Amagami-san Chi no Enmusubi [01-24][WebRip 1080p HEVC-10bit AAC]/[LoliHouse] Amagami-san Chi no Enmusubi - 08 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,[LoliHouse] Amagami-san Chi no Enmusubi - 08 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,367032534,2025-05-26T00:19:45,anime,1920x1080,hevc,1419.969,2067 +/mnt/Downloads/anime/[LoliHouse] Amagami-san Chi no Enmusubi [01-24][WebRip 1080p HEVC-10bit AAC]/[LoliHouse] Amagami-san Chi no Enmusubi - 13 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,[LoliHouse] Amagami-san Chi no Enmusubi - 13 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,357519947,2025-05-26T00:24:56,anime,1920x1080,hevc,1420.016,2014 +/mnt/Downloads/anime/[LoliHouse] Amagami-san Chi no Enmusubi [01-24][WebRip 1080p HEVC-10bit AAC]/[LoliHouse] Amagami-san Chi no Enmusubi - 17 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,[LoliHouse] Amagami-san Chi no Enmusubi - 17 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,363489636,2025-05-26T00:26:36,anime,1920x1080,hevc,1420.086,2047 +/mnt/Downloads/anime/[LoliHouse] Amagami-san Chi no Enmusubi [01-24][WebRip 1080p HEVC-10bit AAC]/[LoliHouse] Amagami-san Chi no Enmusubi - 23 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,[LoliHouse] Amagami-san Chi no Enmusubi - 23 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,305554229,2025-05-26T00:28:23,anime,1920x1080,hevc,1419.969,1721 +/mnt/Downloads/anime/[LoliHouse] Amagami-san Chi no Enmusubi [01-24][WebRip 1080p HEVC-10bit AAC]/[LoliHouse] Amagami-san Chi no Enmusubi - 04 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,[LoliHouse] Amagami-san Chi no Enmusubi - 04 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,380842436,2025-05-26T00:11:41,anime,1920x1080,hevc,1420.062,2145 +/mnt/Downloads/anime/[ANi] 和機器人啪啪啪能算在經驗人數裡嗎?? [年齡限制版] - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 和機器人啪啪啪能算在經驗人數裡嗎?? [年齡限制版] - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,67853237,2026-01-16T16:16:09,anime,1920x1080,h264,210.24,2581 +/mnt/Downloads/anime/[Nekomoe kissaten][Megami no Cafe Terrace][06-09][1080p][JPTC]/[Nekomoe kissaten][Megami no Cafe Terrace][06][1080p][JPTC].mp4,[Nekomoe kissaten][Megami no Cafe Terrace][06][1080p][JPTC].mp4,388695471,2023-06-25T03:04:42,anime,1920x1080,h264,1437.151678,2163 +/mnt/Downloads/anime/[Nekomoe kissaten][Megami no Cafe Terrace][06-09][1080p][JPTC]/[Nekomoe kissaten][Megami no Cafe Terrace][07][1080p][JPTC].mp4,[Nekomoe kissaten][Megami no Cafe Terrace][07][1080p][JPTC].mp4,368702767,2023-06-25T03:04:42,anime,1920x1080,h264,1437.128345,2052 +/mnt/Downloads/anime/[Nekomoe kissaten][Megami no Cafe Terrace][06-09][1080p][JPTC]/[Nekomoe kissaten][Megami no Cafe Terrace][09][1080p][JPTC].mp4,[Nekomoe kissaten][Megami no Cafe Terrace][09][1080p][JPTC].mp4,433643520,2023-06-25T03:04:42,anime,1920x1080,h264,1422.058345,2439 +/mnt/Downloads/anime/[Nekomoe kissaten][Megami no Cafe Terrace][06-09][1080p][JPTC]/[Nekomoe kissaten][Megami no Cafe Terrace][08][1080p][JPTC].mp4,[Nekomoe kissaten][Megami no Cafe Terrace][08][1080p][JPTC].mp4,391154981,2023-06-25T03:04:42,anime,1920x1080,h264,1422.105011,2200 +/mnt/Downloads/anime/[ANi] 盾之勇者成名錄 Season 4 - 07 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 盾之勇者成名錄 Season 4 - 07 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,535770230,2025-08-20T23:43:36,anime,1920x1080,h264,1420.117333,3018 +/mnt/Downloads/anime/[Nekomoe kissaten][Watanare][01][1080p][JPTC].mp4,[Nekomoe kissaten][Watanare][01][1080p][JPTC].mp4,483929190,2025-07-14T00:00:58,anime,1920x1080,h264,1420.085,2726 +"/mnt/Downloads/anime/[Eternal][Modaete yo, Adam-kun][03.5][GB][720P][Onair].mp4","[Eternal][Modaete yo, Adam-kun][03.5][GB][720P][Onair].mp4",41923648,2024-02-04T00:22:22,anime,1280x720,h264,210.24,1595 +/mnt/Downloads/anime/[ANi] Re:Monster - 11 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] Re:Monster - 11 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,434416874,2024-06-10T23:27:06,anime,1920x1080,h264,1420.064622,2447 +/mnt/Downloads/anime/Bastard.Heavy.Metal.Dark.Fantasy.S01.JAPANESE.1080p.NF.WEBRip.DDP2.0.x264-E.N.D[rartv]/Bastard.Heavy.Metal.Dark.Fantasy.S01E22.Conclusion.1080p.NF.WEB-DL.DUAL.DDP2.0.H.264-E.N.D.mkv,Bastard.Heavy.Metal.Dark.Fantasy.S01E22.Conclusion.1080p.NF.WEB-DL.DUAL.DDP2.0.H.264-E.N.D.mkv,627231736,2022-09-17T01:14:45,anime,1920x1080,h264,1502.112,3340 +/mnt/Downloads/anime/Bastard.Heavy.Metal.Dark.Fantasy.S01.JAPANESE.1080p.NF.WEBRip.DDP2.0.x264-E.N.D[rartv]/Bastard.Heavy.Metal.Dark.Fantasy.S01E07.The.Demon.Beast.1080p.NF.WEB-DL.DUAL.DDP2.0.H.264-E.N.D.mkv,Bastard.Heavy.Metal.Dark.Fantasy.S01E07.The.Demon.Beast.1080p.NF.WEB-DL.DUAL.DDP2.0.H.264-E.N.D.mkv,515687746,2022-09-17T01:13:30,anime,1920x1080,h264,1502.112,2746 +/mnt/Downloads/anime/Bastard.Heavy.Metal.Dark.Fantasy.S01.JAPANESE.1080p.NF.WEBRip.DDP2.0.x264-E.N.D[rartv]/Bastard.Heavy.Metal.Dark.Fantasy.S01E05.Showdown.1080p.NF.WEB-DL.DUAL.DDP2.0.H.264-E.N.D.mkv,Bastard.Heavy.Metal.Dark.Fantasy.S01E05.Showdown.1080p.NF.WEB-DL.DUAL.DDP2.0.H.264-E.N.D.mkv,581497987,2022-09-17T01:13:37,anime,1920x1080,h264,1500.064,3101 +/mnt/Downloads/anime/Bastard.Heavy.Metal.Dark.Fantasy.S01.JAPANESE.1080p.NF.WEBRip.DDP2.0.x264-E.N.D[rartv]/Bastard.Heavy.Metal.Dark.Fantasy.S01E17.Ring.1080p.NF.WEB-DL.DUAL.DDP2.0.H.264-E.N.D.mkv,Bastard.Heavy.Metal.Dark.Fantasy.S01E17.Ring.1080p.NF.WEB-DL.DUAL.DDP2.0.H.264-E.N.D.mkv,566576155,2022-09-17T01:14:42,anime,1920x1080,h264,1500.064,3021 +/mnt/Downloads/anime/Bastard.Heavy.Metal.Dark.Fantasy.S01.JAPANESE.1080p.NF.WEBRip.DDP2.0.x264-E.N.D[rartv]/Bastard.Heavy.Metal.Dark.Fantasy.S01E06.Destiny.1080p.NF.WEB-DL.DUAL.DDP2.0.H.264-E.N.D.mkv,Bastard.Heavy.Metal.Dark.Fantasy.S01E06.Destiny.1080p.NF.WEB-DL.DUAL.DDP2.0.H.264-E.N.D.mkv,513163595,2022-09-17T01:13:25,anime,1920x1080,h264,1504.032,2729 +/mnt/Downloads/anime/Bastard.Heavy.Metal.Dark.Fantasy.S01.JAPANESE.1080p.NF.WEBRip.DDP2.0.x264-E.N.D[rartv]/Bastard.Heavy.Metal.Dark.Fantasy.S01E19.Empress.of.Thunder.1080p.NF.WEB-DL.DUAL.DDP2.0.H.264-E.N.D.mkv,Bastard.Heavy.Metal.Dark.Fantasy.S01E19.Empress.of.Thunder.1080p.NF.WEB-DL.DUAL.DDP2.0.H.264-E.N.D.mkv,505061695,2022-09-17T01:14:58,anime,1920x1080,h264,1502.112,2689 +/mnt/Downloads/anime/Bastard.Heavy.Metal.Dark.Fantasy.S01.JAPANESE.1080p.NF.WEBRip.DDP2.0.x264-E.N.D[rartv]/Bastard.Heavy.Metal.Dark.Fantasy.S01E23.Annihilation.1080p.NF.WEB-DL.DUAL.DDP2.0.H.264-E.N.D.mkv,Bastard.Heavy.Metal.Dark.Fantasy.S01E23.Annihilation.1080p.NF.WEB-DL.DUAL.DDP2.0.H.264-E.N.D.mkv,620562384,2022-09-17T01:14:42,anime,1920x1080,h264,1506.08,3296 +/mnt/Downloads/anime/Bastard.Heavy.Metal.Dark.Fantasy.S01.JAPANESE.1080p.NF.WEBRip.DDP2.0.x264-E.N.D[rartv]/Bastard.Heavy.Metal.Dark.Fantasy.S01E08.The.Progenitor.1080p.NF.WEB-DL.DUAL.DDP2.0.H.264-E.N.D.mkv,Bastard.Heavy.Metal.Dark.Fantasy.S01E08.The.Progenitor.1080p.NF.WEB-DL.DUAL.DDP2.0.H.264-E.N.D.mkv,384397960,2022-09-17T01:13:16,anime,1920x1080,h264,1504.032,2044 +/mnt/Downloads/anime/Bastard.Heavy.Metal.Dark.Fantasy.S01.JAPANESE.1080p.NF.WEBRip.DDP2.0.x264-E.N.D[rartv]/Bastard.Heavy.Metal.Dark.Fantasy.S01E21.Fierce.Battle.1080p.NF.WEB-DL.DUAL.DDP2.0.H.264-E.N.D.mkv,Bastard.Heavy.Metal.Dark.Fantasy.S01E21.Fierce.Battle.1080p.NF.WEB-DL.DUAL.DDP2.0.H.264-E.N.D.mkv,615303865,2022-09-17T01:14:41,anime,1920x1080,h264,1502.112,3277 +/mnt/Downloads/anime/Bastard.Heavy.Metal.Dark.Fantasy.S01.JAPANESE.1080p.NF.WEBRip.DDP2.0.x264-E.N.D[rartv]/Bastard.Heavy.Metal.Dark.Fantasy.S01E15.Triumphant.Return.1080p.NF.WEB-DL.DUAL.DDP2.0.H.264-E.N.D.mkv,Bastard.Heavy.Metal.Dark.Fantasy.S01E15.Triumphant.Return.1080p.NF.WEB-DL.DUAL.DDP2.0.H.264-E.N.D.mkv,421330078,2022-09-17T01:14:41,anime,1920x1080,h264,1506.08,2238 +/mnt/Downloads/anime/Bastard.Heavy.Metal.Dark.Fantasy.S01.JAPANESE.1080p.NF.WEBRip.DDP2.0.x264-E.N.D[rartv]/Bastard.Heavy.Metal.Dark.Fantasy.S01E11.Prophecy.1080p.NF.WEB-DL.DUAL.DDP2.0.H.264-E.N.D.mkv,Bastard.Heavy.Metal.Dark.Fantasy.S01E11.Prophecy.1080p.NF.WEB-DL.DUAL.DDP2.0.H.264-E.N.D.mkv,444747894,2022-09-17T01:13:20,anime,1920x1080,h264,1502.112,2368 +/mnt/Downloads/anime/Bastard.Heavy.Metal.Dark.Fantasy.S01.JAPANESE.1080p.NF.WEBRip.DDP2.0.x264-E.N.D[rartv]/Bastard.Heavy.Metal.Dark.Fantasy.S01E09.Blue.Nail.1080p.NF.WEB-DL.DUAL.DDP2.0.H.264-E.N.D.mkv,Bastard.Heavy.Metal.Dark.Fantasy.S01E09.Blue.Nail.1080p.NF.WEB-DL.DUAL.DDP2.0.H.264-E.N.D.mkv,482535048,2022-09-17T01:13:13,anime,1920x1080,h264,1508.0,2559 +/mnt/Downloads/anime/Bastard.Heavy.Metal.Dark.Fantasy.S01.JAPANESE.1080p.NF.WEBRip.DDP2.0.x264-E.N.D[rartv]/Bastard.Heavy.Metal.Dark.Fantasy.S01E18.Secrets.of.the.Sword.1080p.NF.WEB-DL.DUAL.DDP2.0.H.264-E.N.D.mkv,Bastard.Heavy.Metal.Dark.Fantasy.S01E18.Secrets.of.the.Sword.1080p.NF.WEB-DL.DUAL.DDP2.0.H.264-E.N.D.mkv,447270196,2022-09-17T01:14:40,anime,1920x1080,h264,1502.112,2382 +/mnt/Downloads/anime/Bastard.Heavy.Metal.Dark.Fantasy.S01.JAPANESE.1080p.NF.WEBRip.DDP2.0.x264-E.N.D[rartv]/Bastard.Heavy.Metal.Dark.Fantasy.S01E03.Abduction.1080p.NF.WEB-DL.DUAL.DDP2.0.H.264-E.N.D.mkv,Bastard.Heavy.Metal.Dark.Fantasy.S01E03.Abduction.1080p.NF.WEB-DL.DUAL.DDP2.0.H.264-E.N.D.mkv,416911627,2022-09-17T01:14:40,anime,1920x1080,h264,1502.112,2220 +/mnt/Downloads/anime/Bastard.Heavy.Metal.Dark.Fantasy.S01.JAPANESE.1080p.NF.WEBRip.DDP2.0.x264-E.N.D[rartv]/Bastard.Heavy.Metal.Dark.Fantasy.S01E01.The.Arrival.1080p.NF.WEB-DL.DUAL.DDP2.0.H.264-E.N.D.mkv,Bastard.Heavy.Metal.Dark.Fantasy.S01E01.The.Arrival.1080p.NF.WEB-DL.DUAL.DDP2.0.H.264-E.N.D.mkv,506497140,2022-09-17T01:08:04,anime,1920x1080,h264,1506.08,2690 +/mnt/Downloads/anime/Bastard.Heavy.Metal.Dark.Fantasy.S01.JAPANESE.1080p.NF.WEBRip.DDP2.0.x264-E.N.D[rartv]/Bastard.Heavy.Metal.Dark.Fantasy.S01E20.Tyranny.1080p.NF.WEB-DL.DUAL.DDP2.0.H.264-E.N.D.mkv,Bastard.Heavy.Metal.Dark.Fantasy.S01E20.Tyranny.1080p.NF.WEB-DL.DUAL.DDP2.0.H.264-E.N.D.mkv,506318350,2022-09-17T01:14:42,anime,1920x1080,h264,1502.112,2696 +/mnt/Downloads/anime/Bastard.Heavy.Metal.Dark.Fantasy.S01.JAPANESE.1080p.NF.WEBRip.DDP2.0.x264-E.N.D[rartv]/Bastard.Heavy.Metal.Dark.Fantasy.S01E10.The.Goddess.of.Thunder.1080p.NF.WEB-DL.DUAL.DDP2.0.H.264-E.N.D.mkv,Bastard.Heavy.Metal.Dark.Fantasy.S01E10.The.Goddess.of.Thunder.1080p.NF.WEB-DL.DUAL.DDP2.0.H.264-E.N.D.mkv,523451698,2022-09-17T01:13:11,anime,1920x1080,h264,1502.112,2787 +/mnt/Downloads/anime/Bastard.Heavy.Metal.Dark.Fantasy.S01.JAPANESE.1080p.NF.WEBRip.DDP2.0.x264-E.N.D[rartv]/Bastard.Heavy.Metal.Dark.Fantasy.S01E24.End.1080p.NF.WEB-DL.DUAL.DDP2.0.H.264-E.N.D.mkv,Bastard.Heavy.Metal.Dark.Fantasy.S01E24.End.1080p.NF.WEB-DL.DUAL.DDP2.0.H.264-E.N.D.mkv,623170035,2022-09-17T01:14:39,anime,1920x1080,h264,1506.08,3310 +/mnt/Downloads/anime/Bastard.Heavy.Metal.Dark.Fantasy.S01.JAPANESE.1080p.NF.WEBRip.DDP2.0.x264-E.N.D[rartv]/Bastard.Heavy.Metal.Dark.Fantasy.S01E16.Incantation.1080p.NF.WEB-DL.DUAL.DDP2.0.H.264-E.N.D.mkv,Bastard.Heavy.Metal.Dark.Fantasy.S01E16.Incantation.1080p.NF.WEB-DL.DUAL.DDP2.0.H.264-E.N.D.mkv,482994723,2022-09-17T01:14:42,anime,1920x1080,h264,1508.0,2562 +/mnt/Downloads/anime/Bastard.Heavy.Metal.Dark.Fantasy.S01.JAPANESE.1080p.NF.WEBRip.DDP2.0.x264-E.N.D[rartv]/Bastard.Heavy.Metal.Dark.Fantasy.S01E12.Life.or.Death.1080p.NF.WEB-DL.DUAL.DDP2.0.H.264-E.N.D.mkv,Bastard.Heavy.Metal.Dark.Fantasy.S01E12.Life.or.Death.1080p.NF.WEB-DL.DUAL.DDP2.0.H.264-E.N.D.mkv,697666758,2022-09-17T01:13:19,anime,1920x1080,h264,1506.08,3705 +/mnt/Downloads/anime/Bastard.Heavy.Metal.Dark.Fantasy.S01.JAPANESE.1080p.NF.WEBRip.DDP2.0.x264-E.N.D[rartv]/Bastard.Heavy.Metal.Dark.Fantasy.S01E14.Moved.to.Tears.1080p.NF.WEB-DL.DUAL.DDP2.0.H.264-E.N.D.mkv,Bastard.Heavy.Metal.Dark.Fantasy.S01E14.Moved.to.Tears.1080p.NF.WEB-DL.DUAL.DDP2.0.H.264-E.N.D.mkv,465501464,2022-09-17T01:14:28,anime,1920x1080,h264,1506.08,2472 +/mnt/Downloads/anime/Bastard.Heavy.Metal.Dark.Fantasy.S01.JAPANESE.1080p.NF.WEBRip.DDP2.0.x264-E.N.D[rartv]/Bastard.Heavy.Metal.Dark.Fantasy.S01E13.Wavering.1080p.NF.WEB-DL.DUAL.DDP2.0.H.264-E.N.D.mkv,Bastard.Heavy.Metal.Dark.Fantasy.S01E13.Wavering.1080p.NF.WEB-DL.DUAL.DDP2.0.H.264-E.N.D.mkv,713164475,2022-09-17T01:13:18,anime,1920x1080,h264,1504.032,3793 +/mnt/Downloads/anime/Bastard.Heavy.Metal.Dark.Fantasy.S01.JAPANESE.1080p.NF.WEBRip.DDP2.0.x264-E.N.D[rartv]/Bastard.Heavy.Metal.Dark.Fantasy.S01E04.Invasion.1080p.NF.WEB-DL.DUAL.DDP2.0.H.264-E.N.D.mkv,Bastard.Heavy.Metal.Dark.Fantasy.S01E04.Invasion.1080p.NF.WEB-DL.DUAL.DDP2.0.H.264-E.N.D.mkv,454545499,2022-09-17T01:13:27,anime,1920x1080,h264,1502.112,2420 +/mnt/Downloads/anime/Bastard.Heavy.Metal.Dark.Fantasy.S01.JAPANESE.1080p.NF.WEBRip.DDP2.0.x264-E.N.D[rartv]/Bastard.Heavy.Metal.Dark.Fantasy.S01E02.Rampage.1080p.NF.WEB-DL.DUAL.DDP2.0.H.264-E.N.D.mkv,Bastard.Heavy.Metal.Dark.Fantasy.S01E02.Rampage.1080p.NF.WEB-DL.DUAL.DDP2.0.H.264-E.N.D.mkv,507577150,2022-09-17T01:14:21,anime,1920x1080,h264,1508.0,2692 +/mnt/Downloads/anime/[ANi] 我與尼特女忍者的莫名同居生活 - 06 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 我與尼特女忍者的莫名同居生活 - 06 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,365878791,2025-02-09T02:13:42,anime,1920x1080,h264,1442.090667,2029 +"/mnt/Downloads/anime/[Eternal][Modaete yo, Adam-kun][05][GB][720P][Uncensored].mp4","[Eternal][Modaete yo, Adam-kun][05][GB][720P][Uncensored].mp4",40896954,2024-03-03T23:58:42,anime,1280x720,h264,390.420317,838 +/mnt/Downloads/anime/[ANi] 身為暗殺者的我明顯比勇者還強 - 08 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 身為暗殺者的我明顯比勇者還強 - 08 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,494464616,2025-11-24T23:59:11,anime,1920x1080,h264,1430.032911,2766 +/mnt/Downloads/anime/[ANi] 秒殺外掛太強了,異世界的傢伙們根本就不是對手。 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 秒殺外掛太強了,異世界的傢伙們根本就不是對手。 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,634247717,2024-01-04T23:36:19,anime,1920x1080,h264,1419.9812,3573 +/mnt/Downloads/anime/[LoliHouse] Izure Saikyou no Renkinjutsushi - 12 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,[LoliHouse] Izure Saikyou no Renkinjutsushi - 12 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,560297015,2025-03-20T10:13:50,anime,1920x1080,hevc,1420.109,3156 +/mnt/Downloads/anime/[ANi] 我內心的糟糕念頭 第二季 - 13 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 我內心的糟糕念頭 第二季 - 13 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,322998923,2024-01-07T01:02:11,anime,1920x1080,h264,1383.082667,1868 +/mnt/Downloads/anime/[Nekomoe kissaten][Dungeon Meshi][14][1080p][JPTC].mp4,[Nekomoe kissaten][Dungeon Meshi][14][1080p][JPTC].mp4,370912120,2024-04-06T05:43:01,anime,1920x1080,h264,1440.0,2060 +/mnt/Downloads/anime/[ANi] 我獨自升級 第二季 -起於闇影- - 20 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 我獨自升級 第二季 -起於闇影- - 20 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,651064151,2025-02-23T00:28:09,anime,1920x1080,h264,1425.322667,3654 +/mnt/Downloads/anime/[ANi] 膽大黨 - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 膽大黨 - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,737803662,2024-10-11T00:36:54,anime,1920x1080,h264,1437.039911,4107 +/mnt/Downloads/anime/[ANi] 最近的偵探真沒用 - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 最近的偵探真沒用 - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,433440972,2025-07-08T23:26:18,anime,1920x1080,h264,1419.989333,2441 +/mnt/Downloads/anime/[ANi] 我獨自升級 - 07.5 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 我獨自升級 - 07.5 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,898506684,2024-02-25T00:56:14,anime,1920x1080,h264,1425.28,5043 +/mnt/Downloads/anime/[ANi] 歲月流逝飯菜依舊美味 - 05 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 歲月流逝飯菜依舊美味 - 05 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,500022423,2025-05-11T04:03:11,anime,1920x1080,h264,1445.056,2768 +/mnt/Downloads/anime/[HYSUB]Sono Bisque Doll wa Koi wo Suru[19][BIG5_MP4][1920X1080].mp4,[HYSUB]Sono Bisque Doll wa Koi wo Suru[19][BIG5_MP4][1920X1080].mp4,354968787,2025-08-16T23:54:11,anime,1920x1080,h264,1422.144,1996 +"/mnt/Downloads/anime/[LoliHouse] Tensei Kizoku, Kantei Skill de Nariagaru - 02 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv","[LoliHouse] Tensei Kizoku, Kantei Skill de Nariagaru - 02 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv",644193550,2024-04-18T02:08:41,anime,1920x1080,hevc,1420.063,3629 +/mnt/Downloads/anime/[Nekomoe kissaten][Tower of God S2][09][1080p][CHT].mp4,[Nekomoe kissaten][Tower of God S2][09][1080p][CHT].mp4,506933712,2024-09-18T15:09:33,anime,1920x1080,h264,1421.107664,2853 +/mnt/Downloads/anime/[ANi] 聽說你們要結婚!? - 05 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 聽說你們要結婚!? - 05 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,426631177,2024-10-31T23:49:05,anime,1920x1080,h264,1420.032,2403 +/mnt/Downloads/anime/[ANi] 我獨自升級 - 07 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 我獨自升級 - 07 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,858719592,2024-02-18T02:50:19,anime,1920x1080,h264,1425.237333,4820 +/mnt/Downloads/anime/[BeanSub&FZSD][BLEACH_Sennen_Kessen-hen][31][GB][1080P][x264_AAC].mp4,[BeanSub&FZSD][BLEACH_Sennen_Kessen-hen][31][GB][1080P][x264_AAC].mp4,623153070,2024-11-03T00:17:41,anime,1920x1080,h264,1493.034667,3338 +/mnt/Downloads/anime/[ANi] 怪獸 8 號 第二季 - 15 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 怪獸 8 號 第二季 - 15 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,809976323,2025-08-03T00:09:39,anime,1920x1080,h264,1420.074667,4563 +/mnt/Downloads/anime/[ANi] 香格里拉・開拓異境~糞作獵手挑戰神作~ 第二季 - 24 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 香格里拉・開拓異境~糞作獵手挑戰神作~ 第二季 - 24 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,922637889,2025-03-23T10:37:24,anime,1920x1080,h264,1422.066622,5190 +/mnt/Downloads/anime/[ANi] 香格里拉・開拓異境~糞作獵手挑戰神作~ - 15 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 香格里拉・開拓異境~糞作獵手挑戰神作~ - 15 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,696110472,2024-01-21T09:14:12,anime,1920x1080,h264,1488.299456,3741 +/mnt/Downloads/anime/[Skymoon-Raws] Shangri-La Frontier 2nd Season - 05 [ViuTV][WEB-DL][CHT][SRT][1080p][AVC AAC].mkv,[Skymoon-Raws] Shangri-La Frontier 2nd Season - 05 [ViuTV][WEB-DL][CHT][SRT][1080p][AVC AAC].mkv,595232880,2024-12-08T15:13:45,anime,1920x1080,h264,1430.388,3329 +/mnt/Downloads/anime/[Nekomoe kissaten][Dungeon Meshi][20][1080p][JPTC].mp4,[Nekomoe kissaten][Dungeon Meshi][20][1080p][JPTC].mp4,480853334,2024-05-19T07:24:01,anime,1920x1080,h264,1501.141333,2562 +/mnt/Downloads/anime/[LoliHouse] Shin Samurai-den YAIBA - 10 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,[LoliHouse] Shin Samurai-den YAIBA - 10 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,643558712,2025-06-08T01:01:16,anime,1920x1080,hevc,1430.021,3600 +/mnt/Downloads/anime/[LoliHouse] Fate strange Fake - 06 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,[LoliHouse] Fate strange Fake - 06 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,928169637,2026-02-08T23:40:07,anime,1920x1080,hevc,1420.062,5228 +/mnt/Downloads/anime/[ANi] 永遠的黃昏 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 永遠的黃昏 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,387832280,2025-10-03T00:06:04,anime,1920x1080,h264,1434.88,2162 +/mnt/Downloads/anime/[ANi] 忍者與殺手的兩人生活 - 11 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 忍者與殺手的兩人生活 - 11 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,298677852,2025-06-20T00:15:16,anime,1920x1080,h264,1420.032,1682 +/mnt/Downloads/anime/[ANi] 擁有超常技能的異世界流浪美食家 S2 - 21 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 擁有超常技能的異世界流浪美食家 S2 - 21 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,388495320,2025-12-03T00:23:13,anime,1920x1080,h264,1435.079622,2165 +/mnt/Downloads/anime/[ANi] 瞬間治癒卻被當成廢物踢出隊伍的天才治療師,改當無照治療師快樂過活 - 10 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 瞬間治癒卻被當成廢物踢出隊伍的天才治療師,改當無照治療師快樂過活 - 10 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,272817883,2025-06-05T23:49:01,anime,1920x1080,h264,1440.064,1515 +/mnt/Downloads/anime/[ANi] 貫徹輔助魔法支援弱小隊友的宮廷魔法師,慘遭驅逐後目標成為最強冒險者 - 03 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 貫徹輔助魔法支援弱小隊友的宮廷魔法師,慘遭驅逐後目標成為最強冒險者 - 03 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,516645457,2025-10-19T00:50:54,anime,1920x1080,h264,1416.981333,2916 +/mnt/Downloads/anime/[ANi] NUKITASHI 住在拔作島上的我該如何是好? [年齡限制版] - 07 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] NUKITASHI 住在拔作島上的我該如何是好? [年齡限制版] - 07 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,341459637,2025-08-30T00:22:04,anime,1920x1080,h264,1425.045333,1916 +/mnt/Downloads/anime/[Nekomoe kissaten&LoliHouse] Ishura - 07 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,[Nekomoe kissaten&LoliHouse] Ishura - 07 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv,418698325,2024-02-16T14:40:14,anime,1920x1080,hevc,1422.101,2355 +/mnt/Downloads/anime/[ANi] 魔都精兵的奴隸 第二季 - 03 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 魔都精兵的奴隸 第二季 - 03 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,402640923,2026-01-22T15:48:10,anime,1920x1080,h264,1422.150033,2264 +/mnt/Downloads/anime/[orion origin] Wind Breaker [01] [1080p] [H265 AAC] [CHT&JPN].mp4,[orion origin] Wind Breaker [01] [1080p] [H265 AAC] [CHT&JPN].mp4,461784898,2024-04-07T08:18:24,anime,1920x1080,hevc,1435.084989,2574 +/mnt/Downloads/anime/[ANi] 記憶縫線 YOUR FORMA - 07 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 記憶縫線 YOUR FORMA - 07 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,540734266,2025-05-15T00:40:23,anime,1920x1080,h264,1425.069622,3035 +/mnt/Downloads/anime/[Lilith-Raws] Kantei Skill - 10 [Baha][WebDL 1080p AVC AAC][CHT].mp4,[Lilith-Raws] Kantei Skill - 10 [Baha][WebDL 1080p AVC AAC][CHT].mp4,309869559,2024-06-09T23:56:51,anime,1920x1080,h264,1420.032,1745 +/mnt/Downloads/anime/[ANi] 勇氣爆發 BANG BRAVERN - 08 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 勇氣爆發 BANG BRAVERN - 08 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,620026592,2024-02-29T23:38:49,anime,1920x1080,h264,1420.117333,3492 +/mnt/Downloads/anime/[Lolihouse] Ghost in the Shell SAC_2045 Season2 [WebRip 1080p HEVC-10bit AAC EAC3]/[Lolihouse] Ghost in the Shell SAC_2045 Season2 - 08 [WebRip 1080p HEVC-10bit AAC EAC3 SRTx4].mkv,[Lolihouse] Ghost in the Shell SAC_2045 Season2 - 08 [WebRip 1080p HEVC-10bit AAC EAC3 SRTx4].mkv,1188465516,2022-05-30T00:02:24,anime,1920x1080,hevc,1526.016,6230 +/mnt/Downloads/anime/[Lolihouse] Ghost in the Shell SAC_2045 Season2 [WebRip 1080p HEVC-10bit AAC EAC3]/[Lolihouse] Ghost in the Shell SAC_2045 Season2 - 04 [WebRip 1080p HEVC-10bit AAC EAC3 SRTx4].mkv,[Lolihouse] Ghost in the Shell SAC_2045 Season2 - 04 [WebRip 1080p HEVC-10bit AAC EAC3 SRTx4].mkv,1315626745,2022-05-30T00:02:30,anime,1920x1080,hevc,1524.011,6906 +/mnt/Downloads/anime/[Lolihouse] Ghost in the Shell SAC_2045 Season2 [WebRip 1080p HEVC-10bit AAC EAC3]/[Lolihouse] Ghost in the Shell SAC_2045 Season2 - 01 [WebRip 1080p HEVC-10bit AAC EAC3 SRTx4].mkv,[Lolihouse] Ghost in the Shell SAC_2045 Season2 - 01 [WebRip 1080p HEVC-10bit AAC EAC3 SRTx4].mkv,1109226611,2022-05-30T00:02:24,anime,1920x1080,hevc,1526.017,5815 +/mnt/Downloads/anime/[Lolihouse] Ghost in the Shell SAC_2045 Season2 [WebRip 1080p HEVC-10bit AAC EAC3]/[Lolihouse] Ghost in the Shell SAC_2045 Season2 - 05 [WebRip 1080p HEVC-10bit AAC EAC3 SRTx4].mkv,[Lolihouse] Ghost in the Shell SAC_2045 Season2 - 05 [WebRip 1080p HEVC-10bit AAC EAC3 SRTx4].mkv,1364288155,2022-05-30T00:02:23,anime,1920x1080,hevc,1526.016,7152 +/mnt/Downloads/anime/[Lolihouse] Ghost in the Shell SAC_2045 Season2 [WebRip 1080p HEVC-10bit AAC EAC3]/[Lolihouse] Ghost in the Shell SAC_2045 Season2 - 12 [WebRip 1080p HEVC-10bit AAC EAC3 SRTx4].mkv,[Lolihouse] Ghost in the Shell SAC_2045 Season2 - 12 [WebRip 1080p HEVC-10bit AAC EAC3 SRTx4].mkv,1116993386,2022-05-30T00:02:22,anime,1920x1080,hevc,1712.214,5218 +/mnt/Downloads/anime/[Lolihouse] Ghost in the Shell SAC_2045 Season2 [WebRip 1080p HEVC-10bit AAC EAC3]/[Lolihouse] Ghost in the Shell SAC_2045 Season2 - 09 [WebRip 1080p HEVC-10bit AAC EAC3 SRTx4].mkv,[Lolihouse] Ghost in the Shell SAC_2045 Season2 - 09 [WebRip 1080p HEVC-10bit AAC EAC3 SRTx4].mkv,1109185878,2022-05-30T00:02:22,anime,1920x1080,hevc,1524.011,5822 +/mnt/Downloads/anime/[Lolihouse] Ghost in the Shell SAC_2045 Season2 [WebRip 1080p HEVC-10bit AAC EAC3]/[Lolihouse] Ghost in the Shell SAC_2045 Season2 - 03 [WebRip 1080p HEVC-10bit AAC EAC3 SRTx4].mkv,[Lolihouse] Ghost in the Shell SAC_2045 Season2 - 03 [WebRip 1080p HEVC-10bit AAC EAC3 SRTx4].mkv,1278823796,2022-05-30T00:02:25,anime,1920x1080,hevc,1526.017,6704 +/mnt/Downloads/anime/[Lolihouse] Ghost in the Shell SAC_2045 Season2 [WebRip 1080p HEVC-10bit AAC EAC3]/[Lolihouse] Ghost in the Shell SAC_2045 Season2 - 07 [WebRip 1080p HEVC-10bit AAC EAC3 SRTx4].mkv,[Lolihouse] Ghost in the Shell SAC_2045 Season2 - 07 [WebRip 1080p HEVC-10bit AAC EAC3 SRTx4].mkv,1173666142,2022-05-30T00:02:24,anime,1920x1080,hevc,1526.016,6152 +/mnt/Downloads/anime/[Lolihouse] Ghost in the Shell SAC_2045 Season2 [WebRip 1080p HEVC-10bit AAC EAC3]/[Lolihouse] Ghost in the Shell SAC_2045 Season2 - 10 [WebRip 1080p HEVC-10bit AAC EAC3 SRTx4].mkv,[Lolihouse] Ghost in the Shell SAC_2045 Season2 - 10 [WebRip 1080p HEVC-10bit AAC EAC3 SRTx4].mkv,887754310,2022-05-30T00:02:23,anime,1920x1080,hevc,1526.016,4653 +/mnt/Downloads/anime/[Lolihouse] Ghost in the Shell SAC_2045 Season2 [WebRip 1080p HEVC-10bit AAC EAC3]/[Lolihouse] Ghost in the Shell SAC_2045 Season2 - 11 [WebRip 1080p HEVC-10bit AAC EAC3 SRTx4].mkv,[Lolihouse] Ghost in the Shell SAC_2045 Season2 - 11 [WebRip 1080p HEVC-10bit AAC EAC3 SRTx4].mkv,962260735,2022-05-30T00:02:22,anime,1920x1080,hevc,1530.027,5031 +/mnt/Downloads/anime/[Lolihouse] Ghost in the Shell SAC_2045 Season2 [WebRip 1080p HEVC-10bit AAC EAC3]/[Lolihouse] Ghost in the Shell SAC_2045 Season2 - 02 [WebRip 1080p HEVC-10bit AAC EAC3 SRTx4].mkv,[Lolihouse] Ghost in the Shell SAC_2045 Season2 - 02 [WebRip 1080p HEVC-10bit AAC EAC3 SRTx4].mkv,1087216021,2022-05-30T00:02:31,anime,1920x1080,hevc,1526.016,5699 +/mnt/Downloads/anime/[Lolihouse] Ghost in the Shell SAC_2045 Season2 [WebRip 1080p HEVC-10bit AAC EAC3]/[Lolihouse] Ghost in the Shell SAC_2045 Season2 - 06 [WebRip 1080p HEVC-10bit AAC EAC3 SRTx4].mkv,[Lolihouse] Ghost in the Shell SAC_2045 Season2 - 06 [WebRip 1080p HEVC-10bit AAC EAC3 SRTx4].mkv,1499058243,2022-05-30T00:02:29,anime,1920x1080,hevc,1526.016,7858 +/mnt/Downloads/anime/[ANi] 無職轉生~到了異世界就拿出真本事 第二季 - 16 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 無職轉生~到了異世界就拿出真本事 第二季 - 16 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,693653641,2024-04-28T23:30:14,anime,1920x1080,h264,1420.064622,3907 +/mnt/Downloads/anime/[Dont be a simp] Ao no Hako - 25 [NF WebRip 1080p HEVC-10bit E-AC-3 Multi-Subs].mkv,[Dont be a simp] Ao no Hako - 25 [NF WebRip 1080p HEVC-10bit E-AC-3 Multi-Subs].mkv,380035519,2025-03-29T15:38:10,anime,1920x1080,hevc,1433.057,2121 +/mnt/Downloads/anime/[Nekomoe kissaten&LoliHouse] Dungeon Meshi - 04 [WebRip 1080p HEVC-10bit AAC EAC3 ASSx2].mkv,[Nekomoe kissaten&LoliHouse] Dungeon Meshi - 04 [WebRip 1080p HEVC-10bit AAC EAC3 ASSx2].mkv,745522363,2024-01-28T00:08:57,anime,1920x1080,hevc,1545.984,3857 +"/mnt/Downloads/anime/[Eternal][Modaete yo, Adam-kun][05][GB][720P][Premium].mp4","[Eternal][Modaete yo, Adam-kun][05][GB][720P][Premium].mp4",72946823,2024-02-14T09:18:51,anime,1280x720,h264,390.420317,1494 +/mnt/Downloads/anime/[ANi] LAZARUS 拉撒路 - 04 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] LAZARUS 拉撒路 - 04 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,756966012,2025-04-28T00:07:06,anime,1920x1080,h264,1440.064,4205 +/mnt/Downloads/anime/[ANi] 香格里拉・開拓異境~糞作獵手挑戰神作~ 第二季 - 03 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 香格里拉・開拓異境~糞作獵手挑戰神作~ 第二季 - 03 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,581439621,2024-10-27T09:07:11,anime,1920x1080,h264,1421.899789,3271 +/mnt/Downloads/anime/The.First.Slam.Dunk.2022.2160p.BluRay.DoVi.x265.10bit.Atmos.TrueHD7.1-WiKi/The.First.Slam.Dunk.2022.2160p.BluRay.DoVi.x265.10bit.Atmos.TrueHD7.1-WiKi.mkv,The.First.Slam.Dunk.2022.2160p.BluRay.DoVi.x265.10bit.Atmos.TrueHD7.1-WiKi.mkv,28456694463,2024-03-10T06:15:41,anime,3840x2160,hevc,7456.0,30532 +/mnt/Downloads/anime/[ANi] 刀劍神域外傳 Gun Gale Online II - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 刀劍神域外傳 Gun Gale Online II - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,522493961,2024-10-05T00:36:29,anime,1920x1080,h264,1425.088,2933 +/mnt/Downloads/anime/[Nekomoe kissaten][Ishura][02][1080p][JPSC].mp4,[Nekomoe kissaten][Ishura][02][1080p][JPSC].mp4,460764278,2024-01-28T02:29:07,anime,1920x1080,h264,1422.144,2591 +/mnt/Downloads/anime/[LoliHouse] Tensei Shitara Slime Datta Ken 3rd Season - 64 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,[LoliHouse] Tensei Shitara Slime Datta Ken 3rd Season - 64 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,408313081,2024-07-27T01:43:06,anime,1920x1080,hevc,1470.078,2221 +/mnt/Downloads/anime/[ANi] 遲早是最強的鍊金術師? - 07 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 遲早是最強的鍊金術師? - 07 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,307342780,2025-02-13T01:02:09,anime,1920x1080,h264,1420.032,1731 +/mnt/Downloads/anime/[KissSub][Dosanko Gal wa Namara Menkoi][09][1080P][GB][MP4].mp4,[KissSub][Dosanko Gal wa Namara Menkoi][09][1080P][GB][MP4].mp4,168065619,2024-03-08T11:03:27,anime,1920x1080,h264,1440.124354,933 +/mnt/Downloads/anime/[ANi] 殺手旅店 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 殺手旅店 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,373292349,2025-07-06T23:18:59,anime,1920x1080,h264,1414.912,2110 +/mnt/Downloads/anime/[ANi] Re:從零開始的異世界生活 第三季 - 15 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] Re:從零開始的異世界生活 第三季 - 15 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,358659760,2025-03-20T01:20:13,anime,1920x1080,h264,1420.022911,2020 +/mnt/Downloads/anime/[ANi] 治癒魔法的錯誤使用法 - 10 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 治癒魔法的錯誤使用法 - 10 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,641213493,2024-03-09T00:41:32,anime,1920x1080,h264,1420.064622,3612 +/mnt/Downloads/anime/[ANi] 群花綻放、彷如修羅 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 群花綻放、彷如修羅 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,306404635,2025-01-08T00:00:30,anime,1920x1080,h264,1380.032,1776 +/mnt/Downloads/anime/[ANi] 尋神的旅途 - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 尋神的旅途 - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,490665814,2024-10-15T09:34:05,anime,1920x1080,h264,1420.16,2764 +/mnt/Downloads/anime/[ANi] 香格里拉・開拓異境~糞作獵手挑戰神作~ 第二季 - 18 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 香格里拉・開拓異境~糞作獵手挑戰神作~ 第二季 - 18 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,543309529,2025-02-09T13:10:24,anime,1920x1080,h264,1422.024911,3056 +/mnt/Downloads/anime/[Nekomoe kissaten] Appare-Ranman! [BDRip]/[Nekomoe kissaten] Appare-Ranman! [04][BDRip 1080p HEVC-10bit FLAC].mkv,[Nekomoe kissaten] Appare-Ranman! [04][BDRip 1080p HEVC-10bit FLAC].mkv,1179936139,2021-05-16T09:55:03,anime,1920x1080,hevc,1422.046,6637 +/mnt/Downloads/anime/[Nekomoe kissaten] Appare-Ranman! [BDRip]/[Nekomoe kissaten] Appare-Ranman! [07][BDRip 1080p HEVC-10bit FLAC].mkv,[Nekomoe kissaten] Appare-Ranman! [07][BDRip 1080p HEVC-10bit FLAC].mkv,1054633258,2021-05-16T09:54:33,anime,1920x1080,hevc,1422.005,5933 +/mnt/Downloads/anime/[Nekomoe kissaten] Appare-Ranman! [BDRip]/[Nekomoe kissaten] Appare-Ranman! [02][BDRip 1080p HEVC-10bit FLAC].mkv,[Nekomoe kissaten] Appare-Ranman! [02][BDRip 1080p HEVC-10bit FLAC].mkv,1223683747,2021-05-16T09:54:15,anime,1920x1080,hevc,1422.005,6884 +/mnt/Downloads/anime/[Nekomoe kissaten] Appare-Ranman! [BDRip]/[Nekomoe kissaten] Appare-Ranman! [01][BDRip 1080p HEVC-10bit FLAC].mkv,[Nekomoe kissaten] Appare-Ranman! [01][BDRip 1080p HEVC-10bit FLAC].mkv,1191458270,2021-05-16T09:54:16,anime,1920x1080,hevc,1422.046,6702 +/mnt/Downloads/anime/[Nekomoe kissaten] Appare-Ranman! [BDRip]/[Nekomoe kissaten] Appare-Ranman! [08][BDRip 1080p HEVC-10bit FLAC].mkv,[Nekomoe kissaten] Appare-Ranman! [08][BDRip 1080p HEVC-10bit FLAC].mkv,1000828933,2021-05-16T09:52:50,anime,1920x1080,hevc,1422.046,5630 +/mnt/Downloads/anime/[Nekomoe kissaten] Appare-Ranman! [BDRip]/[Nekomoe kissaten] Appare-Ranman! [13][BDRip 1080p HEVC-10bit FLAC].mkv,[Nekomoe kissaten] Appare-Ranman! [13][BDRip 1080p HEVC-10bit FLAC].mkv,924970143,2021-05-16T09:54:02,anime,1920x1080,hevc,1422.005,5203 +/mnt/Downloads/anime/[Nekomoe kissaten] Appare-Ranman! [BDRip]/[Nekomoe kissaten] Appare-Ranman! [10][BDRip 1080p HEVC-10bit FLAC].mkv,[Nekomoe kissaten] Appare-Ranman! [10][BDRip 1080p HEVC-10bit FLAC].mkv,1226809312,2021-05-16T09:54:18,anime,1920x1080,hevc,1422.005,6901 +/mnt/Downloads/anime/[Nekomoe kissaten] Appare-Ranman! [BDRip]/SPs/[Nekomoe kissaten] Appare-Ranman! [BDCMs][BDRip 1080p HEVC-10bit FLAC].mkv,[Nekomoe kissaten] Appare-Ranman! [BDCMs][BDRip 1080p HEVC-10bit FLAC].mkv,38263228,2021-05-16T08:44:21,anime,1920x1080,hevc,33.035,9266 +/mnt/Downloads/anime/[Nekomoe kissaten] Appare-Ranman! [BDRip]/SPs/[Nekomoe kissaten] Appare-Ranman! [PV][03][BDRip 1080p HEVC-10bit FLAC].mkv,[Nekomoe kissaten] Appare-Ranman! [PV][03][BDRip 1080p HEVC-10bit FLAC].mkv,144316228,2021-05-16T08:44:13,anime,1920x1080,hevc,105.69,10923 +/mnt/Downloads/anime/[Nekomoe kissaten] Appare-Ranman! [BDRip]/SPs/[Nekomoe kissaten] Appare-Ranman! [TVCMs][BDRip 1080p HEVC-10bit FLAC].mkv,[Nekomoe kissaten] Appare-Ranman! [TVCMs][BDRip 1080p HEVC-10bit FLAC].mkv,31701439,2021-05-16T08:43:07,anime,1920x1080,hevc,32.032,7917 +/mnt/Downloads/anime/[Nekomoe kissaten] Appare-Ranman! [BDRip]/SPs/[Nekomoe kissaten] Appare-Ranman! [NCED][BDRip 1080p HEVC-10bit FLAC].mkv,[Nekomoe kissaten] Appare-Ranman! [NCED][BDRip 1080p HEVC-10bit FLAC].mkv,156502540,2021-05-16T08:43:07,anime,1920x1080,hevc,92.01,13607 +/mnt/Downloads/anime/[Nekomoe kissaten] Appare-Ranman! [BDRip]/SPs/[Nekomoe kissaten] Appare-Ranman! [NCOP][BDRip 1080p HEVC-10bit FLAC].mkv,[Nekomoe kissaten] Appare-Ranman! [NCOP][BDRip 1080p HEVC-10bit FLAC].mkv,205943942,2021-05-16T08:43:21,anime,1920x1080,hevc,92.01,17906 +/mnt/Downloads/anime/[Nekomoe kissaten] Appare-Ranman! [BDRip]/SPs/[Nekomoe kissaten] Appare-Ranman! [OST Making][BDRip 1080p HEVC-10bit FLAC].mkv,[Nekomoe kissaten] Appare-Ranman! [OST Making][BDRip 1080p HEVC-10bit FLAC].mkv,286711297,2021-05-16T08:44:37,anime,1920x1080,hevc,628.63,3648 +/mnt/Downloads/anime/[Nekomoe kissaten] Appare-Ranman! [BDRip]/SPs/[Nekomoe kissaten] Appare-Ranman! [PV][01][BDRip 1080p HEVC-10bit FLAC].mkv,[Nekomoe kissaten] Appare-Ranman! [PV][01][BDRip 1080p HEVC-10bit FLAC].mkv,169986885,2021-05-16T08:44:07,anime,1920x1080,hevc,96.805,14047 +/mnt/Downloads/anime/[Nekomoe kissaten] Appare-Ranman! [BDRip]/SPs/[Nekomoe kissaten] Appare-Ranman! [PV][02][BDRip 1080p HEVC-10bit FLAC].mkv,[Nekomoe kissaten] Appare-Ranman! [PV][02][BDRip 1080p HEVC-10bit FLAC].mkv,117986776,2021-05-16T08:44:02,anime,1920x1080,hevc,61.23,15415 +/mnt/Downloads/anime/[Nekomoe kissaten] Appare-Ranman! [BDRip]/[Nekomoe kissaten] Appare-Ranman! [06][BDRip 1080p HEVC-10bit FLAC].mkv,[Nekomoe kissaten] Appare-Ranman! [06][BDRip 1080p HEVC-10bit FLAC].mkv,1067668274,2021-05-16T09:54:15,anime,1920x1080,hevc,1422.005,6006 +/mnt/Downloads/anime/[Nekomoe kissaten] Appare-Ranman! [BDRip]/[Nekomoe kissaten] Appare-Ranman! [05][BDRip 1080p HEVC-10bit FLAC].mkv,[Nekomoe kissaten] Appare-Ranman! [05][BDRip 1080p HEVC-10bit FLAC].mkv,926041011,2021-05-16T09:54:24,anime,1920x1080,hevc,1421.962,5209 +/mnt/Downloads/anime/[Nekomoe kissaten] Appare-Ranman! [BDRip]/[Nekomoe kissaten] Appare-Ranman! [03][BDRip 1080p HEVC-10bit FLAC].mkv,[Nekomoe kissaten] Appare-Ranman! [03][BDRip 1080p HEVC-10bit FLAC].mkv,905822224,2021-05-16T09:54:48,anime,1920x1080,hevc,1422.005,5096 +/mnt/Downloads/anime/[Nekomoe kissaten] Appare-Ranman! [BDRip]/[Nekomoe kissaten] Appare-Ranman! [11][BDRip 1080p HEVC-10bit FLAC].mkv,[Nekomoe kissaten] Appare-Ranman! [11][BDRip 1080p HEVC-10bit FLAC].mkv,1094440017,2021-05-16T09:54:41,anime,1920x1080,hevc,1421.921,6157 +/mnt/Downloads/anime/[Nekomoe kissaten] Appare-Ranman! [BDRip]/[Nekomoe kissaten] Appare-Ranman! [09][BDRip 1080p HEVC-10bit FLAC].mkv,[Nekomoe kissaten] Appare-Ranman! [09][BDRip 1080p HEVC-10bit FLAC].mkv,1125524125,2021-05-16T09:54:53,anime,1920x1080,hevc,1422.005,6332 +/mnt/Downloads/anime/[Nekomoe kissaten] Appare-Ranman! [BDRip]/[Nekomoe kissaten] Appare-Ranman! [12][BDRip 1080p HEVC-10bit FLAC].mkv,[Nekomoe kissaten] Appare-Ranman! [12][BDRip 1080p HEVC-10bit FLAC].mkv,1016973774,2021-05-16T09:55:02,anime,1920x1080,hevc,1422.005,5721 +/mnt/Downloads/anime/[ANi] 怪獸 8 號 - 08 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 怪獸 8 號 - 08 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,732213385,2024-06-01T15:11:39,anime,1920x1080,h264,1419.989333,4125 +/mnt/Downloads/anime/[ANi] 終末起點 - 06 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 終末起點 - 06 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,312296171,2025-05-08T00:08:04,anime,1920x1080,h264,1370.067229,1823 +/mnt/Downloads/anime/[ANi] 一拳超人(第三季) - 25 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 一拳超人(第三季) - 25 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,399176225,2025-10-12T23:53:01,anime,1920x1080,h264,1440.960489,2216 +"/mnt/Downloads/anime/[LoliHouse] Kekkon suru tte, Hontou desu ka - 06 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv","[LoliHouse] Kekkon suru tte, Hontou desu ka - 06 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv",574575345,2024-11-08T12:06:06,anime,1920x1080,hevc,1420.016,3237 +/mnt/Downloads/anime/[ANi] 在地下城尋求邂逅是否搞錯了什麼 第五季 - 06 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 在地下城尋求邂逅是否搞錯了什麼 第五季 - 06 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,328725530,2024-11-07T14:07:20,anime,1920x1080,h264,1420.064622,1851 +/mnt/Downloads/others/STARS-993/hhd800.com@STARS-993.mp4,hhd800.com@STARS-993.mp4,4588474811,2024-02-14T17:32:44,other,1920x1080,h264,8837.781333,4153 +/mnt/Downloads/others/STARS-766/hhd800.com@STARS-766.mp4,hhd800.com@STARS-766.mp4,6653417159,2023-03-13T00:22:07,other,1920x1080,h264,8457.877333,6293 +/mnt/Downloads/others/SSIS-951/hhd800.com@SSIS-951.mp4,hhd800.com@SSIS-951.mp4,8258030598,2023-12-02T16:29:38,other,1920x1080,h264,10787.903991,6123 +/mnt/Downloads/others/YMDD-199.mp4,YMDD-199.mp4,10909764439,2022-11-29T18:28:22,other,1920x1080,h264,14542.293833,6001 +/mnt/Downloads/others/STARS-851/hhd800.com@STARS-851.mp4,hhd800.com@STARS-851.mp4,6657543416,2023-07-26T18:50:17,other,1920x1080,h264,8494.826667,6269 +/mnt/Downloads/others/DVAJ-633/hhd800.com@DVAJ-633.mp4,hhd800.com@DVAJ-633.mp4,5445605823,2023-11-19T09:14:49,other,1920x1080,h264,7307.3925,5961 +/mnt/Downloads/others/START-373/hhd800.com@START-373.mp4,hhd800.com@START-373.mp4,7184335226,2025-08-15T23:55:22,other,1920x1080,h264,9580.074833,5999 +/mnt/Downloads/others/PFES-005_uncensored/hhd800.com@PFES-005_uncensored.mp4,hhd800.com@PFES-005_uncensored.mp4,7516710629,2021-09-16T06:29:29,other,1920x1080,h264,8712.363167,6902 +/mnt/Downloads/others/KWBD-396/hhd800.com@KWBD-396.mp4,hhd800.com@KWBD-396.mp4,21661196513,2025-08-08T00:40:10,other,1920x1080,h264,28874.416604,6001 +/mnt/Downloads/others/JUL-834/hhd800.com@JUL-834.mp4,hhd800.com@JUL-834.mp4,5558121254,2022-02-26T01:40:59,other,1920x1080,h264,7172.3371,6199 +/mnt/Downloads/others/PRED-465/hhd800.com@PRED-465.mp4,hhd800.com@PRED-465.mp4,6554646736,2023-04-02T16:35:31,other,1920x1080,h264,7208.554667,7274 +/mnt/Downloads/others/MIDV-824-C_GG5/gg5.co@MIDV-824-C_GG5.mp4,gg5.co@MIDV-824-C_GG5.mp4,5923092744,2024-08-19T14:14:45,other,1920x1080,h264,7658.158158,6187 +/mnt/Downloads/others/c800.me@MXGS-910_nomask/hhd000.com_免翻_墙免费访问全球最大情_色网站P_ornhub_可看收费内容_MXGS-910.mp4,hhd000.com_免翻_墙免费访问全球最大情_色网站P_ornhub_可看收费内容_MXGS-910.mp4,5783686975,2023-05-16T10:45:03,other,1920x1080,h264,7426.391655,6230 +/mnt/Downloads/others/ADN-115_uncensored.mp4,ADN-115_uncensored.mp4,6954396681,2021-05-02T22:56:05,other,1920x1080,h264,6212.7333,8955 +/mnt/Downloads/others/START-194/hhd800.com@START-194.mp4,hhd800.com@START-194.mp4,4225862626,2025-01-01T00:32:33,other,1920x1080,h264,8143.104,4151 +/mnt/Downloads/others/STARS-817/hhd800.com@STARS-817.mp4,hhd800.com@STARS-817.mp4,6387074428,2023-04-14T00:39:08,other,1920x1080,h264,8174.4,6250 +/mnt/Downloads/others/IPZZ-708/hhd800.com@IPZZ-708.mp4,hhd800.com@IPZZ-708.mp4,6117492045,2025-12-21T00:07:24,other,1920x1080,h264,8162.219167,5995 +/mnt/Downloads/others/IPZZ-708/18+游戏大全(996gg.cc)-七龍珠H版-三國志H版-三國群淫傳等.mp4,18+游戏大全(996gg.cc)-七龍珠H版-三國志H版-三國群淫傳等.mp4,2001226,2025-12-20T15:25:55,other,2160x1080,h264,11.378005,1407 +/mnt/Downloads/others/STARS-918/hhd800.com@STARS-918.mp4,hhd800.com@STARS-918.mp4,5686321540,2023-10-12T07:31:06,other,1920x1080,h264,7242.069333,6281 +/mnt/Downloads/others/SSIS-532-C_X1080X/hhd800.com@SSIS-532-C_X1080X.mp4,hhd800.com@SSIS-532-C_X1080X.mp4,7136273805,2022-10-10T16:10:45,other,1920x1080,h264,9092.800833,6278 +/mnt/Downloads/others/STARS-703/hhd800.com@STARS-703.mp4,hhd800.com@STARS-703.mp4,5968306720,2022-09-18T00:53:50,other,1920x1080,h264,8126.549,5875 +/mnt/Downloads/others/FWAY-065/hhd800.com@FWAY-065.mp4,hhd800.com@FWAY-065.mp4,5685500844,2025-08-06T13:39:55,other,1920x1080,h264,6253.312167,7273 +/mnt/Downloads/others/SSIS-745-C_GG5/gg5.co@SSIS-745-C_GG5.mp4,gg5.co@SSIS-745-C_GG5.mp4,5549489121,2023-06-30T14:39:03,other,1920x1080,h264,7183.31665,6180 +/mnt/Downloads/others/EBWH-044-C_GG5/gg5.co@EBWH-044-C_GG5.mp4,gg5.co@EBWH-044-C_GG5.mp4,5590808602,2023-12-30T17:35:06,other,1920x1080,h264,7193.72706,6217 +/mnt/Downloads/others/STARS-729-C_X1080X/hhd800.com@STARS-729-C_X1080X.mp4,hhd800.com@STARS-729-C_X1080X.mp4,6506661996,2022-11-17T17:58:14,other,1920x1080,h264,8360.854167,6225 +/mnt/Downloads/others/PBD-460/hhd800.com@PBD-460.mp4,hhd800.com@PBD-460.mp4,10614574477,2024-03-01T21:59:13,other,1920x1080,h264,14152.079,6000 +/mnt/Downloads/others/EBWH-066-C_GG5/gg5.co@EBWH-066-C_GG5.mp4,gg5.co@EBWH-066-C_GG5.mp4,5871097411,2024-02-17T19:18:34,other,1920x1080,h264,7573.673674,6201 +/mnt/Downloads/others/MIDE-733.mp4,MIDE-733.mp4,5493970622,2025-01-18T23:56:54,other,1920x1080,h264,7103.753167,6187 +/mnt/Downloads/others/JUR-390ch/JUR-390ch.mp4,JUR-390ch.mp4,7011917043,2025-08-30T07:29:53,other,1920x1080,h264,9335.7655,6008 +/mnt/Downloads/others/SSIS-531/hhd800.com@SSIS-531.mp4,hhd800.com@SSIS-531.mp4,8246427964,2022-10-10T15:56:51,other,1920x1080,h264,9061.013333,7280 +/mnt/Downloads/others/STARS-796-C_GG5/gg5.co@STARS-796-C_GG5.mp4,gg5.co@STARS-796-C_GG5.mp4,5564705940,2024-01-22T23:07:48,other,1920x1080,h264,7194.137007,6188 +/mnt/Downloads/others/JUR-442/hhd800.com@JUR-442.mp4,hhd800.com@JUR-442.mp4,6787595289,2025-07-19T03:35:35,other,1920x1080,h264,7486.016167,7253 +/mnt/Downloads/others/IPZZ-729ch/IPZZ-729ch.mp4,IPZZ-729ch.mp4,5352640999,2025-12-21T08:40:52,other,1920x1080,h264,7126.613833,6008 +/mnt/Downloads/others/CAWD-658/hhd800.com@CAWD-658.mp4,hhd800.com@CAWD-658.mp4,6623865729,2024-07-16T00:27:22,other,1920x1080,h264,8840.0645,5994 +/mnt/Downloads/others/hdd600.com@KMHRS-023_UNCENSORED_LEAKED_NOWATERMARK.mp4,hdd600.com@KMHRS-023_UNCENSORED_LEAKED_NOWATERMARK.mp4,5787988121,2023-06-22T15:48:19,other,1920x1080,h264,8383.007967,5523 +/mnt/Downloads/others/SONE-785ch/SONE-785ch.mp4,SONE-785ch.mp4,5571717643,2025-08-06T10:18:57,other,1920x1080,h264,7418.304167,6008 +/mnt/Downloads/others/STARS-638/hhd800.com@STARS-638.mp4,hhd800.com@STARS-638.mp4,5509496808,2022-09-16T12:47:06,other,1920x1080,h264,8442.133333,5220 +/mnt/Downloads/movies/Land.of.Bad.2024.1080p.BluRay.x265.10bit.TrueHD5.1-WiKi/Land.of.Bad.2024.1080p.BluRay.x265.10bit.TrueHD5.1-WiKi.mkv,Land.of.Bad.2024.1080p.BluRay.x265.10bit.TrueHD5.1-WiKi.mkv,8503951568,2024-07-28T11:52:17,movie,1920x800,hevc,6817.408,9979 +/mnt/Downloads/movies/Hunt.2022.1080p.BluRay.x265.10bit.TrueHD5.1-WiKi/Hunt.2022.1080p.BluRay.x265.10bit.TrueHD5.1-WiKi.mkv,Hunt.2022.1080p.BluRay.x265.10bit.TrueHD5.1-WiKi.mkv,10707030343,2023-01-21T14:37:44,movie,1920x804,hevc,7523.008,11385 +/mnt/Downloads/movies/Your.Eyes.Tell.2020.720p.BluRay.x264-WiKi/Sample/Your.Eyes.Tell.2020.720p.BluRay.x264-WiKi.sample.mkv,Your.Eyes.Tell.2020.720p.BluRay.x264-WiKi.sample.mkv,57755187,2022-03-12T13:58:51,movie,1280x694,h264,65.893,7011 +/mnt/Downloads/movies/Your.Eyes.Tell.2020.720p.BluRay.x264-WiKi/Your.Eyes.Tell.2020.720p.BluRay.x264-WiKi.mkv,Your.Eyes.Tell.2020.720p.BluRay.x264-WiKi.mkv,4694810534,2022-03-12T13:59:33,movie,1280x694,h264,7378.4,5090 +/mnt/Downloads/movies/Wish.2020.1080p.BluRay.x264.DTS-WiKi/Sample/Wish.2020.1080p.BluRay.x264.DTS-WiKi.sample.mkv,Wish.2020.1080p.BluRay.x264.DTS-WiKi.sample.mkv,105017738,2021-05-04T13:55:26,movie,1920x804,h264,61.523,13655 +/mnt/Downloads/movies/Wish.2020.1080p.BluRay.x264.DTS-WiKi/Wish.2020.1080p.BluRay.x264.DTS-WiKi.mkv,Wish.2020.1080p.BluRay.x264.DTS-WiKi.mkv,9661350324,2021-05-04T14:07:40,movie,1920x804,h264,6500.502,11889 +/mnt/Downloads/movies/Amsterdam.2022.1080p.BluRay.x265.10bit.DTS-WiKi/Sample/Amsterdam.2022.1080p.BluRay.x265.10bit.DTS-WiKi.Sample.mkv,Amsterdam.2022.1080p.BluRay.x265.10bit.DTS-WiKi.Sample.mkv,171966154,2022-12-08T07:32:22,movie,1920x804,hevc,67.656,20334 +/mnt/Downloads/movies/Amsterdam.2022.1080p.BluRay.x265.10bit.DTS-WiKi/Amsterdam.2022.1080p.BluRay.x265.10bit.DTS-WiKi.mkv,Amsterdam.2022.1080p.BluRay.x265.10bit.DTS-WiKi.mkv,8629987692,2022-12-08T07:35:21,movie,1920x804,hevc,8054.891,8571 +/mnt/Downloads/movies/Legacy.Of.Lies.2020.1080p.BluRay.x264.DTS-PTH/Legacy.Of.Lies.2020.1080p.BluRay.x264.DTS-PTH.mkv,Legacy.Of.Lies.2020.1080p.BluRay.x264.DTS-PTH.mkv,8761015695,2021-08-08T04:37:39,movie,1920x800,h264,6098.101,11493 +/mnt/Downloads/movies/Food.Luck.2020.720p.BluRay.x264-WiKi/Sample/Food.Luck.2020.720p.BluRay.x264-WiKi.sample.mkv,Food.Luck.2020.720p.BluRay.x264-WiKi.sample.mkv,57303025,2021-05-13T06:53:00,movie,1280x690,h264,90.655,5056 +/mnt/Downloads/movies/Food.Luck.2020.720p.BluRay.x264-WiKi/Food.Luck.2020.720p.BluRay.x264-WiKi.mkv,Food.Luck.2020.720p.BluRay.x264-WiKi.mkv,4297386135,2021-05-13T06:53:01,movie,1280x690,h264,6294.304,5461 +/mnt/Downloads/movies/Next.Door.Neighbor.2020.720p.BluRay.x264-WiKi/Sample/Next.Door.Neighbor.2020.720p.BluRay.x264-WiKi.Sample.mkv,Next.Door.Neighbor.2020.720p.BluRay.x264-WiKi.Sample.mkv,93353172,2021-07-08T13:26:35,movie,1280x536,h264,65.428,11414 +/mnt/Downloads/movies/Next.Door.Neighbor.2020.720p.BluRay.x264-WiKi/Next.Door.Neighbor.2020.720p.BluRay.x264-WiKi.mkv,Next.Door.Neighbor.2020.720p.BluRay.x264-WiKi.mkv,6190903783,2021-07-08T13:32:18,movie,1280x536,h264,7797.824,6351 +/mnt/Downloads/movies/Offbeat.Cops.2022.1080p.BluRay.x265.10bit-WiKi/Offbeat.Cops.2022.1080p.BluRay.x265.10bit-WiKi.mkv,Offbeat.Cops.2022.1080p.BluRay.x265.10bit-WiKi.mkv,4688669372,2023-02-07T05:40:04,movie,1920x804,hevc,7140.16,5253 +/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,Bullet.Train.2022.2160p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi.mkv,29045389544,2023-03-29T13:57:32,movie,3840x1608,hevc,7591.585,30607 +/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,R.I.P.D.2013.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,108365190,2022-11-16T16:36:47,movie,1920x816,h264,65.115,13313 +/mnt/Downloads/movies/R.I.P.D.2013.1080p.BluRay.x264.DTS-WiKi/R.I.P.D.2013.1080p.BluRay.x264.DTS-WiKi.mkv,R.I.P.D.2013.1080p.BluRay.x264.DTS-WiKi.mkv,9395978742,2022-11-16T16:44:16,movie,1920x816,h264,5755.51,13060 +/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,Fast.X.2023.1080p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi.mkv,12420931973,2023-08-03T12:30:19,movie,1920x804,hevc,8450.464,11758 +/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,The.Fall.Guy.2024.1080p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi.mkv,10684473396,2024-07-15T15:14:19,movie,1920x804,hevc,7582.912,11272 +/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,Shaolin.Soccer.2001.BluRay.1080p.x265.10bit.2Audio.MNHD-FRDS.mkv,6538069858,2021-02-17T16:37:49,movie,1920x1080,hevc,6596.347,7929 +/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,The.Mermaid.2016.BluRay.1080p.x265.10bit.2Audio.MNHD-FRDS.mkv,6563991622,2021-02-17T16:35:34,movie,1920x1012,hevc,5625.787,9334 +/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,Justice.My.Foot.1992.BluRay.1080p.x265.10bit.2Audio.MNHD-FRDS.mkv,4278962833,2021-05-13T00:04:48,movie,1920x1034,hevc,5961.408,5742 +/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,The.Mad.Monk.1993.BluRay.1080p.x265.10bit.2Audio.MNHD-FRDS.mkv,5498179115,2021-02-17T16:34:14,movie,1920x1036,hevc,5329.6,8253 +/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,Royal.Tramp.1992.BluRay.1080p.x265.10bit.2Audio.MNHD-FRDS.mkv,6777496659,2021-02-17T16:35:33,movie,1920x1022,hevc,6606.892,8206 +/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,Kung.Fu.Hustle.2004.BluRay.1080p.x265.10bit.2Audio.MNHD-FRDS.mkv,4907368950,2021-02-17T16:37:49,movie,1920x800,hevc,5966.016,6580 +/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,Legend.of.the.Dragon.1990.BluRay.1080p.x265.10bit.2Audio.MNHD-FRDS.mkv,4365238086,2021-02-17T16:35:03,movie,1920x1024,hevc,5733.603,6090 +/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,Fight.Back.to.School.2.1992.BluRay.1080p.x265.10bit.2Audio.MNHD-FRDS.mkv,6906736700,2021-02-17T16:36:39,movie,1920x1080,hevc,5908.16,9352 +/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,A.Chinese.Odyssey.Part.1.1995.BluRay.1080p.x265.10bit.2Audio.MNHD-FRDS.mkv,5142326994,2021-02-17T16:36:10,movie,1920x1080,hevc,5295.584,7768 +/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,CJ7.2008.BluRay.1080p.x265.10bit.2Audio.MNHD-FRDS.mkv,6224189909,2021-02-17T16:33:24,movie,1920x800,hevc,5301.338,9392 +/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,All's.Well.End's.Well.1992.Extended.BluRay.1080p.x265.10bit.2Audio.MNHD-FRDS.mkv,5128941033,2021-05-13T00:04:49,movie,1920x1080,hevc,6372.544,6438 +/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,Sixty.Million.Dollar.Man.1995.BluRay.1080p.x265.10bit.2Audio.MNHD-FRDS.mkv,5632330104,2021-02-17T16:35:55,movie,1920x1080,hevc,5423.959,8307 +/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,Journey.to.the.West.The.Demons.Strike.Back.2017.BluRay.1080p.x265.10bit.2Audio.MNHD-FRDS.mkv,13047776001,2021-02-17T16:36:15,movie,1920x1038,hevc,6508.928,16036 +/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,When.Fortune.Smiles.1990.BluRay.1080p.x265.10bit.2Audio.MNHD-FRDS.mkv,6065640154,2021-02-17T16:35:50,movie,1920x1036,hevc,5694.23,8521 +/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,Final.Justice.1988.BluRay.1080p.x265.10bit.2Audio.MNHD-FRDS.mkv,6370730846,2021-02-17T16:30:19,movie,1920x1040,hevc,5876.0,8673 +/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,Tricky.Brains.1991.BluRay.1080p.x265.10bit.2Audio.MNHD-FRDS.mkv,3565893814,2021-02-17T16:35:57,movie,1920x1080,hevc,6452.709,4420 +/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,Hail.the.Judge.1994.BluRay.1080p.x265.10bit.2Audio.MNHD-FRDS.mkv,7675926246,2021-02-17T16:36:01,movie,1920x1080,hevc,6404.125,9588 +/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,Look.Out.Officer.1990.BluRay.1080p.x265.10bit.2Audio.MNHD-FRDS.mkv,5011302392,2021-02-17T16:35:11,movie,1920x1032,hevc,5525.024,7256 +/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,Fight.Back.to.School.1991.BluRay.1080p.x265.10bit.2Audio.MNHD-FRDS.mkv,6017261017,2021-02-17T16:36:23,movie,1920x1080,hevc,6058.917,7944 +/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,A.Chinese.Odyssey.Part.2.1995.BluRay.1080p.x265.10bit.2Audio.MNHD-FRDS.mkv,4471655772,2021-02-17T16:36:04,movie,1920x1080,hevc,5984.084,5978 +/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 +/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,God.of.Gamblers.III.Back.to.Shanghai.1991.BluRay.1080p.x265.10bit.2Audio.MNHD-FRDS.mkv,5779929684,2021-02-17T16:36:21,movie,1920x1080,hevc,6994.334,6610 +/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,Fight.Back.to.School.3.1993.BluRay.1080p.x265.10bit.2Audio.MNHD-FRDS.mkv,6722618341,2021-02-17T16:36:11,movie,1920x1080,hevc,5379.875,9996 +/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,Gorgeous.UNCUT.1999.BluRay.1080p.x265.10bit.2Audio.MNHD-FRDS.mkv,6261551579,2021-02-17T16:36:52,movie,1920x812,hevc,7191.04,6965 +/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,From.Beijing.with.Love.1994.BluRay.1080p.x265.10bit.2Audio.MNHD-FRDS.mkv,5202663344,2021-02-17T16:37:46,movie,1920x1080,hevc,5018.084,8294 +/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,Love.on.Delivery.1994.BluRay.1080p.x265.10bit.2Audio.MNHD-FRDS.mkv,4442913262,2021-02-17T16:35:51,movie,1920x1034,hevc,5821.888,6105 +/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,Out.of.the.Dark.1995.BluRay.1080p.x265.10bit.2Audio.MNHD-FRDS.mkv,4506049998,2021-02-17T16:26:55,movie,1920x1024,hevc,4966.688,7258 +/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,Kingdom.2.Far.and.Away.2022.1080p.BluRay.x265.10bit-WiKi.mkv,5862235279,2023-01-05T01:02:23,movie,1920x804,hevc,8000.0,5862 +/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,Kingdom.2.Far.and.Away.2022.1080p.BluRay.x265.10bit-WiKi.sample.mkv,54181602,2023-01-05T01:01:57,movie,1920x804,hevc,44.631,9711 +/mnt/Downloads/movies/Exit.2019.720p.BluRay.x264-WiKi/Sample/Exit.2019.720p.BluRay.x264-WiKi.Sample.mkv,Exit.2019.720p.BluRay.x264-WiKi.Sample.mkv,110434859,2020-03-27T12:44:30,movie,1280x536,h264,110.558,7991 +/mnt/Downloads/movies/Exit.2019.720p.BluRay.x264-WiKi/Exit.2019.720p.BluRay.x264-WiKi.mkv,Exit.2019.720p.BluRay.x264-WiKi.mkv,5527821949,2020-03-27T12:49:52,movie,1280x536,h264,6218.4,7111 +/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,Fantastic.Beasts.and.Where.to.Find.Them.2016.BluRay.1080p.x265.10bit.HDR10.2Audio.MNHD-FRDS.mkv,4249351369,2022-01-23T11:02:20,movie,1920x800,hevc,7972.352,4264 +/mnt/Downloads/movies/Fallen.1998.1080p.BluRay.x264.DTS-WiKi/Fallen.1998.1080p.BluRay.x264.DTS-WiKi.mkv,Fallen.1998.1080p.BluRay.x264.DTS-WiKi.mkv,14951931154,2020-11-02T15:33:14,movie,1920x800,h264,7451.423,16052 +/mnt/Downloads/movies/Fallen.1998.1080p.BluRay.x264.DTS-WiKi/Sample/Fallen.1998.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,Fallen.1998.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,104890381,2020-11-02T15:33:08,movie,1920x800,h264,50.079,16755 +/mnt/Downloads/movies/Knives.Out.2019.1080p.BluRay.x264-WiKi/Knives.Out.2019.1080p.BluRay.x264-WiKi.mkv,Knives.Out.2019.1080p.BluRay.x264-WiKi.mkv,15702235931,2022-12-29T00:32:43,movie,1920x1036,h264,7813.888,16076 +/mnt/Downloads/movies/Knives.Out.2019.1080p.BluRay.x264-WiKi/Sample/Knives.Out.2019.1080p.BluRay.x264-WiKi.Sample.mkv,Knives.Out.2019.1080p.BluRay.x264-WiKi.Sample.mkv,125638086,2022-12-29T00:32:16,movie,1920x1036,h264,62.712,16027 +/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,Kaguya-sama.Love.Is.War.2019.1080p.BluRay.x264.DTS-WiKi.mkv,10387064479,2020-10-02T13:49:15,movie,1920x1040,h264,6734.478,12338 +/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,Kaguya-sama.Love.Is.War.2019.1080p.BluRay.x264.DTS-WiKi.sample.mkv,105369749,2020-10-02T13:40:21,movie,1920x1040,h264,49.97,16869 +/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,Bad.Boys.Ride.or.Die.2024.1080p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi.mkv,10703518970,2024-09-13T03:48:03,movie,1920x804,hevc,6958.976,12304 +/mnt/Downloads/movies/Happy.End.1999.1080p.BluRay.x265.10bit.DTS-WiKi/Sample/Happy.End.1999.1080p.BluRay.x265.10bit.DTS-WiKi.Sample.mkv,Happy.End.1999.1080p.BluRay.x265.10bit.DTS-WiKi.Sample.mkv,87685249,2022-07-30T03:37:15,movie,1920x1080,hevc,62.478,11227 +/mnt/Downloads/movies/Happy.End.1999.1080p.BluRay.x265.10bit.DTS-WiKi/Happy.End.1999.1080p.BluRay.x265.10bit.DTS-WiKi.mkv,Happy.End.1999.1080p.BluRay.x265.10bit.DTS-WiKi.mkv,8493398766,2022-07-30T03:42:35,movie,1920x1080,hevc,5983.232,11356 +/mnt/Downloads/movies/Signal.The.Movie.2021.1080p.BluRay.x264.DTS-WiKi/Sample/Signal.The.Movie.2021.1080p.BluRay.x264.DTS-WiKi.sample.mkv,Signal.The.Movie.2021.1080p.BluRay.x264.DTS-WiKi.sample.mkv,118188291,2021-10-17T11:54:59,movie,1920x1038,h264,67.993,13905 +/mnt/Downloads/movies/Signal.The.Movie.2021.1080p.BluRay.x264.DTS-WiKi/Signal.The.Movie.2021.1080p.BluRay.x264.DTS-WiKi.mkv,Signal.The.Movie.2021.1080p.BluRay.x264.DTS-WiKi.mkv,10459862100,2021-10-17T12:11:03,movie,1920x1038,h264,7306.752,11452 +/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,1778.Stories.of.Me.and.My.Wife.2011.1080p.BluRay.x264-WiKi.sample.mkv,106629405,2020-09-29T11:47:07,movie,1920x1080,h264,49.635,17186 +/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,1778.Stories.of.Me.and.My.Wife.2011.1080p.BluRay.x264-WiKi.mkv,14489628540,2020-09-29T12:03:03,movie,1920x1080,h264,8406.432,13789 +/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,The.Lord.of.the.Rings.The.War.of.the.Rohirrim.2024.1080p.BluRay.x265.10bit-WiKi.mkv,11203313864,2025-02-18T07:25:59,movie,1920x800,hevc,8056.424,11124 +/mnt/Downloads/movies/AI.Amok.2020.720p.BluRay.x264-WiKi/Sample/AI.Amok.2020.720p.BluRay.x264-WiKi.sample.mkv,AI.Amok.2020.720p.BluRay.x264-WiKi.sample.mkv,60675268,2020-05-31T08:39:10,movie,1280x538,h264,76.852,6316 +/mnt/Downloads/movies/AI.Amok.2020.720p.BluRay.x264-WiKi/AI.Amok.2020.720p.BluRay.x264-WiKi.mkv,AI.Amok.2020.720p.BluRay.x264-WiKi.mkv,5862877692,2020-05-31T08:49:23,movie,1280x538,h264,7875.392,5955 +/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,P.S.I.Love.You.2007.1080p.BluRay.x265.10bit.DTS-ADE.mkv,9484317007,2023-10-18T16:29:35,movie,1920x1040,hevc,7546.005,10054 +/mnt/Downloads/movies/The.Call.2020.Netflix.WEB-DL.1080p.x264.DDP-AREY.mkv,The.Call.2020.Netflix.WEB-DL.1080p.x264.DDP-AREY.mkv,5397751447,2020-12-08T10:44:56,movie,1920x1080,h264,6737.312,6409 +/mnt/Downloads/movies/Ambulance.2022.1080p.BluRay.x265.10bit-WiKi/Sample/Ambulance.2022.1080p.BluRay.x265.10bit-WiKi.Sample.mkv,Ambulance.2022.1080p.BluRay.x265.10bit-WiKi.Sample.mkv,58086522,2022-06-03T12:10:10,movie,1920x800,hevc,66.8,6956 +/mnt/Downloads/movies/Ambulance.2022.1080p.BluRay.x265.10bit-WiKi/Ambulance.2022.1080p.BluRay.x265.10bit-WiKi.mkv,Ambulance.2022.1080p.BluRay.x265.10bit-WiKi.mkv,6882900054,2022-06-03T12:15:25,movie,1920x800,hevc,8180.192,6731 +/mnt/Downloads/movies/Strange.World.2022.1080p.BluRay.x265.10bit.DTS-WiKi/Strange.World.2022.1080p.BluRay.x265.10bit.DTS-WiKi.mkv,Strange.World.2022.1080p.BluRay.x265.10bit.DTS-WiKi.mkv,7550718931,2023-02-10T12:04:52,movie,1920x804,hevc,6105.683,9893 +/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,Memoir.of.a.Snail.2024.2160p.BluRay.x265.10bit.DTS-WiKi.mkv,18426769663,2025-10-16T05:19:24,movie,3840x2076,hevc,5676.939,25967 +/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,Boy.Kills.World.2023.1080p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi.mkv,9838075777,2025-01-02T09:05:30,movie,1920x804,hevc,6658.72,11819 +/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,Rebel.Ridge.2024.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-ADWeb.mkv,5397238873,2025-01-09T05:42:47,movie,1920x1080,h264,7899.712,5465 +/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,Everything.Everywhere.All.At.Once.2022.1080p.WEB-DL.DDP5.1.H.264-EVO.mkv,6877949518,2022-05-18T10:59:55,movie,1920x1080,h264,8359.104,6582 +/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,The.Pig.the.Snake.and.the.Pigeon.2023.1080p.NF.WEB-DL.DDP5.1.H264-HHWEB.mkv,6803985144,2024-03-01T15:50:56,movie,1920x1080,h264,8040.992,6769 +/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,The.Wings.of.the.Kirin.2012.1080p.BluRay.x264.DTS-WiKi.mkv,11806129395,2025-04-01T08:37:37,movie,1920x1036,h264,7773.771,12149 +/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,The.Wings.of.the.Kirin.2012.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,94839952,2025-04-01T08:34:26,movie,1920x1036,h264,60.529,12534 +/mnt/Downloads/movies/Flowers.2010.1080p.BluRay.x264-WiKi/Sample/Flowers.2010.1080p.BluRay.x264-WiKi.sample.mkv,Flowers.2010.1080p.BluRay.x264-WiKi.sample.mkv,115833919,2020-09-30T12:28:34,movie,1920x1038,h264,45.962,20161 +/mnt/Downloads/movies/Flowers.2010.1080p.BluRay.x264-WiKi/Flowers.2010.1080p.BluRay.x264-WiKi.mkv,Flowers.2010.1080p.BluRay.x264-WiKi.mkv,14974330142,2020-09-30T12:34:42,movie,1920x1038,h264,6556.224,18271 +/mnt/Downloads/movies/Ticket.to.Paradise.2022.1080p.BluRay.x264.DTS-WiKi/Ticket.to.Paradise.2022.1080p.BluRay.x264.DTS-WiKi.mkv,Ticket.to.Paradise.2022.1080p.BluRay.x264.DTS-WiKi.mkv,11547134172,2022-12-08T10:49:13,movie,1920x804,h264,6241.238,14801 +/mnt/Downloads/movies/Ticket.to.Paradise.2022.1080p.BluRay.x264.DTS-WiKi/Sample/Ticket.to.Paradise.2022.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,Ticket.to.Paradise.2022.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,218636306,2022-12-08T10:48:39,movie,1920x804,h264,61.847,28280 +/mnt/Downloads/movies/Young.Woman.and.the.Sea.2024.2160p.DSNP.WEB-DL.DDP5.1.Atmos.DV.HDR.H.265-FLUX.mkv,Young.Woman.and.the.Sea.2024.2160p.DSNP.WEB-DL.DDP5.1.Atmos.DV.HDR.H.265-FLUX.mkv,13342795164,2024-10-06T12:05:04,movie,3840x2160,hevc,7737.167,13796 +/mnt/Downloads/movies/Feel 100% 1996 NF WEB-DL 1080p H.264 AAC & DD 2.0 3Audios-Dave.mkv,Feel 100% 1996 NF WEB-DL 1080p H.264 AAC & DD 2.0 3Audios-Dave.mkv,1910568777,2021-03-27T12:28:35,movie,1920x1080,h264,5819.819,2626 +/mnt/Downloads/movies/Shock.Wave.2.2020.720p.BluRay.x264-WiKi/Shock.Wave.2.2020.720p.BluRay.x264-WiKi.mkv,Shock.Wave.2.2020.720p.BluRay.x264-WiKi.mkv,6297863827,2021-06-04T12:00:41,movie,1280x536,h264,7219.776,6978 +/mnt/Downloads/movies/Shock.Wave.2.2020.720p.BluRay.x264-WiKi/Sample/Shock.Wave.2.2020.720p.BluRay.x264-WiKi.Sample.mkv,Shock.Wave.2.2020.720p.BluRay.x264-WiKi.Sample.mkv,92572651,2021-06-04T11:54:33,movie,1280x536,h264,66.458,11143 +/mnt/Downloads/movies/The.First.Gentleman.2021.720p.BluRay.x264-WiKi/Sample/The.First.Gentleman.2021.720p.BluRay.x264-WiKi.sample.mkv,The.First.Gentleman.2021.720p.BluRay.x264-WiKi.sample.mkv,54562993,2022-03-03T10:27:29,movie,1280x536,h264,78.887,5533 +/mnt/Downloads/movies/The.First.Gentleman.2021.720p.BluRay.x264-WiKi/The.First.Gentleman.2021.720p.BluRay.x264-WiKi.mkv,The.First.Gentleman.2021.720p.BluRay.x264-WiKi.mkv,4690212034,2022-03-03T10:27:34,movie,1280x536,h264,7290.624,5146 +/mnt/Downloads/movies/Air.2023.1080p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi/Air.2023.1080p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi.mkv,Air.2023.1080p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi.mkv,8972432123,2023-09-14T11:59:11,movie,1920x1036,hevc,6699.488,10714 +/mnt/Downloads/movies/One.Summer.Story.2020.720p.BluRay.x264.DTS-WiKi/Sample/One.Summer.Story.2020.720p.BluRay.x264.DTS-WiKi.sample.mkv,One.Summer.Story.2020.720p.BluRay.x264.DTS-WiKi.sample.mkv,57992313,2022-04-14T04:22:21,movie,1280x692,h264,59.107,7849 +/mnt/Downloads/movies/One.Summer.Story.2020.720p.BluRay.x264.DTS-WiKi/One.Summer.Story.2020.720p.BluRay.x264.DTS-WiKi.mkv,One.Summer.Story.2020.720p.BluRay.x264.DTS-WiKi.mkv,5877429852,2022-04-14T04:27:55,movie,1280x692,h264,8331.616,5643 +/mnt/Downloads/movies/The.Card.Counter.2021.720p.BluRay.x264-WiKi/Sample/The.Card.Counter.2021.720p.BluRay.x264-WiKi.Sample.mkv,The.Card.Counter.2021.720p.BluRay.x264-WiKi.Sample.mkv,59816562,2021-12-16T12:09:47,movie,1200x720,h264,60.585,7898 +/mnt/Downloads/movies/The.Card.Counter.2021.720p.BluRay.x264-WiKi/The.Card.Counter.2021.720p.BluRay.x264-WiKi.mkv,The.Card.Counter.2021.720p.BluRay.x264-WiKi.mkv,5870417715,2021-12-16T12:14:28,movie,1200x720,h264,6689.632,7020 +/mnt/Downloads/movies/Top.Gun.Maverick.2022.1080p.WEB-DL.AAC5.1.H.264-tG1R0.mkv,Top.Gun.Maverick.2022.1080p.WEB-DL.AAC5.1.H.264-tG1R0.mkv,8003091219,2022-08-17T12:16:00,movie,1920x1080,h264,7814.571,8192 +/mnt/Downloads/movies/Strays.2023.Unrated.1080p.BluRay.x265.10bit.DTS-WiKi/Strays.2023.Unrated.1080p.BluRay.x265.10bit.DTS-WiKi.mkv,Strays.2023.Unrated.1080p.BluRay.x265.10bit.DTS-WiKi.mkv,6495249439,2023-10-18T15:30:37,movie,1920x1036,hevc,5586.581,9301 +/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,[DBD-Raws][4K_HDR][蝙蝠侠:黑暗骑士][IMAX版][2160P][BDRip][HEVC-10bit][FLAC].mkv,12094063453,2023-02-13T15:54:22,movie,3840x2160,hevc,9132.256,10594 +/mnt/Downloads/movies/The.Mauritanian.2021.1080p.BluRay.x264.DTS-WiKi/Sample/The.Mauritanian.2021.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,The.Mauritanian.2021.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,128961095,2021-05-04T14:00:59,movie,1920x802,h264,60.144,17153 +/mnt/Downloads/movies/The.Mauritanian.2021.1080p.BluRay.x264.DTS-WiKi/The.Mauritanian.2021.1080p.BluRay.x264.DTS-WiKi.mkv,The.Mauritanian.2021.1080p.BluRay.x264.DTS-WiKi.mkv,14988584826,2021-05-04T14:10:23,movie,1920x802,h264,7783.861,15404 +/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,Emilia.Perez.2024.1080p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi.mkv,13215130604,2024-12-31T11:23:59,movie,1920x804,hevc,7923.008,13343 +/mnt/Downloads/movies/Uncut.Gems.2019.REPACK.720p.BluRay.x264-WiKi/Uncut.Gems.2019.REPACK.720p.BluRay.x264-WiKi.mkv,Uncut.Gems.2019.REPACK.720p.BluRay.x264-WiKi.mkv,8688330638,2020-03-15T06:06:19,movie,1280x536,h264,8108.192,8572 +/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,F1.The.Movie.2025.2160p.BluRay.DoVi.x265.10bit.Atmos.TrueHD7.1-WiKi.mkv,39199316150,2025-09-30T01:00:08,movie,3840x1608,hevc,9318.309,33653 +/mnt/Downloads/movies/Spy.2015.720p.BluRay.x264.DTS-WiKi/Sample/Spy.2015.720p.BluRay.x264.DTS-WiKi.Sample.mkv,Spy.2015.720p.BluRay.x264.DTS-WiKi.Sample.mkv,77243467,2021-03-07T07:03:16,movie,1280x536,h264,69.946,8834 +/mnt/Downloads/movies/Spy.2015.720p.BluRay.x264.DTS-WiKi/Spy.2015.720p.BluRay.x264.DTS-WiKi.mkv,Spy.2015.720p.BluRay.x264.DTS-WiKi.mkv,7050539072,2021-03-07T07:03:54,movie,1280x536,h264,7822.955,7210 +/mnt/Downloads/movies/Verdens.Verste.Menneske.2021.720p.BluRay.x264-WiKi/Verdens.Verste.Menneske.2021.720p.BluRay.x264-WiKi.mkv,Verdens.Verste.Menneske.2021.720p.BluRay.x264-WiKi.mkv,5868837048,2022-05-31T10:27:56,movie,1280x690,h264,7667.264,6123 +/mnt/Downloads/movies/Verdens.Verste.Menneske.2021.720p.BluRay.x264-WiKi/Sample/Verdens.Verste.Menneske.2021.720p.BluRay.x264-WiKi.Sample.mkv,Verdens.Verste.Menneske.2021.720p.BluRay.x264-WiKi.Sample.mkv,49140808,2022-05-31T10:18:33,movie,1280x690,h264,65.085,6040 +/mnt/Downloads/movies/Yowamushi.Pedal.2020.1080p.BluRay.x264.DTS-WiKi/Sample/Yowamushi.Pedal.2020.1080p.BluRay.x264.DTS-WiKi.sample.mkv,Yowamushi.Pedal.2020.1080p.BluRay.x264.DTS-WiKi.sample.mkv,110642991,2021-03-23T00:14:09,movie,1920x804,h264,61.101,14486 +/mnt/Downloads/movies/Yowamushi.Pedal.2020.1080p.BluRay.x264.DTS-WiKi/Yowamushi.Pedal.2020.1080p.BluRay.x264.DTS-WiKi.mkv,Yowamushi.Pedal.2020.1080p.BluRay.x264.DTS-WiKi.mkv,10471019306,2021-03-23T00:19:42,movie,1920x804,h264,6749.92,12410 +/mnt/Downloads/movies/Sex.Is.Zero.2002.1080p.BluRay.x264.DTS-WiKi/Sample/Sex.Is.Zero.2002.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,Sex.Is.Zero.2002.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,105009101,2023-12-02T14:51:15,movie,1920x1036,h264,63.213,13289 +/mnt/Downloads/movies/Sex.Is.Zero.2002.1080p.BluRay.x264.DTS-WiKi/Sex.Is.Zero.2002.1080p.BluRay.x264.DTS-WiKi.mkv,Sex.Is.Zero.2002.1080p.BluRay.x264.DTS-WiKi.mkv,10732117107,2023-12-02T14:52:45,movie,1920x1036,h264,5790.959,14826 +/mnt/Downloads/movies/Hayabusa.2011.1080p.BluRay.x264.DTS-WiKi/Sample/Hayabusa.2011.1080p.BluRay.x264.DTS-WiKi.sample.mkv,Hayabusa.2011.1080p.BluRay.x264.DTS-WiKi.sample.mkv,107361078,2020-09-30T12:23:22,movie,1920x802,h264,66.07,12999 +/mnt/Downloads/movies/Hayabusa.2011.1080p.BluRay.x264.DTS-WiKi/Hayabusa.2011.1080p.BluRay.x264.DTS-WiKi.mkv,Hayabusa.2011.1080p.BluRay.x264.DTS-WiKi.mkv,12885200257,2020-09-30T12:31:30,movie,1920x802,h264,8402.394,12268 +/mnt/Downloads/movies/Night.in.Paradise.2021.1080p.NF.WEB-DL.DDP5.1.x264-DoA.mkv,Night.in.Paradise.2021.1080p.NF.WEB-DL.DDP5.1.x264-DoA.mkv,11381737474,2021-04-17T03:47:12,movie,1920x1080,h264,7922.336,11493 +/mnt/Downloads/movies/Top.Gun.Maverick.2022.1080p.BluRay.x265.10bit-WiKi/Sample/Top.Gun.Maverick.2022.1080p.BluRay.x265.10bit-WiKi.mkv,Top.Gun.Maverick.2022.1080p.BluRay.x265.10bit-WiKi.mkv,162120136,2022-10-17T11:15:42,movie,1920x1010,hevc,61.58,21061 +/mnt/Downloads/movies/Top.Gun.Maverick.2022.1080p.BluRay.x265.10bit-WiKi/Top.Gun.Maverick.2022.1080p.BluRay.x265.10bit-WiKi.mkv,Top.Gun.Maverick.2022.1080p.BluRay.x265.10bit-WiKi.mkv,8042705459,2022-10-17T11:15:46,movie,1920x1010,hevc,7814.528,8233 +/mnt/Downloads/movies/The.Hating.Game.2021.1080p.BluRay.x264.DTS-WiKi/Sample/The.Hating.Game.2021.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,The.Hating.Game.2021.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,129812694,2022-02-16T14:11:57,movie,1920x800,h264,63.69,16305 +/mnt/Downloads/movies/The.Hating.Game.2021.1080p.BluRay.x264.DTS-WiKi/The.Hating.Game.2021.1080p.BluRay.x264.DTS-WiKi.mkv,The.Hating.Game.2021.1080p.BluRay.x264.DTS-WiKi.mkv,11968553638,2022-02-16T14:11:59,movie,1920x800,h264,6151.396,15565 +/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,Ghostbusters.Frozen.Empire.2024.1080p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi.mkv,11128479029,2024-06-23T08:45:16,movie,1920x804,hevc,6906.108,12891 +/mnt/Downloads/movies/超时空亚当计划.The.Adam.Project.2022.1080p.WEB-DL.H264.AC3-HDHWEB/超時空亞當計畫.mkv,超時空亞當計畫.mkv,14730636104,2022-11-16T15:41:10,movie,1920x1080,h264,6397.088,18421 +/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,The.Hound.of.the.Baskervilles.Sherlock.the.Movie.2022.1080p.BluRay.x265.10bit.DTS-WiKi.sample.mkv,52759173,2022-11-14T14:52:04,movie,1920x1036,hevc,101.027,4177 +/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,The.Hound.of.the.Baskervilles.Sherlock.the.Movie.2022.1080p.BluRay.x265.10bit.DTS-WiKi.mkv,5869243237,2022-11-14T14:55:19,movie,1920x1036,hevc,7134.048,6581 +/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,Lock.Stock.and.Two.Smoking.Barrels.1998.BluRay.1080p.x264.DTS-WiKi.Sample.mkv,91394153,2023-03-01T13:34:50,movie,1920x1040,h264,61.827,11825 +/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,Lock.Stock.and.Two.Smoking.Barrels.1998.BluRay.1080p.x264.DTS-WiKi.mkv,9382056738,2023-03-01T13:46:56,movie,1920x1040,h264,6443.307,11648 +/mnt/Downloads/movies/Raging Fire 2021 WEB-DL 4K H265 DDP 5.1-Dave.mkv,Raging Fire 2021 WEB-DL 4K H265 DDP 5.1-Dave.mkv,6594579273,2021-10-02T03:39:49,movie,3840x1626,hevc,7709.4,6843 +/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,The.Ministry.of.Ungentlemanly.Warfare.2024.1080p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi.mkv,11168051738,2024-06-19T11:12:32,movie,1920x800,hevc,7221.28,12372 +/mnt/Downloads/movies/Next.Sohee.2022.1080p.BluRay.x265.10bit.DTS-WiKi/Next.Sohee.2022.1080p.BluRay.x265.10bit.DTS-WiKi.mkv,Next.Sohee.2022.1080p.BluRay.x265.10bit.DTS-WiKi.mkv,9539896694,2023-12-21T11:15:13,movie,1920x1036,hevc,8260.32,9239 +/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,American.Beauty.1999.BluRay.1080p.DTS-HDMA.5.1.x265.10bit-CHD.mkv,6591756516,2025-04-23T11:26:16,movie,1920x818,hevc,7299.968,7223 +/mnt/Downloads/movies/Thunderbolts.2025.1080p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi/Thunderbolts.2025.1080p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi.mkv,Thunderbolts.2025.1080p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi.mkv,11565842303,2025-07-27T09:39:41,movie,1920x804,hevc,7609.984,12158 +/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,The.Best.of.Youth.2003.Blu-ray.1080p.DISC2.x265.10bit.DD5.1.MNHD-FRDS.mkv,9631633674,2021-05-06T12:07:19,movie,1920x1080,hevc,10699.6,7201 +/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,The.Best.of.Youth.2003.Blu-ray.1080p.DISC1.x265.10bit.DD5.1.MNHD-FRDS.mkv,10143452967,2021-05-06T12:07:13,movie,1920x1080,hevc,10804.128,7510 +/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,Man.of.Steel.2013.BluRay.2160p.x265.10bit.HDR.4Audio.mUHD-FRDS.mkv,42875322024,2021-03-28T05:56:17,movie,3840x1600,hevc,8581.656,39969 +/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,Under.The.Tuscan.Sun.2003.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,103490436,2025-02-18T08:59:27,movie,1920x1040,h264,34.079,24294 +/mnt/Downloads/movies/Under.The.Tuscan.Sun.2003.1080p.BluRay.x264.DTS-WiKi/Under.The.Tuscan.Sun.2003.1080p.BluRay.x264.DTS-WiKi.mkv,Under.The.Tuscan.Sun.2003.1080p.BluRay.x264.DTS-WiKi.mkv,22380341619,2025-02-18T08:59:37,movie,1920x1040,h264,6761.387,26480 +/mnt/Downloads/movies/Weathering.with.You.2019.1080p.BluRay.x264.DTS-WiKi/Sample/Weathering.with.You.2019.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,Weathering.with.You.2019.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,119689177,2020-11-06T12:46:45,movie,1920x1080,h264,61.812,15490 +/mnt/Downloads/movies/Weathering.with.You.2019.1080p.BluRay.x264.DTS-WiKi/Weathering.with.You.2019.1080p.BluRay.x264.DTS-WiKi.mkv,Weathering.with.You.2019.1080p.BluRay.x264.DTS-WiKi.mkv,10566286780,2020-11-06T13:01:35,movie,1920x1080,h264,6733.739,12553 +/mnt/Downloads/movies/Daddio.2023.2160p.AMZN.WEB-DL.DDP5.1.H.265-FLUX.mkv,Daddio.2023.2160p.AMZN.WEB-DL.DDP5.1.H.265-FLUX.mkv,11389665537,2024-08-13T10:08:20,movie,3840x1600,hevc,5983.853,15227 +/mnt/Downloads/movies/As.It.Burns.2023.1080p.BluRay.x265.10bit-WiKi/As.It.Burns.2023.1080p.BluRay.x265.10bit-WiKi.mkv,As.It.Burns.2023.1080p.BluRay.x265.10bit-WiKi.mkv,7043504733,2024-10-02T02:13:58,movie,1920x804,hevc,6126.976,9196 +/mnt/Downloads/movies/Wolfs.2024.2160p.ATVP.WEB-DL.DDP5.1.Atmos.DV.H.265-FLUX.mkv,Wolfs.2024.2160p.ATVP.WEB-DL.DDP5.1.Atmos.DV.H.265-FLUX.mkv,20333793837,2024-10-01T01:47:52,movie,3840x1606,hevc,6428.506,25304 +/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,Inside.Out.2015.BluRay.2160p.x265.10bit.HDR.5Audio.mUHD-FRDS.mkv,16702005852,2024-06-27T12:50:34,movie,3840x2160,hevc,5688.79,23487 +/mnt/Downloads/movies/Airport.2013.1080p.BluRay.x264-WiKi/Sample/Airport.2013.1080p.BluRay.x264-WiKi.sample.mkv,Airport.2013.1080p.BluRay.x264-WiKi.sample.mkv,110888585,2020-12-17T13:31:52,movie,1920x1080,h264,85.223,10409 +/mnt/Downloads/movies/Airport.2013.1080p.BluRay.x264-WiKi/Airport.2013.1080p.BluRay.x264-WiKi.mkv,Airport.2013.1080p.BluRay.x264-WiKi.mkv,7841498185,2020-12-17T13:41:21,movie,1920x1080,h264,6007.584,10442 +/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,Forrest.Gump.1994.Bluray.2160p.x265.10bit.HDR.5Audios.mUHD-FRDS.mkv,24303672100,2024-09-07T09:44:43,movie,3840x1608,hevc,8529.408,22795 +/mnt/Downloads/movies/Lady.Chatterley's.Lover.1981.720p.BluRay.x264-WiKi/Sample/Lady.Chatterley's.Lover.1981.720p.BluRay.x264-WiKi.Sample.mkv,Lady.Chatterley's.Lover.1981.720p.BluRay.x264-WiKi.Sample.mkv,96666242,2022-03-12T16:17:23,movie,1280x692,h264,66.456,11636 +/mnt/Downloads/movies/Lady.Chatterley's.Lover.1981.720p.BluRay.x264-WiKi/Lady.Chatterley's.Lover.1981.720p.BluRay.x264-WiKi.mkv,Lady.Chatterley's.Lover.1981.720p.BluRay.x264-WiKi.mkv,8890392776,2022-03-12T16:34:48,movie,1280x692,h264,6259.04,11363 +/mnt/Downloads/movies/Past.Lives.2023.REPACK.1080p.AMZN.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv,Past.Lives.2023.REPACK.1080p.AMZN.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv,7970083182,2023-08-30T14:50:30,movie,1920x1040,h264,6343.588,10051 +/mnt/Downloads/movies/The.Killer.2023.1080p.NF.WEB-DL.DDP5.1.H.264-playWEB.mkv,The.Killer.2023.1080p.NF.WEB-DL.DDP5.1.H.264-playWEB.mkv,4989962218,2023-11-11T08:45:56,movie,1920x1080,h264,7170.792,5566 +/mnt/Downloads/movies/Big.Shot's.Funeral.2001.720p.BluRay.x264-WiKi/Sample/Big.Shot's.Funeral.2001.720p.BluRay.x264-WiKi.Sample.mkv,Big.Shot's.Funeral.2001.720p.BluRay.x264-WiKi.Sample.mkv,63938378,2020-03-03T12:01:00,movie,1280x692,h264,63.928,8001 +/mnt/Downloads/movies/Big.Shot's.Funeral.2001.720p.BluRay.x264-WiKi/Big.Shot's.Funeral.2001.720p.BluRay.x264-WiKi.mkv,Big.Shot's.Funeral.2001.720p.BluRay.x264-WiKi.mkv,6065097460,2020-03-03T12:11:00,movie,1280x692,h264,6421.6,7555 +/mnt/Downloads/movies/Rurouni.Kenshin.the.Beginning.2021.1080p.NF.WEB-DL.DDP5.1.x264-DoA.mkv,Rurouni.Kenshin.the.Beginning.2021.1080p.NF.WEB-DL.DDP5.1.x264-DoA.mkv,9807843710,2021-08-03T15:07:31,movie,1920x1080,h264,8290.976,9463 +/mnt/Downloads/movies/Personal.Taulor.2013.1080p.WEB-DL.x264.AAC-SmY.mkv,Personal.Taulor.2013.1080p.WEB-DL.x264.AAC-SmY.mkv,3426566352,2021-02-17T03:40:58,movie,1920x1080,h264,7090.209,3866 +/mnt/Downloads/movies/見えない目撃者 2019 [R15+指定] 1080p HDTV x264 AAC5.1-DoA.mkv,見えない目撃者 2019 [R15+指定] 1080p HDTV x264 AAC5.1-DoA.mkv,6128098729,2022-07-17T15:49:04,movie,1920x804,h264,7680.924,6382 +/mnt/Downloads/movies/Freaky.2020.720p.BluRay.x264-WiKi/Sample/Freaky.2020.720p.BluRay.x264-WiKi.Sample.mkv,Freaky.2020.720p.BluRay.x264-WiKi.Sample.mkv,49013624,2021-04-13T03:41:26,movie,1280x536,h264,62.828,6240 +/mnt/Downloads/movies/Freaky.2020.720p.BluRay.x264-WiKi/Freaky.2020.720p.BluRay.x264-WiKi.mkv,Freaky.2020.720p.BluRay.x264-WiKi.mkv,4694290892,2021-04-13T03:44:20,movie,1280x536,h264,6123.968,6132 +/mnt/Downloads/movies/Black.Widow.2021.1080p.DSNP.WEB-DL.DDP.5.1.Atmos.H.265-FLUX.mkv,Black.Widow.2021.1080p.DSNP.WEB-DL.DDP.5.1.Atmos.H.265-FLUX.mkv,7287857360,2021-07-12T14:03:42,movie,1920x1080,hevc,8026.784,7263 +/mnt/Downloads/movies/The.Father.2020.1080p.BluRay.x264.DTS-WiKi/Sample/The.Father.2020.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,The.Father.2020.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,144583655,2021-05-18T09:04:56,movie,1920x804,h264,60.686,19059 +/mnt/Downloads/movies/The.Father.2020.1080p.BluRay.x264.DTS-WiKi/The.Father.2020.1080p.BluRay.x264.DTS-WiKi.mkv,The.Father.2020.1080p.BluRay.x264.DTS-WiKi.mkv,9733764179,2021-05-18T09:05:09,movie,1920x804,h264,5819.819,13380 +/mnt/Downloads/movies/No.Longer.Human.2019.720p.BluRay.x264-WiKi/No.Longer.Human.2019.720p.BluRay.x264-WiKi.mkv,No.Longer.Human.2019.720p.BluRay.x264-WiKi.mkv,5369647590,2020-05-31T02:11:33,movie,1280x692,h264,7240.256,5933 +/mnt/Downloads/movies/No.Longer.Human.2019.720p.BluRay.x264-WiKi/Sample/No.Longer.Human.2019.720p.BluRay.x264-WiKi.sample.mkv,No.Longer.Human.2019.720p.BluRay.x264-WiKi.sample.mkv,57035281,2020-05-31T02:11:27,movie,1280x692,h264,79.217,5759 +/mnt/Downloads/movies/Napoleon.The.Directors.Cut.2024.1080p.Apple.TV+.WEB-DL.DDP.5.1.Atmos.H.264-CHDWEB.mkv,Napoleon.The.Directors.Cut.2024.1080p.Apple.TV+.WEB-DL.DDP.5.1.Atmos.H.264-CHDWEB.mkv,16170654585,2024-12-17T10:08:57,movie,1920x804,h264,12288.64,10527 +/mnt/Downloads/movies/Assassination.2015.1080p.BluRay.x264.DTS-WiKi/Sample/Assassination.2015.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,Assassination.2015.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,88348769,2020-09-02T06:17:09,movie,1920x804,h264,61.841,11429 +/mnt/Downloads/movies/Assassination.2015.1080p.BluRay.x264.DTS-WiKi/Assassination.2015.1080p.BluRay.x264.DTS-WiKi.mkv,Assassination.2015.1080p.BluRay.x264.DTS-WiKi.mkv,15019191591,2020-09-02T06:17:21,movie,1920x804,h264,8403.008,14298 +/mnt/Downloads/movies/Greenland.2020.1080p.BluRay.x265.10bit.DTS-PTH/Greenland.2020.1080p.BluRay.x265.10bit.DTS-PTH.mkv,Greenland.2020.1080p.BluRay.x265.10bit.DTS-PTH.mkv,5556298809,2020-12-22T10:34:47,movie,1920x804,hevc,7168.453,6200 +/mnt/Downloads/movies/The.Family.Plan.2.2025.1080p.ATVP.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv,The.Family.Plan.2.2025.1080p.ATVP.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv,8431200469,2026-01-22T07:45:10,movie,1918x802,h264,6369.53,10589 +/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,Top.Gun.Maverick.2022.2160p.WEB-DL.DDP5.1.Atmos.HDR.HEVC-CMRG.mkv,24595863921,2022-08-23T01:45:51,movie,3840x2024,hevc,7814.598,25179 +/mnt/Downloads/movies/Juror.#2.2024.1080p.BluRay.x265.10bit-WiKi/Juror.#2.2024.1080p.BluRay.x265.10bit-WiKi.mkv,Juror.#2.2024.1080p.BluRay.x265.10bit-WiKi.mkv,4552852483,2025-02-06T10:21:16,movie,1920x804,hevc,6830.88,5332 +/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,Basic.Instinct.Director's.Cut.1992.BluRay.720p.x264.DTS-WiKi.mkv,7024337107,2020-04-27T16:52:44,movie,1280x544,h264,7695.403,7302 +/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,Basic.Instinct.Director's.Cut.1992.BluRay.720p.x264.DTS-WiKi.Sample.mkv,109260376,2020-04-27T16:42:29,movie,1280x544,h264,125.959,6939 +/mnt/Downloads/movies/脚本バカリズムの新春スペシャルドラマ「侵入者たちの晩餐」 SP 1080p HDTV x264 AAC.mkv,脚本バカリズムの新春スペシャルドラマ「侵入者たちの晩餐」 SP 1080p HDTV x264 AAC.mkv,3551617238,2025-02-22T01:14:02,movie,1920x1080,h264,5509.248,5157 +/mnt/Downloads/movies/Raya.and.the.Last.Dragon.2021.720p.BluRay.x264-WiKi/Raya.and.the.Last.Dragon.2021.720p.BluRay.x264-WiKi.mkv,Raya.and.the.Last.Dragon.2021.720p.BluRay.x264-WiKi.mkv,6342393324,2021-08-24T09:38:23,movie,1280x536,h264,6449.248,7867 +/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,Raya.and.the.Last.Dragon.2021.720p.BluRay.x264-WiKi.Sample.mkv,94307990,2021-08-24T09:36:39,movie,1280x536,h264,60.034,12567 +/mnt/Downloads/movies/Violent.Night.2022.1080p.BluRay.x265.10bit.DTS-WiKi/Violent.Night.2022.1080p.BluRay.x265.10bit.DTS-WiKi.mkv,Violent.Night.2022.1080p.BluRay.x265.10bit.DTS-WiKi.mkv,7038267699,2023-02-12T04:57:41,movie,1920x804,hevc,6691.904,8414 +/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,Dune.Part.Two.2024.1080p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi.mkv,13859462436,2024-05-08T15:56:24,movie,1920x800,hevc,9948.96,11144 +/mnt/Downloads/movies/I.Wish.2011.1080p.BluRay.x265.10bit-WiKi/Sample/I.Wish.2011.1080p.BluRay.x265.10bit-WiKi.Sample.mkv,I.Wish.2011.1080p.BluRay.x265.10bit-WiKi.Sample.mkv,80826382,2022-09-08T11:41:42,movie,1920x1036,hevc,61.786,10465 +/mnt/Downloads/movies/I.Wish.2011.1080p.BluRay.x265.10bit-WiKi/I.Wish.2011.1080p.BluRay.x265.10bit-WiKi.mkv,I.Wish.2011.1080p.BluRay.x265.10bit-WiKi.mkv,10201644814,2022-09-08T11:41:50,movie,1920x1036,hevc,7727.744,10561 +/mnt/Downloads/movies/Evangelion.3.0+1.01.Thrice.Upon.a.Time.2021.Amazon.WEB-DL.1080p.H264.DDP-AREY.mkv,Evangelion.3.0+1.01.Thrice.Upon.a.Time.2021.Amazon.WEB-DL.1080p.H264.DDP-AREY.mkv,7694653471,2021-08-13T10:58:37,movie,1920x816,h264,9346.112,6586 +/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,The.Shadow's.Edge.2025.1080p.BluRay.x265.10bit.DTS-WiKi.mkv,10111318868,2026-02-01T11:19:40,movie,1920x804,hevc,8531.905,9480 +/mnt/Downloads/movies/搏击俱乐部.Fight.Club.1999.BluRay.1080p.x265.10bit.2Audio.MNHD-FRDS/Fight.Club.1999.BluRay.1080p.x265.10bit.2Audio.MNHD-FRDS.mkv,Fight.Club.1999.BluRay.1080p.x265.10bit.2Audio.MNHD-FRDS.mkv,8185180634,2023-10-22T06:23:46,movie,1920x800,hevc,8348.384,7843 +/mnt/Downloads/movies/特送.Special.Delivery.2022.BluRay.MNHD-FRDS/BDMenu.mkv,BDMenu.mkv,22475141,2023-01-27T02:28:23,movie,1920x1080,hevc,60.074,2992 +/mnt/Downloads/movies/特送.Special.Delivery.2022.BluRay.MNHD-FRDS/Special.Delivery.2022.BluRay.1080p.x265.10bit.DDP5.1.MNHD-FRDS.mkv,Special.Delivery.2022.BluRay.1080p.x265.10bit.DDP5.1.MNHD-FRDS.mkv,8201280772,2023-01-27T02:43:08,movie,1920x804,hevc,6530.208,10047 +/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,July.Rhapsody.2002.720p.BluRay.DD5.1.x264.Dual.Audio-BMDru.mkv,4065588774,2022-02-26T10:32:29,movie,1280x676,h264,6182.432,5260 +/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,Howl's.Moving.Castle.2004.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,90785042,2021-04-21T12:20:14,movie,1920x1036,h264,60.415,12021 +/mnt/Downloads/movies/Howl's.Moving.Castle.2004.1080p.BluRay.x264.DTS-WiKi/Howl's.Moving.Castle.2004.1080p.BluRay.x264.DTS-WiKi.mkv,Howl's.Moving.Castle.2004.1080p.BluRay.x264.DTS-WiKi.mkv,10390833778,2021-04-21T12:22:57,movie,1920x1036,h264,7149.142,11627 +/mnt/Downloads/movies/A.Real.Pain.2024.1080p.AMZN.WEB-DL.DDP5.1.H.264-FLUX.mkv,A.Real.Pain.2024.1080p.AMZN.WEB-DL.DDP5.1.H.264-FLUX.mkv,6560359561,2025-01-09T04:52:57,movie,1920x1040,h264,5387.459,9741 +/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,法式火锅.The.Taste.of.Things.2023.1080p.BluRay.x265.10bit.DDP5.1.MNHD-FRDS.mkv,6951499165,2025-11-04T10:20:26,movie,1920x1036,hevc,8106.496,6860 +/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,Berserk.The.Golden.Age.Arc.The.Egg.of.the.King.2012.1080p.BluRay.x264.DTS-WiKi.mkv,7007750103,2021-05-20T04:58:25,movie,1920x812,h264,4628.342,12112 +/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,Berserk.The.Golden.Age.Arc.The.Egg.of.the.King.2012.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,95915377,2021-05-20T04:42:00,movie,1920x812,h264,64.148,11961 +/mnt/Downloads/movies/Remember.2022.1080p.SEEZN.WEB-DL.AAC2.0.H.264-tG1R0.mkv,Remember.2022.1080p.SEEZN.WEB-DL.AAC2.0.H.264-tG1R0.mkv,7832366799,2022-12-20T10:43:06,movie,1920x1080,h264,7707.7,8129 +/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,Where.the.Crawdads.Sing.2022.1080p.BluRay.x265.10bit.DTS-WiKi.Sample.mkv,68841039,2022-09-16T07:02:19,movie,1920x800,hevc,61.895,8897 +/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,Where.the.Crawdads.Sing.2022.1080p.BluRay.x265.10bit.DTS-WiKi.mkv,8416209367,2022-09-16T07:02:21,movie,1920x800,hevc,7525.526,8946 +/mnt/Downloads/movies/A.Loving.Husband.2016.1080p.BluRay.x264-WiKi/Sample/A.Loving.Husband.2016.1080p.BluRay.x264-WiKi.sample.mkv,A.Loving.Husband.2016.1080p.BluRay.x264-WiKi.sample.mkv,117707434,2024-08-16T00:18:32,movie,1920x1038,h264,56.736,16597 +/mnt/Downloads/movies/A.Loving.Husband.2016.1080p.BluRay.x264-WiKi/A.Loving.Husband.2016.1080p.BluRay.x264-WiKi.mkv,A.Loving.Husband.2016.1080p.BluRay.x264-WiKi.mkv,10472739681,2024-08-16T00:33:21,movie,1920x1038,h264,7018.011,11938 +/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,And.the.Baton.Was.Passed.2021.1080p.BluRay.x264-WiKi.sample.mkv,110435218,2022-04-12T04:39:51,movie,1920x1038,h264,65.692,13448 +/mnt/Downloads/movies/And.the.Baton.Was.Passed.2021.1080p.BluRay.x264-WiKi/And.the.Baton.Was.Passed.2021.1080p.BluRay.x264-WiKi.mkv,And.the.Baton.Was.Passed.2021.1080p.BluRay.x264-WiKi.mkv,11804430668,2022-04-12T04:44:33,movie,1920x1038,h264,8221.28,11486 +/mnt/Downloads/movies/The.Policeman's.Lineage.2022.1080p.WEB-DL.DDP5.1.H264-HAMR.mkv,The.Policeman's.Lineage.2022.1080p.WEB-DL.DDP5.1.H264-HAMR.mkv,7462680445,2022-06-28T11:09:38,movie,1920x1080,h264,7175.008,8320 +/mnt/Downloads/movies/The.Voice.of.Sin.2020.720p.BluRay.x264-WiKi/Sample/The.Voice.of.Sin.2020.720p.BluRay.x264-WiKi.sample.mkv,The.Voice.of.Sin.2020.720p.BluRay.x264-WiKi.sample.mkv,57643335,2021-05-04T13:55:42,movie,1280x692,h264,67.628,6818 +/mnt/Downloads/movies/The.Voice.of.Sin.2020.720p.BluRay.x264-WiKi/The.Voice.of.Sin.2020.720p.BluRay.x264-WiKi.mkv,The.Voice.of.Sin.2020.720p.BluRay.x264-WiKi.mkv,5854871940,2021-05-04T14:02:44,movie,1280x692,h264,8474.784,5526 +/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,Totto.Chan.The.Little.Girl.at.the.Window.2023.1080p.BluRay.x265.10bit.DTS-WiKi.mkv,7791184965,2024-08-19T13:16:30,movie,1920x804,hevc,6830.827,9124 +/mnt/Downloads/movies/Tazza.The.Hidden.Card.2014.720p.BluRay.x264-WiKi/Sample/Tazza.The.Hidden.Card.2014.720p.BluRay.x264-WiKi.sample.mkv,Tazza.The.Hidden.Card.2014.720p.BluRay.x264-WiKi.sample.mkv,59150644,2020-04-11T10:27:52,movie,1280x536,h264,65.92,7178 +/mnt/Downloads/movies/Tazza.The.Hidden.Card.2014.720p.BluRay.x264-WiKi/Tazza.The.Hidden.Card.2014.720p.BluRay.x264-WiKi.mkv,Tazza.The.Hidden.Card.2014.720p.BluRay.x264-WiKi.mkv,7045700149,2020-04-11T10:28:40,movie,1280x536,h264,8821.536,6389 +/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,Companion.2025.2160p.iT.WEB-DL.HDR.H.265.DDP5.1.Atmos-Nest@ADWeb.mkv,18374738823,2025-03-01T15:41:33,movie,3840x1604,hevc,5824.86,25236 +/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,Baragaki.Unbroken.Samurai.2021.1080p.BluRay.x265.10bit.DTS-WiKi.sample.mkv,67295429,2022-10-17T13:10:10,movie,1920x804,hevc,26.777,20105 +/mnt/Downloads/movies/Baragaki.Unbroken.Samurai.2021.1080p.BluRay.x265.10bit.DTS-WiKi/Baragaki.Unbroken.Samurai.2021.1080p.BluRay.x265.10bit.DTS-WiKi.mkv,Baragaki.Unbroken.Samurai.2021.1080p.BluRay.x265.10bit.DTS-WiKi.mkv,7519578315,2022-10-17T13:17:31,movie,1920x804,hevc,8883.552,6771 +/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,An.Abandoned.Team.2024.1080p.BluRay.x265.10bit.TrueHD5.1-WiKi.mkv,9074147216,2025-02-16T13:56:30,movie,1920x804,hevc,6413.856,11318 +/mnt/Downloads/movies/The.Last.Dance.2024.1080p.BluRay.x265.10bit-WiKi/The.Last.Dance.2024.1080p.BluRay.x265.10bit-WiKi.mkv,The.Last.Dance.2024.1080p.BluRay.x265.10bit-WiKi.mkv,8536647451,2025-04-21T11:34:55,movie,1920x804,hevc,7582.272,9006 +/mnt/Downloads/movies/Be.My.Master.2018.1080p.BluRay.x264.DTS-WiKi/Sample/Be.My.Master.2018.1080p.BluRay.x264.DTS-WiK.sample.mkv,Be.My.Master.2018.1080p.BluRay.x264.DTS-WiK.sample.mkv,114751761,2024-06-18T13:39:34,movie,1920x804,h264,65.697,13973 +/mnt/Downloads/movies/Be.My.Master.2018.1080p.BluRay.x264.DTS-WiKi/Be.My.Master.2018.1080p.BluRay.x264.DTS-WiKi.mkv,Be.My.Master.2018.1080p.BluRay.x264.DTS-WiKi.mkv,9128354188,2024-06-18T13:40:41,movie,1920x804,h264,6167.168,11841 +/mnt/Downloads/movies/Serendipity.2001.1080p.BluRay.x264.DTS-WiKi/Serendipity.2001.1080p.BluRay.x264.DTS-WiKi.mkv,Serendipity.2001.1080p.BluRay.x264.DTS-WiKi.mkv,10729825240,2024-08-20T08:55:26,movie,1920x1080,h264,5458.537,15725 +/mnt/Downloads/movies/Serendipity.2001.1080p.BluRay.x264.DTS-WiKi/Sample/Serendipity.2001.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,Serendipity.2001.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,108150448,2024-08-20T08:51:39,movie,1920x1080,h264,55.084,15706 +/mnt/Downloads/movies/The.Witcher.Sirens.of.the.Deep.2025.1080p.NF.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv,The.Witcher.Sirens.of.the.Deep.2025.1080p.NF.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv,3917916790,2025-02-16T14:43:55,movie,1920x1080,h264,5517.459,5680 +/mnt/Downloads/movies/Maharaja.2024.1080p.NF.WEB-DL.DDP5.1.x265.10bit-Yumi@FRDS.mkv,Maharaja.2024.1080p.NF.WEB-DL.DDP5.1.x265.10bit-Yumi@FRDS.mkv,2407310038,2024-12-02T12:25:41,movie,1920x1080,hevc,8455.616,2277 +/mnt/Downloads/movies/Predator.Badlands.2025.1080p.WEB-DL.LINE.AUDIO.H264-AOC.mkv,Predator.Badlands.2025.1080p.WEB-DL.LINE.AUDIO.H264-AOC.mkv,6254468694,2025-12-26T13:57:56,movie,1920x804,h264,6440.75,7768 +/mnt/Downloads/movies/Renfield.2023.1080p.BluRay.x265.10bit.DTS-WiKi/Renfield.2023.1080p.BluRay.x265.10bit.DTS-WiKi.mkv,Renfield.2023.1080p.BluRay.x265.10bit.DTS-WiKi.mkv,6735504415,2023-12-22T13:56:14,movie,1920x804,hevc,5614.666,9597 +/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,The.Yin.Yang.Master.Zero.2024.1080p.BluRay.x265.10bit.DTS-WiKi.mkv,5862744115,2024-10-10T11:29:40,movie,1920x804,hevc,6773.355,6924 +/mnt/Downloads/movies/Thermae.Romae.2012.1080p.BluRay.x264.DTS-WiKi/Sample/Thermae.Romae.2012.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,Thermae.Romae.2012.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,56567007,2025-03-26T15:37:06,movie,1920x816,h264,67.033,6750 +/mnt/Downloads/movies/Thermae.Romae.2012.1080p.BluRay.x264.DTS-WiKi/Thermae.Romae.2012.1080p.BluRay.x264.DTS-WiKi.mkv,Thermae.Romae.2012.1080p.BluRay.x264.DTS-WiKi.mkv,8543214480,2025-03-26T15:37:18,movie,1920x816,h264,6498.038,10517 +/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,The.Protege.2021.BluRay.1080p.DTS-HD.MA5.1.x265.10bit-BeiTai.mkv,5767662301,2021-10-19T04:49:53,movie,1920x802,hevc,6552.555,7041 +/mnt/Downloads/movies/Kimetsu no Yaiba - Mugen Ressha [PSNRip][1080p][CHT][v2].mp4,Kimetsu no Yaiba - Mugen Ressha [PSNRip][1080p][CHT][v2].mp4,3820153023,2021-05-10T12:01:21,movie,1920x1080,h264,7011.626667,4358 +/mnt/Downloads/movies/A.Real.Job.2023.1080p.BluRay.x265.10bit.DTS-WiKi/A.Real.Job.2023.1080p.BluRay.x265.10bit.DTS-WiKi.mkv,A.Real.Job.2023.1080p.BluRay.x265.10bit.DTS-WiKi.mkv,8880094726,2025-08-27T12:38:54,movie,1920x804,hevc,6040.0,11761 +/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,A.World.Without.Thieves.2004.2160p.WEB-DL.H264.AAC-LeagueWEB.mp4,8677217653,2023-01-27T13:04:41,movie,3840x2160,h264,7248.235079,9577 +/mnt/Downloads/movies/Dream.Scenario.2023.1080p.BluRay.x265.10bit-WiKi/Dream.Scenario.2023.1080p.BluRay.x265.10bit-WiKi.mkv,Dream.Scenario.2023.1080p.BluRay.x265.10bit-WiKi.mkv,5871116364,2024-03-02T03:13:20,movie,1920x1036,hevc,6119.424,7675 +/mnt/Downloads/movies/Summer.Sway.2020.1080p.BluRay.x264.DTS-WiKi/Sample/Summer.Sway.2020.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,Summer.Sway.2020.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,123712377,2022-05-06T11:41:11,movie,1920x804,h264,61.584,16070 +/mnt/Downloads/movies/Summer.Sway.2020.1080p.BluRay.x264.DTS-WiKi/Summer.Sway.2020.1080p.BluRay.x264.DTS-WiKi.mkv,Summer.Sway.2020.1080p.BluRay.x264.DTS-WiKi.mkv,10972960624,2022-05-06T11:41:18,movie,1920x804,h264,5425.375,16180 +/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,War.and.Peace.1966.Part.III.The.Year.1812.BluRay.1080p.x265.10bit.2Audio.MNHD-FRDS.mkv,6911448790,2024-06-23T12:06:01,movie,1920x816,hevc,4901.92,11279 +/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,War.and.Peace.1966.Part.II.Natasha.Rostova.BluRay.1080p.x265.10bit.2Audio.MNHD-FRDS.mkv,5850749966,2024-06-23T12:05:55,movie,1920x816,hevc,5882.912,7956 +/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,War.and.Peace.1966.Part.IV.Pierre.Bezukhov.BluRay.1080p.x265.10bit.2Audio.MNHD-FRDS.mkv,6414722552,2024-06-23T12:05:58,movie,1920x816,hevc,5798.496,8850 +/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,War.and.Peace.1966.Part.I.Andrei.Bolkonsky.BluRay.1080p.x265.10bit.2Audio.MNHD-FRDS.mkv,10054826553,2024-06-23T12:06:03,movie,1920x816,hevc,8827.776,9111 +/mnt/Downloads/movies/飞机陷落.2023.1080p.中英字幕£CMCT春天/[飞机陷落].Plane.2023.BluRay.1080p.x264.AC3-CMCT.mkv,[飞机陷落].Plane.2023.BluRay.1080p.x264.AC3-CMCT.mkv,7719765198,2023-07-13T10:27:20,movie,1920x1080,h264,6449.504,9575 +/mnt/Downloads/movies/Finch.2021.1080p.ATVP.WEB-DL.DDP5.1.Atmos.H.264-TEPES.mkv,Finch.2021.1080p.ATVP.WEB-DL.DDP5.1.Atmos.H.264-TEPES.mkv,9400115689,2021-11-05T13:08:12,movie,1920x804,h264,6939.648,10836 +/mnt/Downloads/movies/Encanto.2021.720p.BluRay.x264-WiKi/Encanto.2021.720p.BluRay.x264-WiKi.mkv,Encanto.2021.720p.BluRay.x264-WiKi.mkv,5829516835,2022-01-22T13:12:54,movie,1280x688,h264,6127.072,7611 +/mnt/Downloads/movies/Encanto.2021.720p.BluRay.x264-WiKi/Sample/Encanto.2021.720p.BluRay.x264-WiKi.Sample.mkv,Encanto.2021.720p.BluRay.x264-WiKi.Sample.mkv,64553560,2022-01-22T13:07:03,movie,1280x688,h264,61.298,8424 +/mnt/Downloads/movies/Demon Slayer Kimetsu No Yaiba Infinity Castle 2025 1080p WEB-DL JAPANESE AAC2.0 H.264-Cassu.mkv,Demon Slayer Kimetsu No Yaiba Infinity Castle 2025 1080p WEB-DL JAPANESE AAC2.0 H.264-Cassu.mkv,3251888190,2026-01-14T14:00:13,movie,1920x1080,h264,9301.821,2796 +/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,Black.Panther.Wakanda.Forever.2022.1080p.BluRay.x265.10bit.DTS-WiKi.mkv,9095091875,2023-02-07T12:46:01,movie,1920x804,hevc,9678.677,7517 +/mnt/Downloads/movies/Poupelle.of.Chimney.Town.2020.720p.BluRay.x264-WiKi/Sample/Poupelle.of.Chimney.Town.2020.720p.BluRay.x264-WiKi.Sample.mkv,Poupelle.of.Chimney.Town.2020.720p.BluRay.x264-WiKi.Sample.mkv,58084159,2022-03-06T11:47:09,movie,1280x544,h264,64.781,7172 +/mnt/Downloads/movies/Poupelle.of.Chimney.Town.2020.720p.BluRay.x264-WiKi/Poupelle.of.Chimney.Town.2020.720p.BluRay.x264-WiKi.mkv,Poupelle.of.Chimney.Town.2020.720p.BluRay.x264-WiKi.mkv,5087373710,2022-03-06T12:38:25,movie,1280x544,h264,6020.032,6760 +/mnt/Downloads/movies/Tenet.2020.IMAX.1080p.BluRay.x264.DTS-WiKi/Tenet.2020.IMAX.1080p.BluRay.x264.DTS-WiKi.mkv,Tenet.2020.IMAX.1080p.BluRay.x264.DTS-WiKi.mkv,15432098080,2020-12-08T06:27:27,movie,1920x1080,h264,9009.056,13703 +/mnt/Downloads/movies/Tenet.2020.IMAX.1080p.BluRay.x264.DTS-WiKi/Sample/Tenet.2020.IMAX.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,Tenet.2020.IMAX.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,93645207,2020-12-08T06:16:54,movie,1920x1080,h264,61.618,12158 +/mnt/Downloads/movies/Under.the.Open.Sky.2020.720p.BluRay.x264-WiKi/Sample/Under.the.Open.Sky.2020.720p.BluRay.x264-WiKi.sample.mkv,Under.the.Open.Sky.2020.720p.BluRay.x264-WiKi.sample.mkv,52454045,2021-10-28T12:08:11,movie,1280x692,h264,44.809,9364 +/mnt/Downloads/movies/Under.the.Open.Sky.2020.720p.BluRay.x264-WiKi/Under.the.Open.Sky.2020.720p.BluRay.x264-WiKi.mkv,Under.the.Open.Sky.2020.720p.BluRay.x264-WiKi.mkv,7044293186,2021-10-28T12:08:49,movie,1280x692,h264,7599.616,7415 +/mnt/Downloads/movies/The.Running.Man.2025.1080p.AMZN.WEB-DL.English.DDP5.1.H.264-KyoGo.mkv,The.Running.Man.2025.1080p.AMZN.WEB-DL.English.DDP5.1.H.264-KyoGo.mkv,10522440858,2026-01-02T09:38:52,movie,1920x800,h264,8185.12,10284 +/mnt/Downloads/movies/The.Gray.Man.2022.1080p.NF.WEB-DL.DDP.5.1.Atmos.H.264-Lee@CHDWEB.mkv,The.Gray.Man.2022.1080p.NF.WEB-DL.DDP.5.1.Atmos.H.264-Lee@CHDWEB.mkv,4595163996,2022-07-31T04:32:12,movie,1920x1080,h264,7742.912,4747 +/mnt/Downloads/movies/Wrath.of.Man.2021.720p.BluRay.x264-WiKi/Sample/Wrath.of.Man.2021.720p.BluRay.x264-WiKi.Sample.mkv,Wrath.of.Man.2021.720p.BluRay.x264-WiKi.Sample.mkv,91521183,2021-07-14T13:03:16,movie,1280x536,h264,63.804,11475 +/mnt/Downloads/movies/Wrath.of.Man.2021.720p.BluRay.x264-WiKi/Wrath.of.Man.2021.720p.BluRay.x264-WiKi.mkv,Wrath.of.Man.2021.720p.BluRay.x264-WiKi.mkv,6737936226,2021-07-14T13:04:31,movie,1280x536,h264,7136.672,7553 +/mnt/Downloads/movies/The.Sparring.Partner.2022.1080p.BluRay.x265.10bit-WiKi/The.Sparring.Partner.2022.1080p.BluRay.x265.10bit-WiKi.mkv,The.Sparring.Partner.2022.1080p.BluRay.x265.10bit-WiKi.mkv,8537070481,2023-05-15T11:11:45,movie,1920x804,hevc,8247.36,8281 +/mnt/Downloads/movies/Intouchables.2011.720p.BluRay.x264.DTS-WiKi/Sample/Intouchables.2011.720p.BluRay.x264.DTS-WiKi.Sample.mkv,Intouchables.2011.720p.BluRay.x264.DTS-WiKi.Sample.mkv,61017028,2020-03-07T03:16:06,movie,1280x692,h264,65.083,7500 +/mnt/Downloads/movies/Intouchables.2011.720p.BluRay.x264.DTS-WiKi/Intouchables.2011.720p.BluRay.x264.DTS-WiKi.mkv,Intouchables.2011.720p.BluRay.x264.DTS-WiKi.mkv,5915694748,2020-03-07T03:28:35,movie,1280x692,h264,6722.048,7040 +/mnt/Downloads/movies/Dune.2021.1080p.HDRip.X264.AC3-EVO/Dune.2021.1080p.HDRip.X264.AC3-EVO.mkv,Dune.2021.1080p.HDRip.X264.AC3-EVO.mkv,11385653057,2021-10-24T08:05:51,movie,1920x776,h264,8936.188,10192 +/mnt/Downloads/movies/Extreme.Job.2019.1080p.BluRay.x264.DTS-WiKi/Sample/Extreme.Job.2019.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,Extreme.Job.2019.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,131104516,2021-12-18T05:28:50,movie,1920x804,h264,66.344,15809 +/mnt/Downloads/movies/Extreme.Job.2019.1080p.BluRay.x264.DTS-WiKi/Extreme.Job.2019.1080p.BluRay.x264.DTS-WiKi.mkv,Extreme.Job.2019.1080p.BluRay.x264.DTS-WiKi.mkv,9658280721,2021-12-18T05:29:05,movie,1920x804,h264,6669.632,11584 +/mnt/Downloads/movies/Gojira-1.0.2023.1080p.BluRay.DD+.7.1.x264-SPHD.mkv,Gojira-1.0.2023.1080p.BluRay.DD+.7.1.x264-SPHD.mkv,15046231726,2024-05-03T04:11:36,movie,1920x804,h264,7478.179,16096 +/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,The.Pass.Last.Days.of.the.Samurai.2020.1080p.BluRay.x265.10bit.DTS-WiKi.mkv,5862468304,2023-01-08T09:35:34,movie,1920x1036,hevc,6868.662,6828 +/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,The.Pass.Last.Days.of.the.Samurai.2020.1080p.BluRay.x265.10bit.DTS-WiKi.sample.mkv,54703369,2023-01-08T09:29:47,movie,1920x1036,hevc,66.522,6578 +/mnt/Downloads/movies/Boss.Level.2020.1080p.BluRay.x264.DTS-WiKi/Boss.Level.2020.1080p.BluRay.x264.DTS-WiKi.mkv,Boss.Level.2020.1080p.BluRay.x264.DTS-WiKi.mkv,11032675205,2021-09-05T06:48:40,movie,1920x806,h264,6059.435,14565 +/mnt/Downloads/movies/Boss.Level.2020.1080p.BluRay.x264.DTS-WiKi/Sample/Boss.Level.2020.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,Boss.Level.2020.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,150503145,2021-09-05T06:36:51,movie,1920x806,h264,61.228,19664 +/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,百元之恋.100.Yen.Love.2014.CHN.BDRip.1080p.x265.10bit.AC3.2Audio‐DGB.mkv,6265913769,2024-05-27T13:28:54,movie,1920x804,hevc,6817.792,7352 +/mnt/Downloads/movies/The.Outpost.2020.720p.BluRay.x264-WiKi/The.Outpost.2020.720p.BluRay.x264-WiKi.mkv,The.Outpost.2020.720p.BluRay.x264-WiKi.mkv,6234692420,2021-06-27T11:01:46,movie,1280x688,h264,7393.408,6746 +/mnt/Downloads/movies/The.Outpost.2020.720p.BluRay.x264-WiKi/Sample/The.Outpost.2020.720p.BluRay.x264-WiKi.Sample.mkv,The.Outpost.2020.720p.BluRay.x264-WiKi.Sample.mkv,86583610,2021-06-27T10:55:03,movie,1280x688,h264,61.752,11216 +/mnt/Downloads/movies/Wanted.2008.2160p.BluRay.x265.10bit.DTS-WiKi/Wanted.2008.2160p.BluRay.x265.10bit.DTS-WiKi.mkv,Wanted.2008.2160p.BluRay.x265.10bit.DTS-WiKi.mkv,27537097134,2023-03-27T15:49:26,movie,3840x1632,hevc,6595.84,33399 +/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,Captain.America.Brave.New.World.2025.2160p.BluRay.DoVi.x265.10bit.Atmos.TrueHD7.1-WiKi.mkv,26420844909,2025-05-09T08:28:47,movie,3840x1608,hevc,7112.32,29718 +/mnt/Downloads/movies/Summer.Wars.2009.1080p.BluRay.x264.DTS-WiKi/Sample/Summer.Wars.2009.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,Summer.Wars.2009.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,110598969,2018-08-24T11:18:27,movie,1920x1080,h264,61.792,14318 +/mnt/Downloads/movies/Summer.Wars.2009.1080p.BluRay.x264.DTS-WiKi/Summer.Wars.2009.1080p.BluRay.x264.DTS-WiKi.mkv,Summer.Wars.2009.1080p.BluRay.x264.DTS-WiKi.mkv,10218874414,2018-08-24T11:42:33,movie,1920x1080,h264,6853.097,11929 +/mnt/Downloads/movies/Freelance.2023.1080p.BluRay.x265.10bit.DTS-WiKi/Freelance.2023.1080p.BluRay.x265.10bit.DTS-WiKi.mkv,Freelance.2023.1080p.BluRay.x265.10bit.DTS-WiKi.mkv,7406257036,2024-02-15T13:16:44,movie,1920x802,hevc,6514.059,9095 +/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,The.Crimes.That.Bind.2018.1080p.BluRay.x264.DTS-WiKi.sample.mkv,114613307,2025-03-28T03:48:54,movie,1920x1040,h264,74.8,12258 +/mnt/Downloads/movies/The.Crimes.That.Bind.2018.1080p.BluRay.x264.DTS-WiKi/The.Crimes.That.Bind.2018.1080p.BluRay.x264.DTS-WiKi.mkv,The.Crimes.That.Bind.2018.1080p.BluRay.x264.DTS-WiKi.mkv,10736140531,2025-03-28T04:07:50,movie,1920x1040,h264,7148.141,12015 +/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,Rob.N.Roll.2024.2160p.HQ.WEB-DL.H265.60fps.DDP5.1.2Audio-CHDWEB.mkv,19344234162,2024-03-15T14:37:34,movie,3840x1616,hevc,5869.696,26364 +/mnt/Downloads/movies/Bound.1996.1080p.1080p.BluRay.x264.DTS-WiKi/Bound.1996.1080p.1080p.BluRay.x264.DTS-WiKi.mkv,Bound.1996.1080p.1080p.BluRay.x264.DTS-WiKi.mkv,14035566930,2021-09-12T15:55:20,movie,1920x1036,h264,6515.448,17233 +/mnt/Downloads/movies/Bound.1996.1080p.1080p.BluRay.x264.DTS-WiKi/Sample/Bound.1996.1080p.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,Bound.1996.1080p.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,110074972,2021-09-12T15:17:28,movie,1920x1036,h264,48.496,18158 +/mnt/Downloads/movies/The.Golden.Lotus.1974.1080p.BluRay.FLAC2.0.x264-PTer.mkv,The.Golden.Lotus.1974.1080p.BluRay.FLAC2.0.x264-PTer.mkv,10057115849,2023-11-23T11:04:53,movie,1920x796,h264,6987.147,11514 +/mnt/Downloads/movies/星に願いを。 2003 1080p HDTV x264 AAC.mkv,星に願いを。 2003 1080p HDTV x264 AAC.mkv,7513734336,2022-06-05T09:52:24,movie,1920x1024,h264,6392.96,9402 +/mnt/Downloads/movies/Mes.seances.de.lutte.2013.BDRip.X264.iNT-TLF/Mes.seances.de.lutte.2013.BDRip.X264.iNT-TLF.mkv,Mes.seances.de.lutte.2013.BDRip.X264.iNT-TLF.mkv,2514422074,2020-10-28T14:46:25,movie,1280x720,h264,6155.008,3268 +/mnt/Downloads/movies/Spider-Man.No.Way.Home.2021.720p.BluRay.x264-WiKi/Spider-Man.No.Way.Home.2021.720p.BluRay.x264-WiKi.mkv,Spider-Man.No.Way.Home.2021.720p.BluRay.x264-WiKi.mkv,8101239757,2022-03-12T13:35:02,movie,1280x536,h264,8889.92,7290 +/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,Spider-Man.No.Way.Home.2021.720p.BluRay.x264-WiKi.Sample.mkv,61513526,2022-03-12T13:26:12,movie,1280x536,h264,64.464,7633 +/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,Destiny.The.Tale.of.Kamakura.2017.1080p.BluRay.x264.DTS-WiKi.mkv,11794312843,2022-11-19T15:59:00,movie,1920x804,h264,7742.742,12186 +/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,Destiny.The.Tale.of.Kamakura.2017.1080p.BluRay.x264.DTS-WiKi.sample.mkv,108901209,2022-11-19T15:58:51,movie,1920x804,h264,54.645,15943 +/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,A.Christmas.Gift.from.Bob.2020.720p.BluRay.x264-WiKi.Sample.mkv,90138069,2021-12-04T10:00:02,movie,1280x536,h264,66.155,10900 +/mnt/Downloads/movies/A.Christmas.Gift.from.Bob.2020.720p.BluRay.x264-WiKi/A.Christmas.Gift.from.Bob.2020.720p.BluRay.x264-WiKi.mkv,A.Christmas.Gift.from.Bob.2020.720p.BluRay.x264-WiKi.mkv,4654868794,2021-12-04T10:05:16,movie,1280x536,h264,5555.616,6702 +/mnt/Downloads/movies/Godzilla.vs.Kong.2021.1080p.HMAX.WEB-DL.DDP5.1.CHS-ENG.x264.mkv,Godzilla.vs.Kong.2021.1080p.HMAX.WEB-DL.DDP5.1.CHS-ENG.x264.mkv,14561970574,2021-06-10T09:20:13,movie,1920x816,h264,6789.056,17159 +/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,Puss.in.Boots.The.Last.Wish.2022.1080p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi.mkv,9593814253,2023-03-03T15:13:21,movie,1920x804,hevc,6141.152,12497 +/mnt/Downloads/movies/Mad.Fate.2023.1080p.NowPlay.WEB-DL.H264.AAC-HHWEB/Mad.Fate.2023.1080p.NowPlay.WEB-DL.H264.AAC-HHWEB.mkv,Mad.Fate.2023.1080p.NowPlay.WEB-DL.H264.AAC-HHWEB.mkv,3773009416,2024-10-12T00:08:39,movie,1920x1080,h264,6243.04,4834 +/mnt/Downloads/movies/Exhuma.2024.1080p.BluRay.x265.10bit-WiKi/Exhuma.2024.1080p.BluRay.x265.10bit-WiKi.mkv,Exhuma.2024.1080p.BluRay.x265.10bit-WiKi.mkv,8537379181,2024-10-02T01:19:49,movie,1920x1036,hevc,8039.072,8495 +/mnt/Downloads/movies/正牌韦小宝之奉旨沟女.Hero.from.Beyond.the.Boundary.of.Time.1993.D5.2Audio.MiniSD-TLF.mkv,正牌韦小宝之奉旨沟女.Hero.from.Beyond.the.Boundary.of.Time.1993.D5.2Audio.MiniSD-TLF.mkv,864947350,2022-01-04T15:10:42,movie,704x390,h264,5846.8,1183 +/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,Inside.Out.2.2024.1080p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi.mkv,9623350561,2024-09-12T09:45:50,movie,1920x804,hevc,5788.0,13301 +/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,Girls.to.Buy.2021.Uncut.1080p.BluRay.x265.10bit.DTS-WiKi.mkv,10315318899,2022-09-22T12:39:39,movie,1920x804,hevc,8659.797,9529 +/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,Girls.to.Buy.2021.Uncut.1080p.BluRay.x265.10bit.DTS-WiKi.Sample.mkv,80033944,2022-09-22T12:39:39,movie,1920x804,hevc,66.417,9640 +/mnt/Downloads/movies/Her.Story.2024.1080p.BluRay.x265.10bit.DTS-WiKi/Her.Story.2024.1080p.BluRay.x265.10bit.DTS-WiKi.mkv,Her.Story.2024.1080p.BluRay.x265.10bit.DTS-WiKi.mkv,7695359810,2025-05-10T02:51:25,movie,1920x892,hevc,7397.459,8322 +/mnt/Downloads/movies/Galileo.Forbidden.Sorcery.2022.1080p.BluRay.x265.10bit-WiKi/Galileo.Forbidden.Sorcery.2022.1080p.BluRay.x265.10bit-WiKi.mkv,Galileo.Forbidden.Sorcery.2022.1080p.BluRay.x265.10bit-WiKi.mkv,4695159535,2023-03-16T13:56:23,movie,1920x1080,hevc,6202.208,6056 +/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,Road.House.2024.2160p.AMZN.WEB-DL.H265.HDR.DDP5.1-ADWeb.mkv,14190946598,2024-03-21T10:21:05,movie,3840x1600,hevc,7404.576,15332 +/mnt/Downloads/movies/Pig.2021.720p.BluRay.x264-WiKi/Sample/Pig.2021.720p.BluRay.x264-WiKi.Sample.mkv,Pig.2021.720p.BluRay.x264-WiKi.Sample.mkv,45457145,2021-10-03T04:12:46,movie,1280x536,h264,60.569,6004 +/mnt/Downloads/movies/Pig.2021.720p.BluRay.x264-WiKi/Pig.2021.720p.BluRay.x264-WiKi.mkv,Pig.2021.720p.BluRay.x264-WiKi.mkv,4695901945,2021-10-03T04:18:18,movie,1280x536,h264,5478.496,6857 +/mnt/Downloads/movies/Listen.to.My.Heart.2009.1080p.AMZN.WEB-DL.DDP5.1.x264-ARiN.mkv,Listen.to.My.Heart.2009.1080p.AMZN.WEB-DL.DDP5.1.x264-ARiN.mkv,9469771802,2021-02-17T02:58:48,movie,1920x1040,h264,6443.729,11756 +/mnt/Downloads/movies/Your.Name.2016.RERiP.1080p.BluRay.x264.DTS-WiKi/Sample/Your.Name.2016.RERiP.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,Your.Name.2016.RERiP.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,112745317,2021-04-20T12:22:37,movie,1920x1080,h264,60.675,14865 +/mnt/Downloads/movies/Your.Name.2016.RERiP.1080p.BluRay.x264.DTS-WiKi/Your.Name.2016.RERiP.1080p.BluRay.x264.DTS-WiKi.mkv,Your.Name.2016.RERiP.1080p.BluRay.x264.DTS-WiKi.mkv,9491689036,2021-04-20T12:25:30,movie,1920x1080,h264,6395.648,11872 +/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,Inside.Out.2.2024.PROPER.UHD.BluRay.2160p.10bit.DV.3Audio.TrueHD(Atmos).7.1.x265-beAst.mkv,12870821940,2025-01-22T09:31:38,movie,3840x1608,hevc,5782.212,17807 +/mnt/Downloads/movies/A.Guilty.Conscience.2023.1080p.BluRay.x265.10bit-WiKi/A.Guilty.Conscience.2023.1080p.BluRay.x265.10bit-WiKi.mkv,A.Guilty.Conscience.2023.1080p.BluRay.x265.10bit-WiKi.mkv,7033116893,2023-08-02T00:21:59,movie,1920x816,hevc,8009.856,7024 +/mnt/Downloads/movies/隣人X 疑惑の彼女 2023 1080p HDTV x264 AAC5.1.mkv,隣人X 疑惑の彼女 2023 1080p HDTV x264 AAC5.1.mkv,3951518203,2024-12-08T02:16:47,movie,1920x804,h264,7214.833,4381 +/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,Kakegurui.2.Ultimate.Russian.Roulette.2021.720p.BluRay.x264-WiKi.sample.mkv,53113392,2021-11-11T13:32:30,movie,1280x692,h264,68.546,6198 +/mnt/Downloads/movies/Kakegurui.2.Ultimate.Russian.Roulette.2021.720p.BluRay.x264-WiKi/Kakegurui.2.Ultimate.Russian.Roulette.2021.720p.BluRay.x264-WiKi.mkv,Kakegurui.2.Ultimate.Russian.Roulette.2021.720p.BluRay.x264-WiKi.mkv,4695270714,2021-11-11T13:33:26,movie,1280x692,h264,7099.009,5291 +/mnt/Downloads/movies/Gladiator.II.2024.1080p.BluRay.x264.Atmos.TrueHD7.1-WiKi/Gladiator.II.2024.1080p.BluRay.x264.Atmos.TrueHD7.1-WiKi.mkv,Gladiator.II.2024.1080p.BluRay.x264.Atmos.TrueHD7.1-WiKi.mkv,18548675974,2025-03-01T05:17:51,movie,1920x804,h264,8872.011,16725 +/mnt/Downloads/movies/A.Moment.of.Romance.1990.1080p.BluRay.x264.DTS-WiKi/A.Moment.of.Romance.1990.1080p.BluRay.x264.DTS-WiKi.mkv,A.Moment.of.Romance.1990.1080p.BluRay.x264.DTS-WiKi.mkv,12253607089,2021-03-07T03:20:44,movie,1920x1080,h264,5517.888,17765 +/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,A.Moment.of.Romance.1990.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,152053405,2021-03-07T03:05:50,movie,1920x1080,h264,61.641,19734 +/mnt/Downloads/movies/Golden.Slumber.2010.1080p.BluRay.x265.10bit.DTS-WiKi/Sample/Golden.Slumber.2010.1080p.BluRay.x265.10bit.DTS-WiKi.Sample.mkv,Golden.Slumber.2010.1080p.BluRay.x265.10bit.DTS-WiKi.Sample.mkv,84805555,2022-10-28T14:06:48,movie,1920x1038,hevc,64.779,10473 +/mnt/Downloads/movies/Golden.Slumber.2010.1080p.BluRay.x265.10bit.DTS-WiKi/Golden.Slumber.2010.1080p.BluRay.x265.10bit.DTS-WiKi.mkv,Golden.Slumber.2010.1080p.BluRay.x265.10bit.DTS-WiKi.mkv,11013564586,2022-10-28T14:11:55,movie,1920x1038,hevc,8409.401,10477 +/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,All.Quiet.on.the.Western.Front.2022.1080p.BluRay.x265.10bit.TrueHD7.1-WiKi.mkv,12644285587,2023-03-24T11:20:06,movie,1920x800,hevc,8817.792,11471 +/mnt/Downloads/movies/Superman.2025.1080p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi/Superman.2025.1080p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi.mkv,Superman.2025.1080p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi.mkv,11522679057,2025-10-30T12:45:43,movie,1920x1012,hevc,7763.68,11873 +/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,Nobody.2.2025.1080p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi.mkv,6899965350,2025-10-05T05:45:42,movie,1920x804,hevc,5364.032,10290 +/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,Godzilla.x.Kong.The.New.Empire.2024.1080p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi.mkv,11428799014,2024-06-08T04:46:32,movie,1920x800,hevc,6880.896,13287 +/mnt/Downloads/movies/Prey.2022.1080p.BluRay.x265.10bit.DTS-WiKi/Prey.2022.1080p.BluRay.x265.10bit.DTS-WiKi.mkv,Prey.2022.1080p.BluRay.x265.10bit.DTS-WiKi.mkv,7104855660,2023-10-06T12:31:45,movie,1920x804,hevc,5975.97,9511 +/mnt/Downloads/movies/A.Writer's.Odyssey.2021.720p.BluRay.x264-WiKi/Sample/A.Writer's.Odyssey.2021.720p.BluRay.x264-WiKi.Sample.mkv,A.Writer's.Odyssey.2021.720p.BluRay.x264-WiKi.Sample.mkv,89736503,2021-09-08T12:42:58,movie,1280x692,h264,70.288,10213 +/mnt/Downloads/movies/A.Writer's.Odyssey.2021.720p.BluRay.x264-WiKi/A.Writer's.Odyssey.2021.720p.BluRay.x264-WiKi.mkv,A.Writer's.Odyssey.2021.720p.BluRay.x264-WiKi.mkv,6033227451,2021-09-08T12:50:44,movie,1280x692,h264,7790.08,6195 +/mnt/Downloads/movies/Baby.Driver.2017.1080p.BluRay.x264.DTS-WiKi/Sample/Baby.Driver.2017.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,Baby.Driver.2017.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,134095933,2020-07-09T06:38:08,movie,1920x804,h264,62.528,17156 +/mnt/Downloads/movies/Baby.Driver.2017.1080p.BluRay.x264.DTS-WiKi/Baby.Driver.2017.1080p.BluRay.x264.DTS-WiKi.mkv,Baby.Driver.2017.1080p.BluRay.x264.DTS-WiKi.mkv,16449832324,2020-07-09T06:39:59,movie,1920x804,h264,6759.755,19467 +/mnt/Downloads/movies/Hard.Hit.2021.720p.BluRay.x264-WiKi/Hard.Hit.2021.720p.BluRay.x264-WiKi.mkv,Hard.Hit.2021.720p.BluRay.x264-WiKi.mkv,4796651730,2022-01-25T13:17:40,movie,1280x536,h264,5662.208,6777 +/mnt/Downloads/movies/Hard.Hit.2021.720p.BluRay.x264-WiKi/Sample/Hard.Hit.2021.720p.BluRay.x264-WiKi.Sample.mkv,Hard.Hit.2021.720p.BluRay.x264-WiKi.Sample.mkv,53117093,2022-01-25T13:12:54,movie,1280x536,h264,63.006,6744 +/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,Tron Ares 2025 USA BluRay 1080p DTS-HDMA7.1 x265 10bit-CHD.mkv,12319799640,2026-01-14T13:17:40,movie,1920x804,hevc,7128.128,13826 +/mnt/Downloads/movies/Sinners 2025 REPACK 1080p BluRay x265 10bit TrueHD-WiKi/Sinners 2025 REPACK 1080p BluRay x265 10bit TrueHD-WiKi.mkv,Sinners 2025 REPACK 1080p BluRay x265 10bit TrueHD-WiKi.mkv,11875278812,2025-07-15T02:16:02,movie,1920x1080,hevc,8253.913,11509 +/mnt/Downloads/movies/Raging Fire Exclusive Documentary 2021 WEB-DL 1080p H264 DDP 2.0-Dave.mkv,Raging Fire Exclusive Documentary 2021 WEB-DL 1080p H264 DDP 2.0-Dave.mkv,264835242,2021-08-16T15:51:15,movie,1920x1080,h264,1236.512,1713 +/mnt/Downloads/movies/A.Man.2022.1080p.BluRay.x265.10bit.DTS-WiKi/A.Man.2022.1080p.BluRay.x265.10bit.DTS-WiKi.mkv,A.Man.2022.1080p.BluRay.x265.10bit.DTS-WiKi.mkv,7043909131,2023-06-16T03:45:17,movie,1792x1080,hevc,7329.323,7688 +/mnt/Downloads/movies/The.Family.Plan.2023.1080p.Apple.TV+.WEB-DL.DDP.5.1.Atmos.H.264-CHDWEB.mkv,The.Family.Plan.2023.1080p.Apple.TV+.WEB-DL.DDP.5.1.Atmos.H.264-CHDWEB.mkv,9492040340,2026-01-22T07:41:05,movie,1920x804,h264,7124.451,10658 +/mnt/Downloads/movies/Waiting.For.Rain.2021.1080p.WEB-DL.AAC2.0.H264-TTG.mkv,Waiting.For.Rain.2021.1080p.WEB-DL.AAC2.0.H264-TTG.mkv,2827546418,2021-08-27T15:08:38,movie,1920x1080,h264,7025.129,3219 +/mnt/Downloads/movies/Let.Him.Go.2020.720p.BluRay.x264-WiKi/Sample/Let.Him.Go.2020.720p.BluRay.x264-WiKi.Sample.mkv,Let.Him.Go.2020.720p.BluRay.x264-WiKi.Sample.mkv,46750437,2021-01-27T11:32:11,movie,1280x536,h264,60.566,6175 +/mnt/Downloads/movies/Let.Him.Go.2020.720p.BluRay.x264-WiKi/Let.Him.Go.2020.720p.BluRay.x264-WiKi.mkv,Let.Him.Go.2020.720p.BluRay.x264-WiKi.mkv,5145299913,2021-01-27T11:36:30,movie,1280x536,h264,6817.344,6037 +/mnt/Downloads/movies/步履不停.2008.CC.1080p.日语.简繁中字£CMCT槿年/[步履不停].Still.Walking.2008.CC.BluRay.1080p.x264.DTS-CMCT.mkv,[步履不停].Still.Walking.2008.CC.BluRay.1080p.x264.DTS-CMCT.mkv,10306799427,2025-06-23T11:06:52,movie,1920x1036,h264,6894.934,11958 +/mnt/Downloads/movies/松本清張「ガラスの城」テレビ朝日開局65周年記念 松本清張二夜連続ドラマプレミアム 1080p AbemaTV WEB-DL H264 AAC-Solitude@DoA.mkv,松本清張「ガラスの城」テレビ朝日開局65周年記念 松本清張二夜連続ドラマプレミアム 1080p AbemaTV WEB-DL H264 AAC-Solitude@DoA.mkv,3224254660,2024-01-16T13:46:09,movie,1920x1080,h264,6146.159,4196 +/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,Shang.Chi.and.the.Legend.of.the.Ten.Rings.2021.1080p.BDRip.X264.DTS-EVO.mkv,6825495849,2021-11-10T01:24:04,movie,1920x804,h264,7940.766,6876 +"/mnt/Downloads/movies/Crying.Out.Love, in.the.Center.of.the.World.2004.1080p.AMZN.WEB-DL.DDP5.1.H.264-ARiN.mkv","Crying.Out.Love, in.the.Center.of.the.World.2004.1080p.AMZN.WEB-DL.DDP5.1.H.264-ARiN.mkv",7537413729,2021-06-19T05:00:11,movie,1920x1080,h264,8309.792,7256 +/mnt/Downloads/movies/Inside.Men.2015.Director's.Cut.720p.BluRay.x264-WiKi/Inside.Men.2015.Director's.Cut.720p.BluRay.x264-WiKi.mkv,Inside.Men.2015.Director's.Cut.720p.BluRay.x264-WiKi.mkv,8535378132,2020-06-13T13:33:38,movie,1280x688,h264,10829.536,6305 +/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,Inside.Men.2015.Director's.Cut.720p.BluRay.x264-WiKi.Sample.mkv,67381496,2020-06-13T13:22:01,movie,1280x688,h264,64.495,8358 +/mnt/Downloads/movies/Triangle.of.Sadness.2022.1080p.BluRay.x265.10bit.DTS-WiKi/Triangle.of.Sadness.2022.1080p.BluRay.x265.10bit.DTS-WiKi.mkv,Triangle.of.Sadness.2022.1080p.BluRay.x265.10bit.DTS-WiKi.mkv,10883598114,2023-02-19T09:25:33,movie,1920x804,hevc,8818.084,9873 +/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,The.Fable.The Killer.Who.Doesn't.Kill.2021.1080p.BluRay.x264.DTS-WiKi.sample.mkv,115143221,2021-11-19T13:03:17,movie,1920x804,h264,56.899,16189 +/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,The.Fable.The Killer.Who.Doesn't.Kill.2021.1080p.BluRay.x264.DTS-WiKi.mkv,11811218561,2021-11-19T13:07:30,movie,1920x804,h264,7891.384,11973 +/mnt/Downloads/movies/Bad.Boys.for.Life.2020.1080p.BluRay.x264-WUTANG/bad.boys.for.life.2020.1080p.bluray.x264-wutang.mkv,bad.boys.for.life.2020.1080p.bluray.x264-wutang.mkv,10552950759,2020-04-10T13:57:24,movie,1920x800,h264,7438.432,11349 +/mnt/Downloads/movies/Bad.Boys.for.Life.2020.1080p.BluRay.x264-WUTANG/Sample/bad.boys.for.life.2020.1080p.bluray.x264-wutang-sample.mkv,bad.boys.for.life.2020.1080p.bluray.x264-wutang-sample.mkv,76360378,2020-04-10T13:45:36,movie,1920x800,h264,69.868,8743 +/mnt/Downloads/movies/Confidential.Assignment.2017.1080p.BluRay.x264-WiKi/Confidential.Assignment.2017.1080p.BluRay.x264-WiKi.mkv,Confidential.Assignment.2017.1080p.BluRay.x264-WiKi.mkv,9853362264,2022-11-01T10:52:05,movie,1920x804,h264,7454.016,10575 +/mnt/Downloads/movies/Confidential.Assignment.2017.1080p.BluRay.x264-WiKi/Sample/Confidential.Assignment.2017.1080p.BluRay.x264-WiKi.Sample.mkv,Confidential.Assignment.2017.1080p.BluRay.x264-WiKi.Sample.mkv,107123904,2022-11-01T10:51:02,movie,1920x804,h264,98.987,8657 +/mnt/Downloads/movies/Weathering.with.You.2019.RERiP.1080p.BluRay.x264.DTS-WiKi/Weathering.with.You.2019.RERiP.1080p.BluRay.x264.DTS-WiKi.mkv,Weathering.with.You.2019.RERiP.1080p.BluRay.x264.DTS-WiKi.mkv,10939446599,2021-04-20T12:22:03,movie,1920x1080,h264,6733.727,12996 +/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,Weathering.with.You.2019.RERiP.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,135237219,2021-04-20T12:15:15,movie,1920x1080,h264,61.841,17494 +/mnt/Downloads/movies/爱,不由自主.2017.1080p.日语.简繁中字£CMCT陆判/[爱,不由自主].Narratage.2017.BluRay.1080p.x264.DTS-CMCT.mkv,[爱,不由自主].Narratage.2017.BluRay.1080p.x264.DTS-CMCT.mkv,13595442409,2025-09-04T06:24:21,movie,1920x1036,h264,8383.801,12973 +/mnt/Downloads/movies/Muzi.v.nadeji.2011.1080p.BluRay.x264.DTS-WiKi/Sample/Muzi.v.nadeji.2011.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,Muzi.v.nadeji.2011.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,106666718,2020-06-03T17:41:32,movie,1920x1080,h264,67.96,12556 +/mnt/Downloads/movies/Muzi.v.nadeji.2011.1080p.BluRay.x264.DTS-WiKi/Muzi.v.nadeji.2011.1080p.BluRay.x264.DTS-WiKi.mkv,Muzi.v.nadeji.2011.1080p.BluRay.x264.DTS-WiKi.mkv,10756840494,2020-06-03T17:43:54,movie,1920x1080,h264,6613.995,13011 +/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,The.Wild.Robot.2024.1080p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi.mkv,9149282918,2024-11-25T12:06:57,movie,1920x804,hevc,6104.0,11991 +/mnt/Downloads/movies/明日を綴る写真館 2024 1080p HDTV x264 AAC5.1.mkv,明日を綴る写真館 2024 1080p HDTV x264 AAC5.1.mkv,5932227687,2025-03-30T09:22:00,movie,1920x1080,h264,6261.76,7578 +/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,Hidden.Face.2024.1080p.CPNG.WEB-DL.AAC2.0.H264-HHWEB.mkv,2185258383,2025-01-31T10:01:17,movie,1920x1080,h264,6921.344,2525 +/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,The.Seed.of.the.Sacred.Fig.2024.1080p.BluRay.x265.10bit.DTS-WiKi.mkv,12866335876,2025-02-15T07:32:44,movie,1920x800,hevc,10008.651,10284 +/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,Maigret.Sets.a.Trap.2016.720p.BluRay.x264.DTS-WiKi.mkv,4264825798,2021-08-19T14:22:33,movie,1280x720,h264,5192.04,6571 +/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,Maigret.Sets.a.Trap.2016.720p.BluRay.x264.DTS-WiKi.Sample.mkv,57083698,2021-08-19T14:20:49,movie,1280x720,h264,66.6,6856 +/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,Maigrets.Dead.Man.2016.720p.BluRay.x264.DTS-WiKi.Sample.mkv,53766652,2021-08-19T14:12:46,movie,1280x720,h264,64.2,6699 +/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,Maigrets.Dead.Man.2016.720p.BluRay.x264.DTS-WiKi.mkv,4355470260,2021-08-19T14:22:35,movie,1280x720,h264,5303.84,6569 +/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,Shall.we.dance.1996.1080p.BluRay.x265.10bit.DTS-WiKi.Sample.mkv,103975461,2022-09-03T09:18:09,movie,1918x1036,hevc,61.186,13594 +/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,Shall.we.dance.1996.Remastered.1080p.BluRay.x265.10bit.DTS-WiKi.mkv,13689504233,2022-09-03T09:33:00,movie,1918x1036,hevc,8199.191,13356 +/mnt/Downloads/movies/Warriors of Future 2022 NF WEB-DL 1080p H.264 DDP 5.1 10Audios-Dave.mkv,Warriors of Future 2022 NF WEB-DL 1080p H.264 DDP 5.1 10Audios-Dave.mkv,8633392078,2022-12-05T02:14:35,movie,1920x1080,h264,6074.528,11369 +/mnt/Downloads/movies/DogMan.2023.1080p.BluRay.x265.10bit-WiKi/DogMan.2023.1080p.BluRay.x265.10bit-WiKi.mkv,DogMan.2023.1080p.BluRay.x265.10bit-WiKi.mkv,5869049836,2024-02-01T07:27:32,movie,1920x804,hevc,6870.24,6834 +/mnt/Downloads/movies/Bushido.2024.1080p.BluRay.x265.10bit.DTS-WiKi/Bushido.2024.1080p.BluRay.x265.10bit.DTS-WiKi.mkv,Bushido.2024.1080p.BluRay.x265.10bit.DTS-WiKi.mkv,5870509283,2024-12-31T06:27:13,movie,1920x804,hevc,7769.483,6044 +/mnt/Downloads/movies/Way.Down.2021.720p.BluRay.x264-WiKi/Sample/Way.Down.2021.720p.BluRay.x264-WiKi.Sample.mkv,Way.Down.2021.720p.BluRay.x264-WiKi.Sample.mkv,79923387,2021-07-24T10:49:12,movie,1280x536,h264,63.698,10037 +/mnt/Downloads/movies/Way.Down.2021.720p.BluRay.x264-WiKi/Way.Down.2021.720p.BluRay.x264-WiKi.mkv,Way.Down.2021.720p.BluRay.x264-WiKi.mkv,5638400942,2021-07-24T10:49:58,movie,1280x536,h264,7096.032,6356 +/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,Parallel.World.Love.Story.2019.1080p.BluRay.x264.DTS-WiKi.sample.mkv,104860583,2022-07-17T15:47:58,movie,1920x804,h264,92.973,9022 +/mnt/Downloads/movies/Parallel.World.Love.Story.2019.1080p.BluRay.x264.DTS-WiKi/Parallel.World.Love.Story.2019.1080p.BluRay.x264.DTS-WiKi.mkv,Parallel.World.Love.Story.2019.1080p.BluRay.x264.DTS-WiKi.mkv,9657194489,2022-07-17T15:48:00,movie,1920x804,h264,6512.512,11862 +/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,The.Long.Goodbye.1973.BluRay.1080p.x265.10bit.FLAC.MNHD-FRDS.mkv,14736725324,2023-06-04T14:40:06,movie,1920x804,hevc,6723.766,17533 +/mnt/Downloads/movies/The.Door.Into.Summer.2021.720p.BluRay.x264-WiKi/Sample/The.Door.Into.Summer.2021.720p.BluRay.x264-WiKi.sample.mkv,The.Door.Into.Summer.2021.720p.BluRay.x264-WiKi.sample.mkv,53136627,2022-01-13T14:20:39,movie,1280x694,h264,60.79,6992 +/mnt/Downloads/movies/The.Door.Into.Summer.2021.720p.BluRay.x264-WiKi/The.Door.Into.Summer.2021.720p.BluRay.x264-WiKi.mkv,The.Door.Into.Summer.2021.720p.BluRay.x264-WiKi.mkv,4692606096,2022-01-13T14:20:45,movie,1280x694,h264,7136.16,5260 +/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,The.Confidence.Man.JP.SP.2019.720p.BluRay.x264-WiKi.sample.mkv,54194818,2020-06-09T02:43:17,movie,1278x720,h264,99.658,4350 +/mnt/Downloads/movies/The.Confidence.Man.JP.SP.2019.720p.BluRay.x264-WiKi/The.Confidence.Man.JP.SP.2019.720p.BluRay.x264-WiKi.mkv,The.Confidence.Man.JP.SP.2019.720p.BluRay.x264-WiKi.mkv,4262352508,2020-06-09T02:43:22,movie,1278x720,h264,6257.728,5449 +/mnt/Downloads/movies/Monster.Hunter.2020.REPACK.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTG.mkv,Monster.Hunter.2020.REPACK.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTG.mkv,6785495376,2021-02-17T03:52:23,movie,1920x800,h264,6186.944,8773 +/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,The.Beekeeper.2024.1080p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi.mkv,9681559013,2024-03-21T09:15:48,movie,1920x800,hevc,6314.144,12266 +/mnt/Downloads/movies/Luca.2021.1080p.BluRay.x264.DTS-WiKi/Sample/Luca.2021.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,Luca.2021.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,159684078,2021-08-08T10:24:36,movie,1920x1036,h264,65.415,19528 +/mnt/Downloads/movies/Luca.2021.1080p.BluRay.x264.DTS-WiKi/Luca.2021.1080p.BluRay.x264.DTS-WiKi.mkv,Luca.2021.1080p.BluRay.x264.DTS-WiKi.mkv,10668726354,2021-08-08T10:41:55,movie,1920x1036,h264,5715.104,14934 +/mnt/Downloads/movies/The.Soul.2021.1080p.NF.WEB-DL.DDP5.1.x264-DoA.mkv,The.Soul.2021.1080p.NF.WEB-DL.DDP5.1.x264-DoA.mkv,2639248456,2021-04-15T15:44:42,movie,1920x1080,h264,7823.648,2698 +/mnt/Downloads/movies/Dog.2022.1080p.BluRay.x264.DTS-WiKi/Dog.2022.1080p.BluRay.x264.DTS-WiKi.mkv,Dog.2022.1080p.BluRay.x264.DTS-WiKi.mkv,12448761855,2022-05-26T10:20:38,movie,1920x800,h264,6081.953,16374 +/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 +/mnt/Downloads/movies/Moonlight.Express.1999.720p.BluRay.x264-WiKi/Sample/Moonlight.Express.1999.720p.BluRay.x264-WiKi.Sample.mkv,Moonlight.Express.1999.720p.BluRay.x264-WiKi.Sample.mkv,63867389,2025-08-27T15:25:09,movie,1280x720,h264,44.799,11405 +/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,Hitman.Agent.Jun.2020.1080p.WEBRip.x264.AAC5.1-[YTS.MX].mp4,2173106483,2021-02-15T16:07:12,movie,1920x1024,h264,6588.704,2638 +/mnt/Downloads/movies/カツベン! 2019 1080p HDTV x264 AAC5.1-DoA.mkv,カツベン! 2019 1080p HDTV x264 AAC5.1-DoA.mkv,10326932006,2020-10-24T03:52:18,movie,1920x1036,h264,7591.918,10882 +/mnt/Downloads/movies/The.Colors.Within.2024.1080p.BluRay.x265.10bit.DTS-WiKi/The.Colors.Within.2024.1080p.BluRay.x265.10bit.DTS-WiKi.mkv,The.Colors.Within.2024.1080p.BluRay.x265.10bit.DTS-WiKi.mkv,3769851450,2025-03-04T09:34:04,movie,1920x1036,hevc,6041.046,4992 +/mnt/Downloads/movies/The.Lost.City.2022.1080p.BluRay.x265.10bit-WiKi/Sample/The.Lost.City.2022.1080p.BluRay.x265.10bit-WiKi.Sample.mkv,The.Lost.City.2022.1080p.BluRay.x265.10bit-WiKi.Sample.mkv,65179642,2022-07-17T15:39:40,movie,1920x804,hevc,64.057,8140 +/mnt/Downloads/movies/The.Lost.City.2022.1080p.BluRay.x265.10bit-WiKi/The.Lost.City.2022.1080p.BluRay.x265.10bit-WiKi.mkv,The.Lost.City.2022.1080p.BluRay.x265.10bit-WiKi.mkv,6950728905,2022-07-17T15:39:58,movie,1920x804,hevc,6705.056,8293 +/mnt/Downloads/movies/Muroi.Shinji.Not.Defeated.2024.1080p.BluRay.x264.DTS-WiKi/Muroi.Shinji.Not.Defeated.2024.1080p.BluRay.x264.DTS-WiKi.mkv,Muroi.Shinji.Not.Defeated.2024.1080p.BluRay.x264.DTS-WiKi.mkv,10470381166,2025-12-28T11:59:19,movie,1920x1036,h264,6880.341,12174 +/mnt/Downloads/movies/Shoplifters.2018.1080p.BluRay.x264.DTS-WiKi/Shoplifters.2018.1080p.BluRay.x264.DTS-WiKi.mkv,Shoplifters.2018.1080p.BluRay.x264.DTS-WiKi.mkv,12130044474,2024-05-26T14:00:31,movie,1920x1036,h264,7254.393,13376 +/mnt/Downloads/movies/Shoplifters.2018.1080p.BluRay.x264.DTS-WiKi/Sample/Shoplifters.2018.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,Shoplifters.2018.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,118965562,2024-05-26T14:00:21,movie,1920x1036,h264,62.568,15211 +/mnt/Downloads/movies/Shin.Ultraman.2022.BluRay.1080p.x264.Atmos.TrueHD7.1-HDChina/Shin.Ultraman.2022.BluRay.1080p.x264.Atmos.TrueHD7.1-HDChina.mkv,Shin.Ultraman.2022.BluRay.1080p.x264.Atmos.TrueHD7.1-HDChina.mkv,15675545441,2023-04-13T01:20:23,movie,1920x804,h264,6730.724,18631 +/mnt/Downloads/movies/My Bossy Girl 2019 WEB-DL 1080P H264 AAC-TTG/My Bossy Girl 2019 WEB-DL 1080P H264 AAC-TTG.mkv,My Bossy Girl 2019 WEB-DL 1080P H264 AAC-TTG.mkv,4421689627,2020-06-26T10:12:49,movie,1920x1080,h264,6010.176,5885 +/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,[恶世之子].To.Catch.a.Killer.2023.BluRay.1080p.x265.10bit.DTS-CMCT.mkv,6659054641,2023-09-10T15:17:46,movie,1920x1080,hevc,7153.024,7447 +/mnt/Downloads/movies/PBS.美国经历.长津湖战役.American.Experience.The.Battle.of.Chosin.2016.WEB-DL.MiniSD-TLF.mkv,PBS.美国经历.长津湖战役.American.Experience.The.Battle.of.Chosin.2016.WEB-DL.MiniSD-TLF.mkv,958923963,2021-10-09T03:18:59,movie,854x480,h264,6863.178,1117 +/mnt/Downloads/movies/翻译疑云.Les.Traducteurs.2019.Bluray.1080p.x265.10bit.MNHD-FRDS/Les.Traducteurs.2019.Bluray.1080p.x265.10bit.MNHD-FRDS.mkv,Les.Traducteurs.2019.Bluray.1080p.x265.10bit.MNHD-FRDS.mkv,6331315690,2022-05-15T04:41:10,movie,1920x804,hevc,6301.0,8038 +/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,The.Devils.Advocate.1997.UNRATED.DC.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,128410416,2023-10-29T14:54:05,movie,1920x800,h264,52.116,19711 +/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,The.Devils.Advocate.1997.UNRATED.DC.1080p.BluRay.x264.DTS-WiKi.mkv,16095824691,2023-10-29T14:56:09,movie,1920x800,h264,8635.819,14910 +/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,The.Roundup.Punishment.2024.1080p.BluRay.x265.10bit.TrueHD5.1-WiKi.mkv,8349714762,2024-08-31T11:15:33,movie,1920x804,hevc,6551.584,10195 +/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,Foundation.2021.S01E10.The.Leap.1080p.ATVP.WEB-DL.DDP5.1.H.264-CasStudio.mkv,4931491878,2021-11-20T17:25:52,movie,1920x960,h264,3631.936,10862 +/mnt/Downloads/movies/Fortune.Favors.Lady.Nikuko.2021.1080p.BluRay.x264.DTS-WiKi/Fortune.Favors.Lady.Nikuko.2021.1080p.BluRay.x264.DTS-WiKi.mkv,Fortune.Favors.Lady.Nikuko.2021.1080p.BluRay.x264.DTS-WiKi.mkv,7053086784,2022-06-05T02:12:24,movie,1920x804,h264,5775.008,9770 +/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,Fortune.Favors.Lady.Nikuko.2021.1080p.BluRay.x264.DTS-WiKi.sample.mkv,106177561,2022-06-05T02:08:09,movie,1920x804,h264,81.818,10381 +/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,Lonely.Castle.in.the.Mirror.2022.1080p.BluRay.x265.10bit.DTS-WiKi.mkv,7771566818,2023-10-20T11:56:53,movie,1920x1080,hevc,7039.329,8832 +/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,Wotakoi.Love.Is.Hard.for.Otaku.2020.720p.BluRay.x264.DTS-WiKi.mkv,5372616722,2020-08-25T12:05:13,movie,1280x692,h264,6838.837,6284 +/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,Wotakoi.Love.Is.Hard.for.Otaku.2020.720p.BluRay.x264.DTS-WiKi.sample.mkv,53035882,2020-08-25T11:58:38,movie,1280x692,h264,61.401,6910 +/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,A.Man.Called.Otto.2022.1080p.BluRay.x265.10bit.DTS-WiKi.mkv,8794321270,2023-03-16T14:05:34,movie,1920x1036,hevc,7570.563,9293 +/mnt/Downloads/movies/The.Substance.2024.1080p.BluRay.x265.10bit.DTS-WiKi/The.Substance.2024.1080p.BluRay.x265.10bit.DTS-WiKi.mkv,The.Substance.2024.1080p.BluRay.x265.10bit.DTS-WiKi.mkv,9659254122,2024-12-31T10:38:25,movie,1920x800,hevc,8530.923,9058 +/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,Den.of.Thieves.2.Pantera.2025.2160p.UHD.BluRay.x265.10bit.DV.TrueHD.7.1.Atmos-ADE.mkv,29990429499,2025-03-04T10:24:40,movie,3840x1608,hevc,8655.648,27718 +/mnt/Downloads/movies/Bullet.Train.2022.1080p.BluRay.x264.DTS-WiKi/Sample/Bullet.Train.2022.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,Bullet.Train.2022.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,212693407,2022-10-21T14:14:32,movie,1920x804,h264,65.151,26116 +/mnt/Downloads/movies/Bullet.Train.2022.1080p.BluRay.x264.DTS-WiKi/Bullet.Train.2022.1080p.BluRay.x264.DTS-WiKi.mkv,Bullet.Train.2022.1080p.BluRay.x264.DTS-WiKi.mkv,13646712802,2022-10-21T14:15:41,movie,1920x804,h264,7591.798,14380 +/mnt/Downloads/movies/Burnt.2015.1080p.BluRay.x265.10bit.DTS-WiKi/Burnt.2015.1080p.BluRay.x265.10bit.DTS-WiKi.mkv,Burnt.2015.1080p.BluRay.x265.10bit.DTS-WiKi.mkv,7230783600,2025-04-06T13:10:07,movie,1920x800,hevc,6054.795,9553 +/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,The.Mole.Song.Final.2021.1080p.BluRay.x265.10bit.DTS-WiKi.sample.mkv,53570620,2022-05-27T12:57:04,movie,1920x804,hevc,41.464,10335 +/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,The.Mole.Song.Final.2021.1080p.BluRay.x265.10bit.DTS-WiKi.mkv,5867500549,2022-05-27T13:01:50,movie,1920x804,hevc,7690.699,6103 +/mnt/Downloads/movies/Drive.My.Car.2021.1080p.BluRay.x264.DTS-WiKi/Sample/Drive.My.Car.2021.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,Drive.My.Car.2021.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,121022669,2022-03-01T10:46:04,movie,1920x1036,h264,69.237,13983 +/mnt/Downloads/movies/Drive.My.Car.2021.1080p.BluRay.x264.DTS-WiKi/Drive.My.Car.2021.1080p.BluRay.x264.DTS-WiKi.mkv,Drive.My.Car.2021.1080p.BluRay.x264.DTS-WiKi.mkv,18128252155,2022-03-01T10:47:15,movie,1920x1036,h264,10735.019,13509 +/mnt/Downloads/movies/SexWorld.1978.1080p.BluRay.x264.AAC-PornPlus.mp4,SexWorld.1978.1080p.BluRay.x264.AAC-PornPlus.mp4,1405392739,2016-10-11T12:42:57,movie,1920x1080,h264,5433.92,2069 +/mnt/Downloads/movies/Loro.2018.720p.BluRay.DD5.1.x264-BMDru/Loro.2018.720p.BluRay.DD5.1.x264-BMDru.mkv,Loro.2018.720p.BluRay.DD5.1.x264-BMDru.mkv,4462245725,2020-05-02T04:53:06,movie,1280x534,h264,9063.616,3938 +/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,日班猎人.Day.Shift.2022.1080p.NF.WEB-DL.H264.DDP5.1-OurTV.mkv,6078345081,2022-08-13T16:16:14,movie,1920x1080,h264,6801.056,7149 +/mnt/Downloads/movies/Ghost.Book.2022.1080p.BluRay.x265.10bit.DTS-WiKi/Sample/Ghost.Book.2022.1080p.BluRay.x265.10bit.DTS-WiKi.sample.mkv,Ghost.Book.2022.1080p.BluRay.x265.10bit.DTS-WiKi.sample.mkv,53751895,2023-01-11T12:49:31,movie,1920x804,hevc,38.341,11215 +/mnt/Downloads/movies/Ghost.Book.2022.1080p.BluRay.x265.10bit.DTS-WiKi/Ghost.Book.2022.1080p.BluRay.x265.10bit.DTS-WiKi.mkv,Ghost.Book.2022.1080p.BluRay.x265.10bit.DTS-WiKi.mkv,5868626979,2023-01-11T12:52:39,movie,1920x804,hevc,6776.779,6927 +"/mnt/Downloads/movies/[HYSUB]Omoi, Omoware, Furi, Furare[BIG5_MP4][1920X1080].mp4","[HYSUB]Omoi, Omoware, Furi, Furare[BIG5_MP4][1920X1080].mp4",1434300450,2021-04-27T09:16:38,movie,1920x1080,h264,6173.12,1858 +/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,Teenage.Mutant.Ninja.Turtles.Mutant.Mayhem.2023.1080p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi.mkv,8933733217,2023-11-18T12:13:20,movie,1920x804,hevc,5960.0,11991 +/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,Killers.Of.the.Flower.Moon.2023.1080p.BluRay.x265.10bit.DTS-WiKi.mkv,12884005571,2024-01-23T04:54:43,movie,1920x804,hevc,12347.417,8347 +/mnt/Downloads/movies/The.Valet.2022.2160p.DSNP.WEB-DL.DDP5.1.HDR.HEVC-CMRG.mkv,The.Valet.2022.2160p.DSNP.WEB-DL.DDP5.1.HDR.HEVC-CMRG.mkv,15215611471,2023-01-19T11:18:14,movie,3840x2160,hevc,7371.552,16512 +/mnt/Downloads/movies/The.Creator.2023.1080p.BluRay.x265.10bit.DTS-WiKi/The.Creator.2023.1080p.BluRay.x265.10bit.DTS-WiKi.mkv,The.Creator.2023.1080p.BluRay.x265.10bit.DTS-WiKi.mkv,8530568640,2023-12-09T01:52:39,movie,1920x696,hevc,8009.846,8520 +/mnt/Downloads/movies/Deliver.Us.from.Evil.2020.720p.BluRay.x264-WiKi/Deliver.Us.from.Evil.2020.720p.BluRay.x264-WiKi.mkv,Deliver.Us.from.Evil.2020.720p.BluRay.x264-WiKi.mkv,5192163313,2021-02-04T14:23:59,movie,1280x536,h264,6492.096,6398 +/mnt/Downloads/movies/Deliver.Us.from.Evil.2020.720p.BluRay.x264-WiKi/Sample/Deliver.Us.from.Evil.2020.720p.BluRay.x264-WiKi.Sample.mkv,Deliver.Us.from.Evil.2020.720p.BluRay.x264-WiKi.Sample.mkv,82986386,2021-02-04T14:21:25,movie,1280x536,h264,61.444,10804 +/mnt/Downloads/movies/Nothing Serious 2021.mp4,Nothing Serious 2021.mp4,9339599975,2022-11-17T16:34:06,movie,1920x1080,h264,7500.277811,9961 +/mnt/Downloads/movies/Demolition.2015.720p.BluRay.x264-WiKi/Demolition.2015.720p.BluRay.x264-WiKi.mkv,Demolition.2015.720p.BluRay.x264-WiKi.mkv,4079111807,2020-08-30T05:31:40,movie,1280x542,h264,6029.28,5412 +/mnt/Downloads/movies/Demolition.2015.720p.BluRay.x264-WiKi/Sample/Demolition.2015.720p.BluRay.x264-WiKi.sample.mkv,Demolition.2015.720p.BluRay.x264-WiKi.sample.mkv,54432811,2020-08-30T05:17:10,movie,1280x542,h264,79.197,5498 +/mnt/Downloads/movies/Grand.Maison.Paris.2024.1080p.BluRay.x265.10bit.DTS-WiKi/Grand.Maison.Paris.2024.1080p.BluRay.x265.10bit.DTS-WiKi.mkv,Grand.Maison.Paris.2024.1080p.BluRay.x265.10bit.DTS-WiKi.mkv,5862436239,2025-10-07T10:31:34,movie,1920x1036,hevc,7034.038,6667 +/mnt/Downloads/movies/Empire.Of.Lust.2014.720p.Uncut.HDRip.H264-Ental.mp4,Empire.Of.Lust.2014.720p.Uncut.HDRip.H264-Ental.mp4,2046513297,2022-10-27T10:27:55,movie,1280x720,h264,7476.546848,2189 +/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,Crayon.Shinchan.The.Tornado.Legend.of.Ninja.Mononoke.2022.1080p.BluRay.x265.10bit-WiKi.mkv,3762992150,2023-01-13T14:33:57,movie,1920x1080,hevc,5972.992,5040 +/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,Crayon.Shinchan.The.Tornado.Legend.of.Ninja.Mononoke.2022.1080p.BluRay.x265.10bit-WiKi.sample.mkv,53756144,2023-01-13T14:33:07,movie,1920x1080,hevc,47.275,9096 +/mnt/Downloads/movies/Shin.Ultraman.2022.1080p.BluRay.x265.10bit.DTS-WiKi/Shin.Ultraman.2022.1080p.BluRay.x265.10bit.DTS-WiKi.mkv,Shin.Ultraman.2022.1080p.BluRay.x265.10bit.DTS-WiKi.mkv,5374410054,2023-04-13T16:29:53,movie,1920x804,hevc,6730.731,6387 +/mnt/Downloads/movies/Crimes.of.the.Future.2022.2160p.WEB-DL.DDP5.1.HDR.H.265-FLUX.mkv,Crimes.of.the.Future.2022.2160p.WEB-DL.DDP5.1.HDR.H.265-FLUX.mkv,12019879367,2022-06-26T14:53:07,movie,3836x2072,hevc,6454.698,14897 +/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,The.Proposal.2009.BluRay.1080p.DTS-HD.MA5.1.x265.10bit-BeiTai.mkv,11858601470,2026-02-08T09:45:10,movie,1920x800,hevc,6467.52,14668 +/mnt/Downloads/movies/The.Super.Mario.Bros.Movie.2023.1080p.MA.WEB-DL.DDP5.1.Atmos.H.264-CMaRioG.mkv,The.Super.Mario.Bros.Movie.2023.1080p.MA.WEB-DL.DDP5.1.Atmos.H.264-CMaRioG.mkv,5983840193,2023-05-21T11:40:42,movie,1920x1080,h264,5545.916,8631 +/mnt/Downloads/movies/Portrait.of.a.Beauty.2008.720p.BluRay.x264-WiKi/Portrait.of.a.Beauty.2008.720p.BluRay.x264-WiKi.mkv,Portrait.of.a.Beauty.2008.720p.BluRay.x264-WiKi.mkv,5948725511,2021-12-10T17:33:50,movie,1280x688,h264,6529.312,7288 +/mnt/Downloads/movies/Portrait.of.a.Beauty.2008.720p.BluRay.x264-WiKi/Sample/Portrait.of.a.Beauty.2008.720p.BluRay.x264-WiKi.Sample.mkv,Portrait.of.a.Beauty.2008.720p.BluRay.x264-WiKi.Sample.mkv,62551048,2021-12-10T17:33:46,movie,1280x688,h264,69.18,7233 +/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,Made.in.Abyss.Journey's.Dawn.2019.720p.BluRay.x264-WiKi.mkv,3762024435,2021-06-10T09:01:47,movie,1280x720,h264,7122.144,4225 +/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,Made.in.Abyss.Journey's.Dawn.2019.720p.BluRay.x264-WiKi.sample.mkv,53929397,2021-06-10T09:01:38,movie,1280x720,h264,96.665,4463 +/mnt/Downloads/movies/One.Battle.After.Another.2025.1080p.BluRay.x265.10bit-WiKi/One.Battle.After.Another.2025.1080p.BluRay.x265.10bit-WiKi.mkv,One.Battle.After.Another.2025.1080p.BluRay.x265.10bit-WiKi.mkv,10731990234,2026-01-24T13:10:37,movie,1920x1080,hevc,9703.84,8847 +/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,Indiana.Jones.and.the.Dial.of.Destiny.2023.1080p.BluRay.x265.10bit.DTS-WiKi.mkv,11180562211,2023-11-23T12:31:45,movie,1920x804,hevc,9268.952,9649 +/mnt/Downloads/movies/Operation.Mincemeat.2021.1080p.NF.WEB-DL.DDP5.1.HDR.H265-HAMR.mkv,Operation.Mincemeat.2021.1080p.NF.WEB-DL.DDP5.1.HDR.H265-HAMR.mkv,4124425885,2022-05-14T12:25:39,movie,1920x1080,hevc,7656.224,4309 +/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,Anora.2024.1080p.BluRay.x265.10bit.DTS-HD.MA.5.1-WiKi.mkv,13737459820,2025-03-16T08:36:43,movie,1920x800,hevc,8327.008,13197 +/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,The.Unbearable.Weight.of.Massive.Talent.2022.1080p.BluRay.x265.10bit-WiKi.Sample.mkv,62721598,2022-06-20T13:55:41,movie,1920x800,hevc,62.006,8092 +/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,The.Unbearable.Weight.of.Massive.Talent.2022.1080p.BluRay.x265.10bit-WiKi.mkv,6510753986,2022-06-20T13:55:57,movie,1920x800,hevc,6411.447,8123 +/mnt/Downloads/movies/Tonkatsu.DJ.Agetaro.2020.720p.BluRay.x264.DTS-WiKi/Sample/Tonkatsu.DJ.Agetaro.2020.720p.BluRay.x264.DTS-WiKi.sample.mkv,Tonkatsu.DJ.Agetaro.2020.720p.BluRay.x264.DTS-WiKi.sample.mkv,60026335,2021-04-21T10:33:23,movie,1280x692,h264,67.159,7150 +/mnt/Downloads/movies/Tonkatsu.DJ.Agetaro.2020.720p.BluRay.x264.DTS-WiKi/Tonkatsu.DJ.Agetaro.2020.720p.BluRay.x264.DTS-WiKi.mkv,Tonkatsu.DJ.Agetaro.2020.720p.BluRay.x264.DTS-WiKi.mkv,4297962521,2021-04-21T10:39:37,movie,1280x692,h264,6021.771,5709 +/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,[DBD-Raws][4K_HDR][蝙蝠侠:黑暗骑士崛起][IMAX版][2160P][BDRip][HEVC-10bit][FLAC].mkv,12366119261,2023-02-13T15:06:02,movie,3840x2160,hevc,9872.288,10020 +/mnt/Downloads/movies/Ghostbusters.Afterlife.2021.1080p.BluRay.x264.DTS-WiKi/Ghostbusters.Afterlife.2021.1080p.BluRay.x264.DTS-WiKi.mkv,Ghostbusters.Afterlife.2021.1080p.BluRay.x264.DTS-WiKi.mkv,14470804762,2022-02-02T06:12:33,movie,1920x800,h264,7436.438,15567 +/mnt/Downloads/movies/Ghostbusters.Afterlife.2021.1080p.BluRay.x264.DTS-WiKi/Sample/Ghostbusters.Afterlife.2021.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,Ghostbusters.Afterlife.2021.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,134395912,2022-02-02T06:12:12,movie,1920x800,h264,68.027,15805 +/mnt/Downloads/movies/当男人恋爱时.2021.1080p.闽南语.简繁中字£CMCT利姆鲁/[当男人恋爱时].Man.in.Love.2021.BluRay.1080p.x264.DTS-CMCT.mkv,[当男人恋爱时].Man.in.Love.2021.BluRay.1080p.x264.DTS-CMCT.mkv,10739322967,2022-11-16T15:13:46,movie,1920x1080,h264,6898.155,12454 +/mnt/Downloads/movies/Wake.Up.Dead.Man.A.Knives.Out.Mystery.2025.1080p.NF.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv,Wake.Up.Dead.Man.A.Knives.Out.Mystery.2025.1080p.NF.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv,9153790604,2025-12-23T05:15:43,movie,1920x1080,h264,8775.625,8344 +/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,The.Wandering.Earth.2.2023.IMAX.1080p.BluRay.x265.10bit.DTS-WiKi.mkv,11478563751,2024-02-22T09:35:14,movie,1920x804,hevc,10391.467,8836 +/mnt/Downloads/movies/穆赫兰道.2001.CC.1080p.中英字幕£CMCT风潇潇/[穆赫兰道].Mulholland.Dr.2001.CC.BluRay.1080p.x264.DTS-CMCT.mkv,[穆赫兰道].Mulholland.Dr.2001.CC.BluRay.1080p.x264.DTS-CMCT.mkv,15028277738,2024-06-26T15:47:45,movie,1920x1040,h264,8833.494,13610 +/mnt/Downloads/movies/Honest.Thief.2020.720p.BluRay.x264-WiKi/Honest.Thief.2020.720p.BluRay.x264-WiKi.mkv,Honest.Thief.2020.720p.BluRay.x264-WiKi.mkv,4163275654,2021-01-01T15:37:44,movie,1280x536,h264,5912.096,5633 +/mnt/Downloads/movies/Honest.Thief.2020.720p.BluRay.x264-WiKi/Sample/Honest.Thief.2020.720p.BluRay.x264-WiKi.Sample.mkv,Honest.Thief.2020.720p.BluRay.x264-WiKi.Sample.mkv,74264631,2021-01-01T15:29:30,movie,1280x536,h264,62.009,9581 +/mnt/Downloads/movies/Dont.Look.Up.2021.1080p.NF.WEB-DL.DDP5.1.Atmos.HDR.HEVC-MZABI.mkv,Dont.Look.Up.2021.1080p.NF.WEB-DL.DDP5.1.Atmos.HDR.HEVC-MZABI.mkv,6666343530,2022-01-09T11:36:00,movie,1920x1080,hevc,8591.488,6207 +/mnt/Downloads/movies/The.Master.Plan.2021.720p.BluRay.x264-WiKi/The.Master.Plan.2021.720p.BluRay.x264-WiKi.mkv,The.Master.Plan.2021.720p.BluRay.x264-WiKi.mkv,4295130191,2021-07-08T14:38:13,movie,1280x640,h264,6052.192,5677 +/mnt/Downloads/movies/The.Master.Plan.2021.720p.BluRay.x264-WiKi/Sample/The.Master.Plan.2021.720p.BluRay.x264-WiKi.sample.mkv,The.Master.Plan.2021.720p.BluRay.x264-WiKi.sample.mkv,52790574,2021-07-08T14:31:31,movie,1280x640,h264,68.286,6184 +/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,Transformers.One.2024.1080p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi.mkv,10246573446,2024-12-17T08:56:05,movie,1920x804,hevc,6242.432,13131 +/mnt/Downloads/movies/The.Northman.2022.RERiP.1080p.BluRay.x264-WiKi/The.Northman.2022.RERiP.1080p.BluRay.x264-WiKi.mkv,The.Northman.2022.RERiP.1080p.BluRay.x264-WiKi.mkv,12871261063,2022-08-07T03:32:37,movie,1920x960,h264,8213.568,12536 +/mnt/Downloads/movies/The.Northman.2022.RERiP.1080p.BluRay.x264-WiKi/Sample/The.Northman.2022.RERiP.1080p.BluRay.x264-WiKi.Sample.mkv,The.Northman.2022.RERiP.1080p.BluRay.x264-WiKi.Sample.mkv,82692182,2022-08-07T03:23:51,movie,1920x960,h264,70.53,9379 +/mnt/Downloads/movies/Dragon Fight 1989 NF WEB-DL 1080p H.264 AAC & DD 2.0 2Audios-Dave.mkv,Dragon Fight 1989 NF WEB-DL 1080p H.264 AAC & DD 2.0 2Audios-Dave.mkv,3734665360,2021-03-21T04:16:20,movie,1920x1080,h264,5842.794,5113 +/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,The.Tomorrow.War.2021.1080p.AMZN.WEB-DL.DDP5.1.H.264-CMRG.mkv,8957224264,2021-07-09T02:30:31,movie,1920x800,h264,8286.208,8647 +/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,Jacky.Cheung.A.Classic.Tour.Live.in.Taipei.2016.BluRay.1080p.DTS-HD.MA.5.1.Flac.x265.10bit-BeiTai.mkv,24814454594,2021-12-30T06:47:29,movie,1920x1080,hevc,10333.835,19210 +/mnt/Downloads/movies/Innocent.Witness.2019.720p.BluRay.x264-WiKi/Innocent.Witness.2019.720p.BluRay.x264-WiKi.mkv,Innocent.Witness.2019.720p.BluRay.x264-WiKi.mkv,5504595016,2020-09-19T01:49:07,movie,1280x536,h264,7753.152,5679 +/mnt/Downloads/movies/Innocent.Witness.2019.720p.BluRay.x264-WiKi/Sample/Innocent.Witness.2019.720p.BluRay.x264-WiKi.Sample.mkv,Innocent.Witness.2019.720p.BluRay.x264-WiKi.Sample.mkv,73260017,2020-09-19T01:44:37,movie,1280x536,h264,60.549,9679 +/mnt/Downloads/movies/Fallen.Angels.1995.1080p.BluRay.x264.DTS-WiKi/Fallen.Angels.1995.1080p.BluRay.x264.DTS-WiKi.mkv,Fallen.Angels.1995.1080p.BluRay.x264.DTS-WiKi.mkv,14930201476,2023-10-03T06:15:55,movie,1920x1064,h264,5928.928,20145 +/mnt/Downloads/movies/Fallen.Angels.1995.1080p.BluRay.x264.DTS-WiKi/Sample/Fallen.Angels.1995.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,Fallen.Angels.1995.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,105600699,2023-10-03T06:15:16,movie,1920x1064,h264,41.59,20312 +/mnt/Downloads/movies/Gran.Turismo.2023.REPACK.2160p.MA.WEB-DL.DDP5.1.Atmos.DV.HDR.H.265-FLUX.mkv,Gran.Turismo.2023.REPACK.2160p.MA.WEB-DL.DDP5.1.Atmos.DV.HDR.H.265-FLUX.mkv,25421039398,2023-10-05T08:51:13,movie,3840x2160,hevc,8055.589,25245 +/mnt/Downloads/movies/The.Cell.2000.720p.BluRay.x264.DTS-WiKi/The.Cell.2000.720p.BluRay.x264.DTS-WiKi.mkv,The.Cell.2000.720p.BluRay.x264.DTS-WiKi.mkv,6976327725,2025-01-15T13:12:59,movie,1280x534,h264,6430.262,8679 +/mnt/Downloads/movies/The.Cell.2000.720p.BluRay.x264.DTS-WiKi/Sample/The.Cell.2000.720p.BluRay.x264.DTS-WiKi.Sample.mkv,The.Cell.2000.720p.BluRay.x264.DTS-WiKi.Sample.mkv,53765108,2025-01-15T13:09:27,movie,1280x534,h264,45.087,9539 +/mnt/Downloads/movies/Flight.Risk.2025.1080p.AMZN.WEB-DL.DDP5.1.H.264-APEX.mkv,Flight.Risk.2025.1080p.AMZN.WEB-DL.DDP5.1.H.264-APEX.mkv,6825601753,2025-02-16T14:11:31,movie,1920x800,h264,5479.744,9964 +/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,Twilight.of.the.Warriors.Walled.In.2024.1080p.BluRay.x265.10bit-WiKi.mkv,8541016669,2025-10-04T07:37:36,movie,1920x804,hevc,7503.36,9106 +/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,Extraction.2.2023.2160p.NF.WEB-DL.DDP5.1.Atmos.DV.HDR.H.265-FLUX.mkv,18352334984,2023-06-28T13:02:01,movie,3840x2160,hevc,7437.625,19739 +/mnt/Downloads/movies/The.Killer.2022.1080p.BluRay.x264.DTS-WiKi/The.Killer.2022.1080p.BluRay.x264.DTS-WiKi.mkv,The.Killer.2022.1080p.BluRay.x264.DTS-WiKi.mkv,9714710171,2022-12-06T08:39:08,movie,1920x802,h264,5722.24,13581 +/mnt/Downloads/movies/The.Killer.2022.1080p.BluRay.x264.DTS-WiKi/Sample/The.Killer.2022.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,The.Killer.2022.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,214886339,2022-12-06T08:34:57,movie,1920x802,h264,64.208,26773 +/mnt/Downloads/movies/My.Wife.Got.Married.2008.1080p.NF.WEB-DL.DD+5.1.H.264-ARiN.mkv,My.Wife.Got.Married.2008.1080p.NF.WEB-DL.DD+5.1.H.264-ARiN.mkv,4515014871,2020-04-04T09:07:41,movie,1920x1080,h264,7145.504,5054 +/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,Coda.2021.1080p.APTV.WEB-DL.DDP5.1.Atmos.x264-CMRG.mkv,9090124368,2022-01-20T12:37:30,movie,1920x1038,h264,6704.8,10846 +/mnt/Downloads/movies/Tron.Ares.2025.Hybrid.1080p.BluRay.DDP7.1.x264-ZoroSenpai.mkv,Tron.Ares.2025.Hybrid.1080p.BluRay.DDP7.1.x264-ZoroSenpai.mkv,17461688461,2026-01-08T11:56:15,movie,1920x804,h264,7128.128,19597 +/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,Swordfish.2001.2160p.BluRay.DoVi.x265.10bit.Atmos.DTS-HD.MA5.1-WiKi.mkv,34951509377,2026-01-16T13:55:03,movie,3840x1604,hevc,5967.253,46857 +/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,The.Untold.Tale.of.the.Three.Kingdoms.2020.1080p.BluRay.x264.DTS-WiKi.mkv,10472171923,2021-04-29T12:01:32,movie,1920x1038,h264,6829.824,12266 +/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,The.Untold.Tale.of.the.Three.Kingdoms.2020.1080p.BluRay.x264.DTS-WiKi.sample.mkv,113867758,2021-04-29T11:52:46,movie,1920x1038,h264,48.777,18675 +/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,Ichikei's.Crow.The.Movie.2023.1080p.BluRay.x265.10bit.DTS-WiKi.mkv,5866319499,2023-09-13T14:57:35,movie,1920x804,hevc,7133.131,6579 +/mnt/Downloads/movies/The.Little.Things.2021.720p.BluRay.x264-WiKi/Sample/The.Little.Things.2021.720p.BluRay.x264-WiKi.Sample.mkv,The.Little.Things.2021.720p.BluRay.x264-WiKi.Sample.mkv,92911089,2021-05-01T14:07:33,movie,1280x536,h264,62.952,11807 +/mnt/Downloads/movies/The.Little.Things.2021.720p.BluRay.x264-WiKi/The.Little.Things.2021.720p.BluRay.x264-WiKi.mkv,The.Little.Things.2021.720p.BluRay.x264-WiKi.mkv,6084726036,2021-05-01T14:14:51,movie,1280x536,h264,7669.952,6346 +/mnt/Downloads/movies/Shylock's.Children.2023.1080p.BluRay.x264.DTS-WiKi/Shylock's.Children.2023.1080p.BluRay.x264.DTS-WiKi.mkv,Shylock's.Children.2023.1080p.BluRay.x264.DTS-WiKi.mkv,11271832909,2023-10-31T01:44:00,movie,1920x804,h264,7327.328,12306 +/mnt/Downloads/movies/Oppenheimer.2023.IMAX.1080p.BluRay.x265.10bit.DTS-WiKi/Oppenheimer.2023.IMAX.1080p.BluRay.x265.10bit.DTS-WiKi.mkv,Oppenheimer.2023.IMAX.1080p.BluRay.x265.10bit.DTS-WiKi.mkv,12380365830,2023-11-10T02:01:39,movie,1920x1080,hevc,10822.155,9151 +/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,99.9.Criminal.Lawyer.The.Movie.2021.1080p.BluRay.x265.10bit.DTS-WiKi.sample.mkv,53407652,2022-06-13T00:59:25,movie,1920x1038,hevc,66.2,6454 +/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,99.9.Criminal.Lawyer.The.Movie.2021.1080p.BluRay.x265.10bit.DTS-WiKi.mkv,5861794714,2022-06-13T01:01:21,movie,1920x1038,hevc,7203.196,6510 +/mnt/Downloads/movies/行运超人.国粤双语.My.Lucky.Star.2003.WEB-DL.4k.H265.2Audio.AAC-PTHweb.mkv,行运超人.国粤双语.My.Lucky.Star.2003.WEB-DL.4k.H265.2Audio.AAC-PTHweb.mkv,4169500063,2021-02-20T08:31:36,movie,3840x2160,hevc,5931.746,5623 +/mnt/Downloads/movies/Lesson.in.Murder.2022.1080p.BluRay.x265.10bit.DTS-WiKi/Lesson.in.Murder.2022.1080p.BluRay.x265.10bit.DTS-WiKi.mkv,Lesson.in.Murder.2022.1080p.BluRay.x265.10bit.DTS-WiKi.mkv,5863412260,2023-02-09T04:38:22,movie,1920x804,hevc,7743.744,6057 +/mnt/Downloads/movies/Sausalito.2000.720p.BluRay.x264-WiKi/Sample/Sausalito.2000.720p.BluRay.x264-WiKi.sample.mkv,Sausalito.2000.720p.BluRay.x264-WiKi.sample.mkv,59102003,2020-02-17T11:44:37,movie,1280x720,h264,56.363,8388 +/mnt/Downloads/movies/Sausalito.2000.720p.BluRay.x264-WiKi/Sausalito.2000.720p.BluRay.x264-WiKi.mkv,Sausalito.2000.720p.BluRay.x264-WiKi.mkv,6122703537,2020-02-17T11:58:58,movie,1280x720,h264,5860.256,8358 +/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,Eternal.Sunshine.of.the.Spotless.Mind.2004.Repack.BluRay.1080p.DTS-HD.MA5.1.x264-beAst.mkv,15066888004,2024-03-03T04:12:17,movie,1920x1040,h264,6468.736,18633 +/mnt/Downloads/movies/土曜プレミアム・イチケイのカラス 映画公開記念スペシャルドラマ SP 1080p HDTV x264 AAC.mkv,土曜プレミアム・イチケイのカラス 映画公開記念スペシャルドラマ SP 1080p HDTV x264 AAC.mkv,5035904436,2023-01-24T15:17:03,movie,1920x1080,h264,6324.394,6370 +/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,108.Revenge.and.Adventure.of.Goro.Kaiba.2019.720p.BluRay.x264-WiKi.mkv,4073722789,2020-08-02T05:33:03,movie,1280x536,h264,6081.088,5359 +/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,108.Revenge.and.Adventure.of.Goro.Kaiba.2019.720p.BluRay.x264-WiKi.sample.mkv,56362475,2020-08-02T05:28:09,movie,1280x536,h264,86.39,5219 +/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,Ura.Aka.L'Aventure.2021.1080p.BluRay.x264.DTS-WiKi.sample.mkv,110079745,2021-09-18T08:22:08,movie,1920x1038,h264,68.386,12877 +/mnt/Downloads/movies/Ura.Aka.L'Aventure.2021.1080p.BluRay.x264.DTS-WiKi/Ura.Aka.L'Aventure.2021.1080p.BluRay.x264.DTS-WiKi.mkv,Ura.Aka.L'Aventure.2021.1080p.BluRay.x264.DTS-WiKi.mkv,9659434417,2021-09-18T08:22:40,movie,1920x1038,h264,6102.518,12662 +/mnt/Downloads/movies/Soul.2020.1080p.BluRay.x264.DTS-WiKi/Soul.2020.1080p.BluRay.x264.DTS-WiKi.mkv,Soul.2020.1080p.BluRay.x264.DTS-WiKi.mkv,13124053237,2021-04-17T11:21:40,movie,1920x804,h264,6032.971,17403 +/mnt/Downloads/movies/Soul.2020.1080p.BluRay.x264.DTS-WiKi/Sample/Soul.2020.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,Soul.2020.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,158643887,2021-04-17T11:09:13,movie,1920x804,h264,63.33,20040 +/mnt/Downloads/movies/罪恶六芒星-美色狩猎者.Star.of.David-Hunting.for.Beautiful.Girls.1979.BluRay.1080p.x265.10bit.FLAC-fnscar.mkv,罪恶六芒星-美色狩猎者.Star.of.David-Hunting.for.Beautiful.Girls.1979.BluRay.1080p.x265.10bit.FLAC-fnscar.mkv,4321417912,2021-10-12T03:11:10,movie,1920x782,hevc,6003.706,5758 +/mnt/Downloads/movies/The.Goldfinger.2023.1080p.BluRay.x265.10bit-WiKi/The.Goldfinger.2023.1080p.BluRay.x265.10bit-WiKi.mkv,The.Goldfinger.2023.1080p.BluRay.x265.10bit-WiKi.mkv,8537956472,2024-06-04T00:52:03,movie,1920x804,hevc,7557.024,9038 +/mnt/Downloads/movies/Black.Bag.2025.1080p.BluRay.x265.10bit.TrueHD5.1-WiKi/Black.Bag.2025.1080p.BluRay.x265.10bit.TrueHD5.1-WiKi.mkv,Black.Bag.2025.1080p.BluRay.x265.10bit.TrueHD5.1-WiKi.mkv,7889853460,2025-05-29T08:34:20,movie,1920x804,hevc,5604.608,11261 +/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,Ballerina.2023.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-PTerWEB.mkv,5567783391,2023-10-10T11:21:00,movie,1920x1080,h264,5627.539,7915 +/mnt/Downloads/movies/The.New.King.of.Comedy.2019.1080p.BluRay.x264-WiKi/The.New.King.of.Comedy.2019.1080p.BluRay.x264-WiKi.mkv,The.New.King.of.Comedy.2019.1080p.BluRay.x264-WiKi.mkv,11374399439,2024-02-22T05:15:11,movie,1920x804,h264,5404.032,16838 +/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,Godzilla.x.Kong.The.New.Empire.2024.HDR.2160P.WEB.H265-POKE.mkv,17697452028,2024-05-26T06:36:20,movie,3840x1600,hevc,6932.032,20423 +/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,Thor.Love.and.Thunder.2022.2160p.WEB-DL.DDP5.1.Atmos.HDR.HEVC-CMRG.mkv,21915543992,2022-09-08T11:49:02,movie,3840x1608,hevc,7133.71,24576 +/mnt/Downloads/movies/Headhunters 2011 BluRay 1080p DTS-HD MA5.1 x264-HDS/Headhunters 2011 BluRay 1080p DTS-HD MA5.1 x264-HDS.mkv,Headhunters 2011 BluRay 1080p DTS-HD MA5.1 x264-HDS.mkv,13163711571,2022-02-07T08:46:16,movie,1920x800,h264,6006.016,17534 +/mnt/Downloads/movies/The.Menu.2022.1080p.BluRay.x265.10bit.DTS-WiKi/The.Menu.2022.1080p.BluRay.x265.10bit.DTS-WiKi.mkv,The.Menu.2022.1080p.BluRay.x265.10bit.DTS-WiKi.mkv,7470554790,2023-01-17T15:03:38,movie,1920x816,hevc,6428.427,9296 +/mnt/Downloads/movies/1秒先の彼 2023 1080p HDTV x264 AAC5.1.mkv,1秒先の彼 2023 1080p HDTV x264 AAC5.1.mkv,7071401538,2024-02-17T00:57:07,movie,1792x1080,h264,7178.724,7880 +/mnt/Downloads/movies/Bandit.2022.1080p.BluRay.x265.10bit.DTS-WiKi/Bandit.2022.1080p.BluRay.x265.10bit.DTS-WiKi.mkv,Bandit.2022.1080p.BluRay.x265.10bit.DTS-WiKi.mkv,10441570529,2023-02-20T13:41:56,movie,1920x804,hevc,7554.631,11057 +/mnt/Downloads/movies/Wu.Kong.2017.1080p.BluRay.x264-WiKi/Wu.Kong.2017.1080p.BluRay.x264-WiKi.mkv,Wu.Kong.2017.1080p.BluRay.x264-WiKi.mkv,12852786112,2024-09-01T15:13:51,movie,1920x804,h264,7391.625,13910 +/mnt/Downloads/movies/Wu.Kong.2017.1080p.BluRay.x264-WiKi/Sample/Wu.Kong.2017.1080p.BluRay.x264-WiKi.sample.mkv,Wu.Kong.2017.1080p.BluRay.x264-WiKi.sample.mkv,117737019,2024-09-01T15:13:44,movie,1920x804,h264,42.045,22402 +/mnt/Downloads/movies/Perfect.Days.2023.1080p.BluRay.x265.10bit.DTS-WiKi/Perfect.Days.2023.1080p.BluRay.x265.10bit.DTS-WiKi.mkv,Perfect.Days.2023.1080p.BluRay.x265.10bit.DTS-WiKi.mkv,7050852922,2024-08-15T09:05:06,movie,1440x1080,hevc,7480.491,7540 +/mnt/Downloads/movies/The.Program.2015.1080p.BluRay.x264.DTS-WiKi/The.Program.2015.1080p.BluRay.x264.DTS-WiKi.mkv,The.Program.2015.1080p.BluRay.x264.DTS-WiKi.mkv,10821256675,2020-03-14T17:37:23,movie,1920x804,h264,6185.216,13996 +/mnt/Downloads/movies/The.Program.2015.1080p.BluRay.x264.DTS-WiKi/Sample/The.Program.2015.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,The.Program.2015.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,105262520,2020-03-14T16:25:08,movie,1920x804,h264,50.843,16562 +/mnt/Downloads/movies/McFarland.USA.2015.1080p.BluRay.x264.DTS-WiKi/Sample/McFarland.USA.2015.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,McFarland.USA.2015.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,105786971,2024-01-06T00:37:46,movie,1920x804,h264,52.561,16101 +/mnt/Downloads/movies/McFarland.USA.2015.1080p.BluRay.x264.DTS-WiKi/McFarland.USA.2015.1080p.BluRay.x264.DTS-WiKi.mkv,McFarland.USA.2015.1080p.BluRay.x264.DTS-WiKi.mkv,15582488662,2024-01-06T01:14:28,movie,1920x804,h264,7744.8,16095 +/mnt/Downloads/movies/[手遮天].The.Butcher's.Blade.2026.2160p.WEB-DL.120Fps.H265.10bit.AAC-UBWEB.mp4,[手遮天].The.Butcher's.Blade.2026.2160p.WEB-DL.120Fps.H265.10bit.AAC-UBWEB.mp4,3300362223,2026-01-11T04:03:19,movie,3840x1616,hevc,5418.794354,4872 +/mnt/Downloads/movies/Free.Guy.2021.1080p.BluRay.x264.DTS-WiKi/Sample/Free.Guy.2021.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,Free.Guy.2021.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,154728812,2021-09-24T12:52:11,movie,1920x804,h264,61.854,20012 +/mnt/Downloads/movies/Free.Guy.2021.1080p.BluRay.x264.DTS-WiKi/Free.Guy.2021.1080p.BluRay.x264.DTS-WiKi.mkv,Free.Guy.2021.1080p.BluRay.x264.DTS-WiKi.mkv,13425322977,2021-09-24T12:52:33,movie,1920x804,h264,6898.603,15568 +/mnt/Downloads/movies/Obsessed.2014.1080p.BluRay.x265.10bit.DTS-WiKi/Sample/Obsessed.2014.1080p.BluRay.x265.10bit.DTS-WiKi.Sample.mkv,Obsessed.2014.1080p.BluRay.x265.10bit.DTS-WiKi.Sample.mkv,171151332,2022-12-11T00:06:41,movie,1920x1036,hevc,63.267,21641 +/mnt/Downloads/movies/Obsessed.2014.1080p.BluRay.x265.10bit.DTS-WiKi/Obsessed.2014.1080p.BluRay.x265.10bit.DTS-WiKi.mkv,Obsessed.2014.1080p.BluRay.x265.10bit.DTS-WiKi.mkv,9357675852,2022-12-11T00:11:46,movie,1920x1036,hevc,7971.606,9391 +/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,Creation.of.the.Gods.I.Kingdom.of.Storms.2023.1080p.BluRay.x265.10bit.TrueHD5.1-WiKi.mkv,13022576430,2024-02-17T00:53:42,movie,1920x1036,hevc,8899.936,11705 +/mnt/Downloads/movies/Barbie.2023.1080p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi/Barbie.2023.1080p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi.mkv,Barbie.2023.1080p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi.mkv,10061626242,2023-10-15T02:29:17,movie,1920x960,hevc,6843.84,11761 +/mnt/Downloads/movies/The Wave 2019 1080p BluRay DD5.1 x264-BdC.mkv,The Wave 2019 1080p BluRay DD5.1 x264-BdC.mkv,8656760268,2021-01-17T09:45:08,movie,1920x804,h264,5247.328,13197 +/mnt/Downloads/movies/In.the.Wake.2021.1080p.BluRay.x264.DTS-WiKi/In.the.Wake.2021.1080p.BluRay.x264.DTS-WiKi.mkv,In.the.Wake.2021.1080p.BluRay.x264.DTS-WiKi.mkv,11813266647,2022-04-28T01:29:18,movie,1920x804,h264,8088.0,11684 +/mnt/Downloads/movies/In.the.Wake.2021.1080p.BluRay.x264.DTS-WiKi/Sample/In.the.Wake.2021.1080p.BluRay.x264.DTS-WiKi.sample.mkv,In.the.Wake.2021.1080p.BluRay.x264.DTS-WiKi.sample.mkv,105889792,2022-04-28T01:06:55,movie,1920x804,h264,71.331,11875 +/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,Muroi.Shinji.Stay.Alive.2024.1080p.BluRay.x265.10bit.DTS-WiKi.mkv,5866583681,2025-12-30T15:35:11,movie,1920x1036,hevc,6990.369,6713 +/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,The.Hitman's.Wife's.Bodyguard.2021.720p.BluRay.x264-WiKi.Sample.mkv,61635822,2021-08-17T12:26:23,movie,1280x536,h264,63.361,7782 +/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,The.Hitman's.Wife's.Bodyguard.2021.720p.BluRay.x264-WiKi.mkv,4676505262,2021-08-17T12:34:04,movie,1280x536,h264,5982.048,6254 +/mnt/Downloads/movies/Midnight.in.Paris.2011.1080p.BluRay.x264.DTS-WiKi/Midnight.in.Paris.2011.1080p.BluRay.x264.DTS-WiKi.mkv,Midnight.in.Paris.2011.1080p.BluRay.x264.DTS-WiKi.mkv,10009640835,2020-02-01T04:52:45,movie,1920x1036,h264,5657.632,14153 +/mnt/Downloads/movies/Midnight.in.Paris.2011.1080p.BluRay.x264.DTS-WiKi/Sample/Midnight.in.Paris.2011.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,Midnight.in.Paris.2011.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,149871188,2020-02-01T04:40:11,movie,1920x1036,h264,63.855,18776 +/mnt/Downloads/movies/Operation.Fortune.2023.1080p.BluRay.x265.10bit.DTS-WiKi/Operation.Fortune.2023.1080p.BluRay.x265.10bit.DTS-WiKi.mkv,Operation.Fortune.2023.1080p.BluRay.x265.10bit.DTS-WiKi.mkv,7839279577,2023-04-03T12:27:06,movie,1920x804,hevc,6830.07,9182 +/mnt/Downloads/movies/Boite.noire.2021.1080p.BluRay.x265.10bit.DTS-WiKi/Sample/Boite.noire.2021.1080p.BluRay.x265.10bit.DTS-WiKi.Sample.mkv,Boite.noire.2021.1080p.BluRay.x265.10bit.DTS-WiKi.Sample.mkv,56051573,2022-05-26T02:03:55,movie,1920x800,hevc,63.202,7094 +/mnt/Downloads/movies/Boite.noire.2021.1080p.BluRay.x265.10bit.DTS-WiKi/Boite.noire.2021.1080p.BluRay.x265.10bit.DTS-WiKi.mkv,Boite.noire.2021.1080p.BluRay.x265.10bit.DTS-WiKi.mkv,6918655638,2022-05-26T02:04:05,movie,1920x800,hevc,7783.755,7110 +/mnt/Downloads/movies/Be.with.You.2004.1080p.BluRay.x264.DTS-WiKi/Be.with.You.2004.1080p.BluRay.x264.DTS-WiKi.mkv,Be.with.You.2004.1080p.BluRay.x264.DTS-WiKi.mkv,17725390408,2020-09-27T12:02:33,movie,1920x1036,h264,7131.333,19884 +/mnt/Downloads/movies/Be.with.You.2004.1080p.BluRay.x264.DTS-WiKi/Sample/Be.with.You.2004.1080p.BluRay.x264.DTS-WiKi.sample.mkv,Be.with.You.2004.1080p.BluRay.x264.DTS-WiKi.sample.mkv,113196446,2020-09-27T12:02:13,movie,1920x1036,h264,55.193,16407 +/mnt/Downloads/movies/Confidential.Assignment.2.International.2022.1080p.WEB-DL.AAC2.0.H.264-tG1R0.mkv,Confidential.Assignment.2.International.2022.1080p.WEB-DL.AAC2.0.H.264-tG1R0.mkv,7825376949,2022-11-01T11:07:07,movie,1920x1080,h264,7700.693,8129 +/mnt/Downloads/movies/警察局.Copshop.2021.UHD.BluRay.2160p.x265.10bit.HDR.mUHD-FRDS/Copshop.2021.UHD.BluRay.2160p.x265.10bit.HDR.mUHD-FRDS.mkv,Copshop.2021.UHD.BluRay.2160p.x265.10bit.HDR.mUHD-FRDS.mkv,19908675180,2022-03-02T12:31:45,movie,3840x1608,hevc,6442.019,24723 +/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,Love.Death&Robots.S02E01.1080p.WEB-DL.DD+5.1.x264-cfandora.mkv,337401177,2021-05-14T10:59:12,movie,1920x1080,h264,756.736,3566 +/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,Love.Death&Robots.S02E03.1080p.WEB-DL.DD+5.1.x264-cfandora.mkv,823204736,2021-05-14T10:59:07,movie,1920x1080,h264,1108.8,5939 +/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,Love.Death&Robots.S02E02.1080p.WEB-DL.DD+5.1.x264-cfandora.mkv,375228290,2021-05-14T10:59:10,movie,1920x1080,h264,780.736,3844 +/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,Love.Death&Robots.S02E05.1080p.WEB-DL.DD+5.1.x264-cfandora.mkv,218399647,2021-05-14T10:59:11,movie,1920x1080,h264,688.768,2536 +/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,Love.Death&Robots.S02E04.1080p.WEB-DL.DD+5.1.x264-cfandora.mkv,663436981,2021-05-14T10:59:05,movie,1920x1080,h264,1084.768,4892 +/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,Love.Death&Robots.S02E07.1080p.WEB-DL.DD+5.1.x264-cfandora.mkv,440423100,2021-05-14T10:58:54,movie,1920x1080,h264,812.768,4335 +/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,Love.Death&Robots.S02E06.1080p.WEB-DL.DD+5.1.x264-cfandora.mkv,387169556,2021-05-14T10:58:51,movie,1920x1080,h264,812.459,3812 +/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,Love.Death&Robots.S02E08.1080p.WEB-DL.DD+5.1.x264-cfandora.mkv,697274099,2021-05-14T10:59:05,movie,1920x1080,h264,834.784,6682 +/mnt/Downloads/movies/Step.2020.720p.BluRay.x264-WiKi/Step.2020.720p.BluRay.x264-WiKi.mkv,Step.2020.720p.BluRay.x264-WiKi.mkv,4694142958,2021-03-23T02:35:11,movie,1280x692,h264,7125.12,5270 +/mnt/Downloads/movies/Step.2020.720p.BluRay.x264-WiKi/Sample/Step.2020.720p.BluRay.x264-WiKi.sample.mkv,Step.2020.720p.BluRay.x264-WiKi.sample.mkv,57958412,2021-03-23T02:35:08,movie,1280x692,h264,83.676,5541 +/mnt/Downloads/movies/Eternals.2021.1080p.WEBRip.DDP5.1.Atmos.x264-PRGON/Eternals.2021.1080p.WEBRip.DDP5.1.Atmos.x264-PRGON.mkv,Eternals.2021.1080p.WEBRip.DDP5.1.Atmos.x264-PRGON.mkv,12506930989,2022-01-12T11:22:30,movie,1920x804,h264,9376.284,10671 +/mnt/Downloads/movies/Gura.Gura.2019.1080p.BluRay.x264.DTS-WiKi/Gura.Gura.2019.1080p.BluRay.x264.DTS-WiKi.mkv,Gura.Gura.2019.1080p.BluRay.x264.DTS-WiKi.mkv,7045613863,2021-03-18T02:33:34,movie,1920x1080,h264,4731.766,11912 +/mnt/Downloads/movies/Gura.Gura.2019.1080p.BluRay.x264.DTS-WiKi/Sample/Gura.Gura.2019.1080p.BluRay.x264.DTS-WiKi.sample.mkv,Gura.Gura.2019.1080p.BluRay.x264.DTS-WiKi.sample.mkv,112597926,2021-03-18T02:25:15,movie,1920x1080,h264,74.309,12122 +/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,Jurassic.World.Rebirth.2025.1080p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi.mkv,12167208273,2025-09-07T09:08:01,movie,1920x804,hevc,8020.032,12136 +/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,The.Count.of.Monte-Cristo.2024.1080p.BluRay.x265.10bit.DTS-ADE.mkv,12907452570,2025-01-12T05:02:22,movie,1920x802,hevc,10668.209,9679 +/mnt/Downloads/movies/The.Hunt.2020.1080p.BluRay.x264.DTS-WiKi/The.Hunt.2020.1080p.BluRay.x264.DTS-WiKi.mkv,The.Hunt.2020.1080p.BluRay.x264.DTS-WiKi.mkv,8410951986,2025-07-28T11:56:04,movie,1920x804,h264,5402.027,12455 +/mnt/Downloads/movies/The.Hunt.2020.1080p.BluRay.x264.DTS-WiKi/Sample/The.Hunt.2020.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,The.Hunt.2020.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,104895519,2025-07-28T11:56:16,movie,1920x804,h264,84.592,9920 +/mnt/Downloads/movies/Ballerina.2025.1080p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi/Ballerina.2025.1080p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi.mkv,Ballerina.2025.1080p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi.mkv,10892616468,2025-08-27T12:32:19,movie,1920x804,hevc,7479.52,11650 +/mnt/Downloads/movies/News.of.the.World.2020.1080p.AMZN.WEB-DL.DDP5.1.H.264-EVO.mkv,News.of.the.World.2020.1080p.AMZN.WEB-DL.DDP5.1.H.264-EVO.mkv,7119215988,2021-03-16T12:30:24,movie,1920x800,h264,7099.104,8022 +/mnt/Downloads/movies/My.Missing.Valentine.2020.720p.BluRay.x264-WiKi/My.Missing.Valentine.2020.720p.BluRay.x264-WiKi.mkv,My.Missing.Valentine.2020.720p.BluRay.x264-WiKi.mkv,5212486223,2020-12-30T15:01:18,movie,1280x536,h264,7143.04,5837 +/mnt/Downloads/movies/My.Missing.Valentine.2020.720p.BluRay.x264-WiKi/Sample/My.Missing.Valentine.2020.720p.BluRay.x264-WiKi.Sample.mkv,My.Missing.Valentine.2020.720p.BluRay.x264-WiKi.Sample.mkv,52743917,2020-12-30T14:55:01,movie,1280x536,h264,67.726,6230 +/mnt/Downloads/movies/The.Northman.2022.1080p.BluRay.x265.10bit-WiKi/Sample/The.Northman.2022.1080p.BluRay.x265.10bit-WiKi.Sample.mkv,The.Northman.2022.1080p.BluRay.x265.10bit-WiKi.Sample.mkv,54075740,2022-06-02T02:59:27,movie,1920x960,hevc,70.488,6137 +/mnt/Downloads/movies/The.Northman.2022.1080p.BluRay.x265.10bit-WiKi/The.Northman.2022.1080p.BluRay.x265.10bit-WiKi.mkv,The.Northman.2022.1080p.BluRay.x265.10bit-WiKi.mkv,6420699924,2022-06-02T03:06:01,movie,1920x960,hevc,8213.568,6253 +/mnt/Downloads/movies/Dirty.Grandpa.2016.1080p.BluRay.x264.DTS-WiKi/Sample/Dirty.Grandpa.2016.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,Dirty.Grandpa.2016.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,154107990,2020-08-16T03:07:43,movie,1920x800,h264,60.905,20242 +/mnt/Downloads/movies/Dirty.Grandpa.2016.1080p.BluRay.x264.DTS-WiKi/Dirty.Grandpa.2016.1080p.BluRay.x264.DTS-WiKi.mkv,Dirty.Grandpa.2016.1080p.BluRay.x264.DTS-WiKi.mkv,16095812379,2020-08-16T03:08:17,movie,1920x800,h264,6574.61,19585 +/mnt/Downloads/movies/Silent.Parade.2022.1080p.BluRay.x265.10bit.DTS-WiKi/Silent.Parade.2022.1080p.BluRay.x265.10bit.DTS-WiKi.mkv,Silent.Parade.2022.1080p.BluRay.x265.10bit.DTS-WiKi.mkv,5867532007,2023-05-01T13:38:00,movie,1920x804,hevc,7790.784,6025 +/mnt/Downloads/movies/My.Blueberry.Nights.2007.BluRay.720p.x264.DTS-WiKi/Sample/My.Blueberry.Nights.2007.BluRay.720p.x264.DTS-WiKi.Sample.mkv,My.Blueberry.Nights.2007.BluRay.720p.x264.DTS-WiKi.Sample.mkv,57966344,2021-01-23T04:18:08,movie,1280x544,h264,79.959,5799 +/mnt/Downloads/movies/My.Blueberry.Nights.2007.BluRay.720p.x264.DTS-WiKi/My.Blueberry.Nights.2007.BluRay.720p.x264.DTS-WiKi.mkv,My.Blueberry.Nights.2007.BluRay.720p.x264.DTS-WiKi.mkv,4696002520,2021-01-23T04:29:58,movie,1280x544,h264,5703.123,6587 +/mnt/Downloads/movies/Холоп.2019.WEB-DL.1080p.m4v,Холоп.2019.WEB-DL.1080p.m4v,3974604932,2021-05-27T06:13:35,movie,1920x804,h264,6235.348333,5099 +/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,Whisper.of.the.Heart.2022.1080p.BluRay.x265.10bit.DTS-WiKi.mkv,5444726290,2024-06-27T05:05:35,movie,1920x804,hevc,6887.883,6323 +/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,Berserk.The.Golden.Age.Arc.2.The.Battle.for.Doldrey.2012.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,92964248,2021-05-20T04:44:22,movie,1920x812,h264,60.936,12204 +/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,Berserk.The.Golden.Age.Arc.2.The.Battle.for.Doldrey.2012.1080p.BluRay.x264.DTS-WiKi.mkv,8552316816,2021-05-20T05:03:54,movie,1920x812,h264,5565.355,12293 +/mnt/Downloads/movies/Hit.Man.2024.1080p.NF.WEB-DL.DDP.5.1.Atmos.H.264-CHDWEB.mkv,Hit.Man.2024.1080p.NF.WEB-DL.DDP.5.1.Atmos.H.264-CHDWEB.mkv,7249955353,2024-07-04T08:05:40,movie,1920x1080,h264,6939.488,8357 +/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,The.Accountant.2.2025.1080p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi.mkv,11295412457,2025-08-08T12:38:28,movie,1920x804,hevc,7944.645,11374 +/mnt/Downloads/movies/El.Camino.A.Breaking.Bad.Movie.2019.720p.BluRay.DD5.1.x264-iFT.mkv,El.Camino.A.Breaking.Bad.Movie.2019.720p.BluRay.DD5.1.x264-iFT.mkv,8392506340,2020-10-13T02:26:31,movie,1280x536,h264,7338.4,9149 +/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,12.12.The.Day.2023.1080p.BluRay.x265.10bit.TrueHD5.1-WiKi.mkv,11817965583,2024-11-19T08:33:51,movie,1920x804,hevc,8522.048,11094 +/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,Anatomy.of.a.Fall.2023.1080p.BluRay.x265.10bit.DTS-WiKi.mkv,14908402636,2023-12-27T00:55:14,movie,1920x1036,hevc,9065.003,13156 +/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,Kim.Ji-young.Born.1982.2019.1080p.BluRay.x264.DTS-WiKi.mkv,13149711000,2025-04-22T11:47:18,movie,1920x1036,h264,7127.12,14760 +/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,Kim.Ji-young.Born.1982.2019.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,129885283,2025-04-22T11:47:11,movie,1920x1036,h264,68.277,15218 +/mnt/Downloads/movies/GTO.Revival.2024.1080p.BluRay.x264-WiKi/GTO.Revival.2024.1080p.BluRay.x264-WiKi.mkv,GTO.Revival.2024.1080p.BluRay.x264-WiKi.mkv,7517481215,2025-12-28T11:45:35,movie,1920x1080,h264,5456.992,11020 +/mnt/Downloads/movies/Worlds.Apart.2024.1080p.BluRay.x265.10bit.DTS-WiKi/Worlds.Apart.2024.1080p.BluRay.x265.10bit.DTS-WiKi.mkv,Worlds.Apart.2024.1080p.BluRay.x265.10bit.DTS-WiKi.mkv,7050867868,2024-10-10T11:30:48,movie,1920x804,hevc,8383.382,6728 +/mnt/Downloads/movies/Anime.Supremacy.2022.1080p.BluRay.x265.10bit-WiKi/Anime.Supremacy.2022.1080p.BluRay.x265.10bit-WiKi.mkv,Anime.Supremacy.2022.1080p.BluRay.x265.10bit-WiKi.mkv,5867212645,2022-10-21T14:09:54,movie,1920x804,hevc,7726.719,6074 +/mnt/Downloads/movies/Anime.Supremacy.2022.1080p.BluRay.x265.10bit-WiKi/Sample/Anime.Supremacy.2022.1080p.BluRay.x265.10bit-WiKi.sample.mkv,Anime.Supremacy.2022.1080p.BluRay.x265.10bit-WiKi.sample.mkv,56410020,2022-10-21T14:07:17,movie,1920x804,hevc,100.052,4510 +/mnt/Downloads/movies/Infinite.2021.1080p.AMZN.WEB-DL.DDP5.1.H.264-MZABI.mkv,Infinite.2021.1080p.AMZN.WEB-DL.DDP5.1.H.264-MZABI.mkv,6459383237,2021-07-09T06:33:26,movie,1920x800,h264,6380.576,8098 +/mnt/Downloads/movies/Alienoid.2022.1080p.BluRay.x265.10bit.DTS-WiKi/Alienoid.2022.1080p.BluRay.x265.10bit.DTS-WiKi.mkv,Alienoid.2022.1080p.BluRay.x265.10bit.DTS-WiKi.mkv,9076896707,2023-01-26T03:43:19,movie,1920x800,hevc,8568.982,8474 +/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,The.Confidence.Man.JP.Hero.2022.1080p.BluRay.x265.10bit.DTS-WiKi.sample.mkv,54473905,2022-05-31T08:48:14,movie,1920x1038,hevc,46.692,9333 +/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,The.Confidence.Man.JP.Hero.2022.1080p.BluRay.x265.10bit.DTS-WiKi.mkv,5866105472,2022-05-31T08:48:43,movie,1920x1038,hevc,8338.64,5627 +/mnt/Downloads/movies/侠探杰克.Jack.Reacher.2012.BluRay.1080p.x265.10bit.2Audio.MNHD-FRDS/Jack.Reacher.2012.BluRay.1080p.x265.10bit.2Audio.MNHD-FRDS.mkv,Jack.Reacher.2012.BluRay.1080p.x265.10bit.2Audio.MNHD-FRDS.mkv,8682052498,2023-02-14T02:57:56,movie,1920x816,hevc,7824.416,8876 +/mnt/Downloads/movies/比海更深.2016.1080p.日语.简繁中字£CMCT蒙太奇/[比海更深].After.the.Storm.2016.BluRay.1080p.x264.AC3-CMCT.mkv,[比海更深].After.the.Storm.2016.BluRay.1080p.x264.AC3-CMCT.mkv,10188369137,2025-06-23T11:15:19,movie,1920x1036,h264,7064.064,11538 +/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,The.Fantastic.Four.First.Steps.2025.1080p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi.mkv,10583589887,2025-10-09T12:26:11,movie,1920x804,hevc,6882.144,12302 +/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,The.Unbearable.Lightness.of.Being.1988.1080p.WEB-DL.x265.10bit.AC3£cXcY@FRDS.mkv,7989825617,2024-05-18T11:44:14,movie,1920x1080,hevc,10362.272,6168 +/mnt/Downloads/movies/The.Attorney.2021.720p.BluRay.x264-WiKi/Sample/The.Attorney.2021.720p.BluRay.x264-WiKi.Sample.mkv,The.Attorney.2021.720p.BluRay.x264-WiKi.Sample.mkv,54769194,2022-03-15T13:27:08,movie,1280x536,h264,64.334,6810 +/mnt/Downloads/movies/The.Attorney.2021.720p.BluRay.x264-WiKi/The.Attorney.2021.720p.BluRay.x264-WiKi.mkv,The.Attorney.2021.720p.BluRay.x264-WiKi.mkv,4694078886,2022-03-15T13:28:39,movie,1280x536,h264,6082.304,6174 +/mnt/Downloads/movies/Black Adam 2022 BluRay 1080p TrueHD 7.1 x264-MTeam/Black.Adam.2022.BluRay.1080p.TrueHD.7.1.x264-MTeam.mkv,Black.Adam.2022.BluRay.1080p.TrueHD.7.1.x264-MTeam.mkv,15100227457,2023-01-01T11:27:15,movie,1920x804,h264,7492.319,16123 +/mnt/Downloads/movies/Detective.vs.Sleuths.2022.1080p.BluRay.x265.10bit-WiKi/Sample/Detective.vs.Sleuths.2022.1080p.BluRay.x265.10bit-WiKi.Sample.mkv,Detective.vs.Sleuths.2022.1080p.BluRay.x265.10bit-WiKi.Sample.mkv,38454569,2022-10-21T11:55:08,movie,1920x818,hevc,61.209,5026 +/mnt/Downloads/movies/Detective.vs.Sleuths.2022.1080p.BluRay.x265.10bit-WiKi/Detective.vs.Sleuths.2022.1080p.BluRay.x265.10bit-WiKi.mkv,Detective.vs.Sleuths.2022.1080p.BluRay.x265.10bit-WiKi.mkv,5862858147,2022-10-21T11:55:25,movie,1920x818,hevc,6077.152,7717 +/mnt/Downloads/movies/Reminiscence.2021.1080p.HMAX.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv,Reminiscence.2021.1080p.HMAX.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv,7817214946,2021-08-24T08:21:30,movie,1920x816,h264,6956.576,8989 +/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,Crash.2004.FRA.DC.BluRay.1080p.x265.10bit.2Audio.MNHD-FRDS.mkv,5235803489,2025-04-21T12:37:48,movie,1920x816,hevc,6904.209,6066 +/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,Transformers.Rise.of.the.Beasts.2023.1080p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi.mkv,11222603893,2023-10-05T08:52:30,movie,1920x804,hevc,7627.456,11770 +/mnt/Downloads/movies/School.Meals.Time.Final.Battle.2020.720p.BluRay.x264-WiKi/School.Meals.Time.Final.Battle.2020.720p.BluRay.x264-WiKi.mkv,School.Meals.Time.Final.Battle.2020.720p.BluRay.x264-WiKi.mkv,4287230079,2020-08-19T10:17:39,movie,1280x692,h264,6100.128,5622 +/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,School.Meals.Time.Final.Battle.2020.720p.BluRay.x264-WiKi.sample.mkv,54100128,2020-08-19T10:14:24,movie,1280x692,h264,73.727,5870 +/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,Fantastic.Beasts.The.Crimes.of.Grindelwald.2018.720p.BluRay.x264-WiKi.Sample.mkv,63917052,2022-02-13T05:51:05,movie,1280x534,h264,65.196,7843 +/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,Fantastic.Beasts.The.Crimes.of.Grindelwald.2018.720p.BluRay.x264-WiKi.mkv,5868357870,2022-02-13T06:05:29,movie,1280x534,h264,8030.048,5846 +/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,Postmen.in.the.Mountains.1999.BluRay.1080p.DD2.0.x264.BMDru.mkv,8316576126,2025-10-10T05:28:45,movie,1920x1038,h264,5534.56,12021 +/mnt/Downloads/movies/1917.2019.1080p.BluRay.x264-WiKi/Sample/1917.2019.1080p.BluRay.x264-WiKi.Sample.mkv,1917.2019.1080p.BluRay.x264-WiKi.Sample.mkv,117881667,2020-08-04T13:15:06,movie,1920x800,h264,63.739,14795 +/mnt/Downloads/movies/1917.2019.1080p.BluRay.x264-WiKi/1917.2019.1080p.BluRay.x264-WiKi.mkv,1917.2019.1080p.BluRay.x264-WiKi.mkv,11146859692,2020-08-04T13:16:56,movie,1920x800,h264,7138.144,12492 +/mnt/Downloads/movies/Crossing.Hennessy.2010.720p.BluRay.x264.DTS-WiKi/Crossing.Hennessy.2010.720p.BluRay.x264.DTS-WiKi.mkv,Crossing.Hennessy.2010.720p.BluRay.x264.DTS-WiKi.mkv,5896330987,2023-12-13T12:51:14,movie,1280x720,h264,6283.616,7506 +/mnt/Downloads/movies/Crossing.Hennessy.2010.720p.BluRay.x264.DTS-WiKi/Sample/Crossing.Hennessy.2010.720p.BluRay.x264.DTS-WiKi.Sample.mkv,Crossing.Hennessy.2010.720p.BluRay.x264.DTS-WiKi.Sample.mkv,66125973,2023-12-13T12:50:27,movie,1280x720,h264,70.863,7465 +/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,Venom.The.Last.Dance.2024.2160p.BluRay.DoVi.x265.10bit.Atmos.TrueHD7.1-WiKi.mkv,35622271897,2025-01-07T11:29:49,movie,3840x1608,hevc,6537.536,43591 +/mnt/Downloads/movies/Sad.Movie.2005.720p.BluRay.x264-WiKi/Sad.Movie.2005.720p.BluRay.x264-WiKi.mkv,Sad.Movie.2005.720p.BluRay.x264-WiKi.mkv,7121991459,2022-03-29T10:06:43,movie,1280x536,h264,6544.576,8705 +/mnt/Downloads/movies/Sad.Movie.2005.720p.BluRay.x264-WiKi/Sample/Sad.Movie.2005.720p.BluRay.x264-WiKi.Sample.mkv,Sad.Movie.2005.720p.BluRay.x264-WiKi.Sample.mkv,75547264,2022-03-29T10:05:57,movie,1280x536,h264,68.377,8838 +/mnt/Downloads/movies/A.Man.2022.1080p.U-NEXT.WEB-DL.AAC2.0.H.264-xiaopie@CHDWEB.mkv,A.Man.2022.1080p.U-NEXT.WEB-DL.AAC2.0.H.264-xiaopie@CHDWEB.mkv,3787296465,2023-05-21T11:42:52,movie,1920x1080,h264,7334.293,4131 +/mnt/Downloads/movies/Pain.Hustlers.2023.1080p.NF.WEB-DL.DD+5.1.Atmos.H.264-playWEB.mkv,Pain.Hustlers.2023.1080p.NF.WEB-DL.DD+5.1.Atmos.H.264-playWEB.mkv,5307535531,2023-11-04T03:28:15,movie,1920x1080,h264,7489.042,5669 +/mnt/Downloads/movies/Masquerade.Night.2021.1080p.BluRay.x264.DTS-WiKi/Sample/Masquerade.Night.2021.1080p.BluRay.x264.DTS-WiKi.sample.mkv,Masquerade.Night.2021.1080p.BluRay.x264.DTS-WiKi.sample.mkv,114834892,2022-04-03T09:13:21,movie,1920x804,h264,70.296,13068 +/mnt/Downloads/movies/Masquerade.Night.2021.1080p.BluRay.x264.DTS-WiKi/Masquerade.Night.2021.1080p.BluRay.x264.DTS-WiKi.mkv,Masquerade.Night.2021.1080p.BluRay.x264.DTS-WiKi.mkv,10471949765,2022-04-03T09:14:05,movie,1920x804,h264,7733.942,10832 +/mnt/Downloads/movies/Druk.2020.720p.BluRay.x264-WiKi/Druk.2020.720p.BluRay.x264-WiKi.mkv,Druk.2020.720p.BluRay.x264-WiKi.mkv,5232472518,2021-05-09T13:38:49,movie,1280x640,h264,6980.125,5996 +/mnt/Downloads/movies/Druk.2020.720p.BluRay.x264-WiKi/Sample/Druk.2020.720p.BluRay.x264-WiKi.Sample.mkv,Druk.2020.720p.BluRay.x264-WiKi.Sample.mkv,88349630,2021-05-09T13:38:27,movie,1280x640,h264,61.67,11460 +/mnt/Downloads/movies/Bad.Guys.The.Movie.2019.720p.BluRay.x264-WiKi/Bad.Guys.The.Movie.2019.720p.BluRay.x264-WiKi.mkv,Bad.Guys.The.Movie.2019.720p.BluRay.x264-WiKi.mkv,5935969714,2020-06-14T02:24:37,movie,1280x536,h264,6899.2,6883 +/mnt/Downloads/movies/Bad.Guys.The.Movie.2019.720p.BluRay.x264-WiKi/Sample/Bad.Guys.The.Movie.2019.720p.BluRay.x264-WiKi.Sample.mkv,Bad.Guys.The.Movie.2019.720p.BluRay.x264-WiKi.Sample.mkv,74544813,2020-06-14T02:24:27,movie,1280x536,h264,64.253,9281 +/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,Chickenhare.and.the.Hamster.of.Darkness.2022.1080p.BluRay.x265.10bit.DTS-WiKi.mkv,5910916266,2022-12-28T12:59:03,movie,1920x804,hevc,5517.846,8569 +/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,Chickenhare.and.the.Hamster.of.Darkness.2022.1080p.BluRay.x265.10bit.DTS-WiKi.Sample.mkv,68112216,2022-12-28T12:56:10,movie,1920x804,hevc,62.243,8754 +/mnt/Downloads/movies/Thermae.Romae.II.2014.1080p.BluRay.x264.DTS-WiKi/Thermae.Romae.II.2014.1080p.BluRay.x264.DTS-WiKi.mkv,Thermae.Romae.II.2014.1080p.BluRay.x264.DTS-WiKi.mkv,9666638680,2025-03-27T01:14:33,movie,1920x800,h264,6762.763,11435 +/mnt/Downloads/movies/Thermae.Romae.II.2014.1080p.BluRay.x264.DTS-WiKi/Sample/Thermae.Romae.II.2014.1080p.BluRay.x264.DTS-WiKi.sample.mkv,Thermae.Romae.II.2014.1080p.BluRay.x264.DTS-WiKi.sample.mkv,106034087,2025-03-26T15:47:39,movie,1920x800,h264,52.924,16028 +/mnt/Downloads/movies/Chilli.Laugh.Story.2022.1080p.BluRay.x265.10bit-WiKi/Chilli.Laugh.Story.2022.1080p.BluRay.x265.10bit-WiKi.mkv,Chilli.Laugh.Story.2022.1080p.BluRay.x265.10bit-WiKi.mkv,5869110900,2023-01-20T18:43:59,movie,1920x816,hevc,5481.632,8565 +/mnt/Downloads/movies/Chilli.Laugh.Story.2022.1080p.BluRay.x265.10bit-WiKi/Sample/Chilli.Laugh.Story.2022.1080p.BluRay.x265.10bit-WiKi.Sample.mkv,Chilli.Laugh.Story.2022.1080p.BluRay.x265.10bit-WiKi.Sample.mkv,118547816,2023-01-20T18:40:00,movie,1920x816,hevc,66.051,14358 +/mnt/Downloads/movies/Mosul.2019.BluRay.1080p.TrueHD.5.1.x265.10bit-BeiTai/Mosul.2019.BluRay.1080p.TrueHD.5.1.x265.10bit-BeiTai.mkv,Mosul.2019.BluRay.1080p.TrueHD.5.1.x265.10bit-BeiTai.mkv,7934749341,2021-09-01T11:29:35,movie,1920x1038,hevc,6100.32,10405 +/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,Top.Gun.Maverick.2022.IMAX.2160p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi.mkv,28381890680,2023-04-11T05:53:39,movie,3840x2024,hevc,7814.528,29055 +/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,Aquaman.and.the.Lost.Kingdom.2023.1080p.Blu-ray.Atmos.TrueHD7.1.x265-HDH.mkv,13335450792,2024-03-08T13:42:46,movie,1920x1080,hevc,7448.448,14322 +/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,The.Confidence.Man.JP.Princess.2020.1080p.BluRay.x264.DTS-WiKi.mkv,12887955385,2021-01-03T05:16:31,movie,1920x1038,h264,7414.454,13905 +/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,The.Confidence.Man.JP.Princess.2020.1080p.BluRay.x264.DTS-WiKi.sample.mkv,111177284,2021-01-03T05:11:34,movie,1920x1038,h264,69.57,12784 +/mnt/Downloads/movies/The.Contractor.2022.1080p.BluRay.x265.10bit.DTS-WiKi/Sample/The.Contractor.2022.1080p.BluRay.x265.10bit.DTS-WiKi.Sample.mkv,The.Contractor.2022.1080p.BluRay.x265.10bit.DTS-WiKi.Sample.mkv,70491518,2022-06-06T11:38:04,movie,1920x804,hevc,61.19,9216 +/mnt/Downloads/movies/The.Contractor.2022.1080p.BluRay.x265.10bit.DTS-WiKi/The.Contractor.2022.1080p.BluRay.x265.10bit.DTS-WiKi.mkv,The.Contractor.2022.1080p.BluRay.x265.10bit.DTS-WiKi.mkv,5886447249,2022-06-06T11:42:39,movie,1920x804,hevc,6202.24,7592 +/mnt/Downloads/movies/千钧一发.Gattaca.1997.BluRay.1080p.x265.10bit.3Audio.MNHD-FRDS/Gattaca.1997.BluRay.1080p.x265.10bit.3Audio.MNHD-FRDS.mkv,Gattaca.1997.BluRay.1080p.x265.10bit.3Audio.MNHD-FRDS.mkv,5300198580,2024-06-30T00:57:19,movie,1920x800,hevc,6387.423,6638 +/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,A.Working.Man.2025.2160p.iT.WEB-DL.H265.DV.DDP5.1.Atmos-Nest@ADWeb.mkv,13391010487,2025-04-27T12:28:41,movie,3832x1596,hevc,6974.112,15360 +/mnt/Downloads/movies/The.Gorge.2025.2160p.ATVP.WEB-DL.DDP5.1.Atmos.H.265-APEX.mkv,The.Gorge.2025.2160p.ATVP.WEB-DL.DDP5.1.Atmos.H.265-APEX.mkv,19934253911,2025-02-15T14:16:32,movie,3840x2076,hevc,7667.552,20798 +/mnt/Downloads/series/The.Witcher.S01.1080p.NF.WEB-DL.DDP5.1.Atmos.x264-NG/The.Witcher.S01E07.Before.a.Fall.1080p.NF.WEB-DL.DDP5.1.Atmos.x264-NG.mkv,The.Witcher.S01E07.Before.a.Fall.1080p.NF.WEB-DL.DDP5.1.Atmos.x264-NG.mkv,1775913188,2019-12-21T08:12:41,series,1920x1080,h264,2842.584,4998 +/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,The.Witcher.S01E02.Four.Marks.1080p.NF.WEB-DL.DDP5.1.Atmos.x264-NG.mkv,3126858895,2019-12-21T08:14:41,series,1920x1080,h264,3656.584,6841 +/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,The.Witcher.S01E06.Rare.Species.1080p.NF.WEB-DL.DDP5.1.Atmos.x264-NG.mkv,3411949211,2019-12-21T08:11:48,series,1920x1080,h264,3574.584,7636 +/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,The.Witcher.S01E05.Bottled.Appetites.1080p.NF.WEB-DL.DDP5.1.Atmos.x264-NG.mkv,3266958080,2019-12-21T08:12:14,series,1920x1080,h264,3548.584,7365 +/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,The.Witcher.S01E03.Betrayer.Moon.1080p.NF.WEB-DL.DDP5.1.Atmos.x264-NG.mkv,2660365804,2019-12-21T08:15:00,series,1920x1080,h264,4022.56,5290 +/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,The.Witcher.S01E08.Much.More.1080p.NF.WEB-DL.DDP5.1.Atmos.x264-NG.mkv,3003116293,2019-12-21T08:12:24,series,1920x1080,h264,3578.584,6713 +/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,The.Witcher.S01E04.Of.Banquets.Bastards.and.Burials.1080p.NF.WEB-DL.DDP5.1.Atmos.x264-NG.mkv,3302138387,2019-12-21T08:13:44,series,1920x1080,h264,3730.56,7081 +/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,The.Witcher.S01E01.The.Ends.Beginning.1080p.NF.WEB-DL.DDP5.1.Atmos.x264-NG.mkv,2963034306,2019-12-21T08:15:09,series,1920x1080,h264,3664.584,6468 +/mnt/Downloads/series/Dexter.Resurrection.S01E01.A.Beating.Heart.1080p.REPACK.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv,Dexter.Resurrection.S01E01.A.Beating.Heart.1080p.REPACK.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv,3332528355,2025-08-06T05:26:12,series,1920x800,h264,3083.936,8644 +/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,Koi.Nante.Honki.de.Yatte.Dousuruno.E06.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV.mkv,1101499797,2025-03-07T16:59:04,series,1920x1080,h264,2739.119,3217 +/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,Koi.Nante.Honki.de.Yatte.Dousuruno.E01.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV.mkv,1349929945,2025-03-07T16:49:06,series,1920x1080,h264,3380.825,3194 +/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,Koi.Nante.Honki.de.Yatte.Dousuruno.E09.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV.mkv,1097895701,2025-03-07T17:04:37,series,1920x1080,h264,2738.608,3207 +/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,Koi.Nante.Honki.de.Yatte.Dousuruno.E07.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV.mkv,1098095715,2025-03-07T17:00:52,series,1920x1080,h264,2743.646,3201 +/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,Koi.Nante.Honki.de.Yatte.Dousuruno.E10.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV.mkv,1097556603,2025-03-07T17:06:28,series,1920x1080,h264,2726.092,3220 +/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,Koi.Nante.Honki.de.Yatte.Dousuruno.E08.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV.mkv,1100446203,2025-03-07T17:02:33,series,1920x1080,h264,2742.114,3210 +/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,Koi.Nante.Honki.de.Yatte.Dousuruno.E03.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV.mkv,1100664588,2025-03-07T16:54:08,series,1920x1080,h264,2754.026,3197 +/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,Koi.Nante.Honki.de.Yatte.Dousuruno.E04.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV.mkv,1094258651,2025-03-07T16:55:30,series,1920x1080,h264,2725.999,3211 +/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,Koi.Nante.Honki.de.Yatte.Dousuruno.E02.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV.mkv,1097743725,2025-03-07T16:51:06,series,1920x1080,h264,2743.019,3201 +/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,Koi.Nante.Honki.de.Yatte.Dousuruno.E05.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV.mkv,1096640077,2025-03-07T16:57:24,series,1920x1080,h264,2743.112,3198 +/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,The.Peripheral.S01E06.2022.Amazon.WEB-DL.4K.HEVC.HDR.DDP-HDCTV.mkv,6686564659,2022-11-23T15:58:47,series,3840x1920,hevc,3673.152,14563 +/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,The.Peripheral.S01E07.2022.Amazon.WEB-DL.4K.HEVC.HDR.DDP-HDCTV.mkv,5888978594,2022-11-29T13:05:30,series,3840x1920,hevc,3286.368,14335 +/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,The.Peripheral.S01E03.2022.Amazon.WEB-DL.4K.HEVC.HDR.DDP-HDCTV.mkv,7868247567,2022-11-03T07:50:16,series,3840x1920,hevc,4293.331,14661 +/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,Dragon.Zakura.2005.EP08.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv,2319625838,2025-03-25T05:05:25,series,1920x1080,hevc,2762.96,6716 +/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,Dragon.Zakura.2005.EP09.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv,2228847631,2025-03-25T05:07:05,series,1920x1080,hevc,2773.005,6430 +/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,Dragon.Zakura.2005.EP01.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv,2753855346,2025-03-25T04:48:36,series,1920x1080,hevc,2774.14,7941 +/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,Dragon.Zakura.2005.EP02.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv,2895192473,2025-03-25T04:52:30,series,1920x1080,hevc,2778.042,8337 +/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,Dragon.Zakura.2005.EP03.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv,2704295873,2025-03-25T04:55:37,series,1920x1080,hevc,2778.042,7787 +/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,Dragon.Zakura.2005.EP04.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv,2477604800,2025-03-25T04:58:40,series,1920x1080,hevc,2766.03,7165 +/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,Dragon.Zakura.2005.EP10.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv,2734778764,2025-03-25T05:09:15,series,1920x1080,hevc,2763.027,7918 +/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,Dragon.Zakura.2005.EP05.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv,2535730143,2025-03-25T05:00:03,series,1920x1080,hevc,2778.042,7302 +/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,Dragon.Zakura.2005.EP11.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv,2813565107,2025-03-25T05:10:15,series,1920x1080,hevc,3546.877,6346 +/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,Dragon.Zakura.2005.EP06.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv,2635727229,2025-03-25T05:02:12,series,1920x1080,hevc,2778.042,7590 +/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,Dragon.Zakura.2005.EP07.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv,2449307907,2025-03-25T05:03:33,series,1920x1080,hevc,2778.042,7053 +/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,FUBAR.S01E04.Armed.and.Dane-gerous.1080p.NF.WEB-DL.DDP5.1.Atmos.H.264-WDYM.mkv,2374495975,2023-05-27T13:38:54,series,1920x1080,h264,3438.016,5525 +/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,FUBAR.S01E05.Here.Today.Gone.To-Marrow.1080p.NF.WEB-DL.DDP5.1.Atmos.H.264-WDYM.mkv,2374427089,2023-05-27T13:38:40,series,1920x1080,h264,3428.0,5541 +/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,FUBAR.S01E03.Honeyplot.1080p.NF.WEB-DL.DDP5.1.Atmos.H.264-WDYM.mkv,2293550240,2023-05-27T13:38:52,series,1920x1080,h264,3317.888,5530 +/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,FUBAR.S01E01.Take.Your.Daughter.To.Work.Day.1080p.NF.WEB-DL.DDP5.1.Atmos.H.264-WDYM.mkv,2304404668,2023-05-27T12:07:19,series,1920x1080,h264,3323.904,5546 +/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,FUBAR.S01E02.Stole.Train.1080p.NF.WEB-DL.DDP5.1.Atmos.H.264-WDYM.mkv,1901230314,2023-05-27T13:38:48,series,1920x1080,h264,2773.344,5484 +/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,FUBAR.S01E08.Thats.It.And.Thats.All.1080p.NF.WEB-DL.DDP5.1.Atmos.H.264-WDYM.mkv,1865133354,2023-05-27T13:38:50,series,1920x1080,h264,2741.312,5443 +/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,FUBAR.S01E06.Royally.Flushed.1080p.NF.WEB-DL.DDP5.1.Atmos.H.264-WDYM.mkv,2492504849,2023-05-27T13:38:45,series,1920x1080,h264,3562.112,5597 +/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,FUBAR.S01E07.Urine.Luck.1080p.NF.WEB-DL.DDP5.1.Atmos.H.264-WDYM.mkv,2128920646,2023-05-27T13:38:42,series,1920x1080,h264,3101.664,5491 +/mnt/Downloads/series/白夜行.2006.全11集.1080p.简繁中字£CMCT木丁西/[白夜行].Into.the.White.Night.E04.2006.1080p.BluRay.x265.FLAC-CMCT.mkv,[白夜行].Into.the.White.Night.E04.2006.1080p.BluRay.x265.FLAC-CMCT.mkv,2718028258,2024-05-13T11:25:27,series,1916x1080,hevc,2815.815,7722 +/mnt/Downloads/series/白夜行.2006.全11集.1080p.简繁中字£CMCT木丁西/[白夜行].Into.the.White.Night.E05.2006.1080p.BluRay.x265.FLAC-CMCT.mkv,[白夜行].Into.the.White.Night.E05.2006.1080p.BluRay.x265.FLAC-CMCT.mkv,2741888452,2024-05-13T11:25:28,series,1916x1080,hevc,2832.765,7743 +/mnt/Downloads/series/白夜行.2006.全11集.1080p.简繁中字£CMCT木丁西/[白夜行].Into.the.White.Night.E08.2006.1080p.BluRay.x265.FLAC-CMCT.mkv,[白夜行].Into.the.White.Night.E08.2006.1080p.BluRay.x265.FLAC-CMCT.mkv,2701255812,2024-05-13T11:25:31,series,1916x1080,hevc,2792.626,7738 +/mnt/Downloads/series/白夜行.2006.全11集.1080p.简繁中字£CMCT木丁西/[白夜行].Into.the.White.Night.E06.2006.1080p.BluRay.x265.FLAC-CMCT.mkv,[白夜行].Into.the.White.Night.E06.2006.1080p.BluRay.x265.FLAC-CMCT.mkv,2743115096,2024-05-13T11:25:31,series,1916x1080,hevc,2830.497,7753 +/mnt/Downloads/series/白夜行.2006.全11集.1080p.简繁中字£CMCT木丁西/[白夜行].Into.the.White.Night.E09.2006.1080p.BluRay.x265.FLAC-CMCT.mkv,[白夜行].Into.the.White.Night.E09.2006.1080p.BluRay.x265.FLAC-CMCT.mkv,2711923479,2024-05-13T11:25:34,series,1916x1080,hevc,2807.375,7727 +/mnt/Downloads/series/白夜行.2006.全11集.1080p.简繁中字£CMCT木丁西/[白夜行].Into.the.White.Night.E07.2006.1080p.BluRay.x265.FLAC-CMCT.mkv,[白夜行].Into.the.White.Night.E07.2006.1080p.BluRay.x265.FLAC-CMCT.mkv,2700711263,2024-05-13T11:25:26,series,1916x1080,hevc,2783.58,7761 +/mnt/Downloads/series/白夜行.2006.全11集.1080p.简繁中字£CMCT木丁西/[白夜行].Into.the.White.Night.E11.2006.1080p.BluRay.x265.FLAC-CMCT.mkv,[白夜行].Into.the.White.Night.E11.2006.1080p.BluRay.x265.FLAC-CMCT.mkv,2718903426,2024-05-13T11:25:29,series,1916x1080,hevc,2814.948,7727 +/mnt/Downloads/series/白夜行.2006.全11集.1080p.简繁中字£CMCT木丁西/[白夜行].Into.the.White.Night.E01.2006.1080p.BluRay.x265.FLAC-CMCT.mkv,[白夜行].Into.the.White.Night.E01.2006.1080p.BluRay.x265.FLAC-CMCT.mkv,5395190471,2024-05-13T11:25:33,series,1916x1080,hevc,5614.447,7687 +/mnt/Downloads/series/白夜行.2006.全11集.1080p.简繁中字£CMCT木丁西/[白夜行].Into.the.White.Night.E10.2006.1080p.BluRay.x265.FLAC-CMCT.mkv,[白夜行].Into.the.White.Night.E10.2006.1080p.BluRay.x265.FLAC-CMCT.mkv,2705252508,2024-05-13T11:25:27,series,1916x1080,hevc,2793.126,7748 +/mnt/Downloads/series/白夜行.2006.全11集.1080p.简繁中字£CMCT木丁西/[白夜行].Into.the.White.Night.E03.2006.1080p.BluRay.x265.FLAC-CMCT.mkv,[白夜行].Into.the.White.Night.E03.2006.1080p.BluRay.x265.FLAC-CMCT.mkv,2762584766,2024-05-13T11:25:29,series,1916x1080,hevc,2867.567,7707 +/mnt/Downloads/series/白夜行.2006.全11集.1080p.简繁中字£CMCT木丁西/[白夜行].Into.the.White.Night.E02.2006.1080p.BluRay.x265.FLAC-CMCT.mkv,[白夜行].Into.the.White.Night.E02.2006.1080p.BluRay.x265.FLAC-CMCT.mkv,2734841001,2024-05-13T11:25:29,series,1916x1080,hevc,2808.441,7790 +/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,[未知的首尔].Our.Unwritten.Seoul.S01E12.2025.1080p.NF.WEB-DL.x264.AAC-CMCTV.mkv,3141212024,2025-07-01T00:11:35,series,1920x1080,h264,4928.213,5099 +/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,[未知的首尔].Our.Unwritten.Seoul.S01E09.2025.1080p.NF.WEB-DL.x264.AAC-CMCTV.mkv,3068566641,2025-06-30T23:58:07,series,1920x1080,h264,4805.377,5108 +/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,[未知的首尔].Our.Unwritten.Seoul.S01E05.2025.1080p.NF.WEB-DL.x264.AAC-CMCTV.mkv,2997554699,2025-06-30T23:38:38,series,1920x1080,h264,4702.464,5099 +/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,[未知的首尔].Our.Unwritten.Seoul.S01E01.2025.1080p.NF.WEB-DL.x264.AAC-CMCTV.mkv,3298844433,2025-06-30T23:17:39,series,1920x1080,h264,4846.293,5445 +/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,[未知的首尔].Our.Unwritten.Seoul.S01E04.2025.1080p.NF.WEB-DL.x264.AAC-CMCTV.mkv,2905095379,2025-06-30T23:32:58,series,1920x1080,h264,4556.459,5100 +/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,[未知的首尔].Our.Unwritten.Seoul.S01E08.2025.1080p.NF.WEB-DL.x264.AAC-CMCTV.mkv,3093394457,2025-06-30T23:53:09,series,1920x1080,h264,4844.373,5108 +/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,[未知的首尔].Our.Unwritten.Seoul.S01E06.2025.1080p.NF.WEB-DL.x264.AAC-CMCTV.mkv,3113521734,2025-06-30T23:43:29,series,1920x1080,h264,4876.843,5107 +/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,[未知的首尔].Our.Unwritten.Seoul.S01E02.2025.1080p.NF.WEB-DL.x264.AAC-CMCTV.mkv,3021041301,2025-06-30T23:22:47,series,1920x1080,h264,4722.347,5117 +/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,[未知的首尔].Our.Unwritten.Seoul.S01E11.2025.1080p.NF.WEB-DL.x264.AAC-CMCTV.mkv,3201149983,2025-07-01T00:07:41,series,1920x1080,h264,5017.729,5103 +/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,[未知的首尔].Our.Unwritten.Seoul.S01E10.2025.1080p.NF.WEB-DL.x264.AAC-CMCTV.mkv,2655625538,2025-07-01T00:01:56,series,1920x1080,h264,4164.225,5101 +/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,[未知的首尔].Our.Unwritten.Seoul.S01E07.2025.1080p.NF.WEB-DL.x264.AAC-CMCTV.mkv,3109667569,2025-06-30T23:48:16,series,1920x1080,h264,4866.859,5111 +/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,[未知的首尔].Our.Unwritten.Seoul.S01E03.2025.1080p.NF.WEB-DL.x264.AAC-CMCTV.mkv,3027695118,2025-06-30T23:27:23,series,1920x1080,h264,4741.846,5108 +/mnt/Downloads/series/Believe-君にかける橋- 第06話 1080p KKTV WEB-DL H264 AAC.mkv,Believe-君にかける橋- 第06話 1080p KKTV WEB-DL H264 AAC.mkv,1088867402,2024-06-11T23:53:16,series,1920x1080,h264,2718.035,3204 +/mnt/Downloads/series/Zenryouiki.Ijou.Kaiketsushitsu.EP01.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv,Zenryouiki.Ijou.Kaiketsushitsu.EP01.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv,2908836217,2024-10-23T11:34:32,series,1920x1080,h264,3333.024,6981 +/mnt/Downloads/series/Reacher.S03E05.Smackdown.1080p.AMZN.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv,Reacher.S03E05.Smackdown.1080p.AMZN.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv,3459083026,2025-03-16T01:05:48,series,1920x960,h264,2916.164,9489 +/mnt/Downloads/series/Mare.Of.Easttown.S01.1080p.WEB-DL.x264-DJYDXS/Mare.Of.Easttown.S01E06.1080p.WEB-DL.x264-DJYDXS.mp4,Mare.Of.Easttown.S01E06.1080p.WEB-DL.x264-DJYDXS.mp4,2957109913,2021-07-29T09:49:57,series,1920x1080,h264,3668.544,6448 +/mnt/Downloads/series/Mare.Of.Easttown.S01.1080p.WEB-DL.x264-DJYDXS/Mare.Of.Easttown.S01E07.1080p.WEB-DL.x264-DJYDXS.mp4,Mare.Of.Easttown.S01E07.1080p.WEB-DL.x264-DJYDXS.mp4,3685368425,2021-07-29T09:49:57,series,1920x1080,h264,4570.784,6450 +/mnt/Downloads/series/Mare.Of.Easttown.S01.1080p.WEB-DL.x264-DJYDXS/Mare.Of.Easttown.S01E04.1080p.WEB-DL.x264-DJYDXS.mp4,Mare.Of.Easttown.S01E04.1080p.WEB-DL.x264-DJYDXS.mp4,2866054950,2021-07-29T09:49:56,series,1920x1080,h264,3556.096,6447 +/mnt/Downloads/series/Mare.Of.Easttown.S01.1080p.WEB-DL.x264-DJYDXS/Mare.Of.Easttown.S01E05.1080p.WEB-DL.x264-DJYDXS.mp4,Mare.Of.Easttown.S01E05.1080p.WEB-DL.x264-DJYDXS.mp4,2956014496,2021-07-29T09:49:54,series,1920x1080,h264,3668.064,6447 +/mnt/Downloads/series/Mare.Of.Easttown.S01.1080p.WEB-DL.x264-DJYDXS/Mare.Of.Easttown.S01E03.1080p.WEB-DL.x264-DJYDXS.mp4,Mare.Of.Easttown.S01E03.1080p.WEB-DL.x264-DJYDXS.mp4,2977132205,2021-07-29T09:49:56,series,1920x1080,h264,3693.94025,6447 +/mnt/Downloads/series/Mare.Of.Easttown.S01.1080p.WEB-DL.x264-DJYDXS/Mare.Of.Easttown.S01E02.1080p.WEB-DL.x264-DJYDXS.mp4,Mare.Of.Easttown.S01E02.1080p.WEB-DL.x264-DJYDXS.mp4,2890102141,2021-07-29T09:49:58,series,1920x1080,h264,3587.33375,6445 +/mnt/Downloads/series/Mare.Of.Easttown.S01.1080p.WEB-DL.x264-DJYDXS/Mare.Of.Easttown.S01E01.1080p.WEB-DL.x264-DJYDXS.mp4,Mare.Of.Easttown.S01E01.1080p.WEB-DL.x264-DJYDXS.mp4,2810678145,2021-07-29T09:49:57,series,1920x1080,h264,3485.518708,6451 +/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,Ideology.Verification.Zone.The.Community.S01E09.1080p.WAVVE.WEB-DL.AAC.H264.mkv,4810224493,2024-10-28T12:54:27,series,1920x1080,h264,7405.802,5196 +/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,Ideology.Verification.Zone.The.Community.S01E08.1080p.WAVVE.WEB-DL.AAC.H264.mkv,4144315585,2024-10-28T12:51:40,series,1920x1080,h264,6376.81,5199 +/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,Ideology.Verification.Zone.The.Community.S01E03.1080p.WAVVE.WEB-DL.AAC.H264.mkv,3448825655,2024-10-28T12:39:59,series,1920x1080,h264,5313.045,5192 +/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,Ideology.Verification.Zone.The.Community.S01E02.1080p.WAVVE.WEB-DL.AAC.H264.mkv,3321919810,2024-10-28T12:33:21,series,1920x1080,h264,5124.97,5185 +/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,Ideology.Verification.Zone.The.Community.S01E01.1080p.WAVVE.WEB-DL.AAC.H264.mkv,2719413635,2024-10-28T12:27:41,series,1920x1080,h264,4202.709,5176 +/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,Ideology.Verification.Zone.The.Community.S01E05.1080p.WAVVE.WEB-DL.AAC.H264.mkv,3333386861,2024-10-28T12:45:48,series,1920x1080,h264,5131.797,5196 +/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,Ideology.Verification.Zone.The.Community.S01E10.1080p.WAVVE.WEB-DL.AAC.H264.mkv,3478065567,2024-10-28T12:56:13,series,1920x1080,h264,5355.285,5195 +/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,Ideology.Verification.Zone.The.Community.S01E11.1080p.WAVVE.WEB-DL.AAC.H264.mkv,2836766516,2024-10-28T12:57:38,series,1920x1080,h264,4372.714,5189 +/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,Ideology.Verification.Zone.The.Community.S01E04.1080p.WAVVE.WEB-DL.AAC.H264.mkv,3266631377,2024-10-28T12:43:18,series,1920x1080,h264,5039.509,5185 +/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,Ideology.Verification.Zone.The.Community.S01E06.1080p.WAVVE.WEB-DL.AAC.H264.mkv,3504913057,2024-10-28T12:47:48,series,1920x1080,h264,5405.738,5186 +/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,Ideology.Verification.Zone.The.Community.S01E07.1080p.WAVVE.WEB-DL.AAC.H264.mkv,3327711040,2024-10-28T12:49:30,series,1920x1080,h264,5123.797,5195 +/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,Money.Heist.Korea.Joint.Economic.Area.S01E03.2022.Netflix.WEB-DL.1080p.HEVC.HDR.DDP-HDCTV.mkv,3104171185,2022-08-30T03:03:26,series,1920x1080,hevc,4104.832,6049 +/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,Money.Heist.Korea.Joint.Economic.Area.S01E07.2022.Netflix.WEB-DL.1080p.HEVC.HDR.DDP-HDCTV.mkv,2162085261,2022-12-22T19:30:08,series,1920x1080,hevc,4236.864,4082 +/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,Money.Heist.Korea.Joint.Economic.Area.S01E08.2022.Netflix.WEB-DL.1080p.HEVC.HDR.DDP-HDCTV.mkv,3186366855,2022-12-22T19:30:09,series,1920x1080,hevc,4106.848,6206 +/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,Money.Heist.Korea.Joint.Economic.Area.S01E10.2022.Netflix.WEB-DL.1080p.HEVC.HDR.DDP-HDCTV.mkv,2700499111,2022-12-22T19:30:09,series,1920x1080,hevc,4240.96,5094 +/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,Money.Heist.Korea.Joint.Economic.Area.S01E04.2022.Netflix.WEB-DL.1080p.HEVC.HDR.DDP-HDCTV.mkv,3243923930,2022-08-30T03:03:31,series,1920x1080,hevc,4240.96,6119 +/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,Money.Heist.Korea.Joint.Economic.Area.S01E12.2022.Netflix.WEB-DL.1080p.HEVC.HDR.DDP-HDCTV.mkv,3947549793,2022-12-22T19:30:09,series,1920x1080,hevc,4607.2,6854 +/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,Money.Heist.Korea.Joint.Economic.Area.S01E06.2022.Netflix.WEB-DL.1080p.HEVC.HDR.DDP-HDCTV.mkv,2934502024,2022-12-22T16:59:25,series,1920x1080,hevc,3834.528,6122 +/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,Money.Heist.Korea.Joint.Economic.Area.S01E02.2022.Netflix.WEB-DL.1080p.HEVC.HDR.DDP-HDCTV.mkv,3431684255,2022-08-30T03:03:32,series,1920x1080,hevc,4447.168,6173 +/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,Money.Heist.Korea.Joint.Economic.Area.S01E11.2022.Netflix.WEB-DL.1080p.HEVC.HDR.DDP-HDCTV.mkv,2694604067,2022-12-22T19:30:08,series,1920x1080,hevc,4130.752,5218 +/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,Money.Heist.Korea.Joint.Economic.Area.S01E09.2022.Netflix.WEB-DL.1080p.HEVC.HDR.DDP-HDCTV.mkv,2515465903,2022-12-22T19:30:00,series,1920x1080,hevc,4078.656,4933 +/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,Money.Heist.Korea.Joint.Economic.Area.S01E05.2022.Netflix.WEB-DL.1080p.HEVC.HDR.DDP-HDCTV.mkv,2953527479,2022-08-30T03:03:29,series,1920x1080,hevc,3860.544,6120 +/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,Money.Heist.Korea.Joint.Economic.Area.S01E01.2022.Netflix.WEB-DL.1080p.HEVC.HDR.DDP-HDCTV.mkv,3589240861,2022-08-30T03:03:25,series,1920x1080,hevc,4683.392,6131 +/mnt/Downloads/series/True.Detective.S04E04.Night.Country.Part.4.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv,True.Detective.S04E04.Night.Country.Part.4.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv,4391088839,2024-02-05T11:19:09,series,1920x960,h264,3641.889,9645 +/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,나의 해방일지.My.Liberation.Notes.S01E13.1080p.NF.WEB-DL.DDP2.0.x264-REVOLT.mkv,2371888871,2022-11-04T14:51:38,series,1920x1080,h264,4108.704,4618 +/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,나의 해방일지.My.Liberation.Notes.S01E02.1080p.NF.WEB-DL.DDP2.0.x264-REVOLT.mkv,1697003658,2022-11-04T14:52:23,series,1920x1080,h264,3727.264,3642 +/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,나의 해방일지.My.Liberation.Notes.S01E06.1080p.NF.WEB-DL.DDP2.0.x264-REVOLT.mkv,1843425150,2022-11-04T14:52:23,series,1920x1080,h264,3919.776,3762 +/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,나의 해방일지.My.Liberation.Notes.S01E07.1080p.NF.WEB-DL.DDP2.0.x264-REVOLT.mkv,2922370393,2022-11-04T14:52:22,series,1920x1080,h264,3948.576,5920 +/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,나의 해방일지.My.Liberation.Notes.S01E16.1080p.NF.WEB-DL.DDP2.0.x264-REVOLT.mkv,3515620333,2022-11-04T14:52:22,series,1920x1080,h264,4851.744,5796 +/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,나의 해방일지.My.Liberation.Notes.S01E03.1080p.NF.WEB-DL.DDP2.0.x264-REVOLT.mkv,2832581408,2022-11-04T14:52:19,series,1920x1080,h264,3827.872,5919 +/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,나의 해방일지.My.Liberation.Notes.S01E12.1080p.NF.WEB-DL.DDP2.0.x264-REVOLT.mkv,3093245001,2022-11-04T14:52:18,series,1920x1080,h264,4181.92,5917 +/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,나의 해방일지.My.Liberation.Notes.S01E05.1080p.NF.WEB-DL.DDP2.0.x264-REVOLT.mkv,2153841876,2022-11-04T14:52:18,series,1920x1080,h264,3940.768,4372 +/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,나의 해방일지.My.Liberation.Notes.S01E14.1080p.NF.WEB-DL.DDP2.0.x264-REVOLT.mkv,3843834823,2022-11-04T14:52:18,series,1920x1080,h264,4320.416,7117 +/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,나의 해방일지.My.Liberation.Notes.S01E08.1080p.NF.WEB-DL.DDP2.0.x264-REVOLT.mkv,1539401593,2022-11-04T14:52:21,series,1920x1080,h264,3862.432,3188 +/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,나의 해방일지.My.Liberation.Notes.S01E01.1080p.NF.WEB-DL.DDP2.0.x264-REVOLT.mkv,3001323014,2022-11-04T13:25:00,series,1920x1080,h264,3843.744,6246 +/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,나의 해방일지.My.Liberation.Notes.S01E10.1080p.NF.WEB-DL.DDP2.0.x264-REVOLT.mkv,3545922690,2022-11-04T14:52:23,series,1920x1080,h264,4046.209,7010 +/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,나의 해방일지.My.Liberation.Notes.S01E11.1080p.NF.WEB-DL.DDP2.0.x264-REVOLT.mkv,3563535338,2022-11-04T14:52:21,series,1920x1080,h264,4074.784,6996 +/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,나의 해방일지.My.Liberation.Notes.S01E09.1080p.NF.WEB-DL.DDP2.0.x264-REVOLT.mkv,2629497598,2022-11-04T14:52:15,series,1920x1080,h264,3948.96,5326 +/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,나의 해방일지.My.Liberation.Notes.S01E15.1080p.NF.WEB-DL.DDP2.0.x264-REVOLT.mkv,2996275528,2022-11-04T14:52:22,series,1920x1080,h264,4168.736,5749 +/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,나의 해방일지.My.Liberation.Notes.S01E04.1080p.NF.WEB-DL.DDP2.0.x264-REVOLT.mkv,2963641701,2022-11-04T14:52:23,series,1920x1080,h264,3956.512,5992 +/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,黑白厨师.料理阶级战争.Culinary.Class.Wars.S01E06.2024.1080p.NF.WEB-DL.DDP5.1.x264-GrassTV.mkv,2732342303,2024-10-27T10:34:15,series,1920x1080,h264,3628.352,6024 +/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,黑白厨师.料理阶级战争.Culinary.Class.Wars.S01E02.2024.1080p.NF.WEB-DL.DDP5.1.x264-GrassTV.mkv,3306663300,2024-10-27T10:28:09,series,1920x1080,h264,4370.624,6052 +/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,黑白厨师.料理阶级战争.Culinary.Class.Wars.S01E11.2024.1080p.NF.WEB-DL.DDP5.1.x264-GrassTV.mkv,2870410070,2024-10-27T10:47:06,series,1920x1080,h264,3826.496,6001 +/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,黑白厨师.料理阶级战争.Culinary.Class.Wars.S01E10.2024.1080p.NF.WEB-DL.DDP5.1.x264-GrassTV.mkv,3174208859,2024-10-27T10:43:08,series,1920x1080,h264,4190.912,6059 +/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,黑白厨师.料理阶级战争.Culinary.Class.Wars.S01E07.2024.1080p.NF.WEB-DL.DDP5.1.x264-GrassTV.mkv,2797305140,2024-10-27T10:36:09,series,1920x1080,h264,3718.592,6017 +/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,黑白厨师.料理阶级战争.Culinary.Class.Wars.S01E03.2024.1080p.NF.WEB-DL.DDP5.1.x264-GrassTV.mkv,3431943206,2024-10-27T10:29:20,series,1920x1080,h264,4534.976,6054 +/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,黑白厨师.料理阶级战争.Culinary.Class.Wars.S01E09.2024.1080p.NF.WEB-DL.DDP5.1.x264-GrassTV.mkv,3000940513,2024-10-27T10:40:10,series,1920x1080,h264,3988.544,6019 +/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,黑白厨师.料理阶级战争.Culinary.Class.Wars.S01E12.2024.1080p.NF.WEB-DL.DDP5.1.x264-GrassTV.mkv,2891063753,2024-10-27T10:49:10,series,1920x1080,h264,3845.696,6014 +/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,黑白厨师.料理阶级战争.Culinary.Class.Wars.S01E05.2024.1080p.NF.WEB-DL.DDP5.1.x264-GrassTV.mkv,2846109005,2024-10-27T10:32:40,series,1920x1080,h264,3783.488,6017 +/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,黑白厨师.料理阶级战争.Culinary.Class.Wars.S01E01.2024.1080p.NF.WEB-DL.DDP5.1.x264-GrassTV.mkv,2859842933,2024-10-27T10:26:07,series,1920x1080,h264,3803.072,6015 +/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,黑白厨师.料理阶级战争.Culinary.Class.Wars.S01E04.2024.1080p.NF.WEB-DL.DDP5.1.x264-GrassTV.mkv,2907911049,2024-10-27T10:30:55,series,1920x1080,h264,3859.52,6027 +/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,黑白厨师.料理阶级战争.Culinary.Class.Wars.S01E08.2024.1080p.NF.WEB-DL.DDP5.1.x264-GrassTV.mkv,3046267540,2024-10-27T10:38:03,series,1920x1080,h264,4030.784,6046 +/mnt/Downloads/series/战争与和平.全6集.2016.1080p.中英字幕£CMCT风潇潇/[战争与和平].War.And.Peace.EP04.2016.BluRay.1080p.x264.DTS-CMCT.mkv,[战争与和平].War.And.Peace.EP04.2016.BluRay.1080p.x264.DTS-CMCT.mkv,5389819909,2024-06-03T13:43:03,series,1920x1080,h264,3602.048,11970 +/mnt/Downloads/series/战争与和平.全6集.2016.1080p.中英字幕£CMCT风潇潇/[战争与和平].War.And.Peace.EP05.2016.BluRay.1080p.x264.DTS-CMCT.mkv,[战争与和平].War.And.Peace.EP05.2016.BluRay.1080p.x264.DTS-CMCT.mkv,5390181339,2024-06-03T13:43:17,series,1920x1080,h264,3492.043,12348 +/mnt/Downloads/series/战争与和平.全6集.2016.1080p.中英字幕£CMCT风潇潇/[战争与和平].War.And.Peace.EP01.2016.BluRay.1080p.x264.DTS-CMCT.mkv,[战争与和平].War.And.Peace.EP01.2016.BluRay.1080p.x264.DTS-CMCT.mkv,5388807482,2024-06-03T13:43:02,series,1920x1080,h264,3563.723,12097 +/mnt/Downloads/series/战争与和平.全6集.2016.1080p.中英字幕£CMCT风潇潇/[战争与和平].War.And.Peace.EP03.2016.BluRay.1080p.x264.DTS-CMCT.mkv,[战争与和平].War.And.Peace.EP03.2016.BluRay.1080p.x264.DTS-CMCT.mkv,5389685421,2024-06-03T13:43:03,series,1920x1080,h264,3602.048,11970 +/mnt/Downloads/series/战争与和平.全6集.2016.1080p.中英字幕£CMCT风潇潇/[战争与和平].War.And.Peace.EP02.2016.BluRay.1080p.x264.DTS-CMCT.mkv,[战争与和平].War.And.Peace.EP02.2016.BluRay.1080p.x264.DTS-CMCT.mkv,5389267985,2024-06-03T13:43:07,series,1920x1080,h264,3526.88,12224 +/mnt/Downloads/series/战争与和平.全6集.2016.1080p.中英字幕£CMCT风潇潇/[战争与和平].War.And.Peace.EP06.2016.BluRay.1080p.x264.DTS-CMCT.mkv,[战争与和平].War.And.Peace.EP06.2016.BluRay.1080p.x264.DTS-CMCT.mkv,7533830038,2024-06-03T13:43:13,series,1920x1080,h264,4927.766,12230 +/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,A.Murder.at.the.End.of.the.World.S01E01.Homme.Fatal.1080p.DSNP.WEB-DL.DDP5.1.H.264-FLUX.mkv,3171658314,2023-11-20T11:14:02,series,1920x1080,h264,4209.414,6027 +/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,1899.S01E03.The.Fog.1080p.NF.WEB-DL.DDP5.1.Atmos.H.264-SMURF.mkv,1091085185,2022-11-19T15:48:34,series,1920x1080,h264,3728.672,2340 +/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,1899.S01E05.The.Calling.1080p.NF.WEB-DL.DDP5.1.Atmos.H.264-SMURF.mkv,1028148605,2022-11-19T15:48:39,series,1920x1080,h264,3002.656,2739 +/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,1899.S01E08.The.Key.1080p.NF.WEB-DL.DDP5.1.Atmos.H.264-SMURF.mkv,1104350805,2022-11-19T15:48:39,series,1920x1080,h264,3024.672,2920 +/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,1899.S01E07.The.Storm.1080p.NF.WEB-DL.DDP5.1.Atmos.H.264-SMURF.mkv,1314937152,2022-11-19T15:48:38,series,1920x1080,h264,3212.64,3274 +/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,1899.S01E02.The.Boy.1080p.NF.WEB-DL.DDP5.1.Atmos.H.264-SMURF.mkv,1084317319,2022-11-19T15:48:38,series,1920x1080,h264,3490.656,2485 +/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,1899.S01E06.The.Pyramid.1080p.NF.WEB-DL.DDP5.1.Atmos.H.264-SMURF.mkv,1186967215,2022-11-19T15:48:35,series,1920x1080,h264,3242.656,2928 +/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,1899.S01E01.The.Ship.1080p.NF.WEB-DL.DDP5.1.Atmos.H.264-SMURF.mkv,1147768276,2022-11-19T15:48:35,series,1920x1080,h264,3602.656,2548 +/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,1899.S01E04.The.Fight.1080p.NF.WEB-DL.DDP5.1.Atmos.H.264-SMURF.mkv,1111638414,2022-11-19T15:48:36,series,1920x1080,h264,3048.64,2917 +/mnt/Downloads/series/Believe-君にかける橋- 第3話 今夜決行!191秒の脱獄計画! 1080p TVer WEB-DL H264 AAC-Solitude@DoA.mkv,Believe-君にかける橋- 第3話 今夜決行!191秒の脱獄計画! 1080p TVer WEB-DL H264 AAC-Solitude@DoA.mkv,962079217,2024-05-16T12:22:48,series,1920x1080,h264,2720.0,2829 +/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,Somebody.S01E06.2022.Netflix.WEB-DL.1080p.HEVC.DV.DDP-HDCTV.mp4,695267128,2022-12-22T20:16:39,series,1920x1080,hevc,2955.552,1881 +/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,Somebody.S01E01.2022.Netflix.WEB-DL.1080p.HEVC.DV.DDP-HDCTV.mp4,914721339,2022-12-22T20:16:44,series,1920x1080,hevc,2971.584,2462 +/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,Somebody.S01E07.2022.Netflix.WEB-DL.1080p.HEVC.DV.DDP-HDCTV.mp4,916207341,2022-12-22T20:15:58,series,1920x1080,hevc,3063.648,2392 +/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,Somebody.S01E02.2022.Netflix.WEB-DL.1080p.HEVC.DV.DDP-HDCTV.mp4,995547289,2022-12-22T20:16:31,series,1920x1080,hevc,3039.648,2620 +/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,Somebody.S01E04.2022.Netflix.WEB-DL.1080p.HEVC.DV.DDP-HDCTV.mp4,1007519492,2022-12-22T20:16:44,series,1920x1080,hevc,3498.08,2304 +/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,Somebody.S01E03.2022.Netflix.WEB-DL.1080p.HEVC.DV.DDP-HDCTV.mp4,1003962120,2022-12-22T20:16:38,series,1920x1080,hevc,3273.888,2453 +/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,Somebody.S01E08.2022.Netflix.WEB-DL.1080p.HEVC.DV.DDP-HDCTV.mp4,1195540997,2022-12-22T20:16:25,series,1920x1080,hevc,4272.864,2238 +/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,Somebody.S01E05.2022.Netflix.WEB-DL.1080p.HEVC.DV.DDP-HDCTV.mp4,961168486,2022-12-22T20:16:42,series,1920x1080,hevc,3115.712,2467 +/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,Murder.Mindfully.S01E07.2024.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-ADWeb.mkv,1986795782,2024-12-07T08:08:37,series,1920x1080,h264,2037.984,7799 +/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,Murder.Mindfully.S01E03.2024.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-ADWeb.mkv,1426629439,2024-12-07T08:08:21,series,1920x1080,h264,1720.384,6634 +/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,Murder.Mindfully.S01E08.2024.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-ADWeb.mkv,2173444836,2024-12-07T08:08:50,series,1920x1080,h264,2054.816,8461 +/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,Murder.Mindfully.S01E04.2024.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-ADWeb.mkv,1362236891,2024-12-07T08:08:33,series,1920x1080,h264,1861.664,5853 +/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,Murder.Mindfully.S01E02.2024.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-ADWeb.mkv,1317349792,2024-12-07T08:07:38,series,1920x1080,h264,1910.208,5517 +/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,Murder.Mindfully.S01E06.2024.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-ADWeb.mkv,1200442363,2024-12-07T08:08:36,series,1920x1080,h264,1789.6,5366 +/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,Murder.Mindfully.S01E01.2024.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-ADWeb.mkv,1596557270,2024-12-07T08:08:14,series,1920x1080,h264,2332.8,5475 +/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,Murder.Mindfully.S01E05.2024.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-ADWeb.mkv,1571318685,2024-12-07T07:46:26,series,1920x1080,h264,1987.776,6323 +/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,Mr.&.Mrs.Smith.S01E08.A.Breakup.1080p.AMZN.WEB-DL.DDP.5.1.H.264-CHDWEB.mkv,5635193189,2024-02-16T07:03:35,series,1920x960,h264,3834.848,11755 +/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,Mr.&.Mrs.Smith.S01E06.Couples.Therapy.Naked.&.Afraid.1080p.AMZN.WEB-DL.DDP.5.1.H.264-CHDWEB.mkv,3264908939,2024-02-16T07:03:33,series,1920x960,h264,2657.568,9828 +/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,Mr.&.Mrs.Smith.S01E01.First.Date.1080p.AMZN.WEB-DL.DDP.5.1.H.264-CHDWEB.mkv,4748957725,2024-02-16T07:03:37,series,1920x960,h264,3500.292,10853 +/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,Mr.&.Mrs.Smith.S01E07.Infidelity.1080p.AMZN.WEB-DL.DDP.5.1.H.264-CHDWEB.mkv,2963148307,2024-02-16T07:03:35,series,1920x960,h264,2509.28,9447 +/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,Mr.&.Mrs.Smith.S01E05.Do.You.Want.Kids.1080p.AMZN.WEB-DL.DDP.5.1.H.264-CHDWEB.mkv,3774104761,2024-02-16T07:03:31,series,1920x1080,h264,2884.224,10468 +/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,Mr.&.Mrs.Smith.S01E03.First.Vacation.1080p.AMZN.WEB-DL.DDP.5.1.H.264-CHDWEB.mkv,3596920879,2024-02-16T07:03:34,series,1920x960,h264,2782.016,10343 +/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,Mr.&.Mrs.Smith.S01E04.Double.Date.1080p.AMZN.WEB-DL.DDP.5.1.H.264-CHDWEB.mkv,3302807142,2024-02-16T07:03:31,series,1920x960,h264,2719.264,9716 +/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,Mr.&.Mrs.Smith.S01E02.Second.Date.1080p.AMZN.WEB-DL.DDP.5.1.H.264-CHDWEB.mkv,3163516505,2024-02-16T07:03:32,series,1920x960,h264,2703.296,9361 +/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,欢迎来到王之国.King.the.Land.S01E14.2023.1080p.NF.WEB-DL.H264.DDP2.0-OurTV.mkv,2571042099,2023-11-08T18:24:22,series,1920x1080,h264,4012.064,5126 +/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,欢迎来到王之国.King.the.Land.S01E01.2023.1080p.NF.WEB-DL.H264.DDP2.0-OurTV.mkv,2590426137,2023-11-08T18:24:22,series,1920x1080,h264,4042.144,5126 +/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,欢迎来到王之国.King.the.Land.S01E15.2023.1080p.NF.WEB-DL.H264.DDP2.0-OurTV.mkv,2907630300,2023-11-08T18:24:13,series,1920x1080,h264,4535.584,5128 +/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,欢迎来到王之国.King.the.Land.S01E02.2023.1080p.NF.WEB-DL.H264.DDP2.0-OurTV.mkv,2692688011,2023-11-08T18:24:21,series,1920x1080,h264,4206.24,5121 +/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,欢迎来到王之国.King.the.Land.S01E16.2023.1080p.NF.WEB-DL.H264.DDP2.0-OurTV.mkv,2825812358,2023-11-08T18:24:23,series,1920x1080,h264,4416.544,5118 +/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,欢迎来到王之国.King.the.Land.S01E03.2023.1080p.NF.WEB-DL.H264.DDP2.0-OurTV.mkv,2625566058,2023-11-08T18:24:22,series,1920x1080,h264,4102.176,5120 +/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,欢迎来到王之国.King.the.Land.S01E04.2023.1080p.NF.WEB-DL.H264.DDP2.0-OurTV.mkv,2661386559,2023-11-08T18:24:22,series,1920x1080,h264,4150.176,5130 +/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,欢迎来到王之国.King.the.Land.S01E10.2023.1080p.NF.WEB-DL.H264.DDP2.0-OurTV.mkv,2532029668,2023-11-08T18:24:23,series,1920x1080,h264,3949.088,5129 +/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,欢迎来到王之国.King.the.Land.S01E05.2023.1080p.NF.WEB-DL.H264.DDP2.0-OurTV.mkv,2774354602,2023-11-08T18:24:25,series,1920x1080,h264,4330.4,5125 +/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,欢迎来到王之国.King.the.Land.S01E11.2023.1080p.NF.WEB-DL.H264.DDP2.0-OurTV.mkv,2952166033,2023-11-08T18:24:26,series,1920x1080,h264,4607.648,5125 +/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,欢迎来到王之国.King.the.Land.S01E06.2023.1080p.NF.WEB-DL.H264.DDP2.0-OurTV.mkv,2944442139,2023-11-08T18:24:22,series,1920x1080,h264,4595.616,5125 +/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,欢迎来到王之国.King.the.Land.S01E12.2023.1080p.NF.WEB-DL.H264.DDP2.0-OurTV.mkv,2516052474,2023-11-08T18:24:22,series,1920x1080,h264,3922.976,5130 +/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,欢迎来到王之国.King.the.Land.S01E07.2023.1080p.NF.WEB-DL.H264.DDP2.0-OurTV.mkv,2834007632,2023-11-08T18:24:23,series,1920x1080,h264,4423.456,5125 +/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,欢迎来到王之国.King.the.Land.S01E13.2023.1080p.NF.WEB-DL.H264.DDP2.0-OurTV.mkv,2841318228,2023-11-08T18:23:55,series,1920x1080,h264,4434.464,5125 +/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,欢迎来到王之国.King.the.Land.S01E08.2023.1080p.NF.WEB-DL.H264.DDP2.0-OurTV.mkv,2923056876,2023-11-08T18:24:24,series,1920x1080,h264,4560.672,5127 +/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,欢迎来到王之国.King.the.Land.S01E09.2023.1080p.NF.WEB-DL.H264.DDP2.0-OurTV.mkv,2657563403,2023-11-08T18:24:18,series,1920x1080,h264,4148.256,5125 +/mnt/Downloads/series/Unsere.Muetter.unsere.Vaeter.S01.720p.BluRay.x264-WiKi/Unsere.Muetter.unsere.Vaeter.S01E03.720p.BluRay.x264-WiKi.mkv,Unsere.Muetter.unsere.Vaeter.S01E03.720p.BluRay.x264-WiKi.mkv,4888073310,2022-01-05T05:36:28,series,1280x720,h264,5677.408,6887 +/mnt/Downloads/series/Unsere.Muetter.unsere.Vaeter.S01.720p.BluRay.x264-WiKi/Sample/Unsere.Muetter.unsere.Vaeter.S01E03.720p.BluRay.x264-WiKi.Sample.mkv,Unsere.Muetter.unsere.Vaeter.S01E03.720p.BluRay.x264-WiKi.Sample.mkv,70980633,2022-01-05T05:20:17,series,1280x720,h264,66.376,8554 +/mnt/Downloads/series/Unsere.Muetter.unsere.Vaeter.S01.720p.BluRay.x264-WiKi/Unsere.Muetter.unsere.Vaeter.S01E01.720p.BluRay.x264-WiKi.mkv,Unsere.Muetter.unsere.Vaeter.S01E01.720p.BluRay.x264-WiKi.mkv,4681078024,2022-01-05T05:36:29,series,1280x720,h264,5439.648,6884 +/mnt/Downloads/series/Unsere.Muetter.unsere.Vaeter.S01.720p.BluRay.x264-WiKi/Unsere.Muetter.unsere.Vaeter.S01E02.720p.BluRay.x264-WiKi.mkv,Unsere.Muetter.unsere.Vaeter.S01E02.720p.BluRay.x264-WiKi.mkv,4574353223,2022-01-05T05:36:27,series,1280x720,h264,5313.824,6886 +/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,Loki.S01E03.2021.1080p.WEB-DL.x265.10bit.AC3£cXcY@FRDS.mkv,1791600516,2022-12-24T05:35:52,series,1920x804,hevc,2458.176,5830 +/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,Loki.S01E04.2021.1080p.WEB-DL.x265.10bit.AC3£cXcY@FRDS.mkv,2065330258,2022-12-24T05:35:49,series,1920x804,hevc,2860.96,5775 +/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,Loki.S01E02.2021.1080p.WEB-DL.x265.10bit.AC3£cXcY@FRDS.mkv,2367364003,2022-12-24T05:35:54,series,1920x804,hevc,3192.292,5932 +/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,Loki.S01E06.2021.1080p.WEB-DL.x265.10bit.AC3£cXcY@FRDS.mkv,1979143272,2022-12-24T05:35:54,series,1920x804,hevc,2722.272,5816 +/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,Loki.S01E01.2021.1080p.WEB-DL.x265.10bit.AC3£cXcY@FRDS.mkv,2229955265,2022-12-24T05:35:58,series,1920x804,hevc,3019.584,5907 +/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,Loki.S01E05.2021.1080p.WEB-DL.x265.10bit.AC3£cXcY@FRDS.mkv,2169544745,2022-12-24T05:35:55,series,1920x804,hevc,2909.28,5965 +/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,终极名单.The.Terminal.List.2022.S01E06.1080p.Amazon.WEB-DL.H264.DDP5.1-OurTV.mkv,1522393168,2022-07-06T11:24:23,series,1920x1080,h264,3301.6,3688 +/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,终极名单.The.Terminal.List.2022.S01E01.1080p.Amazon.WEB-DL.H264.DDP5.1-OurTV.mkv,1568649530,2022-07-06T11:24:17,series,1920x1080,h264,3906.912,3212 +/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,终极名单.The.Terminal.List.2022.S01E07.1080p.Amazon.WEB-DL.H264.DDP5.1-OurTV.mkv,1185766506,2022-07-06T11:24:25,series,1920x1080,h264,3469.984,2733 +/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,终极名单.The.Terminal.List.2022.S01E08.1080p.Amazon.WEB-DL.H264.DDP5.1-OurTV.mkv,1626329806,2022-07-06T11:24:15,series,1920x1080,h264,3576.832,3637 +/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,终极名单.The.Terminal.List.2022.S01E03.1080p.Amazon.WEB-DL.H264.DDP5.1-OurTV.mkv,1182454389,2022-07-06T11:24:15,series,1920x1080,h264,3472.8,2723 +/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,终极名单.The.Terminal.List.2022.S01E04.1080p.Amazon.WEB-DL.H264.DDP5.1-OurTV.mkv,1575774982,2022-07-06T11:24:26,series,1920x1080,h264,3571.232,3529 +/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,终极名单.The.Terminal.List.2022.S01E02.1080p.Amazon.WEB-DL.H264.DDP5.1-OurTV.mkv,1099185220,2022-07-06T11:24:17,series,1920x1080,h264,3296.608,2667 +/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,终极名单.The.Terminal.List.2022.S01E05.1080p.Amazon.WEB-DL.H264.DDP5.1-OurTV.mkv,1034647444,2022-07-06T11:24:15,series,1920x1080,h264,3036.0,2726 +/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,Brush.Up.Life.S01E10.1080p.KKTV.WEB-DL.x264.AAC-PTerWEB.mkv,1079442737,2023-03-23T13:39:11,series,1920x1080,h264,2683.066,3218 +/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,Brush.Up.Life.S01E01.1080p.KKTV.WEB-DL.x264.AAC-PTerWEB.mkv,1093281429,2023-03-23T13:35:11,series,1920x1080,h264,2719.126,3216 +/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,Brush.Up.Life.S01E08.1080p.KKTV.WEB-DL.x264.AAC-PTerWEB.mkv,1088687189,2023-03-23T13:35:21,series,1920x1080,h264,2714.552,3208 +/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,Brush.Up.Life.S01E05.1080p.KKTV.WEB-DL.x264.AAC-PTerWEB.mkv,1090610475,2023-03-23T13:35:57,series,1920x1080,h264,2715.759,3212 +/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,Brush.Up.Life.S01E04.1080p.KKTV.WEB-DL.x264.AAC-PTerWEB.mkv,1089818177,2023-03-23T13:35:08,series,1920x1080,h264,2717.617,3208 +/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,Brush.Up.Life.S01E02.REPACK.1080p.KKTV.WEB-DL.x264.AAC-PTerWEB.mkv,1091326553,2023-03-23T13:36:05,series,1920x1080,h264,2717.082,3213 +/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,Brush.Up.Life.S01E09.1080p.KKTV.WEB-DL.x264.AAC-PTerWEB.mkv,1086936917,2023-03-23T13:38:15,series,1920x1080,h264,2715.551,3202 +/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,Brush.Up.Life.S01E06.1080p.KKTV.WEB-DL.x264.AAC-PTerWEB.mkv,1094286190,2023-03-23T13:38:28,series,1920x1080,h264,2718.522,3220 +/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,Brush.Up.Life.S01E03.1080p.KKTV.WEB-DL.x264.AAC-PTerWEB.mkv,1086502005,2023-03-23T13:34:47,series,1920x1080,h264,2716.595,3199 +/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,Brush.Up.Life.S01E07.1080p.KKTV.WEB-DL.x264.AAC-PTerWEB.mkv,1088351493,2023-03-23T13:38:15,series,1920x1080,h264,2719.729,3201 +/mnt/Downloads/series/Midnight.Diner.S04.2016.720p.BluRay.x264-WiKi/Midnight.Diner.S04E03.2016.720p.BluRay.x264-WiKi.mkv,Midnight.Diner.S04E03.2016.720p.BluRay.x264-WiKi.mkv,1075786535,2019-11-28T12:52:49,series,1280x720,h264,1427.04,6030 +/mnt/Downloads/series/Midnight.Diner.S04.2016.720p.BluRay.x264-WiKi/Midnight.Diner.S04E07.2016.720p.BluRay.x264-WiKi.mkv,Midnight.Diner.S04E07.2016.720p.BluRay.x264-WiKi.mkv,1075858971,2019-11-28T12:52:47,series,1280x720,h264,1427.072,6031 +/mnt/Downloads/series/Midnight.Diner.S04.2016.720p.BluRay.x264-WiKi/Midnight.Diner.S04E02.2016.720p.BluRay.x264-WiKi.mkv,Midnight.Diner.S04E02.2016.720p.BluRay.x264-WiKi.mkv,1076412543,2019-11-28T12:52:41,series,1280x720,h264,1426.976,6034 +/mnt/Downloads/series/Midnight.Diner.S04.2016.720p.BluRay.x264-WiKi/Midnight.Diner.S04E06.2016.720p.BluRay.x264-WiKi.mkv,Midnight.Diner.S04E06.2016.720p.BluRay.x264-WiKi.mkv,1075354239,2019-11-28T12:52:46,series,1280x720,h264,1426.944,6028 +/mnt/Downloads/series/Midnight.Diner.S04.2016.720p.BluRay.x264-WiKi/Midnight.Diner.S04E10.2016.720p.BluRay.x264-WiKi.mkv,Midnight.Diner.S04E10.2016.720p.BluRay.x264-WiKi.mkv,1074992696,2019-11-28T12:53:23,series,1280x720,h264,1427.04,6026 +/mnt/Downloads/series/Midnight.Diner.S04.2016.720p.BluRay.x264-WiKi/Midnight.Diner.S04E04.2016.720p.BluRay.x264-WiKi.mkv,Midnight.Diner.S04E04.2016.720p.BluRay.x264-WiKi.mkv,1075997658,2019-11-28T12:52:47,series,1280x720,h264,1426.976,6032 +/mnt/Downloads/series/Midnight.Diner.S04.2016.720p.BluRay.x264-WiKi/Midnight.Diner.S04E08.2016.720p.BluRay.x264-WiKi.mkv,Midnight.Diner.S04E08.2016.720p.BluRay.x264-WiKi.mkv,1075818098,2019-11-28T12:52:42,series,1280x720,h264,1426.912,6031 +/mnt/Downloads/series/Midnight.Diner.S04.2016.720p.BluRay.x264-WiKi/Midnight.Diner.S04E09.2016.720p.BluRay.x264-WiKi.mkv,Midnight.Diner.S04E09.2016.720p.BluRay.x264-WiKi.mkv,1076141358,2019-11-28T12:52:42,series,1280x720,h264,1427.072,6032 +/mnt/Downloads/series/Midnight.Diner.S04.2016.720p.BluRay.x264-WiKi/Midnight.Diner.S04E01.2016.720p.BluRay.x264-WiKi.mkv,Midnight.Diner.S04E01.2016.720p.BluRay.x264-WiKi.mkv,1075278616,2019-11-28T12:52:43,series,1280x720,h264,1426.944,6028 +/mnt/Downloads/series/Midnight.Diner.S04.2016.720p.BluRay.x264-WiKi/Midnight.Diner.S04E05.2016.720p.BluRay.x264-WiKi.mkv,Midnight.Diner.S04E05.2016.720p.BluRay.x264-WiKi.mkv,1075194168,2019-11-28T12:53:10,series,1280x720,h264,1427.072,6027 +/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,Tokyo.Swindlers.S01E03.Episode03.1080p.NF.WEB-DL.DDP.5.1.H.264-CHDWEB.mkv,2039176420,2024-08-08T03:25:23,series,1920x1080,h264,3090.796,5278 +/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,Tokyo.Swindlers.S01E06.Episode06.1080p.NF.WEB-DL.DDP.5.1.H.264-CHDWEB.mkv,1467676734,2024-08-08T03:28:41,series,1920x1080,h264,2268.224,5176 +/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,Tokyo.Swindlers.S01E05.Episode05.1080p.NF.WEB-DL.DDP.5.1.H.264-CHDWEB.mkv,1787571910,2024-08-08T03:28:39,series,1920x1080,h264,2720.96,5255 +/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,Tokyo.Swindlers.S01E01.Episode01.1080p.NF.WEB-DL.DDP.5.1.H.264-CHDWEB.mkv,2178776731,2024-08-08T03:20:18,series,1920x1080,h264,3277.376,5318 +/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,Tokyo.Swindlers.S01E02.Episode02.1080p.NF.WEB-DL.DDP.5.1.H.264-CHDWEB.mkv,2044173805,2024-08-08T03:24:13,series,1920x1080,h264,3091.136,5290 +/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,Tokyo.Swindlers.S01E07.Episode07.1080p.NF.WEB-DL.DDP.5.1.H.264-CHDWEB.mkv,2686661461,2024-08-08T03:29:18,series,1920x1080,h264,3998.144,5375 +/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,Tokyo.Swindlers.S01E04.Episode04.1080p.NF.WEB-DL.DDP.5.1.H.264-CHDWEB.mkv,2494888661,2024-08-08T03:28:39,series,1920x1080,h264,3722.052,5362 +/mnt/Downloads/series/(ドラマ) 時をかけるな、恋人たち 第09話 「ミッドナイト・イン・オフィス」 (1440x1080i x264-AAC)-DoA.mkv,(ドラマ) 時をかけるな、恋人たち 第09話 「ミッドナイト・イン・オフィス」 (1440x1080i x264-AAC)-DoA.mkv,788205338,2024-01-05T12:46:06,series,1440x1080,h264,1389.707,4537 +/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,Dark.Matter.S01E09.2024.1080p.ATVP.WEB-DL.H264.DDP5.1.Atmos-ZeroTV.mkv,4779374921,2024-06-27T04:03:48,series,1920x960,h264,3537.12,10809 +/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,【更多高清剧集下载请访问 www.DDHDTV.com】【更多剧集打包下载请访问 www.DDHDTV.com】.mkv,636976,2024-06-27T03:44:31,series,,,, +/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,【更多电视剧集下载请访问 www.DDHDTV.com】【更多剧集打包下载请访问 www.DDHDTV.com】.MKV,636976,2024-06-27T03:44:31,series,,,, +/mnt/Downloads/series/マイファミリー EP01 1080p HDTV x264 AAC/マイファミリー 第01話「今こそ、家族を守れ 前代未聞の完全誘!?子供の未来の為に闘う家族の愛と絆の物語」 1080p HDTV x264 AAC.mkv,マイファミリー 第01話「今こそ、家族を守れ 前代未聞の完全誘!?子供の未来の為に闘う家族の愛と絆の物語」 1080p HDTV x264 AAC.mkv,3244371722,2022-05-17T12:23:48,series,1920x1080,h264,4145.024,6261 +/mnt/Downloads/series/マイファミリー EP01 1080p HDTV x264 AAC/マイファミリー ナビ 1080p HDTV x264 AAC.mkv,マイファミリー ナビ 1080p HDTV x264 AAC.mkv,1394811147,2022-05-17T12:19:41,series,1920x1080,h264,1404.97,7942 +"/mnt/Downloads/series/[Nekomoe kissaten][Tantei wa Mou, Shindeiru.][05][720p][JPTC]/[Nekomoe kissaten][Tantei wa Mou, Shindeiru. Yokoku][06][720p][JPTC].mp4","[Nekomoe kissaten][Tantei wa Mou, Shindeiru. Yokoku][06][720p][JPTC].mp4",6439100,2021-08-06T14:15:54,series,1280x720,h264,30.03,1715 +"/mnt/Downloads/series/[Nekomoe kissaten][Tantei wa Mou, Shindeiru.][05][720p][JPTC]/[Nekomoe kissaten][Tantei wa Mou, Shindeiru.][05][720p][JPTC].mp4","[Nekomoe kissaten][Tantei wa Mou, Shindeiru.][05][720p][JPTC].mp4",188989454,2021-08-06T14:17:08,series,1280x720,h264,1420.073333,1064 +/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,Doona.S01E08.Typical.and.Ordinary.1080p.NF.WEB-DL.DDP.5.1.Atmos.H.264-CHDWEB.mkv,1734833319,2023-11-20T14:59:15,series,1920x1080,h264,2527.609,5490 +/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,Doona.S01E04.The.Unexpected.1080p.NF.WEB-DL.DDP.5.1.Atmos.H.264-CHDWEB.mkv,1891260364,2023-11-20T14:59:18,series,1920x1080,h264,2737.527,5526 +/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,Doona.S01E05.Meaningless.Kiss.1080p.NF.WEB-DL.DDP.5.1.Atmos.H.264-CHDWEB.mkv,1989045514,2023-11-20T14:59:19,series,1920x1080,h264,2861.275,5561 +/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,Doona.S01E09.Doona.1080p.NF.WEB-DL.DDP.5.1.Atmos.H.264-CHDWEB.mkv,1822105501,2023-11-20T14:59:20,series,1920x1080,h264,2631.004,5540 +/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,Doona.S01E02.Getting.to.Know.Each.Other.1080p.NF.WEB-DL.DDP.5.1.Atmos.H.264-CHDWEB.mkv,2069821865,2023-11-20T14:59:19,series,1920x1080,h264,2975.765,5564 +/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,Doona.S01E07.Clear.the.Air.1080p.NF.WEB-DL.DDP.5.1.Atmos.H.264-CHDWEB.mkv,1815043908,2023-11-20T14:59:17,series,1920x1080,h264,2682.764,5412 +/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,Doona.S01E03.Spring.Breeze.1080p.NF.WEB-DL.DDP.5.1.Atmos.H.264-CHDWEB.mkv,2082051418,2023-11-20T14:59:17,series,1920x1080,h264,2995.743,5560 +/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,Doona.S01E01.An.Unexpected.Twist.1080p.NF.WEB-DL.DDP.5.1.Atmos.H.264-CHDWEB.mkv,2047882565,2023-11-20T14:59:18,series,1920x1080,h264,2944.4,5564 +/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,Doona.S01E06.Twilight.Zone.1080p.NF.WEB-DL.DDP.5.1.Atmos.H.264-CHDWEB.mkv,1989449580,2023-11-20T14:59:20,series,1920x1080,h264,2872.87,5539 +/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,A.Shop.for.Killers.S01E02.Jeong.Jinman.Jeong.Jinman.Jeong.Jinman.1080p.Disney+.WEB-DL.DDP.5.1.H.264-CHDWEB.mkv,2810294275,2024-01-20T11:35:54,series,1920x1080,h264,3227.712,6965 +/mnt/Downloads/series/(ドラマ) 時をかけるな、恋人たち 第11話(終) 「時をかけろ、恋人たち」 (1440x1080i x264-AAC)-DoA.mkv,(ドラマ) 時をかけるな、恋人たち 第11話(終) 「時をかけろ、恋人たち」 (1440x1080i x264-AAC)-DoA.mkv,818940329,2024-01-05T13:07:36,series,1440x1080,h264,1374.778,4765 +/mnt/Downloads/series/相对宇宙S02.Counterpart.2018.1080p.WEB-DL.x265.AC3£cXcY@FRDS/Counterpart.S02E01.2018.1080p.WEB-DL.x265.AC3£cXcY@FRDS.mkv,Counterpart.S02E01.2018.1080p.WEB-DL.x265.AC3£cXcY@FRDS.mkv,1397809445,2023-05-24T13:05:51,series,1920x1080,hevc,3514.656,3181 +/mnt/Downloads/series/相对宇宙S02.Counterpart.2018.1080p.WEB-DL.x265.AC3£cXcY@FRDS/Counterpart.S02E03.2018.1080p.WEB-DL.x265.AC3£cXcY@FRDS.mkv,Counterpart.S02E03.2018.1080p.WEB-DL.x265.AC3£cXcY@FRDS.mkv,1381559316,2023-05-24T13:05:50,series,1920x1080,hevc,3464.896,3189 +/mnt/Downloads/series/相对宇宙S02.Counterpart.2018.1080p.WEB-DL.x265.AC3£cXcY@FRDS/Counterpart.S02E02.2018.1080p.WEB-DL.x265.AC3£cXcY@FRDS.mkv,Counterpart.S02E02.2018.1080p.WEB-DL.x265.AC3£cXcY@FRDS.mkv,1328211571,2023-05-24T13:05:45,series,1920x1080,hevc,3358.56,3163 +/mnt/Downloads/series/相对宇宙S02.Counterpart.2018.1080p.WEB-DL.x265.AC3£cXcY@FRDS/Counterpart.S02E05.2018.1080p.WEB-DL.x265.AC3£cXcY@FRDS.mkv,Counterpart.S02E05.2018.1080p.WEB-DL.x265.AC3£cXcY@FRDS.mkv,1404943849,2023-05-24T13:05:49,series,1920x1080,hevc,3520.48,3192 +/mnt/Downloads/series/相对宇宙S02.Counterpart.2018.1080p.WEB-DL.x265.AC3£cXcY@FRDS/Counterpart.S02E10.2018.1080p.WEB-DL.x265.AC3£cXcY@FRDS.mkv,Counterpart.S02E10.2018.1080p.WEB-DL.x265.AC3£cXcY@FRDS.mkv,1414555144,2023-05-24T13:05:50,series,1920x1080,hevc,3549.088,3188 +/mnt/Downloads/series/相对宇宙S02.Counterpart.2018.1080p.WEB-DL.x265.AC3£cXcY@FRDS/Counterpart.S02E04.2018.1080p.WEB-DL.x265.AC3£cXcY@FRDS.mkv,Counterpart.S02E04.2018.1080p.WEB-DL.x265.AC3£cXcY@FRDS.mkv,1323083038,2023-05-24T13:05:48,series,1920x1080,hevc,3323.968,3184 +/mnt/Downloads/series/相对宇宙S02.Counterpart.2018.1080p.WEB-DL.x265.AC3£cXcY@FRDS/Counterpart.S02E07.2018.1080p.WEB-DL.x265.AC3£cXcY@FRDS.mkv,Counterpart.S02E07.2018.1080p.WEB-DL.x265.AC3£cXcY@FRDS.mkv,1270377625,2023-05-24T13:05:33,series,1920x1080,hevc,3203.648,3172 +/mnt/Downloads/series/相对宇宙S02.Counterpart.2018.1080p.WEB-DL.x265.AC3£cXcY@FRDS/Counterpart.S02E06.2018.1080p.WEB-DL.x265.AC3£cXcY@FRDS.mkv,Counterpart.S02E06.2018.1080p.WEB-DL.x265.AC3£cXcY@FRDS.mkv,1432268278,2023-05-24T13:05:50,series,1920x1080,hevc,3609.056,3174 +/mnt/Downloads/series/相对宇宙S02.Counterpart.2018.1080p.WEB-DL.x265.AC3£cXcY@FRDS/Counterpart.S02E09.2018.1080p.WEB-DL.x265.AC3£cXcY@FRDS.mkv,Counterpart.S02E09.2018.1080p.WEB-DL.x265.AC3£cXcY@FRDS.mkv,1296721442,2023-05-24T13:05:47,series,1920x1080,hevc,3263.392,3178 +/mnt/Downloads/series/相对宇宙S02.Counterpart.2018.1080p.WEB-DL.x265.AC3£cXcY@FRDS/Counterpart.S02E08.2018.1080p.WEB-DL.x265.AC3£cXcY@FRDS.mkv,Counterpart.S02E08.2018.1080p.WEB-DL.x265.AC3£cXcY@FRDS.mkv,1296886427,2023-05-24T13:05:57,series,1920x1080,hevc,3264.0,3178 +/mnt/Downloads/series/Love.Generation.1997.720p.BluRay.x264-WiKi/Love.Generation.E09.1997.720p.BluRay.x264-WiKi.mkv,Love.Generation.E09.1997.720p.BluRay.x264-WiKi.mkv,1481245517,2024-10-17T13:13:03,series,944x720,h264,2946.356,4021 +/mnt/Downloads/series/Love.Generation.1997.720p.BluRay.x264-WiKi/Love.Generation.E01.1997.720p.BluRay.x264-WiKi.mkv,Love.Generation.E01.1997.720p.BluRay.x264-WiKi.mkv,1918641434,2024-10-17T12:51:47,series,944x720,h264,3713.652,4133 +/mnt/Downloads/series/Love.Generation.1997.720p.BluRay.x264-WiKi/Love.Generation.E11.1997.720p.BluRay.x264-WiKi.mkv,Love.Generation.E11.1997.720p.BluRay.x264-WiKi.mkv,2182405639,2024-10-17T13:16:57,series,944x720,h264,4356.169,4007 +/mnt/Downloads/series/Love.Generation.1997.720p.BluRay.x264-WiKi/Love.Generation.E05.1997.720p.BluRay.x264-WiKi.mkv,Love.Generation.E05.1997.720p.BluRay.x264-WiKi.mkv,1422731365,2024-10-17T13:04:37,series,944x720,h264,2864.798,3973 +/mnt/Downloads/series/Love.Generation.1997.720p.BluRay.x264-WiKi/Love.Generation.E10.1997.720p.BluRay.x264-WiKi.mkv,Love.Generation.E10.1997.720p.BluRay.x264-WiKi.mkv,1722691173,2024-10-17T13:14:54,series,944x720,h264,3736.414,3688 +/mnt/Downloads/series/Love.Generation.1997.720p.BluRay.x264-WiKi/Love.Generation.E04.1997.720p.BluRay.x264-WiKi.mkv,Love.Generation.E04.1997.720p.BluRay.x264-WiKi.mkv,1360410389,2024-10-17T13:01:35,series,944x720,h264,2785.822,3906 +/mnt/Downloads/series/Love.Generation.1997.720p.BluRay.x264-WiKi/Love.Generation.E08.1997.720p.BluRay.x264-WiKi.mkv,Love.Generation.E08.1997.720p.BluRay.x264-WiKi.mkv,1368258252,2024-10-17T13:10:54,series,944x720,h264,2783.198,3932 +/mnt/Downloads/series/Love.Generation.1997.720p.BluRay.x264-WiKi/Love.Generation.E02.1997.720p.BluRay.x264-WiKi.mkv,Love.Generation.E02.1997.720p.BluRay.x264-WiKi.mkv,1410110034,2024-10-17T12:55:37,series,944x720,h264,2864.244,3938 +/mnt/Downloads/series/Love.Generation.1997.720p.BluRay.x264-WiKi/Love.Generation.E06.1997.720p.BluRay.x264-WiKi.mkv,Love.Generation.E06.1997.720p.BluRay.x264-WiKi.mkv,1423126683,2024-10-17T13:07:34,series,944x720,h264,2766.217,4115 +/mnt/Downloads/series/Love.Generation.1997.720p.BluRay.x264-WiKi/Love.Generation.E03.1997.720p.BluRay.x264-WiKi.mkv,Love.Generation.E03.1997.720p.BluRay.x264-WiKi.mkv,1434491923,2024-10-17T12:58:50,series,944x720,h264,2812.084,4080 +/mnt/Downloads/series/Love.Generation.1997.720p.BluRay.x264-WiKi/Love.Generation.E07.1997.720p.BluRay.x264-WiKi.mkv,Love.Generation.E07.1997.720p.BluRay.x264-WiKi.mkv,1367078069,2024-10-17T13:08:44,series,944x720,h264,2718.921,4022 +/mnt/Downloads/series/ロングバケーション Complete 1080p friDay WEB-DL H264 AAC-e@DoA/ロングバケーション 第01話 1080p friDay WEB-DL H264 AAC-e@DoA.mkv,ロングバケーション 第01話 1080p friDay WEB-DL H264 AAC-e@DoA.mkv,4011504094,2024-11-04T11:16:35,series,1920x1080,h264,4225.109,7595 +/mnt/Downloads/series/ロングバケーション Complete 1080p friDay WEB-DL H264 AAC-e@DoA/ロングバケーション 第09話 1080p friDay WEB-DL H264 AAC-e@DoA.mkv,ロングバケーション 第09話 1080p friDay WEB-DL H264 AAC-e@DoA.mkv,2689961154,2024-11-04T11:36:46,series,1920x1080,h264,2798.634,7689 +/mnt/Downloads/series/ロングバケーション Complete 1080p friDay WEB-DL H264 AAC-e@DoA/ロングバケーション 第06話 1080p friDay WEB-DL H264 AAC-e@DoA.mkv,ロングバケーション 第06話 1080p friDay WEB-DL H264 AAC-e@DoA.mkv,2635825379,2024-11-04T11:30:08,series,1920x1080,h264,2783.85,7574 +/mnt/Downloads/series/ロングバケーション Complete 1080p friDay WEB-DL H264 AAC-e@DoA/ロングバケーション 第10話 1080p friDay WEB-DL H264 AAC-e@DoA.mkv,ロングバケーション 第10話 1080p friDay WEB-DL H264 AAC-e@DoA.mkv,2678764930,2024-11-04T11:39:17,series,1920x1080,h264,2788.138,7686 +/mnt/Downloads/series/ロングバケーション Complete 1080p friDay WEB-DL H264 AAC-e@DoA/ロングバケーション 第08話 1080p friDay WEB-DL H264 AAC-e@DoA.mkv,ロングバケーション 第08話 1080p friDay WEB-DL H264 AAC-e@DoA.mkv,2683499777,2024-11-04T11:34:20,series,1920x1080,h264,2799.103,7669 +/mnt/Downloads/series/ロングバケーション Complete 1080p friDay WEB-DL H264 AAC-e@DoA/ロングバケーション 第07話 1080p friDay WEB-DL H264 AAC-e@DoA.mkv,ロングバケーション 第07話 1080p friDay WEB-DL H264 AAC-e@DoA.mkv,2682465534,2024-11-04T11:32:28,series,1920x1080,h264,2799.466,7665 +/mnt/Downloads/series/ロングバケーション Complete 1080p friDay WEB-DL H264 AAC-e@DoA/ロングバケーション 第04話 1080p friDay WEB-DL H264 AAC-e@DoA.mkv,ロングバケーション 第04話 1080p friDay WEB-DL H264 AAC-e@DoA.mkv,2670102465,2024-11-04T11:25:39,series,1920x1080,h264,2784.319,7671 +/mnt/Downloads/series/ロングバケーション Complete 1080p friDay WEB-DL H264 AAC-e@DoA/ロングバケーション 第03話 1080p friDay WEB-DL H264 AAC-e@DoA.mkv,ロングバケーション 第03話 1080p friDay WEB-DL H264 AAC-e@DoA.mkv,2693732398,2024-11-04T11:24:09,series,1920x1080,h264,2799.765,7697 +/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/[公益律师].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 +/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,[公益律师].Pro.Bono.2025.S01E01.1080p.NF.WEB-DL.H264.AAC-UBWEB.mkv,2402662807,2026-01-17T12:10:53,series,1920x1080,h264,3769.259,5099 +/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,[公益律师].Pro.Bono.2025.S01E11.1080p.NF.WEB-DL.H264.AAC-UBWEB.mkv,2688669490,2026-01-17T12:15:25,series,1920x1080,h264,4217.728,5099 +/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,[公益律师].Pro.Bono.2025.S01E02.1080p.NF.WEB-DL.H264.AAC-UBWEB.mkv,3029174861,2026-01-17T12:11:25,series,1920x1080,h264,4749.27,5102 +/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,[公益律师].Pro.Bono.2025.S01E05.1080p.NF.WEB-DL.H264.AAC-UBWEB.mkv,2883215489,2026-01-17T12:12:49,series,1920x1080,h264,4507.606,5117 +/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,[公益律师].Pro.Bono.2025.S01E07.1080p.NF.WEB-DL.H264.AAC-UBWEB.mkv,2731733537,2026-01-17T12:13:43,series,1920x1080,h264,4282.582,5102 +/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,[公益律师].Pro.Bono.2025.S01E09.1080p.NF.WEB-DL.H264.AAC-UBWEB.mkv,2648226617,2026-01-17T12:14:42,series,1920x1080,h264,4151.254,5103 +/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,[公益律师].Pro.Bono.2025.S01E04.1080p.NF.WEB-DL.H264.AAC-UBWEB.mkv,3075917030,2026-01-17T12:12:16,series,1920x1080,h264,4856.662,5066 +/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,[公益律师].Pro.Bono.2025.S01E03.1080p.NF.WEB-DL.H264.AAC-UBWEB.mkv,2806187873,2026-01-17T12:11:49,series,1920x1080,h264,4401.323,5100 +/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,[公益律师].Pro.Bono.2025.S01E10.1080p.NF.WEB-DL.H264.AAC-UBWEB.mkv,2345324592,2026-01-17T12:14:58,series,1920x1080,h264,3681.75,5096 +/mnt/Downloads/series/Dark.Matter.2024.S01E07.In.the.Fires.of.Dead.Stars.1080p.ATVP.WEB-DL.DDP5.1.H.264-NTb.mkv,Dark.Matter.2024.S01E07.In.the.Fires.of.Dead.Stars.1080p.ATVP.WEB-DL.DDP5.1.H.264-NTb.mkv,4167761088,2024-06-12T14:27:38,series,1920x960,h264,3073.195,10849 +/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,Juvenile.Justice.S01E01.2022.Netflix.WEB-DL.1080p.HEVC.DV.DDP-HDCTV.mp4,2964727901,2023-11-03T21:50:51,series,1920x1080,hevc,3748.608,6327 +/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,Juvenile.Justice.S01E07.2022.Netflix.WEB-DL.1080p.HEVC.DV.DDP-HDCTV.mp4,3155714089,2023-11-03T21:50:48,series,1920x1080,hevc,4004.736,6303 +/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,Juvenile.Justice.S01E06.2022.Netflix.WEB-DL.1080p.HEVC.DV.DDP-HDCTV.mp4,2765654385,2023-11-03T21:51:04,series,1920x1080,hevc,3510.144,6303 +/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,Juvenile.Justice.S01E03.2022.Netflix.WEB-DL.1080p.HEVC.DV.DDP-HDCTV.mp4,2594601424,2023-11-03T21:50:38,series,1920x1080,hevc,3296.256,6297 +/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,Juvenile.Justice.S01E05.2022.Netflix.WEB-DL.1080p.HEVC.DV.DDP-HDCTV.mp4,2797080290,2023-11-03T21:50:34,series,1920x1080,hevc,3544.32,6313 +/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,Juvenile.Justice.S01E08.2022.Netflix.WEB-DL.1080p.HEVC.DV.DDP-HDCTV.mp4,2880654616,2023-11-03T21:50:57,series,1920x1080,hevc,3772.416,6108 +/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,Juvenile.Justice.S01E02.2022.Netflix.WEB-DL.1080p.HEVC.DV.DDP-HDCTV.mp4,2819882823,2023-11-03T21:50:44,series,1920x1080,hevc,3574.272,6311 +/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,Juvenile.Justice.S01E10.2022.Netflix.WEB-DL.1080p.HEVC.DV.DDP-HDCTV.mp4,3233393179,2023-11-03T21:50:28,series,1920x1080,hevc,4159.104,6219 +/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,Juvenile.Justice.S01E09.2022.Netflix.WEB-DL.1080p.HEVC.DV.DDP-HDCTV.mp4,2875538079,2023-11-03T21:49:51,series,1920x1080,hevc,3654.528,6294 +/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,Juvenile.Justice.S01E04.2022.Netflix.WEB-DL.1080p.HEVC.DV.DDP-HDCTV.mp4,2859273483,2023-11-03T21:51:00,series,1920x1080,hevc,3626.496,6307 +/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,Tokyo.Vice.S01E01.2022.1080p.WEB-DL.x265.10bit.AC3£cXcY@FRDS.mkv,1906133345,2022-05-23T15:38:53,series,1920x960,hevc,3473.178,4390 +/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,Tokyo.Vice.S01E05.2022.1080p.WEB-DL.x265.10bit.AC3£cXcY@FRDS.mkv,2092113155,2022-05-23T15:35:19,series,1920x960,hevc,3814.269,4387 +/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,Tokyo.Vice.S01E02.2022.1080p.WEB-DL.x265.10bit.AC3£cXcY@FRDS.mkv,1815037540,2022-05-23T15:39:00,series,1920x960,hevc,3305.97,4392 +/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,Tokyo.Vice.S01E06.2022.1080p.WEB-DL.x265.10bit.AC3£cXcY@FRDS.mkv,2085988731,2022-05-23T15:35:31,series,1920x960,hevc,3800.213,4391 +/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,Tokyo.Vice.S01E04.2022.1080p.WEB-DL.x265.10bit.AC3£cXcY@FRDS.mkv,1780985263,2022-05-23T15:36:22,series,1920x960,hevc,3244.575,4391 +/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,Tokyo.Vice.S01E08.2022.1080p.WEB-DL.x265.10bit.AC3£cXcY@FRDS.mkv,2115001665,2022-05-23T15:36:05,series,1920x960,hevc,3853.517,4390 +/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,Tokyo.Vice.S01E07.2022.1080p.WEB-DL.x265.10bit.AC3£cXcY@FRDS.mkv,1809680058,2022-05-23T15:35:39,series,1920x960,hevc,3296.669,4391 +/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,Tokyo.Vice.S01E03.2022.1080p.WEB-DL.x265.10bit.AC3£cXcY@FRDS.mkv,1820192055,2022-05-23T15:39:06,series,1920x960,hevc,3314.853,4392 +/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,The.Hot.Spot.2025.S01E09.1080p.NF.WEB-DL.x264.AAC-PTerWEB.mkv,2780612563,2025-04-06T15:50:02,series,1920x1080,h264,2725.12,8162 +/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,The.Hot.Spot.2025.S01E07.1080p.NF.WEB-DL.x264.AAC-PTerWEB.mkv,2902783548,2025-04-06T15:48:39,series,1920x1080,h264,2755.072,8428 +/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,The.Hot.Spot.2025.S01E08.1080p.NF.WEB-DL.x264.AAC-PTerWEB.mkv,2889790598,2025-04-06T15:50:02,series,1920x1080,h264,2755.072,8391 +/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,The.Hot.Spot.2025.S01E06.1080p.NF.WEB-DL.x264.AAC-PTerWEB.mkv,2692817139,2025-04-06T15:46:43,series,1920x1080,h264,2755.03,7819 +/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,The.Hot.Spot.2025.S01E05.1080p.NF.WEB-DL.x264.AAC-PTerWEB.mkv,2927861566,2025-04-06T15:45:10,series,1920x1080,h264,2755.072,8501 +/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,The.Hot.Spot.2025.S01E04.1080p.NF.WEB-DL.x264.AAC-PTerWEB.mkv,2763496344,2025-04-06T15:42:25,series,1920x1080,h264,2755.2,8024 +/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,The.Hot.Spot.2025.S01E02.1080p.NF.WEB-DL.x264.AAC-PTerWEB.mkv,2774417436,2025-04-06T15:36:26,series,1920x1080,h264,2750.251,8070 +/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,The.Hot.Spot.2025.S01E03.1080p.NF.WEB-DL.x264.AAC-PTerWEB.mkv,2869133659,2025-04-06T15:40:17,series,1920x1080,h264,2755.2,8330 +/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,The.Hot.Spot.2025.S01E10.1080p.NF.WEB-DL.x264.AAC-PTerWEB.mkv,2785986239,2025-04-06T15:44:30,series,1920x1080,h264,2725.206,8178 +/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,The.Hot.Spot.2025.S01E01.1080p.NF.WEB-DL.x264.AAC-PTerWEB.mkv,2907208205,2025-04-06T15:31:43,series,1920x1080,h264,2755.072,8441 +/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,Love.Complex.S01E06.1080p.AMZN.WEB-DL.DD+2.0.H.264-ARiN.mkv,1302058242,2023-02-21T01:47:18,series,1440x1080,h264,2815.072,3700 +/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,Love.Complex.S01E02.1080p.AMZN.WEB-DL.DD+2.0.H.264-ARiN.mkv,1301909055,2023-02-21T01:47:21,series,1440x1080,h264,2814.08,3701 +/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,Love.Complex.S01E11.1080p.AMZN.WEB-DL.DD+2.0.H.264-ARiN.mkv,1652777373,2023-02-21T01:47:21,series,1440x1080,h264,3412.064,3875 +/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,Love.Complex.S01E10.1080p.AMZN.WEB-DL.DD+2.0.H.264-ARiN.mkv,1289064282,2023-02-21T01:47:20,series,1440x1080,h264,2815.072,3663 +/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,Love.Complex.S01E07.1080p.AMZN.WEB-DL.DD+2.0.H.264-ARiN.mkv,1327089165,2023-02-21T01:47:19,series,1440x1080,h264,2801.056,3790 +/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,Love.Complex.S01E03.1080p.AMZN.WEB-DL.DD+2.0.H.264-ARiN.mkv,1261779769,2023-02-21T01:47:08,series,1440x1080,h264,2815.072,3585 +/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,Love.Complex.S01E09.1080p.AMZN.WEB-DL.DD+2.0.H.264-ARiN.mkv,1259674888,2023-02-21T01:47:12,series,1440x1080,h264,2814.08,3581 +/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,Love.Complex.S01E05.1080p.AMZN.WEB-DL.DD+2.0.H.264-ARiN.mkv,1292313184,2023-02-21T01:47:21,series,1440x1080,h264,2815.072,3672 +/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,Love.Complex.S01E01.1080p.AMZN.WEB-DL.DD+2.0.H.264-ARiN.mkv,1246299387,2023-02-21T01:47:20,series,1440x1080,h264,2813.088,3544 +/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,Love.Complex.S01E04.1080p.AMZN.WEB-DL.DD+2.0.H.264-ARiN.mkv,1314022884,2023-02-21T01:47:19,series,1440x1080,h264,2801.056,3752 +/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,Love.Complex.S01E08.1080p.AMZN.WEB-DL.DD+2.0.H.264-ARiN.mkv,1278530159,2023-02-21T01:47:24,series,1440x1080,h264,2815.072,3633 +/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,Weak.Hero.Class.1.2022.E01.WEB-DL.4K.H265.AAC-HDCTV.mp4,1435678481,2023-01-20T11:10:27,series,3840x2160,hevc,2636.69551,4355 +/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,Weak.Hero.Class.1.2022.E03.WEB-DL.4K.H265.AAC-HDCTV.mp4,1311860164,2023-01-20T11:10:24,series,3840x2160,hevc,2393.396825,4384 +/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,Weak.Hero.Class.1.2022.E02.WEB-DL.4K.H265.AAC-HDCTV.mp4,1342668526,2023-01-20T11:10:25,series,3840x2160,hevc,2507.964082,4282 +/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,Weak.Hero.Class.1.2022.E04.WEB-DL.4K.H265.AAC-HDCTV.mp4,1206229469,2023-01-20T11:10:24,series,3840x2160,hevc,2267.544671,4255 +/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,Weak.Hero.Class.1.2022.E05.WEB-DL.4K.H265.AAC-HDCTV.mp4,1259052190,2023-01-20T11:10:25,series,3840x2160,hevc,2327.035356,4328 +/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,Weak.Hero.Class.1.2022.E08.WEB-DL.4K.H265.AAC-HDCTV.mp4,1482493628,2023-01-20T11:10:24,series,3840x2160,hevc,2545.905488,4658 +/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,Weak.Hero.Class.1.2022.E06.WEB-DL.4K.H265.AAC-HDCTV.mp4,1382970640,2023-01-20T11:10:25,series,3840x2160,hevc,2434.681905,4544 +/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,Weak.Hero.Class.1.2022.E07.WEB-DL.4K.H265.AAC-HDCTV.mp4,1200216282,2023-01-20T11:10:23,series,3840x2160,hevc,2182.907937,4398 +/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,When.Spring.Comes.2024.S01E06.1080p.KKTV.WEB-DL.H264.AAC-YingWEB.mkv,1097394497,2025-01-16T01:27:12,series,1920x1080,h264,2745.713,3197 +/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,When.Spring.Comes.2024.S01E02.1080p.KKTV.WEB-DL.H264.AAC-YingWEB.mkv,1104016774,2025-01-16T01:27:08,series,1920x1080,h264,2746.735,3215 +/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,When.Spring.Comes.2024.S01E03.1080p.KKTV.WEB-DL.H264.AAC-YingWEB.mkv,1097911111,2025-01-16T01:26:56,series,1920x1080,h264,2746.735,3197 +/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,When.Spring.Comes.2024.S01E07.1080p.KKTV.WEB-DL.H264.AAC-YingWEB.mkv,1097276691,2025-01-16T01:27:12,series,1920x1080,h264,2746.735,3195 +/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,When.Spring.Comes.2024.S01E10.1080p.KKTV.WEB-DL.H264.AAC-YingWEB.mkv,1094006423,2025-01-16T01:27:08,series,1920x1080,h264,2721.704,3215 +/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,When.Spring.Comes.2024.S01E01.1080p.KKTV.WEB-DL.H264.AAC-YingWEB.mkv,1366426070,2025-01-16T01:27:04,series,1920x1080,h264,3391.297,3223 +/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,When.Spring.Comes.2024.S01E08.1080p.KKTV.WEB-DL.H264.AAC-YingWEB.mkv,1098715115,2025-01-16T01:26:43,series,1920x1080,h264,2735.705,3212 +/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,When.Spring.Comes.2024.S01E05.1080p.KKTV.WEB-DL.H264.AAC-YingWEB.mkv,1104236025,2025-01-16T01:23:48,series,1920x1080,h264,2746.735,3216 +/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,When.Spring.Comes.2024.S01E04.1080p.KKTV.WEB-DL.H264.AAC-YingWEB.mkv,1101403508,2025-01-16T01:27:03,series,1920x1080,h264,2744.715,3210 +/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,When.Spring.Comes.2024.S01E09.1080p.KKTV.WEB-DL.H264.AAC-YingWEB.mkv,1102995989,2025-01-16T01:26:43,series,1920x1080,h264,2746.735,3212 +/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,When.Spring.Comes.2024.S01E11.1080p.KKTV.WEB-DL.H264.AAC-YingWEB.mkv,1102114708,2025-01-16T01:25:52,series,1920x1080,h264,2705.682,3258 +/mnt/Downloads/series/こっち向いてよ向井くん EP06 720p HDTV x264 AAC-DoA.mkv,こっち向いてよ向井くん EP06 720p HDTV x264 AAC-DoA.mkv,1801059536,2024-01-12T12:14:40,series,1280x720,h264,3109.809,4633 +/mnt/Downloads/series/連続ドラマW コールドケース2 ~真実の扉~ Complete 720p HDTV x264 AAC-DoA/連続ドラマW コールドケース2 ~真実の扉~ CASE10 「真犯人」 End 720p HDTV x264 AAC-DoA.mkv,連続ドラマW コールドケース2 ~真実の扉~ CASE10 「真犯人」 End 720p HDTV x264 AAC-DoA.mkv,787917001,2019-01-01T04:15:56,series,1280x720,h264,2880.064,2188 +/mnt/Downloads/series/連続ドラマW コールドケース2 ~真実の扉~ Complete 720p HDTV x264 AAC-DoA/連続ドラマW コールドケース2 ~真実の扉~ CASE6 「バブル」 720p HDTV x264 AAC-DoA.mkv,連続ドラマW コールドケース2 ~真実の扉~ CASE6 「バブル」 720p HDTV x264 AAC-DoA.mkv,1288925785,2019-01-01T04:15:52,series,1280x720,h264,2909.93,3543 +/mnt/Downloads/series/連続ドラマW コールドケース2 ~真実の扉~ Complete 720p HDTV x264 AAC-DoA/連続ドラマW コールドケース2 ~真実の扉~ CASE2 「名前のない殺人者」 720p HDTV x264 AAC-DoA.mkv,連続ドラマW コールドケース2 ~真実の扉~ CASE2 「名前のない殺人者」 720p HDTV x264 AAC-DoA.mkv,817186329,2019-01-01T04:15:54,series,1280x720,h264,2820.032,2318 +/mnt/Downloads/series/連続ドラマW コールドケース2 ~真実の扉~ Complete 720p HDTV x264 AAC-DoA/連続ドラマW コールドケース2 ~真実の扉~ CASE3 「PKO」 720p HDTV x264 AAC-DoA.mkv,連続ドラマW コールドケース2 ~真実の扉~ CASE3 「PKO」 720p HDTV x264 AAC-DoA.mkv,1016435700,2019-01-01T04:15:55,series,1280x720,h264,2909.952,2794 +/mnt/Downloads/series/連続ドラマW コールドケース2 ~真実の扉~ Complete 720p HDTV x264 AAC-DoA/連続ドラマW コールドケース2 ~真実の扉~ CASE8 「17歳の母」 720p HDTV x264 AAC-DoA.mkv,連続ドラマW コールドケース2 ~真実の扉~ CASE8 「17歳の母」 720p HDTV x264 AAC-DoA.mkv,1320439680,2019-01-01T04:15:54,series,1280x720,h264,2909.994,3630 +/mnt/Downloads/series/連続ドラマW コールドケース2 ~真実の扉~ Complete 720p HDTV x264 AAC-DoA/連続ドラマW コールドケース2 ~真実の扉~ CASE1 「学生運動」 720p HDTV x264 AAC-DoA.mkv,連続ドラマW コールドケース2 ~真実の扉~ CASE1 「学生運動」 720p HDTV x264 AAC-DoA.mkv,1156624880,2019-01-01T04:15:53,series,1280x720,h264,2919.957,3168 +/mnt/Downloads/series/連続ドラマW コールドケース2 ~真実の扉~ Complete 720p HDTV x264 AAC-DoA/連続ドラマW コールドケース2 ~真実の扉~ CASE4 「執行」 720p HDTV x264 AAC-DoA.mkv,連続ドラマW コールドケース2 ~真実の扉~ CASE4 「執行」 720p HDTV x264 AAC-DoA.mkv,1047311854,2019-01-01T04:15:52,series,1280x720,h264,2909.994,2879 +/mnt/Downloads/series/連続ドラマW コールドケース2 ~真実の扉~ Complete 720p HDTV x264 AAC-DoA/連続ドラマW コールドケース2 ~真実の扉~ CASE5 「指輪」 720p HDTV x264 AAC-DoA.mkv,連続ドラマW コールドケース2 ~真実の扉~ CASE5 「指輪」 720p HDTV x264 AAC-DoA.mkv,806858818,2019-01-01T04:15:48,series,1280x720,h264,2909.952,2218 +/mnt/Downloads/series/連続ドラマW コールドケース2 ~真実の扉~ Complete 720p HDTV x264 AAC-DoA/連続ドラマW コールドケース2 ~真実の扉~ CASE7 「光と影」 720p HDTV x264 AAC-DoA.mkv,連続ドラマW コールドケース2 ~真実の扉~ CASE7 「光と影」 720p HDTV x264 AAC-DoA.mkv,1223268106,2019-01-01T04:15:55,series,1280x720,h264,2909.994,3362 +/mnt/Downloads/series/連続ドラマW コールドケース2 ~真実の扉~ Complete 720p HDTV x264 AAC-DoA/連続ドラマW コールドケース2 ~真実の扉~ CASE9 「シベリアの涙」 720p HDTV x264 AAC-DoA.mkv,連続ドラマW コールドケース2 ~真実の扉~ CASE9 「シベリアの涙」 720p HDTV x264 AAC-DoA.mkv,1299489023,2019-01-01T04:15:53,series,1280x720,h264,2909.973,3572 +/mnt/Downloads/series/好久没做.Long.time.no.sex.S01E01.2024.1080p.friDay.WEB-DL.H264.AAC-OurTV.mkv,好久没做.Long.time.no.sex.S01E01.2024.1080p.friDay.WEB-DL.H264.AAC-OurTV.mkv,3347592060,2024-01-29T13:51:16,series,1920x1080,h264,3458.788,7742 +/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,Chokotto.Kyoto.ni.Sundemita.SP.2019.Amazon.WEB-DL.1080p.H264.DDP-HDCTV.mkv,5415069077,2022-05-24T04:12:09,series,1920x1080,h264,4440.096,9756 +/mnt/Downloads/series/【幻月字幕组】【24年日剧】【追踪者游戏W 职权骚扰的上司是我的前女友】【01】【1080P】【中日双语】.mp4,【幻月字幕组】【24年日剧】【追踪者游戏W 职权骚扰的上司是我的前女友】【01】【1080P】【中日双语】.mp4,546202718,2024-01-16T05:47:46,series,1920x1080,h264,1394.88,3132 +/mnt/Downloads/series/Reacher.S03E04.Dominique.1080p.AMZN.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv,Reacher.S03E04.Dominique.1080p.AMZN.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv,3203583792,2025-03-16T01:05:12,series,1920x960,h264,3159.24,8112 +/mnt/Downloads/series/Reacher.S03E06.Smoke.on.the.Water.1080p.AMZN.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv,Reacher.S03E06.Smoke.on.the.Water.1080p.AMZN.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv,3419040597,2025-03-16T00:55:34,series,1920x960,h264,2898.187,9437 +/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,My.Name.S01E02.2021.Netflix.WEB-DL.1080p.HEVC.HDR.DDP-HDCTV.mkv,2032997018,2021-10-19T11:00:30,series,1920x1080,hevc,2783.648,5842 +/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,My.Name.S01E06.2021.Netflix.WEB-DL.1080p.HEVC.HDR.DDP-HDCTV.mkv,2226701458,2021-10-19T11:00:29,series,1920x1080,hevc,2989.856,5958 +/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,My.Name.S01E01.2021.Netflix.WEB-DL.1080p.HEVC.HDR.DDP-HDCTV.mkv,2451562958,2021-10-19T11:00:29,series,1920x1080,hevc,3247.904,6038 +/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,My.Name.S01E05.2021.Netflix.WEB-DL.1080p.HEVC.HDR.DDP-HDCTV.mkv,2193517006,2021-10-19T11:00:30,series,1920x1080,hevc,3045.92,5761 +/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,My.Name.S01E07.2021.Netflix.WEB-DL.1080p.HEVC.HDR.DDP-HDCTV.mkv,1899203324,2021-10-19T11:00:28,series,1920x1080,hevc,2727.584,5570 +/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,My.Name.S01E03.2021.Netflix.WEB-DL.1080p.HEVC.HDR.DDP-HDCTV.mkv,2141308089,2021-10-19T11:00:30,series,1920x1080,hevc,2847.776,6015 +/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,My.Name.S01E04.2021.Netflix.WEB-DL.1080p.HEVC.HDR.DDP-HDCTV.mkv,2034468568,2021-10-19T11:00:31,series,1920x1080,hevc,2793.632,5826 +/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,My.Name.S01E08.2021.Netflix.WEB-DL.1080p.HEVC.HDR.DDP-HDCTV.mkv,2607252912,2021-10-19T11:00:32,series,1920x1080,hevc,3512.096,5938 +/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,When.Life.Gives.You.Tangerines.S01E04.2160p.NF.WEB-DL.H.265.DDP5.1.Atmos-ADWeb.mkv,5344653360,2025-03-27T13:57:16,series,3840x2160,hevc,3577.6,11951 +/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,When.Life.Gives.You.Tangerines.S01E08.2160p.NF.WEB-DL.H.265.DDP5.1.Atmos-ADWeb.mkv,5703945858,2025-03-27T14:10:49,series,3840x2160,hevc,3803.84,11996 +/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,When.Life.Gives.You.Tangerines.S01E12.2160p.NF.WEB-DL.H.265.DDP5.1.Atmos-ADWeb.mkv,5340448863,2025-03-27T14:20:19,series,3840x2160,hevc,3560.608,11998 +/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,When.Life.Gives.You.Tangerines.S01E09.2160p.NF.WEB-DL.H.265.DDP5.1.Atmos-ADWeb.mkv,4383692528,2025-03-27T14:14:14,series,3840x2160,hevc,2969.408,11810 +/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,When.Life.Gives.You.Tangerines.S01E01.2160p.NF.WEB-DL.H.265.DDP5.1.Atmos-ADWeb.mkv,5144568920,2025-03-27T13:43:30,series,3840x2160,hevc,3453.472,11917 +/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,When.Life.Gives.You.Tangerines.S01E05.2160p.NF.WEB-DL.H.265.DDP5.1.Atmos-ADWeb.mkv,5559862759,2025-03-27T14:00:54,series,3840x2160,hevc,3702.912,12011 +/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,When.Life.Gives.You.Tangerines.S01E10.2160p.NF.WEB-DL.H.265.DDP5.1.Atmos-ADWeb.mkv,5150422761,2025-03-27T14:15:35,series,3840x2160,hevc,3456.48,11920 +/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,When.Life.Gives.You.Tangerines.S01E03.2160p.NF.WEB-DL.H.265.DDP5.1.Atmos-ADWeb.mkv,5684069135,2025-03-27T13:54:20,series,3840x2160,hevc,3793.824,11985 +/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,When.Life.Gives.You.Tangerines.S01E07.2160p.NF.WEB-DL.H.265.DDP5.1.Atmos-ADWeb.mkv,5835172694,2025-03-27T14:07:27,series,3840x2160,hevc,3881.92,12025 +/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,When.Life.Gives.You.Tangerines.S01E02.2160p.NF.WEB-DL.H.265.DDP5.1.Atmos-ADWeb.mkv,4828100990,2025-03-27T13:49:37,series,3840x2160,hevc,3245.28,11901 +/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,When.Life.Gives.You.Tangerines.S01E06.2160p.NF.WEB-DL.H.265.DDP5.1.Atmos-ADWeb.mkv,5114319564,2025-03-27T14:03:48,series,3840x2160,hevc,3437.664,11901 +/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,When.Life.Gives.You.Tangerines.S01E11.2160p.NF.WEB-DL.H.265.DDP5.1.Atmos-ADWeb.mkv,5762729218,2025-03-27T14:18:48,series,3840x2160,hevc,3819.104,12071 +/mnt/Downloads/series/コタツがない家 Complete 1080p HDTV x264 AAC/コタツがない家 第2話 「舅 VS 夫」 1080p HDTV x264 AAC.mkv,コタツがない家 第2話 「舅 VS 夫」 1080p HDTV x264 AAC.mkv,3459847345,2023-12-29T17:21:33,series,1920x1080,h264,3109.706,8900 +/mnt/Downloads/series/コタツがない家 Complete 1080p HDTV x264 AAC/コタツがない家 第7話 「下僕の逆襲」 1080p HDTV x264 AAC.mkv,コタツがない家 第7話 「下僕の逆襲」 1080p HDTV x264 AAC.mkv,3499986852,2023-12-29T17:21:37,series,1920x1080,h264,3109.717,9004 +/mnt/Downloads/series/コタツがない家 Complete 1080p HDTV x264 AAC/コタツがない家 第6話 「後継者は君だ」 1080p HDTV x264 AAC.mkv,コタツがない家 第6話 「後継者は君だ」 1080p HDTV x264 AAC.mkv,3578424649,2023-12-29T17:21:20,series,1920x1080,h264,3110.25,9204 +/mnt/Downloads/series/コタツがない家 Complete 1080p HDTV x264 AAC/コタツがない家 第10話 「クリスマスの奇跡」 End 1080p HDTV x264 AAC.mkv,コタツがない家 第10話 「クリスマスの奇跡」 End 1080p HDTV x264 AAC.mkv,3622351241,2023-12-29T17:21:26,series,1920x1080,h264,3079.68,9409 +/mnt/Downloads/series/コタツがない家 Complete 1080p HDTV x264 AAC/コタツがない家 第5話 「鬼怒川の晴れ女」 1080p HDTV x264 AAC.mkv,コタツがない家 第5話 「鬼怒川の晴れ女」 1080p HDTV x264 AAC.mkv,3823867168,2023-12-29T17:21:24,series,1920x1080,h264,3109.706,9837 +/mnt/Downloads/series/コタツがない家 Complete 1080p HDTV x264 AAC/コタツがない家 第8話 「シン・嫉妬怪獣」 1080p HDTV x264 AAC.mkv,コタツがない家 第8話 「シン・嫉妬怪獣」 1080p HDTV x264 AAC.mkv,3675800793,2023-12-29T17:21:24,series,1920x1080,h264,3109.653,9456 +/mnt/Downloads/series/コタツがない家 Complete 1080p HDTV x264 AAC/コタツがない家 第4話 「母の仕事 子知らず」 1080p HDTV x264 AAC.mkv,コタツがない家 第4話 「母の仕事 子知らず」 1080p HDTV x264 AAC.mkv,3462148188,2023-12-29T17:21:23,series,1920x1080,h264,3109.674,8906 +/mnt/Downloads/series/コタツがない家 Complete 1080p HDTV x264 AAC/コタツがない家 第9話 「最終兵器チョーさん」 1080p HDTV x264 AAC.mkv,コタツがない家 第9話 「最終兵器チョーさん」 1080p HDTV x264 AAC.mkv,3515275005,2023-12-29T17:21:32,series,1920x1080,h264,3079.81,9131 +/mnt/Downloads/series/コタツがない家 Complete 1080p HDTV x264 AAC/コタツがない家 第1話 「戦力外の男たち」 1080p HDTV x264 AAC.mkv,コタツがない家 第1話 「戦力外の男たち」 1080p HDTV x264 AAC.mkv,3345181860,2023-12-29T17:21:35,series,1920x1080,h264,3109.706,8605 +/mnt/Downloads/series/コタツがない家 Complete 1080p HDTV x264 AAC/コタツがない家 第3話 「ダメ夫 働く」 1080p HDTV x264 AAC.mkv,コタツがない家 第3話 「ダメ夫 働く」 1080p HDTV x264 AAC.mkv,3421295491,2023-12-29T17:21:23,series,1920x1080,h264,3109.717,8801 +/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,Shinhannin.Flag.E10.2021.KKTV.WEB-DL.1080p.x264.AAC-HDCTV.mkv,1106176352,2022-01-03T14:16:59,series,1920x1080,h264,2747.153,3221 +/mnt/Downloads/series/RoOT 第05話 1080p KKTV WEB-DL H264 AAC.mkv,RoOT 第05話 1080p KKTV WEB-DL H264 AAC.mkv,559244152,2024-05-21T14:58:23,series,1920x1080,h264,1395.055,3207 +/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,All.Her.Fault.S01E05.1080p.MAX.WEB-DL.H.264.DDP5.1-ADWeb.mkv,676795189,2025-12-11T09:47:38,series,1920x1080,h264,3080.0,1757 +/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,All.Her.Fault.S01E01.1080p.MAX.WEB-DL.H.264.DDP5.1-ADWeb.mkv,823610393,2025-12-11T09:45:04,series,1920x1080,h264,2645.024,2491 +/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,All.Her.Fault.S01E08.1080p.MAX.WEB-DL.H.264.DDP5.1-ADWeb.mkv,774890974,2025-12-11T09:48:43,series,1920x1080,h264,3256.0,1903 +/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,All.Her.Fault.S01E04.1080p.MAX.WEB-DL.H.264.DDP5.1-ADWeb.mkv,810088626,2025-12-11T09:47:16,series,1920x1080,h264,3001.024,2159 +/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,All.Her.Fault.S01E06.1080p.MAX.WEB-DL.H.264.DDP5.1-ADWeb.mkv,766329875,2025-12-11T09:48:35,series,1920x1080,h264,2673.024,2293 +/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,All.Her.Fault.S01E02.1080p.MAX.WEB-DL.H.264.DDP5.1-ADWeb.mkv,863778543,2025-12-11T09:45:35,series,1920x1080,h264,2935.008,2354 +/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,All.Her.Fault.S01E07.1080p.MAX.WEB-DL.H.264.DDP5.1-ADWeb.mkv,962749739,2025-12-11T09:48:39,series,1920x1080,h264,3165.024,2433 +/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,All.Her.Fault.S01E03.1080p.MAX.WEB-DL.H.264.DDP5.1-ADWeb.mkv,951012442,2025-12-11T09:46:43,series,1920x1080,h264,3046.016,2497 +/mnt/Downloads/series/未来への10カウント Complete 720p HDTV x264 AAC-DoA/未来への10カウント 第07話「お前たちが決めろ! 乱闘事件で部を追放!?涙のミーティング!」720p HDTV x264 AAC-DoA.mkv,未来への10カウント 第07話「お前たちが決めろ! 乱闘事件で部を追放!?涙のミーティング!」720p HDTV x264 AAC-DoA.mkv,1059421478,2022-10-04T02:48:19,series,1280x720,h264,3029.93,2797 +/mnt/Downloads/series/未来への10カウント Complete 720p HDTV x264 AAC-DoA/未来への10カウント 第05話「消えた部員から届いた謎の伝言!宅配ピザ救出作戦!?」720p HDTV x264 AAC-DoA.mkv,未来への10カウント 第05話「消えた部員から届いた謎の伝言!宅配ピザ救出作戦!?」720p HDTV x264 AAC-DoA.mkv,1198842364,2022-10-04T02:48:12,series,1280x720,h264,3029.93,3165 +/mnt/Downloads/series/未来への10カウント Complete 720p HDTV x264 AAC-DoA/未来への10カウント 第06話「亡き妻から宅配ピザ注文!?俺の名を呼んでくれ...奇跡の再会!」720p HDTV x264 AAC-DoA.mkv,未来への10カウント 第06話「亡き妻から宅配ピザ注文!?俺の名を呼んでくれ...奇跡の再会!」720p HDTV x264 AAC-DoA.mkv,1290105841,2022-10-04T02:48:16,series,1280x720,h264,3029.93,3406 +/mnt/Downloads/series/未来への10カウント Complete 720p HDTV x264 AAC-DoA/未来への10カウント 第01話「伝説の男、母校へ…弱小チームを導く!」720p HDTV x264 AAC-DoA.mkv,未来への10カウント 第01話「伝説の男、母校へ…弱小チームを導く!」720p HDTV x264 AAC-DoA.mkv,1169647302,2022-10-04T02:00:54,series,1280x720,h264,3479.913,2688 +/mnt/Downloads/series/未来への10カウント Complete 720p HDTV x264 AAC-DoA/未来への10カウント 第03話「コーチ助けて...女子部員の危機!母の敵をKOせよ!?」720p HDTV x264 AAC-DoA.mkv,未来への10カウント 第03話「コーチ助けて...女子部員の危機!母の敵をKOせよ!?」720p HDTV x264 AAC-DoA.mkv,978418651,2022-10-04T02:48:19,series,1280x720,h264,2730.03,2867 +/mnt/Downloads/series/未来への10カウント Complete 720p HDTV x264 AAC-DoA/未来への10カウント 第08話「逆プロポーズは突然に!? ついに決断の時...別れまでの7日間!」720p HDTV x264 AAC-DoA.mkv,未来への10カウント 第08話「逆プロポーズは突然に!? ついに決断の時...別れまでの7日間!」720p HDTV x264 AAC-DoA.mkv,1134266834,2022-10-04T02:48:10,series,1280x720,h264,3254.821,2787 +/mnt/Downloads/series/未来への10カウント Complete 720p HDTV x264 AAC-DoA/未来への10カウント 第04話「リングの中心で、愛を叫ぶ!?型破りな恋愛指導で、衝撃結末!」720p HDTV x264 AAC-DoA.mkv,未来への10カウント 第04話「リングの中心で、愛を叫ぶ!?型破りな恋愛指導で、衝撃結末!」720p HDTV x264 AAC-DoA.mkv,1234020491,2022-10-04T02:48:12,series,1280x720,h264,3029.93,3258 +/mnt/Downloads/series/未来への10カウント Complete 720p HDTV x264 AAC-DoA/未来への10カウント 第09話「お前たちをインターハイに連れていく... 涙の決勝戦!」END 720p HDTV x264 AAC-DoA.mkv,未来への10カウント 第09話「お前たちをインターハイに連れていく... 涙の決勝戦!」END 720p HDTV x264 AAC-DoA.mkv,1504460401,2022-10-04T02:48:12,series,1280x720,h264,3494.928,3443 +/mnt/Downloads/series/未来への10カウント Complete 720p HDTV x264 AAC-DoA/未来への10カウント 第02話「型破り監督最弱チームに奇跡を!18年ぶり焼鳥授業!?」720p HDTV x264 AAC-DoA.mkv,未来への10カウント 第02話「型破り監督最弱チームに奇跡を!18年ぶり焼鳥授業!?」720p HDTV x264 AAC-DoA.mkv,1150992068,2022-10-04T02:12:07,series,1280x720,h264,3254.888,2828 +/mnt/Downloads/series/Miyamoto.Musashi.2014.720p.BluRay.x264-WiKi/Miyamoto.Musashi.E02.2014.720p.BluRay.x264-WiKi.mkv,Miyamoto.Musashi.E02.2014.720p.BluRay.x264-WiKi.mkv,5746486838,2024-04-25T14:04:37,series,1280x720,h264,7335.296,6267 +/mnt/Downloads/series/Miyamoto.Musashi.2014.720p.BluRay.x264-WiKi/Sample/Miyamoto.Musashi.E01.2014.720p.BluRay.x264-WiKi.sample.mkv,Miyamoto.Musashi.E01.2014.720p.BluRay.x264-WiKi.sample.mkv,55056031,2024-04-25T14:03:44,series,1280x720,h264,48.87,9012 +/mnt/Downloads/series/Miyamoto.Musashi.2014.720p.BluRay.x264-WiKi/Miyamoto.Musashi.E01.2014.720p.BluRay.x264-WiKi.mkv,Miyamoto.Musashi.E01.2014.720p.BluRay.x264-WiKi.mkv,6055346989,2024-04-25T14:04:36,series,1280x720,h264,7080.512,6841 +/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,Berlin.S01E08.2023.2160p.NF.WEB-DL.DDP5.1.Atmos.H.265-HHWEB.mkv,5498435801,2024-10-22T14:04:21,series,3840x2160,hevc,3643.584,12072 +/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,Berlin.S01E02.2023.2160p.NF.WEB-DL.DDP5.1.Atmos.H.265-HHWEB.mkv,4698260313,2024-10-22T13:18:37,series,3840x2160,hevc,3047.36,12333 +/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,Berlin.S01E03.2023.2160p.NF.WEB-DL.DDP5.1.Atmos.H.265-HHWEB.mkv,4026526717,2024-10-22T13:25:22,series,3840x2160,hevc,2639.936,12201 +/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,Berlin.S01E01.2023.2160p.NF.WEB-DL.DDP5.1.Atmos.H.265-HHWEB.mkv,5325058468,2024-10-22T13:11:44,series,3840x2160,hevc,3458.688,12316 +/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,Berlin.S01E04.2023.2160p.NF.WEB-DL.DDP5.1.Atmos.H.265-HHWEB.mkv,3859041141,2024-10-22T13:32:41,series,3840x2160,hevc,2543.424,12138 +/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,Berlin.S01E05.2023.2160p.NF.WEB-DL.DDP5.1.Atmos.H.265-HHWEB.mkv,4365482564,2024-10-22T13:41:10,series,3840x2160,hevc,2787.904,12526 +/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,Berlin.S01E07.2023.2160p.NF.WEB-DL.DDP5.1.Atmos.H.265-HHWEB.mkv,4540993156,2024-10-22T13:55:41,series,3840x2160,hevc,2965.984,12248 +/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,Berlin.S01E06.2023.2160p.NF.WEB-DL.DDP5.1.Atmos.H.265-HHWEB.mkv,3765386490,2024-10-22T13:47:53,series,3840x2160,hevc,2518.56,11960 +/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,Hospital.Playlist.S01E08.2020.Netflix.WEB-DL.1080p.x264.DDP-AREY.mkv,1440610290,2025-03-04T10:19:03,series,1920x1080,h264,5290.272,2178 +/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,Hospital.Playlist.S01E02.2020.Netflix.WEB-DL.1080p.x264.DDP-AREY.mkv,1408227468,2025-03-04T10:10:05,series,1920x1080,h264,4948.64,2276 +/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,Hospital.Playlist.S01E04.2020.Netflix.WEB-DL.1080p.x264.DDP-AREY.mkv,1711648416,2025-03-04T10:15:06,series,1920x1080,h264,4773.28,2868 +/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,Hospital.Playlist.S01E12.2020.Netflix.WEB-DL.1080p.x264.DDP-AREY.mkv,5032477923,2025-03-04T10:08:06,series,1920x1080,h264,6796.32,5923 +/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,Hospital.Playlist.S01E09.2020.Netflix.WEB-DL.1080p.x264.DDP-AREY.mkv,1642171007,2025-03-04T10:21:10,series,1920x1080,h264,4580.64,2868 +/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,Hospital.Playlist.S01E03.2020.Netflix.WEB-DL.1080p.x264.DDP-AREY.mkv,2498581133,2025-03-04T10:12:09,series,1920x1080,h264,5295.392,3774 +/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,Hospital.Playlist.S01E05.2020.Netflix.WEB-DL.1080p.x264.DDP-AREY.mkv,1433876892,2025-03-04T10:15:47,series,1920x1080,h264,4384.416,2616 +/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,Hospital.Playlist.S01E11.2020.Netflix.WEB-DL.1080p.x264.DDP-AREY.mkv,1573666982,2025-03-04T10:23:17,series,1920x1080,h264,5280.416,2384 +/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,Hospital.Playlist.S01E06.2020.Netflix.WEB-DL.1080p.x264.DDP-AREY.mkv,1611373014,2025-03-04T10:17:19,series,1920x1080,h264,4927.008,2616 +/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,Hospital.Playlist.S01E10.2020.Netflix.WEB-DL.1080p.x264.DDP-AREY.mkv,1495434251,2025-03-04T10:22:06,series,1920x1080,h264,5496.352,2176 +/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,Hospital.Playlist.S01E07.2020.Netflix.WEB-DL.1080p.x264.DDP-AREY.mkv,1442164372,2025-03-04T10:17:46,series,1920x1080,h264,5064.096,2278 +/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,Hospital.Playlist.S01E01.2020.Netflix.WEB-DL.1080p.x264.DDP-AREY.mkv,1482762635,2025-03-04T10:24:10,series,1920x1080,h264,4971.04,2386 +/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,The.Hot.Spot.S01E04.2025.1080p.NF.WEB-DL.x264.AAC-ADWeb.mkv,2762801176,2025-03-13T11:54:14,series,1920x1080,h264,2755.2,8022 +/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,The.Hot.Spot.S01E03.2025.1080p.NF.WEB-DL.x264.AAC-ADWeb.mkv,2822055341,2025-03-13T11:50:09,series,1920x1080,h264,2755.2,8194 +/mnt/Downloads/series/主厨是名侦探.EP01-EP09.END.中日双语.1920X1080.HDTVrip-幻月字幕组/主厨是名侦探.EP09.END.中日双语.1920X1080.HDTVrip-幻月字幕组.mp4,主厨是名侦探.EP09.END.中日双语.1920X1080.HDTVrip-幻月字幕组.mp4,919976586,2021-08-08T16:52:31,series,1920x1080,h264,2303.424,3195 +/mnt/Downloads/series/主厨是名侦探.EP01-EP09.END.中日双语.1920X1080.HDTVrip-幻月字幕组/主厨是名侦探.EP02.中日双语.1920X1080.HDTVrip-幻月字幕组V2.mp4,主厨是名侦探.EP02.中日双语.1920X1080.HDTVrip-幻月字幕组V2.mp4,999369331,2021-08-08T16:53:13,series,1920x1080,h264,2553.951667,3130 +/mnt/Downloads/series/主厨是名侦探.EP01-EP09.END.中日双语.1920X1080.HDTVrip-幻月字幕组/主厨是名侦探.EP04.中日双语.1920X1080.HDTVrip-幻月字幕组.mp4,主厨是名侦探.EP04.中日双语.1920X1080.HDTVrip-幻月字幕组.mp4,907563325,2021-08-08T16:52:43,series,1920x1080,h264,2318.784,3131 +/mnt/Downloads/series/主厨是名侦探.EP01-EP09.END.中日双语.1920X1080.HDTVrip-幻月字幕组/主厨是名侦探.EP05.中日双语.1920X1080.HDTVrip-幻月字幕组.mp4,主厨是名侦探.EP05.中日双语.1920X1080.HDTVrip-幻月字幕组.mp4,921245882,2021-08-08T16:54:11,series,1920x1080,h264,2306.688,3195 +/mnt/Downloads/series/主厨是名侦探.EP01-EP09.END.中日双语.1920X1080.HDTVrip-幻月字幕组/主厨是名侦探.EP06.中日双语.1920X1080.HDTVrip-幻月字幕组.mp4,主厨是名侦探.EP06.中日双语.1920X1080.HDTVrip-幻月字幕组.mp4,925810021,2021-08-08T16:53:04,series,1920x1080,h264,2318.229333,3194 +/mnt/Downloads/series/主厨是名侦探.EP01-EP09.END.中日双语.1920X1080.HDTVrip-幻月字幕组/主厨是名侦探.EP07.中日双语.1920X1080.HDTVrip-幻月字幕组.mp4,主厨是名侦探.EP07.中日双语.1920X1080.HDTVrip-幻月字幕组.mp4,925835256,2021-08-08T16:54:16,series,1920x1080,h264,2318.315,3194 +/mnt/Downloads/series/主厨是名侦探.EP01-EP09.END.中日双语.1920X1080.HDTVrip-幻月字幕组/主厨是名侦探.EP01.中日双语.1920X1080.HDTVrip-幻月字幕组.mp4,主厨是名侦探.EP01.中日双语.1920X1080.HDTVrip-幻月字幕组.mp4,998681896,2021-08-08T16:53:25,series,1920x1080,h264,2551.936,3130 +/mnt/Downloads/series/主厨是名侦探.EP01-EP09.END.中日双语.1920X1080.HDTVrip-幻月字幕组/主厨是名侦探.EP03.中日双语.1920X1080.HDTVrip-幻月字幕组.mp4,主厨是名侦探.EP03.中日双语.1920X1080.HDTVrip-幻月字幕组.mp4,907142997,2021-08-08T16:53:03,series,1920x1080,h264,2318.015,3130 +/mnt/Downloads/series/主厨是名侦探.EP01-EP09.END.中日双语.1920X1080.HDTVrip-幻月字幕组/主厨是名侦探.EP08.中日双语.1920X1080.HDTVrip-幻月字幕组.mp4,主厨是名侦探.EP08.中日双语.1920X1080.HDTVrip-幻月字幕组.mp4,925950183,2021-08-08T16:54:24,series,1920x1080,h264,2318.181667,3195 +/mnt/Downloads/series/Shogun.2024.S01E05.Broken.to.the.Fist.1080p.DSNP.WEB-DL.DDP5.1.H.264-APEX.mkv,Shogun.2024.S01E05.Broken.to.the.Fist.1080p.DSNP.WEB-DL.DDP5.1.H.264-APEX.mkv,2919358859,2024-03-19T11:00:11,series,1920x1080,h264,3375.552,6918 +/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,The.Swarm.S01E03.1080p.SRF.WEB-DL.AAC2.0.H.264-KORPOS.mkv,2170174500,2023-04-11T15:14:42,series,1920x1080,h264,2837.36,6118 +/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,The.Swarm.S01E06.1080p.SRF.WEB-DL.AAC2.0.H.264-KORPOS.mkv,2137889427,2023-04-11T15:15:32,series,1920x1080,h264,2800.64,6106 +/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,The.Swarm.S01E08.1080p.SRF.WEB-DL.AAC2.0.H.264-KORPOS.mkv,2124403690,2023-04-11T15:15:38,series,1920x1080,h264,2780.6,6112 +/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,The.Swarm.S01E05.1080p.SRF.WEB-DL.AAC2.0.H.264-KORPOS.mkv,2099613954,2023-04-11T15:15:42,series,1920x1080,h264,2744.08,6121 +/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,The.Swarm.S01E01.1080p.SRF.WEB-DL.AAC2.0.H.264-KORPOS.mkv,2053505807,2023-04-11T15:14:37,series,1920x1080,h264,2681.44,6126 +/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,The.Swarm.S01E02.1080p.SRF.WEB-DL.AAC2.0.H.264-KORPOS.mkv,2126176913,2023-04-11T15:14:03,series,1920x1080,h264,2778.08,6122 +/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,The.Swarm.S01E07.1080p.SRF.WEB-DL.AAC2.0.H.264-KORPOS.mkv,2145986244,2023-04-11T15:15:36,series,1920x1080,h264,2802.88,6125 +/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,The.Swarm.S01E04.1080p.SRF.WEB-DL.AAC2.0.H.264-KORPOS.mkv,2008417441,2023-04-11T15:15:38,series,1920x1080,h264,2627.92,6114 +/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,[认罪之罪].The.Price.of.Confession.2025.S01E12.1080p.NF.WEB-DL.H264.DDP5.1.Atmos-UBWEB.mkv,2184524171,2025-12-07T14:34:29,series,1920x1080,h264,3121.152,5599 +/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,[认罪之罪].The.Price.of.Confession.2025.S01E03.1080p.NF.WEB-DL.H264.DDP5.1.Atmos-UBWEB.mkv,2182089726,2025-12-07T14:34:45,series,1920x1080,h264,3113.728,5606 +/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,[认罪之罪].The.Price.of.Confession.2025.S01E05.1080p.NF.WEB-DL.H264.DDP5.1.Atmos-UBWEB.mkv,2038722476,2025-12-07T14:34:59,series,1920x1080,h264,2938.976,5549 +/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,[认罪之罪].The.Price.of.Confession.2025.S01E09.1080p.NF.WEB-DL.H264.DDP5.1.Atmos-UBWEB.mkv,1947807465,2025-12-07T14:32:36,series,1920x1080,h264,2795.808,5573 +/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,[认罪之罪].The.Price.of.Confession.2025.S01E02.1080p.NF.WEB-DL.H264.DDP5.1.Atmos-UBWEB.mkv,2137584120,2025-12-07T14:35:36,series,1920x1080,h264,3075.808,5559 +/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,[认罪之罪].The.Price.of.Confession.2025.S01E04.1080p.NF.WEB-DL.H264.DDP5.1.Atmos-UBWEB.mkv,2166929867,2025-12-07T14:35:57,series,1920x1080,h264,3117.152,5561 +/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,[认罪之罪].The.Price.of.Confession.2025.S01E08.1080p.NF.WEB-DL.H264.DDP5.1.Atmos-UBWEB.mkv,2319441796,2025-12-07T14:35:37,series,1920x1080,h264,3312.576,5601 +/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,[认罪之罪].The.Price.of.Confession.2025.S01E10.1080p.NF.WEB-DL.H264.DDP5.1.Atmos-UBWEB.mkv,1950766528,2025-12-07T14:35:36,series,1920x1080,h264,2790.848,5591 +/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,[认罪之罪].The.Price.of.Confession.2025.S01E07.1080p.NF.WEB-DL.H264.DDP5.1.Atmos-UBWEB.mkv,2106457459,2025-12-07T14:36:01,series,1920x1080,h264,3068.928,5491 +/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,[认罪之罪].The.Price.of.Confession.2025.S01E01.1080p.NF.WEB-DL.H264.DDP5.1.Atmos-UBWEB.mkv,2524990094,2025-12-07T14:35:27,series,1920x1080,h264,3604.128,5604 +/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,[认罪之罪].The.Price.of.Confession.2025.S01E11.1080p.NF.WEB-DL.H264.DDP5.1.Atmos-UBWEB.mkv,2161367717,2025-12-07T14:35:37,series,1920x1080,h264,3091.456,5593 +/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,[认罪之罪].The.Price.of.Confession.2025.S01E06.1080p.NF.WEB-DL.H264.DDP5.1.Atmos-UBWEB.mkv,2300124392,2025-12-07T14:35:23,series,1920x1080,h264,3275.168,5618 +/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,When.Life.Gives.You.Tangerines.S01E16.2025.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-ADWeb.mkv,3525645811,2025-05-17T16:32:59,series,1920x1080,h264,5134.176,5493 +/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,When.Life.Gives.You.Tangerines.S01E12.2025.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-ADWeb.mkv,3331293517,2025-05-17T16:13:40,series,,,, +/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,When.Life.Gives.You.Tangerines.S01E15.2025.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-ADWeb.mkv,2831274678,2025-05-17T16:30:55,series,1920x1080,h264,4178.4,5420 +/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,When.Life.Gives.You.Tangerines.S01E13.2025.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-ADWeb.mkv,2518506230,2025-05-17T16:23:53,series,1920x1080,h264,3743.392,5382 +/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,When.Life.Gives.You.Tangerines.S01E14.2025.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-ADWeb.mkv,2647703632,2025-05-17T16:27:57,series,1920x1080,h264,3924.96,5396 +/mnt/Downloads/series/RoOT 第06話 1080p KKTV WEB-DL H264 AAC.mkv,RoOT 第06話 1080p KKTV WEB-DL H264 AAC.mkv,560692420,2024-05-21T14:57:09,series,1920x1080,h264,1395.008,3215 +/mnt/Downloads/series/Taxi.Driver.S03E01.1080p.WEB-DL.AAC2.0.H.264-CHIOS.mkv,Taxi.Driver.S03E01.1080p.WEB-DL.AAC2.0.H.264-CHIOS.mkv,4920032486,2025-12-23T04:55:44,series,1920x1080,h264,4012.041,9810 +/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,The.Bear.S01E08.Braciole.1080p.DSNP.WEB-DL.DDP5.1.H.264-NTb.mkv,2007561640,2023-07-29T12:13:38,series,1920x1080,h264,2857.504,5620 +/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,The.Bear.S01E07.Review.1080p.DSNP.WEB-DL.DDP5.1.H.264-NTb.mkv,992634129,2023-07-29T12:13:43,series,1920x1080,h264,1223.744,6489 +/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,The.Bear.S01E03.Brigade.1080p.DSNP.WEB-DL.DDP5.1.H.264-NTb.mkv,1212699087,2023-07-29T12:13:26,series,1920x1080,h264,1763.2,5502 +/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,The.Bear.S01E05.Sheridan.1080p.DSNP.WEB-DL.DDP5.1.H.264-NTb.mkv,1061327495,2023-07-29T12:13:11,series,1920x1080,h264,1520.032,5585 +/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,The.Bear.S01E01.System.1080p.DSNP.WEB-DL.DDP5.1.H.264-NTb.mkv,1405894102,2023-07-29T11:45:30,series,1920x1080,h264,1667.104,6746 +/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,The.Bear.S01E04.Dogs.1080p.DSNP.WEB-DL.DDP5.1.H.264-NTb.mkv,1299143288,2023-07-29T12:13:35,series,1920x1080,h264,1805.152,5757 +/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,The.Bear.S01E06.Ceres.1080p.DSNP.WEB-DL.DDP5.1.H.264-NTb.mkv,1313670330,2023-07-29T12:13:45,series,1920x1080,h264,1846.24,5692 +/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,The.Bear.S01E02.Hands.1080p.DSNP.WEB-DL.DDP5.1.H.264-NTb.mkv,1371722527,2023-07-29T12:13:22,series,1920x1080,h264,1879.808,5837 +/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,Live.Up.To.Your.Name.S01E07.1080p.NF.WEB-DL.DDP2.0.x264-Ao.mkv,2483103327,2022-08-16T07:07:25,series,1920x1080,h264,4170.016,4763 +/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,Live.Up.To.Your.Name.S01E14.1080p.NF.WEB-DL.DDP2.0.x264-Ao.mkv,2160847303,2022-08-16T07:07:35,series,1920x1080,h264,4201.504,4114 +/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,Live.Up.To.Your.Name.S01E13.1080p.NF.WEB-DL.DDP2.0.x264-Ao.mkv,2855623149,2022-08-16T07:07:36,series,1920x1080,h264,4168.352,5480 +/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,Live.Up.To.Your.Name.S01E09.1080p.NF.WEB-DL.DDP2.0.x264-Ao.mkv,2296708652,2022-08-16T07:07:27,series,1920x1080,h264,4042.144,4545 +/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,Live.Up.To.Your.Name.S01E04.1080p.NF.WEB-DL.DDP2.0.x264-Ao.mkv,3097837899,2022-08-16T07:07:36,series,1920x1080,h264,3924.512,6314 +/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,Live.Up.To.Your.Name.S01E03.1080p.NF.WEB-DL.DDP2.0.x264-Ao.mkv,2691722339,2022-08-16T07:07:44,series,1920x1080,h264,3924.512,5486 +/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,Live.Up.To.Your.Name.S01E10.1080p.NF.WEB-DL.DDP2.0.x264-Ao.mkv,2100660531,2022-08-16T07:06:38,series,1920x1080,h264,4053.28,4146 +/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,Live.Up.To.Your.Name.S01E12.1080p.NF.WEB-DL.DDP2.0.x264-Ao.mkv,2484806155,2022-08-16T07:07:13,series,1920x1080,h264,4172.704,4763 +/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,Live.Up.To.Your.Name.S01E08.1080p.NF.WEB-DL.DDP2.0.x264-Ao.mkv,3198045214,2022-08-16T07:07:34,series,1920x1080,h264,4320.672,5921 +/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,Live.Up.To.Your.Name.S01E15.1080p.NF.WEB-DL.DDP2.0.x264-Ao.mkv,2361636778,2022-08-16T07:06:48,series,1920x1080,h264,4158.624,4543 +/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,Live.Up.To.Your.Name.S01E06.1080p.NF.WEB-DL.DDP2.0.x264-Ao.mkv,2344219603,2022-08-16T07:07:32,series,1920x1080,h264,4128.032,4543 +/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,Live.Up.To.Your.Name.S01E01.1080p.NF.WEB-DL.DDP2.0.x264-Ao.mkv,3358879645,2022-08-16T07:06:59,series,1920x1080,h264,4063.392,6612 +/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,Live.Up.To.Your.Name.S01E16.1080p.NF.WEB-DL.DDP2.0.x264-Ao.mkv,3263648700,2022-08-16T07:07:41,series,1920x1080,h264,4988.96,5233 +/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,Live.Up.To.Your.Name.S01E11.1080p.NF.WEB-DL.DDP2.0.x264-Ao.mkv,3853425764,2022-08-16T07:07:31,series,1920x1080,h264,4243.488,7264 +/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,Live.Up.To.Your.Name.S01E02.1080p.NF.WEB-DL.DDP2.0.x264-Ao.mkv,2644631287,2022-08-16T07:07:26,series,1920x1080,h264,3858.688,5482 +/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,Live.Up.To.Your.Name.S01E05.1080p.NF.WEB-DL.DDP2.0.x264-Ao.mkv,2331991300,2022-08-16T07:07:32,series,1920x1080,h264,3916.96,4762 +/mnt/Downloads/series/(ドラマ) 時をかけるな、恋人たち 第07話 「私は明日、20年後のきみとデートしない」 (1440x1080i x264-AAC)-DoA.mkv,(ドラマ) 時をかけるな、恋人たち 第07話 「私は明日、20年後のきみとデートしない」 (1440x1080i x264-AAC)-DoA.mkv,940448904,2024-01-05T12:55:17,series,1440x1080,h264,1390.022,5412 +/mnt/Downloads/series/豺狼的日子.第一季/The.Day.Of.The.Jackal.S01E07.1080p.WEB-DL.DDP5.1.Atmos.x265.10bit-Yumi@FRDS.mkv,The.Day.Of.The.Jackal.S01E07.1080p.WEB-DL.DDP5.1.Atmos.x265.10bit-Yumi@FRDS.mkv,742849937,2024-12-30T12:20:34,series,1920x1080,hevc,2759.28,2153 +/mnt/Downloads/series/豺狼的日子.第一季/The.Day.Of.The.Jackal.S01E06.1080p.WEB-DL.DDP5.1.Atmos.x265.10bit-Yumi@FRDS.mkv,The.Day.Of.The.Jackal.S01E06.1080p.WEB-DL.DDP5.1.Atmos.x265.10bit-Yumi@FRDS.mkv,810248758,2024-12-30T12:19:18,series,1920x1080,hevc,2981.72,2173 +/mnt/Downloads/series/豺狼的日子.第一季/The.Day.Of.The.Jackal.S01E10.1080p.WEB-DL.DDP5.1.Atmos.x265.10bit-Yumi@FRDS.mkv,The.Day.Of.The.Jackal.S01E10.1080p.WEB-DL.DDP5.1.Atmos.x265.10bit-Yumi@FRDS.mkv,1172428251,2024-12-30T12:26:46,series,1920x1080,hevc,3704.6,2531 +/mnt/Downloads/series/豺狼的日子.第一季/The.Day.Of.The.Jackal.S01E05.1080p.WEB-DL.DDP5.1.Atmos.x265.10bit-Yumi@FRDS.mkv,The.Day.Of.The.Jackal.S01E05.1080p.WEB-DL.DDP5.1.Atmos.x265.10bit-Yumi@FRDS.mkv,918631689,2024-12-30T12:17:35,series,1920x1080,hevc,2960.48,2482 +/mnt/Downloads/series/豺狼的日子.第一季/The.Day.Of.The.Jackal.S01E04.1080p.WEB-DL.DDP5.1.Atmos.x265.10bit-Yumi@FRDS.mkv,The.Day.Of.The.Jackal.S01E04.1080p.WEB-DL.DDP5.1.Atmos.x265.10bit-Yumi@FRDS.mkv,828448008,2024-12-30T12:16:30,series,1920x1080,hevc,2978.16,2225 +/mnt/Downloads/series/豺狼的日子.第一季/The.Day.Of.The.Jackal.S01E03.1080p.WEB-DL.DDP5.1.Atmos.x265.10bit-Yumi@FRDS.mkv,The.Day.Of.The.Jackal.S01E03.1080p.WEB-DL.DDP5.1.Atmos.x265.10bit-Yumi@FRDS.mkv,942092549,2024-12-30T12:14:46,series,1920x1080,hevc,3022.48,2493 +/mnt/Downloads/series/豺狼的日子.第一季/The.Day.Of.The.Jackal.S01E02.1080p.WEB-DL.DDP5.1.Atmos.x265.10bit-Yumi@FRDS.mkv,The.Day.Of.The.Jackal.S01E02.1080p.WEB-DL.DDP5.1.Atmos.x265.10bit-Yumi@FRDS.mkv,932500313,2024-12-30T12:12:42,series,1920x1080,hevc,3184.56,2342 +/mnt/Downloads/series/豺狼的日子.第一季/The.Day.Of.The.Jackal.S01E01.1080p.WEB-DL.DDP5.1.Atmos.x265.10bit-Yumi@FRDS.mkv,The.Day.Of.The.Jackal.S01E01.1080p.WEB-DL.DDP5.1.Atmos.x265.10bit-Yumi@FRDS.mkv,1128499219,2024-12-30T12:11:23,series,1920x1080,hevc,3426.72,2634 +/mnt/Downloads/series/豺狼的日子.第一季/The.Day.Of.The.Jackal.S01E08.1080p.WEB-DL.DDP5.1.Atmos.x265.10bit-Yumi@FRDS.mkv,The.Day.Of.The.Jackal.S01E08.1080p.WEB-DL.DDP5.1.Atmos.x265.10bit-Yumi@FRDS.mkv,1838679517,2024-12-30T12:24:11,series,1920x1080,hevc,2872.28,5121 +/mnt/Downloads/series/豺狼的日子.第一季/The.Day.Of.The.Jackal.S01E09.1080p.WEB-DL.DDP5.1.Atmos.x265.10bit-Yumi@FRDS.mkv,The.Day.Of.The.Jackal.S01E09.1080p.WEB-DL.DDP5.1.Atmos.x265.10bit-Yumi@FRDS.mkv,1232472369,2024-12-30T12:26:09,series,1920x1080,hevc,2850.16,3459 +/mnt/Downloads/series/俺の話は長い.S01.1080p.KKTV.WEB-DL.AAC2.0.x264-xiaopie@CHDWEB/俺の話は長い.S01E01.1080p.KKTV.WEB-DL.AAC2.0.x264-xiaopie@CHDWEB.mkv,俺の話は長い.S01E01.1080p.KKTV.WEB-DL.AAC2.0.x264-xiaopie@CHDWEB.mkv,1103871563,2025-12-17T13:00:56,series,1920x1080,h264,2755.187,3205 +/mnt/Downloads/series/俺の話は長い.S01.1080p.KKTV.WEB-DL.AAC2.0.x264-xiaopie@CHDWEB/俺の話は長い.S01E05.1080p.KKTV.WEB-DL.AAC2.0.x264-xiaopie@CHDWEB.mkv,俺の話は長い.S01E05.1080p.KKTV.WEB-DL.AAC2.0.x264-xiaopie@CHDWEB.mkv,1108517562,2025-12-17T12:57:29,series,1920x1080,h264,2765.125,3207 +/mnt/Downloads/series/俺の話は長い.S01.1080p.KKTV.WEB-DL.AAC2.0.x264-xiaopie@CHDWEB/俺の話は長い.S01E09.1080p.KKTV.WEB-DL.AAC2.0.x264-xiaopie@CHDWEB.mkv,俺の話は長い.S01E09.1080p.KKTV.WEB-DL.AAC2.0.x264-xiaopie@CHDWEB.mkv,1095604582,2025-12-17T13:05:13,series,1920x1080,h264,2735.194,3204 +/mnt/Downloads/series/俺の話は長い.S01.1080p.KKTV.WEB-DL.AAC2.0.x264-xiaopie@CHDWEB/俺の話は長い.S01E02.1080p.KKTV.WEB-DL.AAC2.0.x264-xiaopie@CHDWEB.mkv,俺の話は長い.S01E02.1080p.KKTV.WEB-DL.AAC2.0.x264-xiaopie@CHDWEB.mkv,1105295539,2025-12-17T12:51:36,series,1920x1080,h264,2755.14,3209 +/mnt/Downloads/series/俺の話は長い.S01.1080p.KKTV.WEB-DL.AAC2.0.x264-xiaopie@CHDWEB/俺の話は長い.S01E06.1080p.KKTV.WEB-DL.AAC2.0.x264-xiaopie@CHDWEB.mkv,俺の話は長い.S01E06.1080p.KKTV.WEB-DL.AAC2.0.x264-xiaopie@CHDWEB.mkv,1109736858,2025-12-17T12:58:50,series,1920x1080,h264,2765.125,3210 +/mnt/Downloads/series/俺の話は長い.S01.1080p.KKTV.WEB-DL.AAC2.0.x264-xiaopie@CHDWEB/俺の話は長い.S01E04.1080p.KKTV.WEB-DL.AAC2.0.x264-xiaopie@CHDWEB.mkv,俺の話は長い.S01E04.1080p.KKTV.WEB-DL.AAC2.0.x264-xiaopie@CHDWEB.mkv,1109464205,2025-12-17T12:55:59,series,1920x1080,h264,2765.078,3209 +/mnt/Downloads/series/俺の話は長い.S01.1080p.KKTV.WEB-DL.AAC2.0.x264-xiaopie@CHDWEB/俺の話は長い.S01E10.1080p.KKTV.WEB-DL.AAC2.0.x264-xiaopie@CHDWEB.mkv,俺の話は長い.S01E10.1080p.KKTV.WEB-DL.AAC2.0.x264-xiaopie@CHDWEB.mkv,1098456859,2025-12-17T13:05:24,series,1920x1080,h264,2735.194,3212 +/mnt/Downloads/series/俺の話は長い.S01.1080p.KKTV.WEB-DL.AAC2.0.x264-xiaopie@CHDWEB/俺の話は長い.S01E08.1080p.KKTV.WEB-DL.AAC2.0.x264-xiaopie@CHDWEB.mkv,俺の話は長い.S01E08.1080p.KKTV.WEB-DL.AAC2.0.x264-xiaopie@CHDWEB.mkv,1101496203,2025-12-17T13:03:06,series,1920x1080,h264,2738.166,3218 +/mnt/Downloads/series/俺の話は長い.S01.1080p.KKTV.WEB-DL.AAC2.0.x264-xiaopie@CHDWEB/俺の話は長い.S01E07.1080p.KKTV.WEB-DL.AAC2.0.x264-xiaopie@CHDWEB.mkv,俺の話は長い.S01E07.1080p.KKTV.WEB-DL.AAC2.0.x264-xiaopie@CHDWEB.mkv,1116790036,2025-12-17T12:50:52,series,1920x1080,h264,2765.125,3231 +/mnt/Downloads/series/俺の話は長い.S01.1080p.KKTV.WEB-DL.AAC2.0.x264-xiaopie@CHDWEB/俺の話は長い.S01E03.1080p.KKTV.WEB-DL.AAC2.0.x264-xiaopie@CHDWEB.mkv,俺の話は長い.S01E03.1080p.KKTV.WEB-DL.AAC2.0.x264-xiaopie@CHDWEB.mkv,1109005867,2025-12-17T12:54:16,series,1920x1080,h264,2765.078,3208 +/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,Big.Mouth.S01E14.2022.Disney+.WEB-DL.1080p.H264.AAC-HDCTV.mkv,2838347512,2023-06-06T11:06:12,series,1920x1080,h264,3832.725,5924 +/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,Big.Mouth.S01E10.2022.Disney+.WEB-DL.1080p.H264.AAC-HDCTV.mkv,2956957485,2023-06-06T11:06:12,series,1920x1080,h264,3775.637,6265 +/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,Big.Mouth.S01E07.2022.Disney+.WEB-DL.1080p.H264.AAC-HDCTV.mkv,3216777155,2023-06-06T11:06:13,series,1920x1080,h264,4262.912,6036 +/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,Big.Mouth.S01E03.2022.Disney+.WEB-DL.1080p.H264.AAC-HDCTV.mkv,3370761237,2023-06-06T11:06:09,series,1920x1080,h264,4293.312,6280 +/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,Big.Mouth.S01E06.2022.Disney+.WEB-DL.1080p.H264.AAC-HDCTV.mkv,3095122001,2023-06-06T11:06:12,series,1920x1080,h264,3938.432,6287 +/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,Big.Mouth.S01E02.2022.Disney+.WEB-DL.1080p.H264.AAC-HDCTV.mkv,3574466716,2023-06-06T11:06:13,series,1920x1080,h264,4415.616,6476 +/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,Big.Mouth.S01E15.2022.Disney+.WEB-DL.1080p.H264.AAC-HDCTV.mkv,3118825018,2023-06-06T11:06:12,series,1920x1080,h264,4208.81,5928 +/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,Big.Mouth.S01E11.2022.Disney+.WEB-DL.1080p.H264.AAC-HDCTV.mkv,3369493277,2023-06-06T11:06:12,series,1920x1080,h264,4304.128,6262 +/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,Big.Mouth.S01E04.2022.Disney+.WEB-DL.1080p.H264.AAC-HDCTV.mkv,3190171205,2023-06-06T11:06:11,series,1920x1080,h264,4096.405,6230 +/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,Big.Mouth.S01E08.2022.Disney+.WEB-DL.1080p.H264.AAC-HDCTV.mkv,3553089488,2023-06-06T11:06:11,series,1920x1080,h264,4404.437,6453 +/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,Big.Mouth.S01E13.2022.Disney+.WEB-DL.1080p.H264.AAC-HDCTV.mkv,2870819064,2023-06-06T11:06:05,series,1920x1080,h264,3814.848,6020 +/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,Big.Mouth.S01E16.2022.Disney+.WEB-DL.1080p.H264.AAC-HDCTV.mkv,3227689378,2023-06-06T11:06:08,series,1920x1080,h264,4285.269,6025 +/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,Big.Mouth.S01E09.2022.Disney+.WEB-DL.1080p.H264.AAC-HDCTV.mkv,2988458210,2023-06-06T11:06:13,series,1920x1080,h264,3803.008,6286 +/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,Big.Mouth.S01E12.2022.Disney+.WEB-DL.1080p.H264.AAC-HDCTV.mkv,3499336162,2023-06-06T11:06:10,series,1920x1080,h264,4372.991,6401 +/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,Big.Mouth.S01E05.2022.Disney+.WEB-DL.1080p.H264.AAC-HDCTV.mkv,3078743680,2023-06-06T11:06:10,series,1920x1080,h264,4216.49,5841 +/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,Big.Mouth.S01E01.2022.Disney+.WEB-DL.1080p.H264.AAC-HDCTV.mkv,3010948651,2023-06-06T11:06:15,series,1920x1080,h264,3752.192,6419 +/mnt/Downloads/series/Dark.Matter.2024.S01E03.The.Box.1080p.ATVP.WEB-DL.DDP5.1.H.264-NTb.mkv,Dark.Matter.2024.S01E03.The.Box.1080p.ATVP.WEB-DL.DDP5.1.H.264-NTb.mkv,4027846148,2024-06-08T05:40:46,series,1920x960,h264,2976.807,10824 +/mnt/Downloads/series/Reacher.S03E01.Persuader.1080p.AMZN.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv,Reacher.S03E01.Persuader.1080p.AMZN.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv,3803405170,2025-02-23T11:58:03,series,1920x960,h264,3206.662,9488 +/mnt/Downloads/series/True.Detective.S04E01.Night.Country.Part.1.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv,True.Detective.S04E01.Night.Country.Part.1.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv,4426175850,2024-01-20T10:07:43,series,1920x960,h264,3510.257,10087 +/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,True.Detective.S04E06.Night.Country.Part.6.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv,5462637394,2024-02-19T11:41:51,series,1920x960,h264,4521.434,9665 +/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,Sell.Your.Haunted.House.S01E01.1080p.WEB-DL.AAC2.0.H264-TTG.mkv,5134874610,2021-04-24T10:09:16,series,1920x1080,h264,3935.132,10439 +/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,Sell.Your.Haunted.House.S01E04.1080p.WEB-DL.AAC2.0.H264-TTG.mkv,4807022144,2021-04-24T10:09:17,series,1920x1080,h264,3687.132,10429 +/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,Sell.Your.Haunted.House.S01E02.1080p.WEB-DL.AAC2.0.H264-TTG.mkv,5111268205,2021-04-24T10:09:13,series,1920x1080,h264,3916.132,10441 +/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,Sell.Your.Haunted.House.S01E03.1080p.WEB-DL.AAC2.0.H264-TTG.mkv,4795481550,2021-04-24T10:09:11,series,1920x1080,h264,3673.132,10444 +/mnt/Downloads/series/こっち向いてよ向井くん EP04 720p HDTV x264 AAC-DoA.mkv,こっち向いてよ向井くん EP04 720p HDTV x264 AAC-DoA.mkv,1634913409,2024-01-12T11:54:20,series,1280x720,h264,3109.809,4205 +/mnt/Downloads/series/RoOT 第03話 1080p KKTV WEB-DL H264 AAC.mkv,RoOT 第03話 1080p KKTV WEB-DL H264 AAC.mkv,555806040,2024-04-21T13:15:00,series,1920x1080,h264,1395.008,3187 +/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,Light.Shop.S01E02.2024.2160p.DSNP.WEB-DL.DDP5.1.Atmos.HDR.H.265-HHWEB.mkv,4286918904,2024-12-22T04:17:32,series,3840x2160,hevc,2557.632,13409 +/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,Light.Shop.S01E05.2024.2160p.DSNP.WEB-DL.DDP5.1.Atmos.HDR.H.265-HHWEB.mkv,4808117923,2024-12-22T05:16:02,series,3840x2160,hevc,2710.816,14189 +/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,Light.Shop.S01E03.2024.2160p.DSNP.WEB-DL.DDP5.1.Atmos.HDR.H.265-HHWEB.mkv,4130705743,2024-12-22T04:25:08,series,3840x2160,hevc,2443.776,13522 +/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,Light.Shop.S01E04.2024.2160p.DSNP.WEB-DL.DDP5.1.Atmos.HDR.H.265-HHWEB.mkv,3931790324,2024-12-22T05:16:00,series,3840x2160,hevc,2368.384,13280 +/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,Light.Shop.S01E07.2024.2160p.DSNP.WEB-DL.DDP5.1.Atmos.HDR.H.265-HHWEB.mkv,6109217178,2024-12-22T05:16:06,series,3840x2160,hevc,3538.304,13812 +/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,Light.Shop.S01E08.2024.2160p.DSNP.WEB-DL.DDP5.1.Atmos.HDR.H.265-HHWEB.mkv,7784385017,2024-12-22T05:16:04,series,3840x2160,hevc,4547.104,13695 +/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,Light.Shop.S01E06.2024.2160p.DSNP.WEB-DL.DDP5.1.Atmos.HDR.H.265-HHWEB.mkv,5403053001,2024-12-22T05:16:03,series,3840x2160,hevc,3015.616,14333 +/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,Light.Shop.S01E01.2024.2160p.DSNP.WEB-DL.DDP5.1.Atmos.HDR.H.265-HHWEB.mkv,4330105410,2024-12-22T04:16:51,series,3840x2160,hevc,2619.744,13222 +/mnt/Downloads/series/Shogun.2024.S01E03.Tomorrow.Is.Tomorrow.1080p.DSNP.WEB-DL.DDP5.1.H.264-APEX.mkv,Shogun.2024.S01E03.Tomorrow.Is.Tomorrow.1080p.DSNP.WEB-DL.DDP5.1.H.264-APEX.mkv,2832520487,2024-03-05T11:33:38,series,1920x1080,h264,3174.304,7138 +/mnt/Downloads/series/(ドラマ) 時をかけるな、恋人たち 第04話 「ある日浅草のどこかで」 (1440x1080i x264-AAC)-DoA.mkv,(ドラマ) 時をかけるな、恋人たち 第04話 「ある日浅草のどこかで」 (1440x1080i x264-AAC)-DoA.mkv,832150418,2024-01-05T12:23:07,series,1440x1080,h264,1389.755,4790 +/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,Nine.Puzzles.S01E04.Episode.4.1080p.Disney+.WEB-DL.DDP.5.1.Atmos.H.264-CHDWEB.mkv,2439901003,2025-06-13T14:22:39,series,1920x1080,h264,3751.776,5202 +/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,Nine.Puzzles.S01E09.Episode.9.1080p.Disney+.WEB-DL.DDP.5.1.Atmos.H.264-CHDWEB.mkv,1963201376,2025-06-13T13:05:15,series,1920x1080,h264,2927.264,5365 +/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,Nine.Puzzles.S01E05.Episode.5.1080p.Disney+.WEB-DL.DDP.5.1.Atmos.H.264-CHDWEB.mkv,2155083408,2025-06-13T14:23:13,series,1920x1080,h264,3455.328,4989 +/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,Nine.Puzzles.S01E08.Episode.8.1080p.Disney+.WEB-DL.DDP.5.1.Atmos.H.264-CHDWEB.mkv,1857364106,2025-06-13T13:05:00,series,1920x1080,h264,3071.84,4837 +/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,Nine.Puzzles.S01E01.Episode.1.1080p.Disney+.WEB-DL.DDP.5.1.Atmos.H.264-CHDWEB.mkv,2174756222,2025-06-13T13:18:08,series,1920x1080,h264,3231.36,5384 +/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,Nine.Puzzles.S01E07.Episode.7.1080p.Disney+.WEB-DL.DDP.5.1.Atmos.H.264-CHDWEB.mkv,1922633290,2025-06-13T13:04:48,series,1920x1080,h264,3178.688,4838 +/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,Nine.Puzzles.S01E10.Episode.10.1080p.Disney+.WEB-DL.DDP.5.1.Atmos.H.264-CHDWEB.mkv,2068621820,2025-06-13T13:04:49,series,1920x1080,h264,2930.624,5646 +/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,Nine.Puzzles.S01E03.Episode.3.1080p.Disney+.WEB-DL.DDP.5.1.Atmos.H.264-CHDWEB.mkv,1997768914,2025-06-13T14:23:15,series,1920x1080,h264,3127.712,5109 +/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,Nine.Puzzles.S01E11.Episode.11.1080p.Disney+.WEB-DL.DDP.5.1.Atmos.H.264-CHDWEB.mkv,1964557415,2025-06-13T13:04:21,series,1920x1080,h264,3005.216,5229 +/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,Nine.Puzzles.S01E02.Episode.2.1080p.Disney+.WEB-DL.DDP.5.1.Atmos.H.264-CHDWEB.mkv,1886955654,2025-06-13T13:32:10,series,1920x1080,h264,2994.534,5041 +/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,Nine.Puzzles.S01E06.Episode.6.1080p.Disney+.WEB-DL.DDP.5.1.Atmos.H.264-CHDWEB.mkv,2199852027,2025-06-13T14:23:11,series,1920x1080,h264,3482.784,5053 +/mnt/Downloads/series/Shrink-精神科医ヨワイ- Complete 1080p AMZN WEB-DL H264 AAC-e@DoA/Shrink-精神科医ヨワイ- 第01話 1080p AMZN WEB-DL H264 AAC-e@DoA.mp4,Shrink-精神科医ヨワイ- 第01話 1080p AMZN WEB-DL H264 AAC-e@DoA.mp4,1272777333,2024-11-08T00:45:50,series,1920x1080,h264,2940.032,3463 +/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,Shrink-精神科医ヨワイ- 第03話 END 1080p AMZN WEB-DL H264 AAC-e@DoA.mp4,1166226742,2024-11-08T00:47:35,series,1920x1080,h264,2940.064,3173 +/mnt/Downloads/series/Shrink-精神科医ヨワイ- Complete 1080p AMZN WEB-DL H264 AAC-e@DoA/Shrink-精神科医ヨワイ- 第02話 1080p AMZN WEB-DL H264 AAC-e@DoA.mp4,Shrink-精神科医ヨワイ- 第02話 1080p AMZN WEB-DL H264 AAC-e@DoA.mp4,1197589192,2024-11-08T00:47:32,series,1920x1080,h264,2940.032,3258 +/mnt/Downloads/series/RoOT 第09話 1080p KKTV WEB-DL H264 AAC.mkv,RoOT 第09話 1080p KKTV WEB-DL H264 AAC.mkv,558172153,2024-06-05T14:56:12,series,1920x1080,h264,1395.124,3200 +/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,My.Undead.Yokai.Girlfriend.S01E02.Happy.Death.Ritual.1080p.AMZN.WEB-DL.DDP5.1.H.264-ADWeb.mkv,2409316640,2024-03-26T14:51:13,series,1920x1080,h264,2099.808,9179 +/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,My.Undead.Yokai.Girlfriend.S01E07.Premonition.of.a.Storm.1080p.AMZN.WEB-DL.DDP5.1.H.264-ADWeb.mkv,2562359181,2024-03-26T14:51:05,series,1920x1080,h264,2112.0,9705 +/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,My.Undead.Yokai.Girlfriend.S01E08.If.You.Love.Someone.1080p.AMZN.WEB-DL.DDP5.1.H.264-ADWeb.mkv,2604176242,2024-03-26T14:51:07,series,1920x1080,h264,2111.008,9868 +/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,My.Undead.Yokai.Girlfriend.S01E03.Ground.Rules.1080p.AMZN.WEB-DL.DDP5.1.H.264-ADWeb.mkv,2419143233,2024-03-26T14:51:11,series,1920x1080,h264,2080.32,9302 +/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,My.Undead.Yokai.Girlfriend.S01E05.Happy.Birthday.Detective.Inukai.1080p.AMZN.WEB-DL.DDP5.1.H.264-ADWeb.mkv,2418513562,2024-03-26T14:51:12,series,1920x1080,h264,2109.984,9169 +/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,My.Undead.Yokai.Girlfriend.S01E01.Meet.Creepy-Cute.1080p.AMZN.WEB-DL.DDP5.1.H.264-ADWeb.mkv,2611303095,2024-03-26T14:51:14,series,1920x1080,h264,2261.088,9239 +/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,My.Undead.Yokai.Girlfriend.S01E04.Baiting.and.Dating.1080p.AMZN.WEB-DL.DDP5.1.H.264-ADWeb.mkv,2287503901,2024-03-26T14:50:59,series,1920x1080,h264,2063.168,8869 +/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,My.Undead.Yokai.Girlfriend.S01E06.Broken.Dreams.1080p.AMZN.WEB-DL.DDP5.1.H.264-ADWeb.mkv,2062837030,2024-03-26T14:51:10,series,1920x1080,h264,1846.016,8939 +/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,Moon.Knight.S01E06.Gods.and.Monsters.2160p.WEB-DL.DDP5.1.Atmos.H.265-TBD.mkv,6426632761,2022-05-04T10:27:54,series,3840x2160,hevc,2547.872,20178 +/mnt/Downloads/series/Dark.Matter.2024.S01E05.Worldless.1080p.ATVP.WEB-DL.DDP5.1.H.264-NTb.mkv,Dark.Matter.2024.S01E05.Worldless.1080p.ATVP.WEB-DL.DDP5.1.H.264-NTb.mkv,4518126198,2024-06-08T05:54:19,series,1920x960,h264,3336.125,10834 +/mnt/Downloads/series/Westworld.S04.1080p.HMAX.WEB-DL.x264.DD5.1-PTerWEB/Westworld.S04E06.1080p.HMAX.WEB-DL.x264.DD5.1-PTerWEB.mkv,Westworld.S04E06.1080p.HMAX.WEB-DL.x264.DD5.1-PTerWEB.mkv,3745544520,2022-08-01T11:30:19,series,1920x1080,h264,3480.894,8608 +/mnt/Downloads/series/Westworld.S04.1080p.HMAX.WEB-DL.x264.DD5.1-PTerWEB/Westworld.S04E02.1080p.HMAX.WEB-DL.x264.DD5.1-PTerWEB.mkv,Westworld.S04E02.1080p.HMAX.WEB-DL.x264.DD5.1-PTerWEB.mkv,3240835081,2022-07-04T11:06:57,series,1920x1080,h264,3006.754,8622 +/mnt/Downloads/series/Westworld.S04.1080p.HMAX.WEB-DL.x264.DD5.1-PTerWEB/Westworld.S04E07.1080p.HMAX.WEB-DL.x264.DD5.1-PTerWEB.mkv,Westworld.S04E07.1080p.HMAX.WEB-DL.x264.DD5.1-PTerWEB.mkv,3413518628,2022-08-08T11:08:07,series,1920x1080,h264,3168.082,8619 +/mnt/Downloads/series/Westworld.S04.1080p.HMAX.WEB-DL.x264.DD5.1-PTerWEB/Westworld.S04E04.1080p.HMAX.WEB-DL.x264.DD5.1-PTerWEB.mkv,Westworld.S04E04.1080p.HMAX.WEB-DL.x264.DD5.1-PTerWEB.mkv,3280952996,2022-07-18T11:12:50,series,1920x1080,h264,3042.623,8626 +/mnt/Downloads/series/こっち向いてよ向井くん EP05 720p HDTV x264 AAC-DoA.mkv,こっち向いてよ向井くん EP05 720p HDTV x264 AAC-DoA.mkv,1676439873,2024-01-12T12:15:39,series,1280x720,h264,3109.809,4312 +/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,Mercy.For.None.S01E03.Episode.3.1080p.NF.WEB-DL.DUAL.DDP5.1.Atmos.H.264-FLUX.mkv,2477605287,2025-07-31T11:39:12,series,1920x1080,h264,2238.779,8853 +/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,Mercy.For.None.S01E04.Episode.4.1080p.NF.WEB-DL.DUAL.DDP5.1.Atmos.H.264-FLUX.mkv,2566865524,2025-07-31T12:33:11,series,1920x1080,h264,2377.375,8637 +/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,Mercy.For.None.S01E07.Episode.7.1080p.NF.WEB-DL.DUAL.DDP5.1.Atmos.H.264-FLUX.mkv,2736573300,2025-07-31T12:36:35,series,1920x1080,h264,2958.039,7401 +/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,Mercy.For.None.S01E05.Episode.5.1080p.NF.WEB-DL.DUAL.DDP5.1.Atmos.H.264-FLUX.mkv,2202534185,2025-07-31T12:33:25,series,1920x1080,h264,2538.453,6941 +/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,Mercy.For.None.S01E02.Episode.2.1080p.NF.WEB-DL.DUAL.DDP5.1.Atmos.H.264-FLUX.mkv,2342434370,2025-07-31T11:21:53,series,1920x1080,h264,2696.611,6949 +/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,Mercy.For.None.S01E06.Episode.6.1080p.NF.WEB-DL.DUAL.DDP5.1.Atmos.H.264-FLUX.mkv,2050579572,2025-07-31T12:36:39,series,1920x1080,h264,2706.287,6061 +/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,Mercy.For.None.S01E01.Episode.1.1080p.NF.WEB-DL.DUAL.DDP5.1.Atmos.H.264-FLUX.mkv,1947373142,2025-07-31T10:59:17,series,1920x1080,h264,2574.572,6051 +/mnt/Downloads/series/True.Detective.S04E05.Night.Country.Part.5.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv,True.Detective.S04E05.Night.Country.Part.5.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv,4722265107,2024-02-16T09:03:35,series,1920x960,h264,3784.948,9981 +/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,Going.My.Home.E03.2012.1080p.Blu-ray.x265.10bit.AC3£cXcY@FRDS.mkv,821475750,2024-10-17T14:31:47,series,1920x1080,hevc,2638.602,2490 +/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,Going.My.Home.E02.2012.1080p.Blu-ray.x265.10bit.AC3£cXcY@FRDS.mkv,903648803,2024-10-17T14:28:39,series,1920x1080,hevc,2948.96,2451 +/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,Going.My.Home.E10.2012.1080p.Blu-ray.x265.10bit.AC3£cXcY@FRDS.mkv,845319882,2024-10-17T14:49:32,series,1920x1080,hevc,2700.564,2504 +/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,Going.My.Home.E01.2012.1080p.Blu-ray.x265.10bit.AC3£cXcY@FRDS.mkv,995186003,2024-10-17T14:22:06,series,1920x1080,hevc,3263.328,2439 +/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,Going.My.Home.E11.2012.1080p.Blu-ray.x265.10bit.AC3£cXcY@FRDS.mkv,829843639,2024-10-17T14:49:58,series,1920x1080,hevc,2740.471,2422 +/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,Going.My.Home.E05.2012.1080p.Blu-ray.x265.10bit.AC3£cXcY@FRDS.mkv,822701649,2024-10-17T14:37:11,series,1920x1080,hevc,2756.453,2387 +/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,Going.My.Home.E04.2012.1080p.Blu-ray.x265.10bit.AC3£cXcY@FRDS.mkv,841377234,2024-10-17T14:35:49,series,1920x1080,hevc,2686.917,2505 +/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,Going.My.Home.E06.2012.1080p.Blu-ray.x265.10bit.AC3£cXcY@FRDS.mkv,828574877,2024-10-17T14:40:32,series,1920x1080,hevc,2702.848,2452 +/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,Going.My.Home.E07.2012.1080p.Blu-ray.x265.10bit.AC3£cXcY@FRDS.mkv,826860834,2024-10-17T14:44:12,series,1920x1080,hevc,2691.889,2457 +/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,Going.My.Home.E08.2012.1080p.Blu-ray.x265.10bit.AC3£cXcY@FRDS.mkv,831103052,2024-10-17T14:45:59,series,1920x1080,hevc,2719.936,2444 +/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,Going.My.Home.E09.2012.1080p.Blu-ray.x265.10bit.AC3£cXcY@FRDS.mkv,846576444,2024-10-17T14:48:35,series,1920x1080,hevc,2772.8,2442 +/mnt/Downloads/series/Believe-君にかける橋- 第4話 最愛の妻の嘘 1080p TVer WEB-DL H264 AAC-Solitude@DoA.mkv,Believe-君にかける橋- 第4話 最愛の妻の嘘 1080p TVer WEB-DL H264 AAC-Solitude@DoA.mkv,1058706570,2024-05-21T00:28:29,series,1920x1080,h264,3021.994,2802 +/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,3.Body.Problem.S01E02.Red.Coast.1080p.NF.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv,2627730458,2024-03-22T13:16:35,series,1920x1080,h264,3831.912,5485 +/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,3.Body.Problem.S01E01.Countdown.1080p.NF.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv,2487401872,2024-03-22T13:16:36,series,1920x1080,h264,3635.132,5474 +/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,3.Body.Problem.S01E06.The.Stars.Our.Destination.1080p.NF.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv,1973412446,2024-03-22T13:16:34,series,1920x1080,h264,2908.99,5427 +/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,3.Body.Problem.S01E05.Judgment.Day.1080p.NF.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv,2381986776,2024-03-22T13:16:35,series,1920x1080,h264,3478.6,5478 +/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,3.Body.Problem.S01E03.Destroyer.of.Worlds.1080p.NF.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv,2187037020,2024-03-22T13:16:35,series,1920x1080,h264,3210.499,5449 +/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,3.Body.Problem.S01E07.Only.Advance.1080p.NF.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv,2394806063,2024-03-22T13:16:36,series,1920x1080,h264,3506.336,5463 +/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,3.Body.Problem.S01E08.Wallfacer.1080p.NF.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv,2328687877,2024-03-22T13:16:35,series,1920x1080,h264,3402.066,5475 +/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,3.Body.Problem.S01E04.Our.Lord.1080p.NF.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv,1775074167,2024-03-22T13:16:36,series,1920x1080,h264,2648.396,5361 +/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,The.Judge.From.Hell.S01E14.2024.1080p.DSNP.WEB-DL.H264.AAC-ADWeb.mkv,2676141050,2024-12-07T02:32:49,series,1920x1080,h264,4443.498,4818 +/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,The.Judge.From.Hell.S01E04.2024.1080p.DSNP.WEB-DL.H264.AAC-ADWeb.mkv,2333078844,2024-12-07T02:19:49,series,1920x1080,h264,3647.701,5116 +/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,The.Judge.From.Hell.S01E03.2024.1080p.DSNP.WEB-DL.H264.AAC-ADWeb.mkv,2378221439,2024-12-07T02:17:07,series,1920x1080,h264,3688.746,5157 +/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,The.Judge.From.Hell.S01E13.2024.1080p.DSNP.WEB-DL.H264.AAC-ADWeb.mkv,2350243074,2024-12-07T02:32:48,series,1920x1080,h264,4127.168,4555 +/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,The.Judge.From.Hell.S01E05.2024.1080p.DSNP.WEB-DL.H264.AAC-ADWeb.mkv,2370330558,2024-12-07T02:21:49,series,1920x1080,h264,3853.909,4920 +/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,The.Judge.From.Hell.S01E12.2024.1080p.DSNP.WEB-DL.H264.AAC-ADWeb.mkv,2466882508,2024-12-07T02:31:49,series,1920x1080,h264,4157.205,4747 +/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,The.Judge.From.Hell.S01E02.2024.1080p.DSNP.WEB-DL.H264.AAC-ADWeb.mkv,2676424021,2024-12-07T02:14:37,series,1920x1080,h264,4151.211,5157 +/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,The.Judge.From.Hell.S01E01.2024.1080p.DSNP.WEB-DL.H264.AAC-ADWeb.mkv,2467927653,2024-12-07T02:12:24,series,1920x1080,h264,3917.973,5039 +/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,The.Judge.From.Hell.S01E11.2024.1080p.DSNP.WEB-DL.H264.AAC-ADWeb.mkv,2221911162,2024-12-07T02:30:15,series,1920x1080,h264,3790.848,4689 +/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,The.Judge.From.Hell.S01E09.2024.1080p.DSNP.WEB-DL.H264.AAC-ADWeb.mkv,2331014234,2024-12-07T02:30:57,series,1920x1080,h264,3791.851,4917 +/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,The.Judge.From.Hell.S01E06.2024.1080p.DSNP.WEB-DL.H264.AAC-ADWeb.mkv,2294334314,2024-12-07T02:24:12,series,1920x1080,h264,3696.746,4965 +/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,The.Judge.From.Hell.S01E08.2024.1080p.DSNP.WEB-DL.H264.AAC-ADWeb.mkv,2411926316,2024-12-07T02:28:03,series,1920x1080,h264,3835.883,5030 +/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,The.Judge.From.Hell.S01E10.2024.1080p.DSNP.WEB-DL.H264.AAC-ADWeb.mkv,2404783210,2024-12-07T02:30:57,series,1920x1080,h264,4113.151,4677 +/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,The.Judge.From.Hell.S01E07.2024.1080p.DSNP.WEB-DL.H264.AAC-ADWeb.mkv,2484787434,2024-12-07T02:26:04,series,1920x1080,h264,3977.024,4998 +/mnt/Downloads/series/2010.圣殿春秋/圣殿春秋.The.Pillars.Of.The.Earth.E03.Chi_Eng.HR-HDTV.AC3.1024X576.x264-YYeTs人人影视.mkv,圣殿春秋.The.Pillars.Of.The.Earth.E03.Chi_Eng.HR-HDTV.AC3.1024X576.x264-YYeTs人人影视.mkv,636714532,2024-11-04T11:15:08,series,1024x576,h264,3212.064,1585 +/mnt/Downloads/series/2010.圣殿春秋/圣殿春秋.The.Pillars.Of.The.Earth.E04.Chi_Eng.HR-HDTV.AC3.1024X576.x264-YYeTs人人影视.mkv,圣殿春秋.The.Pillars.Of.The.Earth.E04.Chi_Eng.HR-HDTV.AC3.1024X576.x264-YYeTs人人影视.mkv,676376682,2024-11-04T11:15:05,series,1024x576,h264,2868.224,1886 +/mnt/Downloads/series/2010.圣殿春秋/圣殿春秋.The.Pillars.Of.The.Earth.E02.Chi_Eng.HR-HDTV.AC3.1024X576.x264-YYeTs人人影视.mkv,圣殿春秋.The.Pillars.Of.The.Earth.E02.Chi_Eng.HR-HDTV.AC3.1024X576.x264-YYeTs人人影视.mkv,669326551,2024-11-04T11:15:27,series,1024x576,h264,3175.968,1685 +/mnt/Downloads/series/2010.圣殿春秋/圣殿春秋.The.Pillars.Of.The.Earth.E05.Chi_Eng.HR-HDTV.AC3.1024X576.x264-YYeTs人人影视.mkv,圣殿春秋.The.Pillars.Of.The.Earth.E05.Chi_Eng.HR-HDTV.AC3.1024X576.x264-YYeTs人人影视.mkv,694290567,2024-11-04T11:14:50,series,1024x576,h264,3295.724,1685 +/mnt/Downloads/series/2010.圣殿春秋/圣殿春秋.The.Pillars.Of.The.Earth.E06.Chi_Eng.HR-HDTV.AC3.1024X576.x264-YYeTs人人影视.mkv,圣殿春秋.The.Pillars.Of.The.Earth.E06.Chi_Eng.HR-HDTV.AC3.1024X576.x264-YYeTs人人影视.mkv,617586717,2024-11-04T11:14:29,series,1024x576,h264,3112.48,1587 +/mnt/Downloads/series/2010.圣殿春秋/圣殿春秋.The.Pillars.Of.The.Earth.E01.Chi_Eng.HR-HDTV.AC3.1024X576.x264-YYeTs人人影视.mkv,圣殿春秋.The.Pillars.Of.The.Earth.E01.Chi_Eng.HR-HDTV.AC3.1024X576.x264-YYeTs人人影视.mkv,668397784,2024-11-04T11:15:30,series,1024x576,h264,3368.64,1587 +/mnt/Downloads/series/2010.圣殿春秋/圣殿春秋.The.Pillars.Of.The.Earth.E07-E08.Chi_Eng.HR-HDTV.AC3.1024X576.x264-YYeTs人人影视.mkv,圣殿春秋.The.Pillars.Of.The.Earth.E07-E08.Chi_Eng.HR-HDTV.AC3.1024X576.x264-YYeTs人人影视.mkv,1334044077,2024-11-04T11:14:43,series,1024x576,h264,6330.848,1685 +/mnt/Downloads/series/Reacher.S02E06.New.Yorks.Finest.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv,Reacher.S02E06.New.Yorks.Finest.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv,2731185389,2024-01-09T05:09:24,series,1920x960,h264,2725.723,8016 +/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,Wonder.Hatch.Soratobu.Ryuu.no.Shima.EP01.720p.DSNP.WEB-DL.DDP5.1.H.264-MagicStar.mkv,1150009566,2024-01-05T12:16:49,series,1280x720,h264,2722.432,3379 +/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,Wonder.Hatch.Soratobu.Ryuu.no.Shima.EP03.720p.DSNP.WEB-DL.DDP5.1.H.264-MagicStar.mkv,1020032379,2024-01-05T12:17:42,series,1280x720,h264,2310.592,3531 +/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,Wonder.Hatch.Soratobu.Ryuu.no.Shima.EP04.720p.DSNP.WEB-DL.DDP5.1.H.264-MagicStar.mkv,1140005571,2024-01-05T12:17:42,series,1280x720,h264,2584.736,3528 +/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,Wonder.Hatch.Soratobu.Ryuu.no.Shima.EP02.720p.DSNP.WEB-DL.DDP5.1.H.264-MagicStar.mkv,851019132,2024-01-05T12:17:42,series,1280x720,h264,1956.032,3480 +/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,Savouring.China.2018.EP01.WEB-DL.1080p.HEVC.AAC-AREY.mp4,828761563,2018-11-20T11:46:20,series,1920x1080,hevc,3093.12,2143 +/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,Savouring.China.2018.EP02.WEB-DL.1080p.HEVC.AAC-AREY.mp4,828109760,2018-11-20T11:46:21,series,1920x1080,hevc,3083.2,2148 +/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,Taiwan.Crime.Stories.S01E08.2023.Disney+.WEB-DL.1080p.H264.DDP-HDCTV.mkv,2599657083,2023-02-03T14:25:21,series,1920x1080,h264,3024.384,6876 +/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,Taiwan.Crime.Stories.S01E04.2023.Disney+.WEB-DL.1080p.H264.DDP-HDCTV.mkv,2289680165,2023-02-03T14:25:28,series,1920x1080,h264,2619.456,6992 +/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,Taiwan.Crime.Stories.S01E05.2023.Disney+.WEB-DL.1080p.H264.DDP-HDCTV.mkv,2557713622,2023-02-03T14:25:17,series,1920x1080,h264,2932.576,6977 +/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,Taiwan.Crime.Stories.S01E01.2023.Disney+.WEB-DL.1080p.H264.DDP-HDCTV.mkv,2484930302,2023-02-03T14:25:15,series,1920x1080,h264,3007.232,6610 +/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,Taiwan.Crime.Stories.S01E12.2023.Disney+.WEB-DL.1080p.H264.DDP-HDCTV.mkv,3365170756,2023-02-03T14:25:18,series,1920x1080,h264,3656.896,7361 +/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,Taiwan.Crime.Stories.S01E09.2023.Disney+.WEB-DL.1080p.H264.DDP-HDCTV.mkv,2451724787,2023-02-03T14:25:18,series,1920x1080,h264,2788.096,7034 +/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,Taiwan.Crime.Stories.S01E07.2023.Disney+.WEB-DL.1080p.H264.DDP-HDCTV.mkv,2289419293,2023-02-03T14:25:21,series,1920x1080,h264,2758.848,6638 +/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,Taiwan.Crime.Stories.S01E03.2023.Disney+.WEB-DL.1080p.H264.DDP-HDCTV.mkv,2567478683,2023-02-03T14:25:21,series,1920x1080,h264,3146.08,6528 +/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,Taiwan.Crime.Stories.S01E10.2023.Disney+.WEB-DL.1080p.H264.DDP-HDCTV.mkv,2772392466,2023-02-03T14:25:28,series,1920x1080,h264,3002.72,7386 +/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,Taiwan.Crime.Stories.S01E11.2023.Disney+.WEB-DL.1080p.H264.DDP-HDCTV.mkv,3200660586,2023-02-03T14:25:19,series,1920x1080,h264,3480.192,7357 +/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,Taiwan.Crime.Stories.S01E06.2023.Disney+.WEB-DL.1080p.H264.DDP-HDCTV.mkv,3035523481,2023-02-03T14:25:17,series,1920x1080,h264,3295.616,7368 +/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,Taiwan.Crime.Stories.S01E02.2023.Disney+.WEB-DL.1080p.H264.DDP-HDCTV.mkv,2233574631,2023-02-03T14:25:12,series,1920x1080,h264,2797.12,6388 +/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,Chokotto.Kyoto.ni.Sundemita.E01.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV.mkv,556351637,2022-08-30T15:10:56,series,1920x1080,h264,1395.171,3190 +/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,Chokotto.Kyoto.ni.Sundemita.E06.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV.mkv,890462821,2022-08-30T15:10:59,series,1920x1080,h264,1380.101,5161 +/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,Chokotto.Kyoto.ni.Sundemita.E05.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV.mkv,593748247,2022-08-30T15:11:00,series,1920x1080,h264,1395.101,3404 +/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,Chokotto.Kyoto.ni.Sundemita.E02.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV.mkv,677783929,2022-08-30T15:10:59,series,1920x1080,h264,1395.171,3886 +/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,Chokotto.Kyoto.ni.Sundemita.E04.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV.mkv,893660764,2022-08-30T15:10:55,series,1920x1080,h264,1395.101,5124 +/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,Chokotto.Kyoto.ni.Sundemita.E03.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV.mkv,563259305,2022-08-30T15:11:00,series,1920x1080,h264,1395.171,3229 +/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,Shogun.S01E09.2024.2160p.DSNP.WEB-DL.DDP5.1.DV.HDR.H.265-HHWEB.mkv,6802546393,2024-04-27T09:56:39,series,3840x2160,hevc,3609.792,15075 +/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,Shogun.S01E07.2024.2160p.DSNP.WEB-DL.DDP5.1.DV.HDR.H.265-HHWEB.mkv,6090068390,2024-05-16T12:11:08,series,3840x2160,hevc,3270.592,14896 +/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,Shogun.S01E08.2024.2160p.DSNP.WEB-DL.DDP5.1.DV.HDR.H.265-HHWEB.mkv,6476273531,2024-04-27T09:29:23,series,3840x2160,hevc,3462.976,14961 +/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,Shogun.S01E10.2024.2160p.DSNP.WEB-DL.DDP5.1.DV.HDR.H.265-HHWEB.mkv,6941959362,2024-04-27T09:58:48,series,3840x2160,hevc,3741.056,14844 +/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,Study.Group.S01E10.2025.2160p.IQ.WEB-DL.H265.AAC-CHDWEB.mkv,1104548993,2025-04-25T23:59:25,series,3840x2160,hevc,2626.966,3363 +/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,Study.Group.S01E06.2025.2160p.IQ.WEB-DL.H265.AAC-CHDWEB.mkv,1123819063,2025-04-25T23:56:05,series,3840x2160,hevc,2574.257,3492 +/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,Study.Group.S01E08.2025.2160p.IQ.WEB-DL.H265.AAC-CHDWEB.mkv,1146521882,2025-04-25T23:58:15,series,3840x2160,hevc,2542.771,3607 +/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,Study.Group.S01E05.2025.2160p.IQ.WEB-DL.H265.AAC-CHDWEB.mkv,1164598340,2025-04-25T23:55:36,series,3840x2160,hevc,2599.149,3584 +/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,Study.Group.S01E03.2025.2160p.IQ.WEB-DL.H265.AAC-CHDWEB.mkv,1103349716,2025-04-25T23:45:23,series,3840x2160,hevc,2536.524,3479 +/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,Study.Group.S01E09.2025.2160p.IQ.WEB-DL.H265.AAC-CHDWEB.mkv,1129255798,2025-04-25T23:58:49,series,3840x2160,hevc,2544.187,3550 +/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,Study.Group.S01E07.2025.2160p.IQ.WEB-DL.H265.AAC-CHDWEB.mkv,1150439052,2025-04-25T23:57:22,series,3840x2160,hevc,2535.224,3630 +/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,Study.Group.S01E04.2025.2160p.IQ.WEB-DL.H265.AAC-CHDWEB.mkv,1155572901,2025-04-25T23:53:47,series,3840x2160,hevc,2533.39,3649 +/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,Study.Group.S01E01.2025.2160p.IQ.WEB-DL.H265.AAC-CHDWEB.mkv,1136857865,2025-04-25T23:52:37,series,3840x2160,hevc,2623.692,3466 +/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,Study.Group.S01E02.2025.2160p.IQ.WEB-DL.H265.AAC-CHDWEB.mkv,1119379266,2025-04-25T23:53:28,series,3840x2160,hevc,2563.297,3493 +/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,jukkakukannosatsujin.S01E04.1080p.HuluJP.WEB-DL.AAC.2.0.H.264-CHDWEB.mkv,843124753,2024-05-02T10:13:57,series,1920x1080,h264,2756.8,2446 +/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,jukkakukannosatsujin.S01E05.1080p.HuluJP.WEB-DL.AAC.2.0.H.264-CHDWEB.mkv,893891011,2024-05-02T10:13:40,series,1920x1080,h264,2910.954,2456 +/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,jukkakukannosatsujin.S01E01.1080p.HuluJP.WEB-DL.AAC.2.0.H.264-CHDWEB.mkv,1236031794,2024-05-02T10:13:57,series,1920x1080,h264,3179.221,3110 +/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,jukkakukannosatsujin.S01E03.1080p.HuluJP.WEB-DL.AAC.2.0.H.264-CHDWEB.mkv,895011691,2024-05-02T10:13:54,series,1920x1080,h264,2896.938,2471 +/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,jukkakukannosatsujin.S01E02.1080p.HuluJP.WEB-DL.AAC.2.0.H.264-CHDWEB.mkv,1013127295,2024-05-02T10:13:44,series,1920x1080,h264,2641.685,3068 +/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,Life on Mars.EP16.END.1080p.WEB-DL.x264-SAKURA.mkv,2525547441,2023-06-06T11:06:16,series,1920x1080,h264,3548.757,5693 +/mnt/Downloads/series/Life on Mars (2018) Complete 1080p WEB-DL AAC x264-SAKURA/Life on Mars.EP09.1080p.WEB-DL.x264-SAKURA.mkv,Life on Mars.EP09.1080p.WEB-DL.x264-SAKURA.mkv,2653400752,2023-06-06T11:06:22,series,1920x1080,h264,3725.738,5697 +/mnt/Downloads/series/Life on Mars (2018) Complete 1080p WEB-DL AAC x264-SAKURA/Life on Mars.EP15.1080p.WEB-DL.x264-SAKURA.mkv,Life on Mars.EP15.1080p.WEB-DL.x264-SAKURA.mkv,2544634038,2023-06-06T11:06:18,series,1920x1080,h264,3564.629,5710 +/mnt/Downloads/series/Life on Mars (2018) Complete 1080p WEB-DL AAC x264-SAKURA/Life on Mars.EP07.1080p.WEB-DL.x264-SAKURA.mkv,Life on Mars.EP07.1080p.WEB-DL.x264-SAKURA.mkv,2851854516,2023-06-06T11:06:17,series,1920x1080,h264,3997.738,5706 +/mnt/Downloads/series/Life on Mars (2018) Complete 1080p WEB-DL AAC x264-SAKURA/Life on Mars.EP14.1080p.WEB-DL.x264-SAKURA.mkv,Life on Mars.EP14.1080p.WEB-DL.x264-SAKURA.mkv,2716669696,2023-06-06T11:06:15,series,1920x1080,h264,3803.733,5713 +/mnt/Downloads/series/Life on Mars (2018) Complete 1080p WEB-DL AAC x264-SAKURA/Life on Mars.EP08.1080p.WEB-DL.x264-SAKURA.mkv,Life on Mars.EP08.1080p.WEB-DL.x264-SAKURA.mkv,2815501273,2023-06-06T11:06:18,series,1920x1080,h264,3946.816,5706 +/mnt/Downloads/series/Life on Mars (2018) Complete 1080p WEB-DL AAC x264-SAKURA/Life on Mars.EP06.1080p.WEB-DL.x264-SAKURA.mkv,Life on Mars.EP06.1080p.WEB-DL.x264-SAKURA.mkv,2839408536,2023-06-06T11:06:13,series,1920x1080,h264,3978.709,5709 +/mnt/Downloads/series/Life on Mars (2018) Complete 1080p WEB-DL AAC x264-SAKURA/Life on Mars.EP05.1080p.WEB-DL.x264-SAKURA.mkv,Life on Mars.EP05.1080p.WEB-DL.x264-SAKURA.mkv,2704087476,2023-06-06T11:06:18,series,1920x1080,h264,3788.778,5709 +/mnt/Downloads/series/Life on Mars (2018) Complete 1080p WEB-DL AAC x264-SAKURA/Life on Mars.EP04.1080p.WEB-DL.x264-SAKURA.mkv,Life on Mars.EP04.1080p.WEB-DL.x264-SAKURA.mkv,2666854500,2023-06-06T11:06:16,series,1920x1080,h264,3736.746,5709 +/mnt/Downloads/series/Life on Mars (2018) Complete 1080p WEB-DL AAC x264-SAKURA/Life on Mars.EP02.1080p.WEB-DL.x264-SAKURA.mkv,Life on Mars.EP02.1080p.WEB-DL.x264-SAKURA.mkv,2787314028,2023-06-06T09:25:49,series,1920x1080,h264,3904.64,5710 +/mnt/Downloads/series/Life on Mars (2018) Complete 1080p WEB-DL AAC x264-SAKURA/Life on Mars.EP10.1080p.WEB-DL.x264-SAKURA.mkv,Life on Mars.EP10.1080p.WEB-DL.x264-SAKURA.mkv,2530189521,2023-06-06T11:06:17,series,1920x1080,h264,3546.688,5707 +/mnt/Downloads/series/Life on Mars (2018) Complete 1080p WEB-DL AAC x264-SAKURA/Life on Mars.EP03.1080p.WEB-DL.x264-SAKURA.mkv,Life on Mars.EP03.1080p.WEB-DL.x264-SAKURA.mkv,2852266405,2023-06-06T09:25:52,series,1920x1080,h264,3995.733,5710 +/mnt/Downloads/series/Life on Mars (2018) Complete 1080p WEB-DL AAC x264-SAKURA/Life on Mars.EP11.1080p.WEB-DL.x264-SAKURA.mkv,Life on Mars.EP11.1080p.WEB-DL.x264-SAKURA.mkv,2598170901,2023-06-06T11:06:11,series,1920x1080,h264,3642.773,5705 +/mnt/Downloads/series/Life on Mars (2018) Complete 1080p WEB-DL AAC x264-SAKURA/Life on Mars.EP12.1080p.WEB-DL.x264-SAKURA.mkv,Life on Mars.EP12.1080p.WEB-DL.x264-SAKURA.mkv,2576410592,2023-06-06T11:06:14,series,1920x1080,h264,3610.688,5708 +/mnt/Downloads/series/Life on Mars (2018) Complete 1080p WEB-DL AAC x264-SAKURA/Life on Mars.EP13.1080p.WEB-DL.x264-SAKURA.mkv,Life on Mars.EP13.1080p.WEB-DL.x264-SAKURA.mkv,2686296146,2023-06-06T11:06:05,series,1920x1080,h264,3764.821,5708 +/mnt/Downloads/series/Life on Mars (2018) Complete 1080p WEB-DL AAC x264-SAKURA/Life on Mars.EP01.1080p.WEB-DL.x264-SAKURA.mkv,Life on Mars.EP01.1080p.WEB-DL.x264-SAKURA.mkv,2682143941,2023-06-06T09:25:51,series,1920x1080,h264,3765.824,5697 +/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,[黑鸽].Black.Doves.S01E06.2024.1080p.NF.WEB-DL.x264.DDP.5.1.Atmos-CMCTV.mkv,2164265604,2025-05-31T08:51:06,series,1920x1080,h264,3175.168,5452 +/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,[黑鸽].Black.Doves.S01E04.2024.1080p.NF.WEB-DL.x264.DDP.5.1.Atmos-CMCTV.mkv,2268203386,2025-05-31T08:51:06,series,1920x1080,h264,3319.776,5465 +/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,[黑鸽].Black.Doves.S01E05.2024.1080p.NF.WEB-DL.x264.DDP.5.1.Atmos-CMCTV.mkv,2265061769,2025-05-31T08:51:06,series,1920x1080,h264,3328.064,5444 +/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,[黑鸽].Black.Doves.S01E01.2024.1080p.NF.WEB-DL.x264.DDP.5.1.Atmos-CMCTV.mkv,2287352715,2025-05-31T08:51:05,series,1920x1080,h264,3338.976,5480 +/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,[黑鸽].Black.Doves.S01E02.2024.1080p.NF.WEB-DL.x264.DDP.5.1.Atmos-CMCTV.mkv,2193519844,2025-05-31T08:51:05,series,1920x1080,h264,3207.68,5470 +/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,[黑鸽].Black.Doves.S01E03.2024.1080p.NF.WEB-DL.x264.DDP.5.1.Atmos-CMCTV.mkv,2345512972,2025-05-31T08:51:06,series,1920x1080,h264,3417.056,5491 +/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,The.Naked.Director.E08.2019.Netflix.WEB-DL.1080p.x264.DDP-AREY.mkv,4426747813,2020-05-19T17:56:44,series,1920x1080,h264,3094.688,11443 +/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,The.Naked.Director.E02.2019.Netflix.WEB-DL.1080p.x264.DDP-AREY.mkv,4858440894,2020-05-19T17:56:42,series,1920x1080,h264,3214.88,12089 +/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,The.Naked.Director.E04.2019.Netflix.WEB-DL.1080p.x264.DDP-AREY.mkv,4171142833,2020-05-19T17:56:49,series,1920x1080,h264,2958.752,11278 +/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,The.Naked.Director.E03.2019.Netflix.WEB-DL.1080p.x264.DDP-AREY.mkv,4371319637,2020-05-19T17:56:51,series,1920x1080,h264,3108.896,11248 +/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,The.Naked.Director.E05.2019.Netflix.WEB-DL.1080p.x264.DDP-AREY.mkv,4122601468,2020-05-19T17:56:41,series,1920x1080,h264,3008.672,10961 +/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,The.Naked.Director.E06.2019.Netflix.WEB-DL.1080p.x264.DDP-AREY.mkv,3552464974,2020-05-19T17:56:28,series,1920x1080,h264,2342.816,12130 +/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,The.Naked.Director.E07.2019.Netflix.WEB-DL.1080p.x264.DDP-AREY.mkv,3454126466,2020-05-19T17:56:52,series,1920x1080,h264,2476.832,11156 +/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,The.Naked.Director.E01.2019.Netflix.WEB-DL.1080p.x264.DDP-AREY.mkv,4323950674,2020-05-19T17:56:48,series,1920x1080,h264,2844.704,12160 +/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,My.Story.Is.Long.S01E01.1080p.friDay.WEB-DL.AAC2.0.H.264-CHDWEB.mkv,2689237086,2025-12-14T13:52:05,series,1920x1080,h264,2700.372,7967 +/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,My.Story.Is.Long.S01E02.1080p.friDay.WEB-DL.AAC2.0.H.264-CHDWEB.mkv,2684420873,2025-12-14T13:53:23,series,1920x1080,h264,2698.41,7958 +/mnt/Downloads/series/(ドラマ) 完全無罪 第01話 「悪い夢」 (1920x1080 x264-AAC)-DoA [v2].mkv,(ドラマ) 完全無罪 第01話 「悪い夢」 (1920x1080 x264-AAC)-DoA [v2].mkv,2567303192,2024-08-18T11:48:53,series,1920x1080,h264,3300.011,6223 +/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,Constellation.S01E01.2024.1080p.ATVP.WEB-DL.H264.DDP5.1.Atmos-ADWeb.mkv,4675998368,2024-04-04T14:16:35,series,1920x1080,h264,3487.968,10724 +/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,Constellation.S01E02.2024.1080p.ATVP.WEB-DL.H264.DDP5.1.Atmos-ADWeb.mkv,4431276205,2024-04-04T14:16:36,series,1920x1080,h264,3278.24,10813 +/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,Constellation.S01E03.2024.1080p.ATVP.WEB-DL.H264.DDP5.1.Atmos-ADWeb.mkv,4088119356,2024-04-04T14:16:36,series,1920x1080,h264,3027.066,10804 +/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,Constellation.S01E04.2024.1080p.ATVP.WEB-DL.H264.DDP5.1.Atmos-ADWeb.mkv,4256586068,2024-04-04T14:16:37,series,1920x1080,h264,3164.578,10760 +/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,Constellation.S01E05.2024.1080p.ATVP.WEB-DL.H264.DDP5.1.Atmos-ADWeb.mkv,4206525856,2024-04-04T14:16:36,series,1920x1080,h264,3111.36,10815 +/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,Constellation.S01E06.2024.1080p.ATVP.WEB-DL.H264.DDP5.1.Atmos-ADWeb.mkv,4627085590,2024-04-04T14:16:36,series,1920x1080,h264,3426.816,10802 +/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,Constellation.S01E07.2024.1080p.ATVP.WEB-DL.H264.DDP5.1.Atmos-ADWeb.mkv,4352556551,2024-04-04T14:11:16,series,1920x1080,h264,3232.736,10771 +/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,Constellation.S01E08.2024.1080p.ATVP.WEB-DL.H264.DDP5.1.Atmos-ADWeb.mkv,4194251633,2024-04-04T14:12:59,series,1920x1080,h264,3112.256,10781 +/mnt/Downloads/series/True.Detective.S04E03.Night.Country.Part.3.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv,True.Detective.S04E03.Night.Country.Part.3.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv,4408883072,2024-02-01T13:59:02,series,1920x960,h264,3533.322,9982 +/mnt/Downloads/series/Reacher.S02E07.The.Man.Goes.Through.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv,Reacher.S02E07.The.Man.Goes.Through.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv,2805390228,2024-01-16T10:42:02,series,1920x960,h264,2718.841,8254 +/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,The Boys (2019) - S01E06 - The Innocents (1080p AMZN WEB-DL x265 RZeroX).mkv,1760768626,2019-08-25T14:18:37,series,1920x816,hevc,3614.592,3897 +/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,The Boys (2019) - S01E04 - The Female of the Species (1080p AMZN WEB-DL x265 RZeroX).mkv,1652508169,2019-08-25T14:19:51,series,1920x816,hevc,3393.792,3895 +/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,The Boys (2019) - S01E08 - You Found Me (1080p AMZN WEB-DL x265 RZeroX).mkv,1947224522,2019-08-25T14:19:57,series,1920x816,hevc,3999.52,3894 +/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,The Boys (2019) - S01E02 - Cherry (1080p AMZN WEB-DL x265 RZeroX).mkv.mkv,1727633728,2019-08-25T14:19:27,series,1920x816,hevc,3546.848,3896 +/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,The Boys (2019) - S01E03 - Get Some (1080p AMZN WEB-DL x265 RZeroX).mkv,1606469566,2019-08-25T14:18:23,series,1920x816,hevc,3298.144,3896 +/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,The Boys (2019) - S01E01 - The Name of the Game (1080p AMZN WEB-DL x265 RZeroX).mkv.mkv,1757853728,2019-08-25T14:15:06,series,1920x816,hevc,3609.888,3895 +/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,The Boys (2019) - S01E05 - Good for the Soul (1080p AMZN WEB-DL x265 RZeroX).mkv,1760035171,2019-08-25T14:19:03,series,1920x816,hevc,3615.296,3894 +/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,The Boys (2019) - S01E07 - The Self-Preservation Society (1080p AMZN WEB-DL x265 RZeroX).mkv,1648845600,2019-08-25T14:19:17,series,1920x816,hevc,3384.736,3897 +/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,[全领域异常解决室].Zen-ryoiki.Ijo.Kaiketsu.Shitsu.2024.S01E01.1080p.NF.WEB-DL.H264.AAC-UBWEB.mkv,2131887736,2025-01-16T01:55:27,series,1920x1080,h264,3338.112,5109 +/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,[全领域异常解决室].Zen-ryoiki.Ijo.Kaiketsu.Shitsu.2024.S01E06.1080p.NF.WEB-DL.H264.AAC-UBWEB.mkv,1712502779,2025-01-16T01:55:27,series,1920x1080,h264,2676.096,5119 +/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,[全领域异常解决室].Zen-ryoiki.Ijo.Kaiketsu.Shitsu.2024.S01E08.1080p.NF.WEB-DL.H264.AAC-UBWEB.mkv,1712865742,2025-01-16T01:55:27,series,1920x1080,h264,2676.096,5120 +/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,[全领域异常解决室].Zen-ryoiki.Ijo.Kaiketsu.Shitsu.2024.S01E05.1080p.NF.WEB-DL.H264.AAC-UBWEB.mkv,1717103184,2025-01-16T01:55:32,series,1920x1080,h264,2677.12,5131 +/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,[全领域异常解决室].Zen-ryoiki.Ijo.Kaiketsu.Shitsu.2024.S01E02.1080p.NF.WEB-DL.H264.AAC-UBWEB.mkv,1711844757,2025-01-16T01:55:27,series,1920x1080,h264,2676.096,5117 +/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,[全领域异常解决室].Zen-ryoiki.Ijo.Kaiketsu.Shitsu.2024.S01E09.1080p.NF.WEB-DL.H264.AAC-UBWEB.mkv,2481630921,2025-01-16T01:55:31,series,1920x1080,h264,2661.035,7460 +/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,[全领域异常解决室].Zen-ryoiki.Ijo.Kaiketsu.Shitsu.2024.S01E07.1080p.NF.WEB-DL.H264.AAC-UBWEB.mkv,1712925158,2025-01-16T01:55:27,series,1920x1080,h264,2677.078,5118 +/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,[全领域异常解决室].Zen-ryoiki.Ijo.Kaiketsu.Shitsu.2024.S01E10.1080p.NF.WEB-DL.H264.AAC-UBWEB.mkv,2366734771,2025-01-16T01:55:27,series,1920x1080,h264,2646.059,7155 +/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,[全领域异常解决室].Zen-ryoiki.Ijo.Kaiketsu.Shitsu.2024.S01E03.1080p.NF.WEB-DL.H264.AAC-UBWEB.mkv,1709673855,2025-01-16T01:55:28,series,1920x1080,h264,2677.12,5108 +/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,[全领域异常解决室].Zen-ryoiki.Ijo.Kaiketsu.Shitsu.2024.S01E04.1080p.NF.WEB-DL.H264.AAC-UBWEB.mkv,1712997376,2025-01-16T01:55:27,series,1920x1080,h264,2676.096,5120 +/mnt/Downloads/series/Daredevil.Born.Again.S01E01.Heavens.Half.Hour.1080p.DSNP.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv,Daredevil.Born.Again.S01E01.Heavens.Half.Hour.1080p.DSNP.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv,2421605205,2025-03-05T10:08:38,series,1920x1080,h264,3513.459,5513 +/mnt/Downloads/series/Bara no nai Hanaya/E04[1280x720 DivX6.xx].avi,E04[1280x720 DivX6.xx].avi,1203098808,2020-10-02T16:58:33,series,1280x720,mpeg4,2809.740267,3425 +/mnt/Downloads/series/Bara no nai Hanaya/E05[1280x720 DivX6.xx].avi,E05[1280x720 DivX6.xx].avi,1057288034,2020-10-02T16:58:45,series,1280x720,mpeg4,2809.773633,3010 +/mnt/Downloads/series/Bara no nai Hanaya/E10[1280x720 DivX6.xx].avi,E10[1280x720 DivX6.xx].avi,975089664,2020-10-02T16:58:43,series,1280x720,mpeg4,2809.940467,2776 +/mnt/Downloads/series/Bara no nai Hanaya/E07[1280x720 DivX6.xx].avi,E07[1280x720 DivX6.xx].avi,858376478,2020-10-02T16:58:44,series,1280x720,mpeg4,2809.807,2443 +/mnt/Downloads/series/Bara no nai Hanaya/E06[1280x720 DivX6.xx].avi,E06[1280x720 DivX6.xx].avi,997385964,2020-10-02T16:58:37,series,1280x720,mpeg4,2809.973833,2839 +/mnt/Downloads/series/Bara no nai Hanaya/E11[1280x720 DivX6.xx].avi,E11[1280x720 DivX6.xx].avi,1361320994,2020-10-02T16:58:40,series,1280x720,mpeg4,3440.0366,3165 +/mnt/Downloads/series/Bara no nai Hanaya/E09[1280x720 DivX6.xx].avi,E09[1280x720 DivX6.xx].avi,1186271366,2020-10-02T16:58:13,series,1280x720,mpeg4,2809.740267,3377 +/mnt/Downloads/series/Bara no nai Hanaya/E02[1280x720 DivX6.xx].avi,E02[1280x720 DivX6.xx].avi,1454272626,2020-10-02T16:58:42,series,1280x720,mpeg4,2809.773633,4140 +/mnt/Downloads/series/Bara no nai Hanaya/E03[1280x720 DivX6.xx].avi,E03[1280x720 DivX6.xx].avi,1215825556,2020-10-02T16:57:20,series,1280x720,mpeg4,2807.337867,3464 +/mnt/Downloads/series/Bara no nai Hanaya/E08[1280x720 DivX6.xx].avi,E08[1280x720 DivX6.xx].avi,978503680,2020-10-02T16:57:10,series,1280x720,mpeg4,2809.873733,2785 +/mnt/Downloads/series/Bara no nai Hanaya/E01[1280x720 DivX6.xx].avi,E01[1280x720 DivX6.xx].avi,1373824082,2020-10-02T16:58:28,series,1280x720,mpeg4,3454.384267,3181 +/mnt/Downloads/series/[MagicStar] Nemesis EP07 [WEBDL] [1080p] [HULU] [JPN_SUB]/Nemesis.EP07.1080p.HULU.WEB-DL.AAC2.0.H.264-MagicStar.mkv,Nemesis.EP07.1080p.HULU.WEB-DL.AAC2.0.H.264-MagicStar.mkv,1405488763,2021-05-24T14:25:50,series,1920x1080,h264,2764.074,4067 +/mnt/Downloads/series/Shogun.2024.S01E02.Servants.of.Two.Masters.REPACK.1080p.DSNP.WEB-DL.DDP5.1.H.264-APEX.mkv,Shogun.2024.S01E02.Servants.of.Two.Masters.REPACK.1080p.DSNP.WEB-DL.DDP5.1.H.264-APEX.mkv,3071998148,2024-02-27T13:28:43,series,1920x1080,h264,3509.728,7002 +/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,Offline.Love.S01E02.2025.2160p.NF.WEB-DL.DDP5.1.DV.H.265-HHWEB.mkv,9038516359,2025-03-04T13:22:19,series,3840x2160,hevc,3609.92,20030 +/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,Offline.Love.S01E05.2025.2160p.NF.WEB-DL.DDP5.1.DV.H.265-HHWEB.mkv,6852033620,2025-03-04T13:21:58,series,3840x2160,hevc,4056.128,13514 +/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,Offline.Love.S01E08.2025.2160p.NF.WEB-DL.DDP5.1.DV.H.265-HHWEB.mkv,6352472921,2025-03-04T13:22:17,series,3840x2160,hevc,3779.264,13447 +/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,Offline.Love.S01E01.2025.2160p.NF.WEB-DL.DDP5.1.DV.H.265-HHWEB.mkv,7160531284,2025-03-04T13:22:11,series,3840x2160,hevc,2844.224,20140 +/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,Offline.Love.S01E06.2025.2160p.NF.WEB-DL.DDP5.1.DV.H.265-HHWEB.mkv,6387779723,2025-03-04T13:22:17,series,3840x2160,hevc,4055.36,12601 +/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,Offline.Love.S01E09.2025.2160p.NF.WEB-DL.DDP5.1.DV.H.265-HHWEB.mkv,5063358488,2025-03-04T13:17:36,series,3840x2160,hevc,3158.336,12825 +/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,Offline.Love.S01E04.2025.2160p.NF.WEB-DL.DDP5.1.DV.H.265-HHWEB.mkv,9134901357,2025-03-04T13:22:22,series,3840x2160,hevc,3727.04,19607 +/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,Offline.Love.S01E03.2025.2160p.NF.WEB-DL.DDP5.1.DV.H.265-HHWEB.mkv,8312019935,2025-03-04T13:22:16,series,3840x2160,hevc,3374.528,19705 +/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,Offline.Love.S01E10.2025.2160p.NF.WEB-DL.DDP5.1.DV.H.265-HHWEB.mkv,7331049231,2025-03-04T13:22:19,series,3840x2160,hevc,2986.688,19636 +/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,Offline.Love.S01E07.2025.2160p.NF.WEB-DL.DDP5.1.DV.H.265-HHWEB.mkv,6658124665,2025-03-04T13:21:32,series,3840x2160,hevc,4114.944,12944 +/mnt/Downloads/series/新参者/【ドラマ】 新参者 第07話 「刑事の息子」 (1440x1080i x264-AAC).mp4,【ドラマ】 新参者 第07話 「刑事の息子」 (1440x1080i x264-AAC).mp4,2116340972,2025-06-27T01:50:58,series,1440x1080,h264,2789.9872,6068 +/mnt/Downloads/series/新参者/【ドラマ】 新参者 第09話 「民芸品店の客」 (1440x1080i x264-AAC).mp4,【ドラマ】 新参者 第09話 「民芸品店の客」 (1440x1080i x264-AAC).mp4,1886891001,2025-06-27T01:50:55,series,1440x1080,h264,2774.933333,5439 +/mnt/Downloads/series/新参者/【ドラマ】 新参者 第04話 「時計屋の犬」 (1440x1080i x264-AAC).mp4,【ドラマ】 新参者 第04話 「時計屋の犬」 (1440x1080i x264-AAC).mp4,2472534376,2025-06-27T01:50:50,series,1440x1080,h264,2789.6869,7090 +/mnt/Downloads/series/新参者/【ドラマ】 新参者 第03話 「瀬戸物屋の娘」 (1440x1080i x264-AAC).mp4,【ドラマ】 新参者 第03話 「瀬戸物屋の娘」 (1440x1080i x264-AAC).mp4,2379529370,2025-06-27T01:50:38,series,1440x1080,h264,2789.653533,6823 +/mnt/Downloads/series/新参者/【ドラマ】 新参者 第02話 「料亭の小僧」 (1440x1080i x264-AAC).mp4,【ドラマ】 新参者 第02話 「料亭の小僧」 (1440x1080i x264-AAC).mp4,2296937343,2025-06-27T01:50:44,series,1440x1080,h264,2819.6168,6517 +/mnt/Downloads/series/新参者/【ドラマ】 新参者 第08話 「清掃会社の社長」 (1440x1080i x264-AAC).mp4,【ドラマ】 新参者 第08話 「清掃会社の社長」 (1440x1080i x264-AAC).mp4,1889882114,2025-06-27T01:50:54,series,1440x1080,h264,2789.953833,5419 +/mnt/Downloads/series/新参者/【ドラマ】 新参者 第06話 「翻訳家の友」 (1440x1080i x264-AAC).mp4,【ドラマ】 新参者 第06話 「翻訳家の友」 (1440x1080i x264-AAC).mp4,2102788780,2025-06-27T01:50:52,series,1440x1080,h264,2789.620166,6030 +/mnt/Downloads/series/新参者/【ドラマ】 新参者 第01話 「煎餅屋の娘」 (1440x1080i x264-AAC).mp4,【ドラマ】 新参者 第01話 「煎餅屋の娘」 (1440x1080i x264-AAC).mp4,2980847741,2025-06-27T01:50:53,series,1440x1080,h264,3869.332133,6163 +/mnt/Downloads/series/新参者/【ドラマSP】 赤い指~『新参者』加賀恭一郎再び! (1440x1080i x264-AAC).mp4,【ドラマSP】 赤い指~『新参者』加賀恭一郎再び! (1440x1080i x264-AAC).mp4,6575926523,2025-06-27T01:50:52,series,1440x1080,h264,7489.6822,7023 +/mnt/Downloads/series/新参者/【ドラマ】 新参者 第05話 「洋菓子屋の店員」 (1440x1080i x264-AAC).mp4,【ドラマ】 新参者 第05話 「洋菓子屋の店員」 (1440x1080i x264-AAC).mp4,2267121964,2025-06-27T01:50:52,series,1440x1080,h264,2789.119666,6502 +/mnt/Downloads/series/新参者/【ドラマ】 新参者 第10話(終) 「人形町の刑事」(1440x1080i x264-AAC).mp4,【ドラマ】 新参者 第10話(終) 「人形町の刑事」(1440x1080i x264-AAC).mp4,2520283234,2025-06-27T01:50:55,series,1440x1080,h264,3584.948033,5624 +/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,Industry.S03E07.Useful.Idiot.1080p.Max.WEB-DL.DDP.5.1.Atmos.H.264-CHDWEB.mkv,4214770862,2025-01-03T13:23:56,series,1920x960,h264,3699.68,9113 +/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,Industry.S03E05.Company.Man.1080p.Max.WEB-DL.DDP.5.1.Atmos.H.264-CHDWEB.mkv,3880550954,2025-01-03T12:51:26,series,1920x960,h264,3450.624,8996 +/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,Industry.S03E04.White.Mischief.1080p.Max.WEB-DL.DDP.5.1.Atmos.H.264-CHDWEB.mkv,4184642669,2025-01-03T12:36:00,series,1920x960,h264,3416.608,9798 +/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,Industry.S03E02.Smoke.and.Mirrors.1080p.Max.WEB-DL.DDP.5.1.Atmos.H.264-CHDWEB.mkv,2874284664,2025-01-03T12:09:43,series,1920x960,h264,3450.016,6664 +/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,Industry.S03E08.Infinite.Largesse.1080p.Max.WEB-DL.DDP.5.1.Atmos.H.264-CHDWEB.mkv,5370668474,2025-01-03T13:44:19,series,1920x960,h264,4249.856,10109 +/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,Industry.S03E03.It.1080p.Max.WEB-DL.DDP.5.1.Atmos.H.264-CHDWEB.mkv,2592896753,2025-01-03T12:20:15,series,1920x960,h264,3348.864,6194 +/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,Industry.S03E01.Il.Mattino.ha.LOro.Bocca.1080p.Max.WEB-DL.DDP.5.1.Atmos.H.264-CHDWEB.mkv,3019042001,2025-01-03T11:55:56,series,1920x960,h264,3450.016,7000 +/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,Industry.S03E06.Nikki.Beach.1080p.Max.WEB-DL.DDP.5.1.Atmos.H.264-CHDWEB.mkv,4078964973,2025-01-03T13:06:28,series,1920x960,h264,3489.888,9350 +/mnt/Downloads/series/Dark.Matter.2024.S01E02.Trip.of.a.Lifetime.1080p.ATVP.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv,Dark.Matter.2024.S01E02.Trip.of.a.Lifetime.1080p.ATVP.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv,4370402718,2024-06-08T05:37:59,series,1920x960,h264,3210.207,10891 +/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,Dept.Q.S01E06.Episode.6.1080p.NF.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv,2860785400,2025-07-02T11:15:50,series,1920x1080,h264,2868.36,7978 +/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,Dept.Q.S01E07.Episode.7.1080p.NF.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv,2908892805,2025-07-02T11:17:38,series,1920x1080,h264,3097.08,7513 +/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,Dept.Q.S01E05.Episode.5.1080p.NF.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv,2947651189,2025-07-02T11:13:57,series,1920x1080,h264,3223.64,7315 +/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,Dept.Q.S01E04.Episode.4.1080p.NF.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv,3029330630,2025-07-02T11:11:46,series,1920x1080,h264,3241.52,7476 +/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,Dept.Q.S01E09.Episode.9.1080p.NF.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv,4335370878,2025-07-02T11:20:20,series,1920x1080,h264,4305.16,8056 +/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,Dept.Q.S01E01.Episode.1.1080p.NF.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv,3873185447,2025-07-02T11:03:53,series,1920x1080,h264,3955.64,7833 +/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,Dept.Q.S01E08.Episode.8.1080p.NF.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv,2427440007,2025-07-02T11:19:31,series,1920x1080,h264,2542.6,7637 +/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,Dept.Q.S01E02.Episode.2.1080p.NF.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv,3207575410,2025-07-02T11:04:54,series,1920x1080,h264,3238.56,7923 +/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,Dept.Q.S01E03.Episode.3.1080p.NF.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv,3282051636,2025-07-02T11:10:41,series,1920x1080,h264,3284.6,7993 +/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,Silo.S01E04.Truth.1080p.ATVP.WEB-DL.DDP5.1.H.264-NTb.mkv,3671293772,2023-05-20T13:21:25,series,1920x960,h264,2706.215,10852 +/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,Silo.S01E02.Holstons.Pick.1080p.ATVP.WEB-DL.DDP5.1.H.264-NTb.mkv,3889493092,2023-05-20T10:21:24,series,1920x960,h264,2866.855,10853 +/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,Silo.S01E01.Freedom.Day.1080p.ATVP.WEB-DL.DDP5.1.H.264-NTb.mkv,4879437296,2023-05-20T10:21:25,series,1920x960,h264,3563.782,10953 +/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,The.Glory.S01E16.2022.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-ADWeb.mkv,3008042040,2023-03-12T10:02:00,series,1920x1080,h264,4291.104,5607 +/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,The.Glory.S01E12.2022.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-ADWeb.mkv,2244723979,2023-03-12T10:02:03,series,1920x1080,h264,3234.016,5552 +/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,The.Glory.S01E15.2022.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-ADWeb.mkv,2536547942,2023-03-12T10:01:58,series,1920x1080,h264,3638.304,5577 +/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,The.Glory.S01E09.2022.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-ADWeb.mkv,2239191140,2023-03-12T10:01:38,series,1920x1080,h264,3203.936,5591 +/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,The.Glory.S01E11.2022.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-ADWeb.mkv,2210442985,2023-03-12T10:01:48,series,1920x1080,h264,3192.032,5539 +/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,The.Glory.S01E13.2022.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-ADWeb.mkv,2271306798,2023-03-12T10:02:04,series,1920x1080,h264,3292.096,5519 +/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,The.Glory.S01E10.2022.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-ADWeb.mkv,2154965870,2023-03-12T10:01:41,series,1920x1080,h264,3115.84,5532 +/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,The.Glory.S01E14.2022.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-ADWeb.mkv,2276184465,2023-03-12T10:02:03,series,1920x1080,h264,3280.096,5551 +/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,Extraordinary.Attorney.Woo.S01E01.2022.Netflix.WEB-DL.1080p.x264.DDP-HDCTV.mkv,1515439848,2022-08-29T14:42:49,series,1920x1080,h264,4632.736,2616 +/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,Extraordinary.Attorney.Woo.S01E05.2022.Netflix.WEB-DL.1080p.x264.DDP-HDCTV.mkv,1042035317,2022-08-29T14:42:44,series,1920x1080,h264,4082.976,2041 +/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,Extraordinary.Attorney.Woo.S01E12.2022.Netflix.WEB-DL.1080p.x264.DDP-HDCTV.mkv,1191367940,2022-08-29T14:42:50,series,1920x1080,h264,4285.216,2224 +/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,Extraordinary.Attorney.Woo.S01E09.2022.Netflix.WEB-DL.1080p.x264.DDP-HDCTV.mkv,1269463669,2022-08-29T14:42:45,series,1920x1080,h264,4211.232,2411 +/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,Extraordinary.Attorney.Woo.S01E16.2022.Netflix.WEB-DL.1080p.x264.DDP-HDCTV.mkv,1240228890,2022-08-29T14:42:43,series,1920x1080,h264,4968.48,1996 +/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,Extraordinary.Attorney.Woo.S01E13.2022.Netflix.WEB-DL.1080p.x264.DDP-HDCTV.mkv,1350540485,2022-08-29T14:42:45,series,1920x1080,h264,3855.008,2802 +/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,Extraordinary.Attorney.Woo.S01E08.2022.Netflix.WEB-DL.1080p.x264.DDP-HDCTV.mkv,1776670232,2022-08-29T14:42:53,series,1920x1080,h264,4022.176,3533 +/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,Extraordinary.Attorney.Woo.S01E04.2022.Netflix.WEB-DL.1080p.x264.DDP-HDCTV.mkv,1247576686,2022-08-29T14:42:50,series,1920x1080,h264,4107.296,2429 +/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,Extraordinary.Attorney.Woo.S01E11.2022.Netflix.WEB-DL.1080p.x264.DDP-HDCTV.mkv,1214496368,2022-08-29T14:42:51,series,1920x1080,h264,4326.176,2245 +/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,Extraordinary.Attorney.Woo.S01E15.2022.Netflix.WEB-DL.1080p.x264.DDP-HDCTV.mkv,1011046304,2022-08-29T14:42:56,series,1920x1080,h264,3989.536,2027 +/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,Extraordinary.Attorney.Woo.S01E02.2022.Netflix.WEB-DL.1080p.x264.DDP-HDCTV.mkv,1181458477,2022-08-29T14:42:46,series,1920x1080,h264,4170.016,2266 +/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,Extraordinary.Attorney.Woo.S01E06.2022.Netflix.WEB-DL.1080p.x264.DDP-HDCTV.mkv,1164784562,2022-08-29T14:42:43,series,1920x1080,h264,4194.592,2221 +/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,Extraordinary.Attorney.Woo.S01E03.2022.Netflix.WEB-DL.1080p.x264.DDP-HDCTV.mkv,1103413887,2022-08-29T14:42:45,series,1920x1080,h264,4242.72,2080 +/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,Extraordinary.Attorney.Woo.S01E07.2022.Netflix.WEB-DL.1080p.x264.DDP-HDCTV.mkv,3002700376,2022-08-29T14:42:54,series,1920x1080,h264,4059.936,5916 +/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,Extraordinary.Attorney.Woo.S01E10.2022.Netflix.WEB-DL.1080p.x264.DDP-HDCTV.mkv,1215651090,2022-08-29T14:42:49,series,1920x1080,h264,4211.744,2309 +/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,Extraordinary.Attorney.Woo.S01E14.2022.Netflix.WEB-DL.1080p.x264.DDP-HDCTV.mkv,1328371415,2022-08-29T14:42:41,series,1920x1080,h264,4247.072,2502 +/mnt/Downloads/series/(ドラマ) 時をかけるな、恋人たち 第05話 「バスクラッシュ・エフェクト」 (1440x1080i x264-AAC)-DoA.mkv,(ドラマ) 時をかけるな、恋人たち 第05話 「バスクラッシュ・エフェクト」 (1440x1080i x264-AAC)-DoA.mkv,891974664,2024-01-05T12:30:25,series,1440x1080,h264,1389.721,5134 +/mnt/Downloads/series/Daredevil.Born.Again.S01E02.With.Interest.1080p.DSNP.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv,Daredevil.Born.Again.S01E02.With.Interest.1080p.DSNP.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv,1969826339,2025-03-05T10:13:00,series,1920x1080,h264,2815.959,5596 +/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,Reacher.S01E08.Pie.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv,3487964285,2022-02-21T13:26:59,series,1920x1080,h264,3148.64,8862 +/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,Reacher.S01E06.Papier.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv,3315754819,2022-02-21T13:26:56,series,1920x1080,h264,2921.184,9080 +/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,Reacher.S01E05.No.Apologies.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv,3358973003,2022-02-21T13:26:57,series,1920x1080,h264,2929.312,9173 +/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,Reacher.S01E04.In.a.Tree.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv,3218846298,2022-02-21T13:26:57,series,1920x1080,h264,2776.928,9273 +/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,Reacher.S01E03.Spoonful.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv,3367295660,2022-02-21T13:06:52,series,1920x1080,h264,2849.376,9454 +/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,Reacher.S01E07.Reacher.Said.Nothing.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv,2941769996,2022-02-21T13:26:57,series,1920x1080,h264,2504.832,9395 +/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,Reacher.S01E02.First.Dance.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv,3758843292,2022-02-21T13:07:50,series,1920x1080,h264,3174.304,9473 +/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,Reacher.S01E01.Welcome.to.Margrave.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv,3709326038,2022-02-21T12:52:50,series,1920x1080,h264,3243.52,9148 +/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,Shogun.S01E06.2024.2160p.DSNP.WEB-DL.H265.HDR.DDP5.1-ADWeb.mkv,6382547342,2024-03-26T09:48:08,series,3840x2160,hevc,3389.952,15062 +/mnt/Downloads/series/The Amateur (2025) (2160p iT WEB-DL H265 DV DDP Atmos 5.1 English - HONE).mkv,The Amateur (2025) (2160p iT WEB-DL H265 DV DDP Atmos 5.1 English - HONE).mkv,13667380355,2025-06-10T10:37:49,series,3840x1608,hevc,7353.917,14868 +/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,The.Glory.2022.S02E10.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-PTerWEB.mkv,2155846564,2023-03-20T14:20:15,series,1920x1080,h264,3115.84,5535 +/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,The.Glory.2022.S02E13.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-PTerWEB.mkv,2272228857,2023-03-20T14:20:16,series,1920x1080,h264,3292.096,5521 +/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,The.Glory.2022.S02E15.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-PTerWEB.mkv,2537545472,2023-03-20T14:20:19,series,1920x1080,h264,3638.304,5579 +/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,The.Glory.2022.S02E16.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-PTerWEB.mkv,3490013415,2023-03-20T14:20:15,series,1920x1080,h264,4291.232,6506 +/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,The.Glory.2022.S02E14.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-PTerWEB.mkv,2277128304,2023-03-20T14:20:14,series,1920x1080,h264,3280.096,5553 +/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,The.Glory.2022.S02E12.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-PTerWEB.mkv,2245613438,2023-03-20T14:20:15,series,1920x1080,h264,3234.016,5554 +/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,The.Glory.2022.S02E11.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-PTerWEB.mkv,2211245090,2023-03-20T14:20:15,series,1920x1080,h264,3192.032,5541 +/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,The.Glory.2022.S02E09.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-PTerWEB.mkv,2240091018,2023-03-20T14:20:15,series,1920x1080,h264,3203.936,5593 +/mnt/Downloads/series/Reacher.S03E03.Number.2.with.a.Bullet.1080p.AMZN.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv,Reacher.S03E03.Number.2.with.a.Bullet.1080p.AMZN.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv,3746282698,2025-02-23T11:59:52,series,1920x960,h264,3269.183,9167 +/mnt/Downloads/series/坂道上的家.Sakaie.2019.HDTV.1080p.x265.10bit-Yumi/Sakaie.2019.EP01.HDTV.1080p.x265.10bit-Yumi.mkv,Sakaie.2019.EP01.HDTV.1080p.x265.10bit-Yumi.mkv,722872690,2023-01-15T10:30:32,series,1920x1080,hevc,3060.057,1889 +/mnt/Downloads/series/坂道上的家.Sakaie.2019.HDTV.1080p.x265.10bit-Yumi/Sakaie.2019.EP05.HDTV.1080p.x265.10bit-Yumi.mkv,Sakaie.2019.EP05.HDTV.1080p.x265.10bit-Yumi.mkv,627907814,2023-01-15T10:30:22,series,1920x1080,hevc,3000.03,1674 +/mnt/Downloads/series/坂道上的家.Sakaie.2019.HDTV.1080p.x265.10bit-Yumi/Sakaie.2019.EP04.HDTV.1080p.x265.10bit-Yumi.mkv,Sakaie.2019.EP04.HDTV.1080p.x265.10bit-Yumi.mkv,624483743,2023-01-15T10:30:21,series,1920x1080,hevc,3000.03,1665 +/mnt/Downloads/series/坂道上的家.Sakaie.2019.HDTV.1080p.x265.10bit-Yumi/Sakaie.2019.EP02.HDTV.1080p.x265.10bit-Yumi.mkv,Sakaie.2019.EP02.HDTV.1080p.x265.10bit-Yumi.mkv,560790116,2023-01-15T10:30:20,series,1920x1080,hevc,2940.037,1525 +/mnt/Downloads/series/坂道上的家.Sakaie.2019.HDTV.1080p.x265.10bit-Yumi/Sakaie.2019.EP06.HDTV.1080p.x265.10bit-Yumi.mkv,Sakaie.2019.EP06.HDTV.1080p.x265.10bit-Yumi.mkv,679888251,2023-01-15T10:30:21,series,1920x1080,hevc,3300.03,1648 +/mnt/Downloads/series/坂道上的家.Sakaie.2019.HDTV.1080p.x265.10bit-Yumi/Sakaie.2019.EP03.HDTV.1080p.x265.10bit-Yumi.mkv,Sakaie.2019.EP03.HDTV.1080p.x265.10bit-Yumi.mkv,614488794,2023-01-15T10:30:16,series,1920x1080,hevc,3000.03,1638 +/mnt/Downloads/series/Saiai.2021.KKTV.WEB-DL.1080p.x264.AAC-HDCTV/Saiai.E03.2021.KKTV.WEB-DL.1080p.x264.AAC-HDCTV.mkv,Saiai.E03.2021.KKTV.WEB-DL.1080p.x264.AAC-HDCTV.mkv,1105532121,2021-11-18T13:19:10,series,1920x1080,h264,2732.478,3236 +/mnt/Downloads/series/Saiai.2021.KKTV.WEB-DL.1080p.x264.AAC-HDCTV/Saiai.E02.2021.KKTV.WEB-DL.1080p.x264.AAC-HDCTV.mkv,Saiai.E02.2021.KKTV.WEB-DL.1080p.x264.AAC-HDCTV.mkv,1088170708,2021-11-18T13:19:09,series,1920x1080,h264,2704.776,3218 +/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,The.Capture.S02E06.The.Flip.1080p.iP.WEB-DL.AAC2.0.H.264-playWEB.mkv,1755161141,2022-12-25T17:17:44,series,1920x1080,h264,4166.12,3370 +/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,The.Capture.S02E05.Imposter.Syndrome.1080p.iP.WEB-DL.AAC2.0.H.264-playWEB.mkv,1653316515,2022-12-25T17:17:57,series,1920x1080,h264,3539.68,3736 +/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,The.Capture.S02E02.Made.in.China.1080p.iP.WEB-DL.AAC2.0.H.264-playWEB.mkv,1547308205,2022-12-25T17:17:45,series,1920x1080,h264,3522.52,3514 +/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,The.Capture.S02E03.Charlie.Foxtrot.1080p.iP.WEB-DL.AAC2.0.H.264-playWEB.mkv,1648647662,2022-12-25T17:17:36,series,1920x1080,h264,3416.56,3860 +/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,The.Capture.S02E01.Invisible.Men.1080p.iP.WEB-DL.AAC2.0.H.264-playWEB.mkv,1669981347,2022-12-25T17:18:01,series,1920x1080,h264,3455.88,3865 +/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,The.Capture.S02E04.therealzacturner.1080p.iP.WEB-DL.AAC2.0.H.264-playWEB.mkv,1681989023,2022-12-25T17:18:17,series,1920x1080,h264,3536.28,3805 +/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,The.World.Between.Us.S01E09.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv,3109763102,2022-11-14T15:25:51,series,1920x1080,hevc,3161.16,7869 +/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,The.World.Between.Us.S01E08.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv,3450548173,2022-11-14T15:25:49,series,1920x1080,hevc,3107.005,8884 +/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,The.World.Between.Us.S01E03.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv,3503089787,2022-11-14T15:25:49,series,1920x1080,hevc,2984.82,9389 +/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,The.World.Between.Us.S01.Extras.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv,6774651359,2022-11-14T15:25:55,series,1920x1080,hevc,5433.305,9974 +/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,The.World.Between.Us.S01E02.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv,3245847976,2022-11-14T15:25:44,series,1920x1080,hevc,2876.01,9028 +/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,The.World.Between.Us.S01E01.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv,3279557115,2022-11-14T15:25:48,series,1920x1080,hevc,3082.015,8512 +/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,The.World.Between.Us.S01E07.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv,2851409213,2022-11-14T15:25:46,series,1920x1080,hevc,3121.855,7306 +/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,The.World.Between.Us.S01E06.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv,3284681218,2022-11-14T15:25:46,series,1920x1080,hevc,3144.575,8356 +/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,The.World.Between.Us.S01E05.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv,3391967803,2022-11-14T15:25:54,series,1920x1080,hevc,3151.415,8610 +/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,The.World.Between.Us.S01E10.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv,3460907822,2022-11-14T15:25:49,series,1920x1080,hevc,3274.54,8455 +/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,The.World.Between.Us.S01E04.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv,3521648528,2022-11-14T15:25:47,series,1920x1080,hevc,3089.09,9120 +/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,财阀家的小儿子.Reborn.Rich.2022.S01E10.1080p.friDay.WEB-DL.H264.AAC-OurTV.mkv,2153418063,2023-01-12T16:22:20,series,1920x1080,h264,4465.427,3857 +/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,财阀家的小儿子.Reborn.Rich.2022.S01E01.1080p.friDay.WEB-DL.H264.AAC-OurTV.mkv,2297911175,2023-01-12T16:22:19,series,1920x1080,h264,4827.389,3808 +/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,财阀家的小儿子.Reborn.Rich.2022.S01E08.1080p.friDay.WEB-DL.H264.AAC-OurTV.mkv,2361370251,2023-01-12T16:22:20,series,1920x1080,h264,4872.434,3877 +/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,财阀家的小儿子.Reborn.Rich.2022.S01E14.1080p.friDay.WEB-DL.H264.AAC-OurTV.mkv,2158704459,2023-01-12T16:13:16,series,1920x1080,h264,4431.46,3897 +/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,财阀家的小儿子.Reborn.Rich.2022.S01E05.1080p.friDay.WEB-DL.H264.AAC-OurTV.mkv,1936658505,2023-01-12T16:22:19,series,1920x1080,h264,4041.237,3833 +/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,财阀家的小儿子.Reborn.Rich.2022.S01E04.1080p.friDay.WEB-DL.H264.AAC-OurTV.mkv,1906387910,2023-01-12T16:22:17,series,1920x1080,h264,3954.45,3856 +/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,财阀家的小儿子.Reborn.Rich.2022.S01E15.1080p.friDay.WEB-DL.H264.AAC-OurTV.mkv,1877064330,2023-01-12T16:18:26,series,1920x1080,h264,3846.409,3904 +/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,财阀家的小儿子.Reborn.Rich.2022.S01E09.1080p.friDay.WEB-DL.H264.AAC-OurTV.mkv,2086077238,2023-01-12T16:22:19,series,1920x1080,h264,4301.463,3879 +/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,财阀家的小儿子.Reborn.Rich.2022.S01E11.1080p.friDay.WEB-DL.H264.AAC-OurTV.mkv,1992837504,2023-01-12T16:22:19,series,1920x1080,h264,4098.394,3889 +/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,财阀家的小儿子.Reborn.Rich.2022.S01E06.1080p.friDay.WEB-DL.H264.AAC-OurTV.mkv,2129209521,2023-01-12T16:22:20,series,1920x1080,h264,4446.408,3830 +/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,财阀家的小儿子.Reborn.Rich.2022.S01E02.1080p.friDay.WEB-DL.H264.AAC-OurTV.mkv,2129908948,2023-01-12T16:22:20,series,1920x1080,h264,4421.45,3853 +/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,财阀家的小儿子.Reborn.Rich.2022.S01E13.1080p.friDay.WEB-DL.H264.AAC-OurTV.mkv,2194776761,2023-01-12T16:15:30,series,1920x1080,h264,4508.404,3894 +/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,财阀家的小儿子.Reborn.Rich.2022.S01E12.1080p.friDay.WEB-DL.H264.AAC-OurTV.mkv,2201197357,2023-01-12T16:15:19,series,1920x1080,h264,4519.415,3896 +/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,财阀家的小儿子.Reborn.Rich.2022.S01E03.1080p.friDay.WEB-DL.H264.AAC-OurTV.mkv,1795387291,2023-01-12T16:22:19,series,1920x1080,h264,3702.465,3879 +/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,财阀家的小儿子.Reborn.Rich.2022.S01E16.1080p.friDay.WEB-DL.H264.AAC-OurTV.mkv,2537890537,2023-01-12T16:18:19,series,1920x1080,h264,5298.526,3831 +/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,财阀家的小儿子.Reborn.Rich.2022.S01E07.1080p.friDay.WEB-DL.H264.AAC-OurTV.mkv,2052230506,2023-01-12T16:22:19,series,1920x1080,h264,4238.4,3873 +/mnt/Downloads/series/Study.Group.2025.S01E02.1080p.Friday.WEB-DL.H264.AAC-PTerWEB.mkv,Study.Group.2025.S01E02.1080p.Friday.WEB-DL.H264.AAC-PTerWEB.mkv,2395424022,2025-02-13T09:21:59,series,1920x1080,h264,2563.16,7476 +/mnt/Downloads/series/Stranger.S02.1080p.BluRay.x265.10bit-WiKi/Stranger.S02E14.1080p.BluRay.x265.10bit-WiKi.mkv,Stranger.S02E14.1080p.BluRay.x265.10bit-WiKi.mkv,4295886868,2024-02-03T11:27:46,series,1920x1080,hevc,3698.655,9291 +/mnt/Downloads/series/Stranger.S02.1080p.BluRay.x265.10bit-WiKi/Stranger.S02E03.1080p.BluRay.x265.10bit-WiKi.mkv,Stranger.S02E03.1080p.BluRay.x265.10bit-WiKi.mkv,4047606897,2024-02-03T11:27:45,series,1920x1080,hevc,3488.405,9282 +/mnt/Downloads/series/Stranger.S02.1080p.BluRay.x265.10bit-WiKi/Stranger.S02E07.1080p.BluRay.x265.10bit-WiKi.mkv,Stranger.S02E07.1080p.BluRay.x265.10bit-WiKi.mkv,4101315200,2024-02-03T11:27:49,series,1920x1080,hevc,3529.655,9295 +/mnt/Downloads/series/Stranger.S02.1080p.BluRay.x265.10bit-WiKi/Stranger.S02E10.1080p.BluRay.x265.10bit-WiKi.mkv,Stranger.S02E10.1080p.BluRay.x265.10bit-WiKi.mkv,4114622954,2024-02-03T11:27:48,series,1920x1080,hevc,3526.36,9334 +/mnt/Downloads/series/Stranger.S02.1080p.BluRay.x265.10bit-WiKi/Stranger.S02E06.1080p.BluRay.x265.10bit-WiKi.mkv,Stranger.S02E06.1080p.BluRay.x265.10bit-WiKi.mkv,4554939071,2024-02-03T11:27:45,series,1920x1080,hevc,3906.445,9328 +/mnt/Downloads/series/Stranger.S02.1080p.BluRay.x265.10bit-WiKi/Stranger.S02E11.1080p.BluRay.x265.10bit-WiKi.mkv,Stranger.S02E11.1080p.BluRay.x265.10bit-WiKi.mkv,4125322322,2024-02-03T11:27:48,series,1920x1080,hevc,3543.835,9312 +/mnt/Downloads/series/Stranger.S02.1080p.BluRay.x265.10bit-WiKi/Stranger.S02E15.1080p.BluRay.x265.10bit-WiKi.mkv,Stranger.S02E15.1080p.BluRay.x265.10bit-WiKi.mkv,4606024614,2024-02-03T11:27:48,series,1920x1080,hevc,3961.67,9301 +/mnt/Downloads/series/Stranger.S02.1080p.BluRay.x265.10bit-WiKi/Stranger.S02E02.1080p.BluRay.x265.10bit-WiKi.mkv,Stranger.S02E02.1080p.BluRay.x265.10bit-WiKi.mkv,4455365471,2024-02-03T11:27:45,series,1920x1080,hevc,3826.54,9314 +/mnt/Downloads/series/Stranger.S02.1080p.BluRay.x265.10bit-WiKi/Stranger.S02E04.1080p.BluRay.x265.10bit-WiKi.mkv,Stranger.S02E04.1080p.BluRay.x265.10bit-WiKi.mkv,4483086085,2024-02-03T11:27:47,series,1920x1080,hevc,3823.07,9381 +/mnt/Downloads/series/Stranger.S02.1080p.BluRay.x265.10bit-WiKi/Stranger.S02E13.1080p.BluRay.x265.10bit-WiKi.mkv,Stranger.S02E13.1080p.BluRay.x265.10bit-WiKi.mkv,4097175866,2024-02-03T11:27:48,series,1920x1080,hevc,3507.255,9345 +/mnt/Downloads/series/Stranger.S02.1080p.BluRay.x265.10bit-WiKi/Stranger.S02E09.1080p.BluRay.x265.10bit-WiKi.mkv,Stranger.S02E09.1080p.BluRay.x265.10bit-WiKi.mkv,4148740804,2024-02-03T11:27:45,series,1920x1080,hevc,3507.505,9462 +/mnt/Downloads/series/Stranger.S02.1080p.BluRay.x265.10bit-WiKi/Stranger.S02E16.1080p.BluRay.x265.10bit-WiKi.mkv,Stranger.S02E16.1080p.BluRay.x265.10bit-WiKi.mkv,4641917872,2024-02-03T11:27:48,series,1920x1080,hevc,3996.37,9292 +/mnt/Downloads/series/Stranger.S02.1080p.BluRay.x265.10bit-WiKi/Stranger.S02E01.1080p.BluRay.x265.10bit-WiKi.mkv,Stranger.S02E01.1080p.BluRay.x265.10bit-WiKi.mkv,4154781570,2024-02-03T11:27:48,series,1920x1080,hevc,3546.965,9370 +/mnt/Downloads/series/Stranger.S02.1080p.BluRay.x265.10bit-WiKi/Stranger.S02E08.1080p.BluRay.x265.10bit-WiKi.mkv,Stranger.S02E08.1080p.BluRay.x265.10bit-WiKi.mkv,4488367153,2024-02-03T11:27:44,series,1920x1080,hevc,3849.6,9327 +/mnt/Downloads/series/Stranger.S02.1080p.BluRay.x265.10bit-WiKi/Stranger.S02E05.1080p.BluRay.x265.10bit-WiKi.mkv,Stranger.S02E05.1080p.BluRay.x265.10bit-WiKi.mkv,4255117967,2024-02-03T11:27:38,series,1920x1080,hevc,3648.775,9329 +/mnt/Downloads/series/Stranger.S02.1080p.BluRay.x265.10bit-WiKi/Stranger.S02E12.1080p.BluRay.x265.10bit-WiKi.mkv,Stranger.S02E12.1080p.BluRay.x265.10bit-WiKi.mkv,4160756054,2024-02-03T11:27:45,series,1920x1080,hevc,3557.18,9357 +/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,Grande.Maison.Tokyo.E01.2019.KKTV.WEB-DL.1080p.x264.AAC-AREY.mkv,1669954114,2020-01-02T12:28:34,series,1920x1080,h264,4142.045,3225 +/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,Grande.Maison.Tokyo.E02.2019.KKTV.WEB-DL.1080p.x264.AAC-AREY.mkv,1445216651,2020-01-02T12:27:55,series,1920x1080,h264,3594.1,3216 +/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,Grande.Maison.Tokyo.E07.2019.KKTV.WEB-DL.1080p.x264.AAC-AREY.mkv,1116282031,2020-01-02T12:28:00,series,1920x1080,h264,2784.096,3207 +/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,Grande.Maison.Tokyo.E09.2019.KKTV.WEB-DL.1080p.x264.AAC-AREY.mkv,1114222887,2020-01-02T12:29:13,series,1920x1080,h264,2780.148,3206 +/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,Grande.Maison.Tokyo.E11.2019.KKTV.WEB-DL.1080p.x264.AAC-AREY.mkv,1739275469,2020-01-02T12:30:23,series,1920x1080,h264,4330.173,3213 +/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,Grande.Maison.Tokyo.E04.2019.KKTV.WEB-DL.1080p.x264.AAC-AREY.mkv,1125580074,2020-01-02T12:28:10,series,1920x1080,h264,2796.89,3219 +/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,Grande.Maison.Tokyo.E03.2019.KKTV.WEB-DL.1080p.x264.AAC-AREY.mkv,1135084376,2020-01-02T12:29:10,series,1920x1080,h264,2786.38,3258 +/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,Grande.Maison.Tokyo.E08.2019.KKTV.WEB-DL.1080p.x264.AAC-AREY.mkv,1115106536,2020-01-02T12:29:50,series,1920x1080,h264,2793.105,3193 +/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,Grande.Maison.Tokyo.E06.2019.KKTV.WEB-DL.1080p.x264.AAC-AREY.mkv,1124363545,2020-01-02T12:27:38,series,1920x1080,h264,2795.102,3218 +/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,Grande.Maison.Tokyo.E10.2019.KKTV.WEB-DL.1080p.x264.AAC-AREY.mkv,2510317612,2020-01-02T12:30:17,series,1920x1080,h264,3859.969,5202 +/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,Grande.Maison.Tokyo.E05.2019.KKTV.WEB-DL.1080p.x264.AAC-AREY.mkv,1138058506,2020-01-02T12:27:45,series,1920x1080,h264,2776.085,3279 +/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,The.Wheel.of.Time.S02E08.What.Was.Meant.To.Be.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv,4686720073,2023-10-17T08:26:00,series,1920x1080,h264,4186.433,8956 +/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,The.Wheel.of.Time.S02E07.Daes.DaeMar.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv,4140847476,2023-10-17T08:25:57,series,1920x1080,h264,3910.574,8471 +/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,The.Wheel.of.Time.S02E04.Daughter.of.the.Night.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv,3843284221,2023-10-17T05:03:00,series,1920x1080,h264,3656.695,8408 +/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,The.Wheel.of.Time.S02E06.Eyes.Without.Pity.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv,4882756279,2023-10-17T08:26:02,series,1920x1080,h264,4185.974,9331 +/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,The.Wheel.of.Time.S02E05.Damane.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv,4744257679,2023-10-17T08:26:03,series,1920x1080,h264,4124.287,9202 +/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,The.Peripheral.S01E05.2022.Amazon.WEB-DL.1080p.H264.DDP-HDCTV.mkv,4014143832,2022-11-16T15:09:38,series,1920x960,h264,3527.072,9104 +/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,The.Peripheral.S01E08.2022.Amazon.WEB-DL.1080p.H264.DDP-HDCTV.mkv,3615549692,2022-12-07T14:29:23,series,1920x960,h264,3455.872,8369 +/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,The.Peripheral.S01E04.2022.Amazon.WEB-DL.1080p.H264.DDP-HDCTV.mkv,4067868203,2022-11-09T14:24:11,series,1920x960,h264,3498.72,9301 +/mnt/Downloads/series/Presumed.Innocent.S01E01.Bases.Loaded.1080p.ATVP.WEB-DL.DDP5.1.H.264-NTb.mkv,Presumed.Innocent.S01E01.Bases.Loaded.1080p.ATVP.WEB-DL.DDP5.1.H.264-NTb.mkv,3711340813,2024-06-20T05:30:51,series,1920x960,h264,2751.457,10790 +/mnt/Downloads/series/(ドラマ) 時をかけるな、恋人たち 第03話 「きみがぼくを見つけた夜」 (1440x1080i x264-AAC)-DoA.mkv,(ドラマ) 時をかけるな、恋人たち 第03話 「きみがぼくを見つけた夜」 (1440x1080i x264-AAC)-DoA.mkv,922449257,2024-01-05T12:39:47,series,1440x1080,h264,1389.726,5310 +/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,Goodbye.Earth.S01E08.Dum.Spiro.Spero.1080p.NF.WEB-DL.DUAL.DDP5.1.Atmos.H.264-FLUX.mkv,3198273879,2024-05-01T08:29:33,series,1920x1080,h264,3759.84,6805 +/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,Goodbye.Earth.S01E10.Exodus.Eclipsed.1080p.NF.WEB-DL.DUAL.DDP5.1.Atmos.H.264-FLUX.mkv,2536923855,2024-05-01T08:29:33,series,1920x1080,h264,3249.663,6245 +/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,Goodbye.Earth.S01E02.Love.is.Back.1080p.NF.WEB-DL.DUAL.DDP5.1.Atmos.H.264-FLUX.mkv,3563138245,2024-05-01T08:29:34,series,1920x1080,h264,3849.304,7405 +/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,Goodbye.Earth.S01E03.I.Have.Butterflies.1080p.NF.WEB-DL.DUAL.DDP5.1.Atmos.H.264-FLUX.mkv,2535421683,2024-05-01T08:29:31,series,1920x1080,h264,3247.119,6246 +/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,Goodbye.Earth.S01E11.Last.Christmas.1080p.NF.WEB-DL.DUAL.DDP5.1.Atmos.H.264-FLUX.mkv,2765160364,2024-05-01T08:29:30,series,1920x1080,h264,3534.656,6258 +/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,Goodbye.Earth.S01E12.Goodbye.Earth.1080p.NF.WEB-DL.DUAL.DDP5.1.Atmos.H.264-FLUX.mkv,3052126925,2024-05-01T08:29:28,series,1920x1080,h264,3440.98,7095 +/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,Goodbye.Earth.S01E07.Arirang.Gone.But.Not.Forgotten.1080p.NF.WEB-DL.DUAL.DDP5.1.Atmos.H.264-FLUX.mkv,3226847415,2024-05-01T08:29:37,series,1920x1080,h264,3570.234,7230 +/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,Goodbye.Earth.S01E01.Football.Bloody.Hell.1080p.NF.WEB-DL.DUAL.DDP5.1.Atmos.H.264-FLUX.mkv,3115390189,2024-05-01T08:29:33,series,1920x1080,h264,3923.378,6352 +/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,Goodbye.Earth.S01E05.The.Girl.with.a.Cat.1080p.NF.WEB-DL.DUAL.DDP5.1.Atmos.H.264-FLUX.mkv,2863550468,2024-05-01T08:29:30,series,1920x1080,h264,3659.907,6259 +/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,Goodbye.Earth.S01E06.Much.Ado.About.Nothing.1080p.NF.WEB-DL.DUAL.DDP5.1.Atmos.H.264-FLUX.mkv,3047589254,2024-05-01T08:29:28,series,1920x1080,h264,3888.885,6269 +/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,Goodbye.Earth.S01E09.Silver.Lining.1080p.NF.WEB-DL.DUAL.DDP5.1.Atmos.H.264-FLUX.mkv,3552678051,2024-05-01T08:29:31,series,1920x1080,h264,3538.243,8032 +/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,Goodbye.Earth.S01E04.Felix.Culpa.1080p.NF.WEB-DL.DUAL.DDP5.1.Atmos.H.264-FLUX.mkv,2614160366,2024-05-01T08:29:31,series,1920x1080,h264,2850.848,7335 +/mnt/Downloads/series/こっち向いてよ向井くん EP01 720p HDTV x264 AAC-DoA.mkv,こっち向いてよ向井くん EP01 720p HDTV x264 AAC-DoA.mkv,1684775860,2024-01-12T11:17:12,series,1280x720,h264,2986.62,4512 +/mnt/Downloads/series/Believe-君にかける橋- 第08話 1080p KKTV WEB-DL H264 AAC.mkv,Believe-君にかける橋- 第08話 1080p KKTV WEB-DL H264 AAC.mkv,1301115796,2024-06-24T12:06:11,series,1920x1080,h264,3243.99,3208 +/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,Itaewon.Class.S01E14.720p.NF.WEB-DL.DDP2.0.x264-ExREN.mkv,1545373918,2021-01-26T07:17:19,series,1280x720,h264,3956.0,3125 +/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,Itaewon.Class.S01E04.720p.NF.WEB-DL.DDP2.0.x264-ExREN.mkv,1487505578,2021-01-26T07:17:23,series,1280x720,h264,3804.832,3127 +/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,Itaewon.Class.S01E15.720p.NF.WEB-DL.DDP2.0.x264-ExREN.mkv,1543537639,2021-01-26T07:17:19,series,1280x720,h264,3951.136,3125 +/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,Itaewon.Class.S01E05.720p.NF.WEB-DL.DDP2.0.x264-ExREN.mkv,1587759515,2021-01-26T07:17:17,series,1280x720,h264,4060.064,3128 +/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,Itaewon.Class.S01E06.720p.NF.WEB-DL.DDP2.0.x264-ExREN.mkv,1590266146,2021-01-26T07:16:54,series,1280x720,h264,4066.976,3128 +/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,Itaewon.Class.S01E16.720p.NF.WEB-DL.DDP2.0.x264-ExREN.mkv,2061672442,2021-01-26T07:17:23,series,1280x720,h264,5279.136,3124 +/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,Itaewon.Class.S01E08.720p.NF.WEB-DL.DDP2.0.x264-ExREN.mkv,1532938265,2021-01-26T07:17:22,series,1280x720,h264,3922.848,3126 +/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,Itaewon.Class.S01E07.720p.NF.WEB-DL.DDP2.0.x264-ExREN.mkv,1632337395,2021-01-26T07:17:02,series,1280x720,h264,4176.288,3126 +/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,Itaewon.Class.S01E09.720p.NF.WEB-DL.DDP2.0.x264-ExREN.mkv,1563783362,2021-01-26T07:17:16,series,1280x720,h264,4014.112,3116 +/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,Itaewon.Class.S01E01.720p.NF.WEB-DL.DDP2.0.x264-ExREN.mkv,1724412575,2021-01-26T07:17:05,series,1280x720,h264,4413.984,3125 +/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,Itaewon.Class.S01E11.720p.NF.WEB-DL.DDP2.0.x264-ExREN.mkv,1655673205,2021-01-26T07:17:13,series,1280x720,h264,4237.984,3125 +/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,Itaewon.Class.S01E10.720p.NF.WEB-DL.DDP2.0.x264-ExREN.mkv,1659362846,2021-01-26T07:17:14,series,1280x720,h264,4247.072,3125 +/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,Itaewon.Class.S01E13.720p.NF.WEB-DL.DDP2.0.x264-ExREN.mkv,1625513212,2021-01-26T07:17:21,series,1280x720,h264,4160.16,3125 +/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,Itaewon.Class.S01E03.720p.NF.WEB-DL.DDP2.0.x264-ExREN.mkv,1545863566,2021-01-26T07:17:21,series,1280x720,h264,3955.488,3126 +/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,Itaewon.Class.S01E12.720p.NF.WEB-DL.DDP2.0.x264-ExREN.mkv,1640184973,2021-01-26T07:17:19,series,1280x720,h264,4199.456,3124 +/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,Itaewon.Class.S01E02.720p.NF.WEB-DL.DDP2.0.x264-ExREN.mkv,1376346944,2021-01-26T07:17:23,series,1280x720,h264,4026.528,2734 +/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,The.Bear.S03E08.Ice.Chips.1080p.DSNP.WEB-DL.DDP5.1.H.264-NTb.mkv,1701744836,2024-07-07T01:57:09,series,1920x1080,h264,2393.308,5688 +/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,The.Bear.S03E10.Forever.1080p.DSNP.WEB-DL.DDP5.1.H.264-NTb.mkv,1700177415,2024-07-07T01:57:01,series,1920x1080,h264,2572.57,5287 +/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,The.Bear.S03E02.Next.1080p.DSNP.WEB-DL.DDP5.1.H.264-NTb.mkv,1201138716,2024-07-07T01:54:48,series,1920x1080,h264,1626.0,5909 +/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,The.Bear.S03E05.Children.1080p.DSNP.WEB-DL.DDP5.1.H.264-NTb.mkv,1342848715,2024-07-07T01:56:48,series,1920x1080,h264,2051.925,5235 +/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,The.Bear.S03E03.Doors.1080p.DSNP.WEB-DL.DDP5.1.H.264-NTb.mkv,1085943094,2024-07-07T01:54:48,series,1920x1080,h264,1770.185,4907 +/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,The.Bear.S03E07.Legacy.1080p.DSNP.WEB-DL.DDP5.1.H.264-NTb.mkv,1088191360,2024-07-07T01:56:48,series,1920x1080,h264,1712.753,5082 +/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,The.Bear.S03E09.Apologies.1080p.DSNP.WEB-DL.DDP5.1.H.264-NTb.mkv,1612338113,2024-07-07T01:56:53,series,1920x1080,h264,2580.453,4998 +/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,The.Bear.S03E01.Tomorrow.1080p.DSNP.WEB-DL.DDP5.1.H.264-NTb.mkv,1496115884,2024-07-07T01:53:42,series,1920x1080,h264,2206.872,5423 +/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,The.Bear.S03E04.Violet.1080p.DSNP.WEB-DL.DDP5.1.H.264-NTb.mkv,1294172974,2024-07-07T01:55:03,series,1920x1080,h264,1985.692,5213 +/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,The.Bear.S03E06.Napkins.1080p.DSNP.WEB-DL.DDP5.1.H.264-NTb.mkv,1322589666,2024-07-07T01:56:48,series,1920x1080,h264,1984.441,5331 +/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,The.Witcher.S02E06.Dear.Friend.1080p.NF.WEB-DL.DDP5.1.Atmos.HDR.H.265-TEPES.mkv,2642627978,2021-12-23T13:29:05,series,1920x1080,hevc,3434.816,6154 +/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,The.Witcher.S02E05.Turn.Your.Back.1080p.NF.WEB-DL.DDP5.1.Atmos.HDR.H.265-TEPES.mkv,2567936405,2021-12-23T13:25:29,series,1920x1080,hevc,3400.864,6040 +/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,The.Witcher.S02E07.Voleth.Meir.1080p.NF.WEB-DL.DDP5.1.Atmos.HDR.H.265-TEPES.mkv,2445018031,2021-12-23T13:55:49,series,1920x1080,hevc,3276.864,5969 +/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,The.Witcher.S02E08.Family.1080p.NF.WEB-DL.DDP5.1.Atmos.HDR.H.265-TEPES.mkv,2502712408,2021-12-23T13:55:49,series,1920x1080,hevc,3292.768,6080 +/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,The.Witcher.S02E02.Kaer.Morhen.1080p.NF.WEB-DL.DDP5.1.Atmos.HDR.H.265-TEPES.mkv,2724530494,2021-12-23T12:11:39,series,1920x1080,hevc,3508.832,6211 +/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,The.Witcher.S02E04.Redanian.Intelligence.1080p.NF.WEB-DL.DDP5.1.Atmos.HDR.H.265-TEPES.mkv,2563232490,2021-12-23T13:17:19,series,1920x1080,hevc,3320.768,6175 +/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,The.Witcher.S02E01.A.Grain.of.Truth.1080p.NF.WEB-DL.DDP5.1.Atmos.HDR.H.265-TEPES.mkv,2977960792,2021-12-23T12:06:46,series,1920x1080,hevc,3786.784,6291 +/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,The.Witcher.S02E03.What.Is.Lost.1080p.NF.WEB-DL.DDP5.1.Atmos.HDR.H.265-TEPES.mkv,2721240490,2021-12-23T12:17:00,series,1920x1080,hevc,3566.88,6103 +/mnt/Downloads/series/Zenryouiki.Ijou.Kaiketsushitsu.EP02.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv,Zenryouiki.Ijou.Kaiketsushitsu.EP02.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv,2331423970,2024-10-23T11:31:58,series,1920x1080,h264,2677.056,6967 +/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,Its.Okay.to.Not.Be.Okay.2020.S01E14.The.Hand.the.Monkfish.1080p.NF.WEB-DL.DDP.2.0.x265.10bit-monster6688.mkv,1522756112,2021-01-19T17:17:17,series,1920x1080,hevc,4681.76,2602 +/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,Its.Okay.to.Not.Be.Okay.2020.S01E03.Sleeping.Witch.1080p.NF.WEB-DL.DDP.2.0.x265.10bit-monster6688.mkv,2186178093,2021-01-19T17:17:22,series,1920x1080,hevc,4557.984,3837 +/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,Its.Okay.to.Not.Be.Okay.2020.S01E07.The.Cheerful.Dog.1080p.NF.WEB-DL.DDP.2.0.x265.10bit-monster6688.mkv,1570999646,2021-01-19T17:17:21,series,1920x1080,hevc,4301.728,2921 +/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,Its.Okay.to.Not.Be.Okay.2020.S01E16.Finding.The.Real.Face.1080p.NF.WEB-DL.DDP.2.0.x265.10bit-monster6688.mkv,1907547750,2021-01-19T17:17:18,series,1920x1080,hevc,4872.864,3131 +/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,Its.Okay.to.Not.Be.Okay.2020.S01E12.Romeo.and.Juliet.1080p.NF.WEB-DL.DDP.2.0.x265.10bit-monster6688.mkv,1468218901,2021-01-19T17:16:36,series,1920x1080,hevc,4420.256,2657 +/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,Its.Okay.to.Not.Be.Okay.2020.S01E09.King.Donkey.Ears.1080p.NF.WEB-DL.DDP.2.0.x265.10bit-monster6688.mkv,1838001746,2021-01-19T17:17:20,series,1920x1080,hevc,4464.416,3293 +/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,Its.Okay.to.Not.Be.Okay.2020.S01E08.Beauty.and.the.Beast.1080p.NF.WEB-DL.DDP.2.0.x265.10bit-monster6688.mkv,1800370828,2021-01-19T17:17:06,series,1920x1080,hevc,4601.504,3130 +/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,Its.Okay.to.Not.Be.Okay.2020.S01E04.Zombie.Kid.1080p.NF.WEB-DL.DDP.2.0.x265.10bit-monster6688.mkv,2037331021,2021-01-19T17:17:26,series,1920x1080,hevc,4185.504,3894 +/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,Its.Okay.to.Not.Be.Okay.2020.S01E05.Rapunzel.And.The.Cursed.Castle.1080p.NF.WEB-DL.DDP.2.0.x265.10bit-monster6688.mkv,1489640819,2021-01-19T17:16:56,series,1920x1080,hevc,4360.224,2733 +/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,Its.Okay.to.Not.Be.Okay.2020.S01E15.The.Tale.of.Two.Brothers.1080p.NF.WEB-DL.DDP.2.0.x265.10bit-monster6688.mkv,1564824903,2021-01-19T17:17:15,series,1920x1080,hevc,4701.088,2662 +/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,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,1665197302,2021-01-19T17:17:27,series,1920x1080,hevc,4943.264,2694 +/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,Its.Okay.to.Not.Be.Okay.2020.S01E11.The.Ugly.Duckling.1080p.NF.WEB-DL.DDP.2.0.x265.10bit-monster6688.mkv,1671817992,2021-01-19T17:16:49,series,1920x1080,hevc,5125.152,2609 +/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,Its.Okay.to.Not.Be.Okay.2020.S01E02.The.Lady.in.Red.Shoes.1080p.NF.WEB-DL.DDP.2.0.x265.10bit-monster6688.mkv,2182295723,2021-01-19T17:17:16,series,1920x1080,hevc,4399.136,3968 +/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,Its.Okay.to.Not.Be.Okay.2020.S01E10.The.Girl.Who.Cried.Wolf.1080p.NF.WEB-DL.DDP.2.0.x265.10bit-monster6688.mkv,1586021370,2021-01-19T17:17:18,series,1920x1080,hevc,4895.904,2591 +/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,Its.Okay.to.Not.Be.Okay.2020.S01E06.Bluebeards.Secret.1080p.NF.WEB-DL.DDP.2.0.x265.10bit-monster6688.mkv,1635113396,2021-01-19T17:17:19,series,1920x1080,hevc,4254.496,3074 +/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,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,2169210803,2021-01-19T17:16:58,series,1920x1080,hevc,4472.096,3880 +/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,Street.Food.S01E02.Osaka.Japan.1080p.NF.WEB-DL.DDP5.1.x264-NTG.mkv,1297450225,2019-06-18T12:45:56,series,1920x1080,h264,1940.397,5349 +/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,Street.Food.S01E05.Chiayi.Taiwan.1080p.NF.WEB-DL.DDP5.1.x264-NTG.mkv,1349472242,2019-06-18T12:46:03,series,1920x1080,h264,2014.429,5359 +/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,Street.Food.S01E01.Bangkok.Thailand.1080p.NF.WEB-DL.DDP5.1.x264-NTG.mkv,1117087070,2019-06-18T12:46:06,series,1920x1080,h264,1812.311,4931 +/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,Street.Food.S01E04.Yogyakarta.Indonesia.1080p.NF.WEB-DL.DDP5.1.x264-NTG.mkv,1364559821,2019-06-18T12:46:08,series,1920x1080,h264,1878.377,5811 +/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,Street.Food.S01E06.Seoul.South.Korea.1080p.NF.WEB-DL.DDP5.1.x264-NTG.mkv,1015557438,2019-06-18T12:46:08,series,1920x1080,h264,1784.283,4553 +/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,Street.Food.S01E08.Singapore.1080p.NF.WEB-DL.DDP5.1.x264-NTG.mkv,1356894481,2019-06-18T12:46:04,series,1920x1080,h264,1948.405,5571 +/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,Street.Food.S01E03.Delhi.India.1080p.NF.WEB-DL.DDP5.1.x264-NTG.mkv,1173163337,2019-06-18T12:46:07,series,1920x1080,h264,1830.287,5127 +/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,Street.Food.S01E09.Cebu.Philippines.1080p.NF.WEB-DL.DDP5.1.x264-NTG.mkv,1502931915,2019-06-18T12:46:10,series,1920x1080,h264,1904.403,6313 +/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,Street.Food.S01E07.Ho.Chi.Minh.City.Vietnam.1080p.NF.WEB-DL.DDP5.1.x264-NTG.mkv,1415226013,2019-06-18T12:45:59,series,1920x1080,h264,1794.251,6310 +/mnt/Downloads/series/【幻月字幕组】【21年日剧】【38岁离婚单身女尝试相亲APP的成果日记】【01-06】【END】【1080P】【中日双语】/【幻月字幕组】【21年日剧】【38岁离婚单身女尝试相亲APP的成果日记】【04】【1080P】【中日双语】.mp4,【幻月字幕组】【21年日剧】【38岁离婚单身女尝试相亲APP的成果日记】【04】【1080P】【中日双语】.mp4,599326455,2022-03-12T14:16:25,series,1920x1080,h264,1499.865,3196 +/mnt/Downloads/series/【幻月字幕组】【21年日剧】【38岁离婚单身女尝试相亲APP的成果日记】【01-06】【END】【1080P】【中日双语】/【幻月字幕组】【21年日剧】【38岁离婚单身女尝试相亲APP的成果日记】【06】【END】【1080P】【中日双语】.mp4,【幻月字幕组】【21年日剧】【38岁离婚单身女尝试相亲APP的成果日记】【06】【END】【1080P】【中日双语】.mp4,580016882,2022-03-12T14:16:23,series,1920x1080,h264,1480.853333,3133 +/mnt/Downloads/series/【幻月字幕组】【21年日剧】【38岁离婚单身女尝试相亲APP的成果日记】【01-06】【END】【1080P】【中日双语】/【幻月字幕组】【21年日剧】【38岁离婚单身女尝试相亲APP的成果日记】【05】【1080P】【中日双语】.mp4,【幻月字幕组】【21年日剧】【38岁离婚单身女尝试相亲APP的成果日记】【05】【1080P】【中日双语】.mp4,599298929,2022-03-12T14:16:24,series,1920x1080,h264,1499.306667,3197 +/mnt/Downloads/series/【幻月字幕组】【21年日剧】【38岁离婚单身女尝试相亲APP的成果日记】【01-06】【END】【1080P】【中日双语】/【幻月字幕组】【21年日剧】【38岁离婚单身女尝试相亲APP的成果日记】【01】【1080P】【中日双语】.mp4,【幻月字幕组】【21年日剧】【38岁离婚单身女尝试相亲APP的成果日记】【01】【1080P】【中日双语】.mp4,586881809,2022-03-12T14:16:30,series,1920x1080,h264,1498.986667,3132 +/mnt/Downloads/series/【幻月字幕组】【21年日剧】【38岁离婚单身女尝试相亲APP的成果日记】【01-06】【END】【1080P】【中日双语】/【幻月字幕组】【21年日剧】【38岁离婚单身女尝试相亲APP的成果日记】【03】【1080P】【中日双语】.mp4,【幻月字幕组】【21年日剧】【38岁离婚单身女尝试相亲APP的成果日记】【03】【1080P】【中日双语】.mp4,599224667,2022-03-12T14:16:24,series,1920x1080,h264,1499.605333,3196 +/mnt/Downloads/series/【幻月字幕组】【21年日剧】【38岁离婚单身女尝试相亲APP的成果日记】【01-06】【END】【1080P】【中日双语】/【幻月字幕组】【21年日剧】【38岁离婚单身女尝试相亲APP的成果日记】【02】【1080P】【中日双语】.mp4,【幻月字幕组】【21年日剧】【38岁离婚单身女尝试相亲APP的成果日记】【02】【1080P】【中日双语】.mp4,599269112,2022-03-12T14:16:27,series,1920x1080,h264,1499.648,3196 +/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,Yellowstone.2018.S05E01.One.Hundred.Years.is.Nothing.1080p.REPACK.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv,4590290222,2022-11-18T14:04:59,series,1920x1080,h264,3845.92,9548 +/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,Yellowstone.2018.S05E02.The.Sting.of.Wisdom.1080p.REPACK.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv,4266792867,2022-11-18T14:05:40,series,1920x1080,h264,3561.504,9584 +/mnt/Downloads/series/A.Shop.for.Killers.S01E01.Murthehelp.1080p.Disney+.WEB-DL.DDP.5.1.H.264-CHDWEB.mkv,A.Shop.for.Killers.S01E01.Murthehelp.1080p.Disney+.WEB-DL.DDP.5.1.H.264-CHDWEB.mkv,2552190478,2024-01-20T11:27:01,series,1920x1080,h264,2978.816,6854 +/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,Shiawase.Kanako.no.Koroshiya.Seikatsu.S01E06.2025.1080p.WEB-DL.H264.AAC-ADWeb.mkv,750660540,2025-05-12T12:42:41,series,1920x1080,h264,1945.77,3086 +/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,Shiawase.Kanako.no.Koroshiya.Seikatsu.S01E01.Repack.2025.1080p.WEB-DL.H264.AAC-ADWeb.mkv,482736526,2025-05-12T12:39:58,series,1920x1080,h264,1211.456,3187 +/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,Shiawase.Kanako.no.Koroshiya.Seikatsu.S01E05.2025.1080p.WEB-DL.H264.AAC-ADWeb.mkv,538277468,2025-05-12T12:42:54,series,1920x1080,h264,1507.05,2857 +/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,Shiawase.Kanako.no.Koroshiya.Seikatsu.S01E04.2025.1080p.WEB-DL.H264.AAC-ADWeb.mkv,656402415,2025-05-12T12:42:19,series,1920x1080,h264,1652.544,3177 +/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,Shiawase.Kanako.no.Koroshiya.Seikatsu.S01E03.Repack.2025.1080p.WEB-DL.H264.AAC-ADWeb.mkv,791460692,2025-05-12T12:41:55,series,1920x1080,h264,1947.455,3251 +/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,Shiawase.Kanako.no.Koroshiya.Seikatsu.S01E02.Repack.2025.1080p.WEB-DL.H264.AAC-ADWeb.mkv,601842833,2025-05-12T12:41:39,series,1920x1080,h264,1487.232,3237 +/mnt/Downloads/series/リビングの松永さん Complete 1080p HDTV x264 AAC/リビングの松永さん #07 「誕生日会は恋の決戦!」 1080p HDTV x264 AAC.mkv,リビングの松永さん #07 「誕生日会は恋の決戦!」 1080p HDTV x264 AAC.mkv,1094217335,2024-04-04T01:45:53,series,1920x1080,h264,1390.022,6297 +/mnt/Downloads/series/リビングの松永さん Complete 1080p HDTV x264 AAC/リビングの松永さん #09 「愛と涙の結婚式!松永の決意」 1080p HDTV x264 AAC.mkv,リビングの松永さん #09 「愛と涙の結婚式!松永の決意」 1080p HDTV x264 AAC.mkv,1117082850,2024-04-04T01:45:55,series,1920x1080,h264,1389.988,6429 +/mnt/Downloads/series/リビングの松永さん Complete 1080p HDTV x264 AAC/リビングの松永さん #11 「クライマックス突入!最大の危機」 1080p HDTV x264 AAC.mkv,リビングの松永さん #11 「クライマックス突入!最大の危機」 1080p HDTV x264 AAC.mkv,933541122,2024-04-04T01:45:48,series,1920x1080,h264,1375.04,5431 +/mnt/Downloads/series/リビングの松永さん Complete 1080p HDTV x264 AAC/リビングの松永さん #08 「あふれる思い!涙の告白」 1080p HDTV x264 AAC.mkv,リビングの松永さん #08 「あふれる思い!涙の告白」 1080p HDTV x264 AAC.mkv,1114765246,2024-04-04T01:45:53,series,1920x1080,h264,1390.022,6415 +/mnt/Downloads/series/リビングの松永さん Complete 1080p HDTV x264 AAC/リビングの松永さん #04 「合コンで事件発生」 1080p HDTV x264 AAC.mkv,リビングの松永さん #04 「合コンで事件発生」 1080p HDTV x264 AAC.mkv,1234698072,2024-04-04T01:45:56,series,1920x1080,h264,1389.988,7106 +/mnt/Downloads/series/リビングの松永さん Complete 1080p HDTV x264 AAC/リビングの松永さん #01 「同居生活開始!」 1080p HDTV x264 AAC.mkv,リビングの松永さん #01 「同居生活開始!」 1080p HDTV x264 AAC.mkv,1330588612,2024-04-04T01:45:51,series,1920x1080,h264,1389.994,7658 +/mnt/Downloads/series/リビングの松永さん Complete 1080p HDTV x264 AAC/リビングの松永さん #05 「恋の三角関係!忍び寄る影」 1080p HDTV x264 AAC.mkv,リビングの松永さん #05 「恋の三角関係!忍び寄る影」 1080p HDTV x264 AAC.mkv,1002147458,2024-04-04T01:45:48,series,1920x1080,h264,1389.994,5767 +/mnt/Downloads/series/リビングの松永さん Complete 1080p HDTV x264 AAC/リビングの松永さん #12 「最終回!運命の恋の結末!」 End 1080p HDTV x264 AAC.mkv,リビングの松永さん #12 「最終回!運命の恋の結末!」 End 1080p HDTV x264 AAC.mkv,878433623,2024-04-04T01:45:49,series,1920x1080,h264,1375.04,5110 +/mnt/Downloads/series/リビングの松永さん Complete 1080p HDTV x264 AAC/リビングの松永さん #02 「真夜中に近づく心」 1080p HDTV x264 AAC.mkv,リビングの松永さん #02 「真夜中に近づく心」 1080p HDTV x264 AAC.mkv,1014429299,2024-04-04T01:45:58,series,1920x1080,h264,1390.037,5838 +/mnt/Downloads/series/リビングの松永さん Complete 1080p HDTV x264 AAC/リビングの松永さん #10 「恋心の結末!呪いを解くキス」 1080p HDTV x264 AAC.mkv,リビングの松永さん #10 「恋心の結末!呪いを解くキス」 1080p HDTV x264 AAC.mkv,1275602209,2024-04-04T01:45:49,series,1920x1080,h264,1389.988,7341 +/mnt/Downloads/series/リビングの松永さん Complete 1080p HDTV x264 AAC/リビングの松永さん #03 「二人きりでお泊り」 1080p HDTV x264 AAC.mkv,リビングの松永さん #03 「二人きりでお泊り」 1080p HDTV x264 AAC.mkv,1095588352,2024-04-04T01:45:56,series,1920x1080,h264,1390.037,6305 +/mnt/Downloads/series/リビングの松永さん Complete 1080p HDTV x264 AAC/リビングの松永さん #06 「忘れられない、昔の恋」 1080p HDTV x264 AAC.mkv,リビングの松永さん #06 「忘れられない、昔の恋」 1080p HDTV x264 AAC.mkv,1166103876,2024-04-04T01:45:56,series,1920x1080,h264,1390.037,6711 +/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,The.Makanai.Cooking.for.the.Maiko.House.2023.S01E06.1080p.NF.WEB-DL.DDP5.1.HDR.H265-PTerWEB.mkv,787031222,2023-01-13T13:02:14,series,1920x1080,hevc,2697.248,2334 +/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,The.Makanai.Cooking.for.the.Maiko.House.2023.S01E01.1080p.NF.WEB-DL.DDP5.1.HDR.H265-PTerWEB.mkv,877036860,2023-01-13T13:02:33,series,1920x1080,hevc,2284.832,3070 +/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,The.Makanai.Cooking.for.the.Maiko.House.2023.S01E07.1080p.NF.WEB-DL.DDP5.1.HDR.H265-PTerWEB.mkv,934751058,2023-01-13T13:02:27,series,1920x1080,hevc,2653.088,2818 +/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,The.Makanai.Cooking.for.the.Maiko.House.2023.S01E04.1080p.NF.WEB-DL.DDP5.1.HDR.H265-PTerWEB.mkv,1454577398,2023-01-13T13:02:31,series,1920x1080,hevc,2625.056,4432 +/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,The.Makanai.Cooking.for.the.Maiko.House.2023.S01E02.1080p.NF.WEB-DL.DDP5.1.HDR.H265-PTerWEB.mkv,754232402,2023-01-13T13:02:31,series,1920x1080,hevc,2386.976,2527 +/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,The.Makanai.Cooking.for.the.Maiko.House.2023.S01E08.1080p.NF.WEB-DL.DDP5.1.HDR.H265-PTerWEB.mkv,717856043,2023-01-13T13:02:30,series,1920x1080,hevc,2631.2,2182 +/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,The.Makanai.Cooking.for.the.Maiko.House.2023.S01E05.1080p.NF.WEB-DL.DDP5.1.HDR.H265-PTerWEB.mkv,881819612,2023-01-13T13:02:35,series,1920x1080,hevc,2626.976,2685 +/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,The.Makanai.Cooking.for.the.Maiko.House.2023.S01E03.1080p.NF.WEB-DL.DDP5.1.HDR.H265-PTerWEB.mkv,1014507999,2023-01-13T13:02:34,series,1920x1080,hevc,2689.184,3018 +/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,The.Makanai.Cooking.for.the.Maiko.House.2023.S01E09.1080p.NF.WEB-DL.DDP5.1.HDR.H265-PTerWEB.mkv,725146256,2023-01-13T13:02:31,series,1920x1080,hevc,2787.104,2081 +/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,Fallout.S01E05.The.Past.1080p.AMZN.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv,3008950250,2024-04-11T09:03:24,series,1920x800,h264,2720.375,8848 +/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,Fallout.S01E04.The.Ghouls.1080p.AMZN.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv,3327603416,2024-04-11T09:03:20,series,1920x800,h264,2920.5,9115 +/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,Fallout.S01E08.The.Beginning.1080p.AMZN.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv,4124109652,2024-04-11T09:02:40,series,1920x800,h264,3746.5,8806 +/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,Fallout.S01E07.The.Radio.1080p.AMZN.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv,4205339236,2024-04-11T09:02:26,series,1920x800,h264,3663.375,9183 +/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,Fallout.S01E02.The.Target.1080p.AMZN.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv,4512064841,2024-04-11T09:03:25,series,1920x800,h264,3930.709,9183 +/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,Fallout.S01E01.The.End.1080p.AMZN.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv,4980993607,2024-04-11T09:03:29,series,1920x1080,h264,4497.5,8860 +/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,Fallout.S01E06.The.Trap.1080p.AMZN.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv,4123450504,2024-04-11T09:03:21,series,1920x1080,h264,3640.875,9060 +/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,Fallout.S01E03.The.Head.1080p.AMZN.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv,3984558390,2024-04-11T09:03:22,series,1920x800,h264,3419.75,9321 +/mnt/Downloads/series/Presumed.Innocent.S01E02.People.vs.Rozat.Sabich.1080p.ATVP.WEB-DL.DDP5.1.H.264-NTb.mkv,Presumed.Innocent.S01E02.People.vs.Rozat.Sabich.1080p.ATVP.WEB-DL.DDP5.1.H.264-NTb.mkv,3526415779,2024-06-20T05:31:06,series,1920x960,h264,2608.773,10814 +/mnt/Downloads/series/Dark.Matter.2024.S01E08.Jupiter.1080p.ATVP.WEB-DL.DDP5.1.H.264-NTb.mkv,Dark.Matter.2024.S01E08.Jupiter.1080p.ATVP.WEB-DL.DDP5.1.H.264-NTb.mkv,3827582227,2024-06-19T11:26:29,series,1920x960,h264,2826.032,10835 +/mnt/Downloads/series/連続ドラマW パレートの誤算~ケースワーカー殺人事件 Complete 720p HDTV x264 AAC-DoA/連続ドラマW パレートの誤算~ケースワーカー殺人事件 第一話 720p HDTV x264 AAC-DoA.mkv,連続ドラマW パレートの誤算~ケースワーカー殺人事件 第一話 720p HDTV x264 AAC-DoA.mkv,1002556911,2020-05-07T10:59:16,series,1280x720,h264,3140.007,2554 +/mnt/Downloads/series/連続ドラマW パレートの誤算~ケースワーカー殺人事件 Complete 720p HDTV x264 AAC-DoA/連続ドラマW パレートの誤算~ケースワーカー殺人事件 最終話 End 720p HDTV x264 AAC-DoA.mkv,連続ドラマW パレートの誤算~ケースワーカー殺人事件 最終話 End 720p HDTV x264 AAC-DoA.mkv,891475009,2020-05-07T10:59:16,series,1280x720,h264,3129.993,2278 +/mnt/Downloads/series/連続ドラマW パレートの誤算~ケースワーカー殺人事件 Complete 720p HDTV x264 AAC-DoA/連続ドラマW パレートの誤算~ケースワーカー殺人事件 第三話 720p HDTV x264 AAC-DoA.mkv,連続ドラマW パレートの誤算~ケースワーカー殺人事件 第三話 720p HDTV x264 AAC-DoA.mkv,887199879,2020-05-07T10:59:20,series,1280x720,h264,3000.0,2365 +/mnt/Downloads/series/連続ドラマW パレートの誤算~ケースワーカー殺人事件 Complete 720p HDTV x264 AAC-DoA/連続ドラマW パレートの誤算~ケースワーカー殺人事件 第二話 720p HDTV x264 AAC-DoA.mkv,連続ドラマW パレートの誤算~ケースワーカー殺人事件 第二話 720p HDTV x264 AAC-DoA.mkv,962234652,2020-05-07T10:59:22,series,1280x720,h264,3000.0,2565 +/mnt/Downloads/series/連続ドラマW パレートの誤算~ケースワーカー殺人事件 Complete 720p HDTV x264 AAC-DoA/連続ドラマW パレートの誤算~ケースワーカー殺人事件 第四話 720p HDTV x264 AAC-DoA.mkv,連続ドラマW パレートの誤算~ケースワーカー殺人事件 第四話 720p HDTV x264 AAC-DoA.mkv,857916885,2020-05-07T10:59:19,series,1280x720,h264,3040.003,2257 +/mnt/Downloads/series/Study.Group.2025.S01E01.1080p.Friday.WEB-DL.H264.AAC-PTerWEB.mkv,Study.Group.2025.S01E01.1080p.Friday.WEB-DL.H264.AAC-PTerWEB.mkv,2432370227,2025-02-13T09:43:12,series,1920x1080,h264,2623.554,7417 +/mnt/Downloads/series/連続ドラマW セイレーンの懺悔 Complete 720p HDTV x264 AAC-DoA/連続ドラマW セイレーンの懺悔 第一話 720p HDTV x264 AAC-DoA.mkv,連続ドラマW セイレーンの懺悔 第一話 720p HDTV x264 AAC-DoA.mkv,1175701161,2020-12-12T05:14:44,series,1280x720,h264,3209.96,2930 +/mnt/Downloads/series/連続ドラマW セイレーンの懺悔 Complete 720p HDTV x264 AAC-DoA/連続ドラマW セイレーンの懺悔 最終話 720p HDTV x264 AAC-DoA.mkv,連続ドラマW セイレーンの懺悔 最終話 720p HDTV x264 AAC-DoA.mkv,1266245617,2020-12-12T05:14:48,series,1280x720,h264,3300.053,3069 +/mnt/Downloads/series/連続ドラマW セイレーンの懺悔 Complete 720p HDTV x264 AAC-DoA/連続ドラマW セイレーンの懺悔 第二話 720p HDTV x264 AAC-DoA.mkv,連続ドラマW セイレーンの懺悔 第二話 720p HDTV x264 AAC-DoA.mkv,1106930805,2020-12-12T05:14:47,series,1280x720,h264,3059.994,2893 +/mnt/Downloads/series/連続ドラマW セイレーンの懺悔 Complete 720p HDTV x264 AAC-DoA/連続ドラマW セイレーンの懺悔 第三話 720p HDTV x264 AAC-DoA.mkv,連続ドラマW セイレーンの懺悔 第三話 720p HDTV x264 AAC-DoA.mkv,1202607843,2020-12-12T05:14:48,series,1280x720,h264,2875.029,3346 +/mnt/Downloads/series/Believe-君にかける橋- 第5話 〈波乱の逃亡編〉ついに完結―! 1080p TVer WEB-DL H264 AAC-Solitude@DoA.mkv,Believe-君にかける橋- 第5話 〈波乱の逃亡編〉ついに完結―! 1080p TVer WEB-DL H264 AAC-Solitude@DoA.mkv,944693900,2024-06-12T00:22:08,series,1920x1080,h264,2701.952,2797 +/mnt/Downloads/series/Believe-君にかける橋- 第09話 END 1080p KKTV WEB-DL H264 AAC.mkv,Believe-君にかける橋- 第09話 END 1080p KKTV WEB-DL H264 AAC.mkv,1393386275,2024-06-24T12:08:43,series,1920x1080,h264,3455.106,3226 +/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,Tsuma.Shougakusei.ni.Naru.E08.2022.WEB-DL.1080p.H265.AAC-HDCTV.mkv,1306406919,2024-10-14T01:02:12,series,1920x1080,hevc,2686.89,3889 +/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,Tsuma.Shougakusei.ni.Naru.E06.2022.WEB-DL.1080p.H265.AAC-HDCTV.mkv,1321090977,2024-10-14T01:00:50,series,1920x1080,hevc,2704.064,3908 +/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,Tsuma.Shougakusei.ni.Naru.E09.2022.WEB-DL.1080p.H265.AAC-HDCTV.mkv,1309551233,2024-10-14T01:03:44,series,1920x1080,hevc,2699.136,3881 +/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,Tsuma.Shougakusei.ni.Naru.E07.2022.WEB-DL.1080p.H265.AAC-HDCTV.mkv,1317428982,2024-10-14T01:01:15,series,1920x1080,hevc,2694.357,3911 +/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,Tsuma.Shougakusei.ni.Naru.E04.2022.WEB-DL.1080p.H265.AAC-HDCTV.mkv,1321387600,2024-10-14T00:57:33,series,1920x1080,hevc,2706.24,3906 +/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,Tsuma.Shougakusei.ni.Naru.E05.2022.WEB-DL.1080p.H265.AAC-HDCTV.mkv,1334408812,2024-10-14T00:59:08,series,1920x1080,hevc,2741.077,3894 +/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,Tsuma.Shougakusei.ni.Naru.E03.2022.WEB-DL.1080p.H265.AAC-HDCTV.mkv,1319046883,2024-10-14T00:56:18,series,1920x1080,hevc,2705.066,3900 +/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,Tsuma.Shougakusei.ni.Naru.E02.2022.WEB-DL.1080p.H265.AAC-HDCTV.mkv,1322121990,2024-10-14T00:55:28,series,1920x1080,hevc,2695.018,3924 +/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,Tsuma.Shougakusei.ni.Naru.E01.2022.WEB-DL.1080p.H265.AAC-HDCTV.mkv,1702553031,2024-10-14T00:53:41,series,1920x1080,hevc,3515.008,3874 +/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,Tsuma.Shougakusei.ni.Naru.E10.2022.WEB-DL.1080p.H265.AAC-HDCTV.mkv,1307752923,2024-10-14T01:03:47,series,1920x1080,hevc,2677.312,3907 +/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,A.Murder.at.the.End.of.the.World.S01E02.The.Silver.Doe.1080p.DSNP.WEB-DL.DDP5.1.H.264-FLUX.mkv,2880466043,2023-11-20T13:24:46,series,1920x1080,h264,3781.486,6093 +/mnt/Downloads/series/Shogun.2024.S01E04.The.Eightfold.Fence.1080p.DSNP.WEB-DL.DDP5.1.H.264-APEX.mkv,Shogun.2024.S01E04.The.Eightfold.Fence.1080p.DSNP.WEB-DL.DDP5.1.H.264-APEX.mkv,3006222744,2024-03-13T12:20:08,series,1920x1080,h264,3380.384,7114 +/mnt/Downloads/series/Shogun.2024.S01E01.Anjin.1080p.DSNP.WEB-DL.DDP5.1.H.264-APEX.mkv,Shogun.2024.S01E01.Anjin.1080p.DSNP.WEB-DL.DDP5.1.H.264-APEX.mkv,3698715953,2024-03-05T08:04:51,series,1920x1080,h264,4195.296,7053 +/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,Brooklyn.Nine-Nine.S08E09.The.Last.Day.1.1080p.Blu-ray.Remux.AVC.DTS-HD.MA.5.1-SiCFoI.mkv,4189468875,2022-04-05T04:55:57,series,1920x1080,h264,1313.739,25511 +/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,Brooklyn.Nine-Nine.S08E06.The.Set.Up.1080p.Blu-ray.Remux.AVC.DTS-HD.MA.5.1-SiCFoI.mkv,4149686129,2022-04-05T04:59:31,series,1920x1080,h264,1305.771,25423 +/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,Brooklyn.Nine-Nine.S08E10.The.Last.Day.2.1080p.Blu-ray.Remux.AVC.DTS-HD.MA.5.1-SiCFoI.mkv,4691263919,2022-04-05T04:54:41,series,1920x1080,h264,1478.646,25381 +/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,Brooklyn.Nine-Nine.S08E04.Balancing.1080p.Blu-ray.Remux.AVC.DTS-HD.MA.5.1-SiCFoI.mkv,4109214071,2022-04-05T04:59:27,series,1920x1080,h264,1294.836,25388 +/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,Brooklyn.Nine-Nine.S08E07.Game.of.Boyles.1080p.Blu-ray.Remux.AVC.DTS-HD.MA.5.1-SiCFoI.mkv,4223572117,2022-04-05T04:57:38,series,1920x1080,h264,1309.526,25802 +/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,Brooklyn.Nine-Nine.S08E01.The.Good.Ones.1080p.Blu-ray.Remux.AVC.DTS-HD.MA.5.1-SiCFoI.mkv,4127907925,2022-04-05T03:03:59,series,1920x1080,h264,1309.684,25214 +/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,Brooklyn.Nine-Nine.S08E02.The.Lake.House.1080p.Blu-ray.Remux.AVC.DTS-HD.MA.5.1-SiCFoI.mkv,4137958003,2022-04-05T04:57:30,series,1920x1080,h264,1293.92,25584 +/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,Brooklyn.Nine-Nine.S08E03.Blue.Flu.1080p.Blu-ray.Remux.AVC.DTS-HD.MA.5.1-SiCFoI.mkv,4068221450,2022-04-05T05:00:32,series,1920x1080,h264,1294.794,25135 +/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,Brooklyn.Nine-Nine.S08E08.Renewal.1080p.Blu-ray.Remux.AVC.DTS-HD.MA.5.1-SiCFoI.mkv,4180355643,2022-04-05T04:59:31,series,1920x1080,h264,1308.14,25565 +/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,Brooklyn.Nine-Nine.S08E05.PB.&.J.1080p.Blu-ray.Remux.AVC.DTS-HD.MA.5.1-SiCFoI.mkv,4094125462,2022-04-05T04:57:50,series,1920x1080,h264,1279.531,25597 +/mnt/Downloads/series/冰上恋人/Pride 06 1280x720p.mkv,Pride 06 1280x720p.mkv,1512180967,2020-10-02T16:25:52,series,1280x720,h264,2643.64,4576 +/mnt/Downloads/series/冰上恋人/Pride 09 1280x720p.mkv,Pride 09 1280x720p.mkv,1589925099,2020-10-02T16:25:40,series,1280x720,h264,2779.096,4576 +/mnt/Downloads/series/冰上恋人/Pride 10 1280x720p.mkv,Pride 10 1280x720p.mkv,1512620158,2020-10-02T16:25:46,series,1280x720,h264,2643.76,4577 +/mnt/Downloads/series/冰上恋人/Pride 01-02 1280x720p.mkv,Pride 01-02 1280x720p.mkv,3410398208,2020-10-02T16:25:49,series,1280x720,h264,5961.16,4576 +/mnt/Downloads/series/冰上恋人/Pride 11 1280x720p.mkv,Pride 11 1280x720p.mkv,2401532716,2020-10-02T16:25:50,series,1280x720,h264,4196.84,4577 +/mnt/Downloads/series/冰上恋人/Pride 05 1280x720p.mkv,Pride 05 1280x720p.mkv,1585534374,2020-10-02T16:25:47,series,1280x720,h264,2771.64,4576 +/mnt/Downloads/series/冰上恋人/Pride 08 1280x720p.mkv,Pride 08 1280x720p.mkv,1401850227,2020-10-02T16:25:52,series,1280x720,h264,2449.96,4577 +/mnt/Downloads/series/冰上恋人/Pride 03-04 1280x720p.mkv,Pride 03-04 1280x720p.mkv,3082770702,2020-10-02T16:25:49,series,1280x720,h264,5391.0,4574 +/mnt/Downloads/series/冰上恋人/Pride 07 1280x720p.mkv,Pride 07 1280x720p.mkv,1692215421,2020-10-02T16:25:50,series,1280x720,h264,2958.36,4576 +/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,Bodies.S01E02.2023.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-ADWeb.mkv,3211162364,2023-11-30T20:05:24,series,1920x1080,h264,3306.88,7768 +/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,Bodies.S01E06.2023.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-ADWeb.mkv,3406179178,2023-11-30T20:05:26,series,1920x1080,h264,3341.4,8155 +/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,Bodies.S01E01.2023.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-ADWeb.mkv,3191378256,2023-11-30T20:05:26,series,1920x1080,h264,3349.0,7623 +/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,Bodies.S01E05.2023.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-ADWeb.mkv,3331484316,2023-11-30T20:05:11,series,1920x1080,h264,3424.4,7782 +/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,Bodies.S01E07.2023.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-ADWeb.mkv,3643619631,2023-11-30T20:05:21,series,1920x1080,h264,3567.56,8170 +/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,Bodies.S01E03.2023.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-ADWeb.mkv,3460057811,2023-11-30T20:05:23,series,1920x1080,h264,3448.84,8026 +/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,Bodies.S01E04.2023.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-ADWeb.mkv,3254074519,2023-11-30T20:05:25,series,1920x1080,h264,3362.12,7742 +/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,Bodies.S01E08.2023.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-ADWeb.mkv,3673193647,2023-11-30T20:05:32,series,1920x1080,h264,3710.76,7919 +/mnt/Downloads/series/ホリデイラブ Complete 720p HDTV x264 AAC-DoA/ホリデイラブ ep.3 「最後のクリスマス」 720p HDTV x264 AAC-DoA.mkv,ホリデイラブ ep.3 「最後のクリスマス」 720p HDTV x264 AAC-DoA.mkv,1155715177,2020-11-01T14:28:12,series,1280x720,h264,2904.968,3182 +/mnt/Downloads/series/ホリデイラブ Complete 720p HDTV x264 AAC-DoA/ホリデイラブ ep.1 「夫の帰還」 720p HDTV x264 AAC-DoA.mkv,ホリデイラブ ep.1 「夫の帰還」 720p HDTV x264 AAC-DoA.mkv,1202603685,2020-11-01T14:28:31,series,1280x720,h264,2904.874,3311 +/mnt/Downloads/series/ホリデイラブ Complete 720p HDTV x264 AAC-DoA/ホリデイラブ ep.2 「妻の攻撃」 720p HDTV x264 AAC-DoA.mkv,ホリデイラブ ep.2 「妻の攻撃」 720p HDTV x264 AAC-DoA.mkv,1217608225,2020-11-01T14:28:29,series,1280x720,h264,2904.935,3353 +/mnt/Downloads/series/ホリデイラブ Complete 720p HDTV x264 AAC-DoA/ホリデイラブ ep.4 「妻の覚醒」 720p HDTV x264 AAC-DoA.mkv,ホリデイラブ ep.4 「妻の覚醒」 720p HDTV x264 AAC-DoA.mkv,1093211149,2020-11-01T14:28:31,series,1280x720,h264,2904.935,3010 +/mnt/Downloads/series/ホリデイラブ Complete 720p HDTV x264 AAC-DoA/ホリデイラブ ep.5 「夫の逆襲」 720p HDTV x264 AAC-DoA.mkv,ホリデイラブ ep.5 「夫の逆襲」 720p HDTV x264 AAC-DoA.mkv,1160986460,2020-11-01T14:27:19,series,1280x720,h264,2904.868,3197 +/mnt/Downloads/series/ホリデイラブ Complete 720p HDTV x264 AAC-DoA/ホリデイラブ ep.6 「魔性の復讐」 720p HDTV x264 AAC-DoA.mkv,ホリデイラブ ep.6 「魔性の復讐」 720p HDTV x264 AAC-DoA.mkv,1220294160,2020-11-01T14:28:26,series,1280x720,h264,2904.938,3360 +/mnt/Downloads/series/ホリデイラブ Complete 720p HDTV x264 AAC-DoA/ホリデイラブ ep.8 「新たなる希望」 End 720p HDTV x264 AAC-DoA.mkv,ホリデイラブ ep.8 「新たなる希望」 End 720p HDTV x264 AAC-DoA.mkv,1275486148,2020-11-01T14:28:23,series,1280x720,h264,2889.887,3530 +/mnt/Downloads/series/ホリデイラブ Complete 720p HDTV x264 AAC-DoA/ホリデイラブ ep.7 「夫婦間恋愛」 720p HDTV x264 AAC-DoA.mkv,ホリデイラブ ep.7 「夫婦間恋愛」 720p HDTV x264 AAC-DoA.mkv,1192670590,2020-11-01T14:27:46,series,1280x720,h264,2905.024,3284 +/mnt/Downloads/series/しずかちゃんとパパ Complete 1080p HDTV x264 AAC/しずかちゃんとパパ 第5回 「パパのいない夜」 1080p HDTV x264 AAC.mkv,しずかちゃんとパパ 第5回 「パパのいない夜」 1080p HDTV x264 AAC.mkv,2887705525,2022-07-05T13:34:12,series,1920x1080,h264,2940.288,7856 +/mnt/Downloads/series/しずかちゃんとパパ Complete 1080p HDTV x264 AAC/しずかちゃんとパパ 第7回 「パパの深い海の底」 1080p HDTV x264 AAC.mkv,しずかちゃんとパパ 第7回 「パパの深い海の底」 1080p HDTV x264 AAC.mkv,2739728779,2022-07-05T13:34:11,series,1920x1080,h264,2940.608,7453 +/mnt/Downloads/series/しずかちゃんとパパ Complete 1080p HDTV x264 AAC/しずかちゃんとパパ 第6回 「この優しい世界」 1080p HDTV x264 AAC.mkv,しずかちゃんとパパ 第6回 「この優しい世界」 1080p HDTV x264 AAC.mkv,2726705349,2022-07-05T13:34:12,series,1920x1080,h264,2940.138,7419 +/mnt/Downloads/series/しずかちゃんとパパ Complete 1080p HDTV x264 AAC/しずかちゃんとパパ 第3回 「空飛ぶ自転車」 1080p HDTV x264 AAC.mkv,しずかちゃんとパパ 第3回 「空飛ぶ自転車」 1080p HDTV x264 AAC.mkv,2780082641,2022-07-05T13:34:11,series,1920x1080,h264,2940.437,7563 +/mnt/Downloads/series/しずかちゃんとパパ Complete 1080p HDTV x264 AAC/しずかちゃんとパパ 第2回 「聞こえない音楽会」 1080p HDTV x264 AAC.mkv,しずかちゃんとパパ 第2回 「聞こえない音楽会」 1080p HDTV x264 AAC.mkv,2661842717,2022-07-05T13:34:10,series,1920x1080,h264,2940.27,7242 +/mnt/Downloads/series/しずかちゃんとパパ Complete 1080p HDTV x264 AAC/しずかちゃんとパパ 第8回 「紙吹雪の中で」 End 1080p HDTV x264 AAC.mkv,しずかちゃんとパパ 第8回 「紙吹雪の中で」 End 1080p HDTV x264 AAC.mkv,2973994281,2022-07-05T13:34:13,series,1920x1080,h264,2940.01,8092 +/mnt/Downloads/series/しずかちゃんとパパ Complete 1080p HDTV x264 AAC/しずかちゃんとパパ 第1回 「ケバブサンドの秘密」 1080p HDTV x264 AAC.mkv,しずかちゃんとパパ 第1回 「ケバブサンドの秘密」 1080p HDTV x264 AAC.mkv,2747780307,2022-07-05T13:21:12,series,1920x1080,h264,2940.07,7476 +/mnt/Downloads/series/しずかちゃんとパパ Complete 1080p HDTV x264 AAC/しずかちゃんとパパ 第4回 「涙のけんちん汁」 1080p HDTV x264 AAC.mkv,しずかちゃんとパパ 第4回 「涙のけんちん汁」 1080p HDTV x264 AAC.mkv,2874120527,2022-07-05T13:34:08,series,1920x1080,h264,2940.138,7820 +/mnt/Downloads/series/Play.Dirty.2025.2160p.AMZN.WEB-DL.DDP.5.1.H.265-CHDWEB.mkv,Play.Dirty.2025.2160p.AMZN.WEB-DL.DDP.5.1.H.265-CHDWEB.mkv,14677616602,2025-10-05T05:25:49,series,3840x1600,hevc,7652.544,15344 +/mnt/Downloads/series/RoOT 第07話 1080p KKTV WEB-DL H264 AAC.mkv,RoOT 第07話 1080p KKTV WEB-DL H264 AAC.mkv,559704238,2024-05-21T15:08:50,series,1920x1080,h264,1395.055,3209 +/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,Logically.Impossible.Detective.Ryoko.Kamizuru.is.on.the.Case.2023.E03.1080p.KKTV.WEB-DL.x264.AAC-PTerWEB.mkv,1096745813,2023-06-27T02:19:15,series,1920x1080,h264,2744.088,3197 +/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,Reacher.S02E08.Fly.Boy.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv,2612329133,2024-01-20T09:54:35,series,1920x960,h264,2537.16,8237 +/mnt/Downloads/series/Believe-君にかける橋- 第2話 決意の脱獄計画…全ては妻の為に 1080p TVer WEB-DL H264 AAC-Solitude@DoA.mkv,Believe-君にかける橋- 第2話 決意の脱獄計画…全ては妻の為に 1080p TVer WEB-DL H264 AAC-Solitude@DoA.mkv,1126149432,2024-05-16T12:24:19,series,1920x1080,h264,3265.216,2759 +/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,The.Hot.Spot.S01E01.2025.V2.1080p.NF.WEB-DL.x264.AAC-ADWeb.mkv,2907208719,2025-03-13T11:54:42,series,1920x1080,h264,2755.072,8441 +/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,The.Hot.Spot.S01E02.2025.V2.1080p.NF.WEB-DL.x264.AAC-ADWeb.mkv,2774117975,2025-03-13T11:47:32,series,1920x1080,h264,2750.251,8069 +/mnt/Downloads/series/Ludwig.S01/谜探路德维希.Ludwig.S01E03.1080p.炸鱼薯条字幕组.双语字幕.mp4,谜探路德维希.Ludwig.S01E03.1080p.炸鱼薯条字幕组.双语字幕.mp4,1563199870,2024-11-20T13:43:21,series,1920x1080,h264,3486.336,3587 +/mnt/Downloads/series/Ludwig.S01/谜探路德维希.Ludwig.S01E06.1080p.炸鱼薯条字幕组.双语字幕.mp4,谜探路德维希.Ludwig.S01E06.1080p.炸鱼薯条字幕组.双语字幕.mp4,1488603102,2024-11-20T13:41:22,series,1920x1080,h264,3514.28,3388 +/mnt/Downloads/series/Ludwig.S01/谜探路德维希.Ludwig.S01E04.1080p.炸鱼薯条字幕组.双语字幕.V2.mp4,谜探路德维希.Ludwig.S01E04.1080p.炸鱼薯条字幕组.双语字幕.V2.mp4,1533853687,2024-11-20T13:39:54,series,1920x1080,h264,3239.488,3787 +/mnt/Downloads/series/Ludwig.S01/谜探路德维希.Ludwig.S01E02.1080p.炸鱼薯条字幕组.双语字幕.V2.mp4,谜探路德维希.Ludwig.S01E02.1080p.炸鱼薯条字幕组.双语字幕.V2.mp4,1645464859,2024-11-20T13:42:49,series,1920x1080,h264,3475.2,3787 +/mnt/Downloads/series/Ludwig.S01/谜探路德维希.Ludwig.S01E05.1080p.炸鱼薯条字幕组.双语字幕.mp4,谜探路德维希.Ludwig.S01E05.1080p.炸鱼薯条字幕组.双语字幕.mp4,1467391825,2024-11-20T13:39:23,series,1920x1080,h264,3465.536,3387 +/mnt/Downloads/series/Ludwig.S01/谜探路德维希.Ludwig.S01E01.1080p.炸鱼薯条字幕组.双语字幕.mp4,谜探路德维希.Ludwig.S01E01.1080p.炸鱼薯条字幕组.双语字幕.mp4,1579948820,2024-11-20T13:38:49,series,1920x1080,h264,3426.32,3688 +/mnt/Downloads/series/Mindhunter.S02.1080p.NF.WEB-DL.DDP5.1.x264-MZABI/Mindhunter.S02E01.1080p.NF.WEB-DL.DDP5.1.x264-MZABI.mkv,Mindhunter.S02E01.1080p.NF.WEB-DL.DDP5.1.x264-MZABI.mkv,1269223817,2019-08-25T14:08:57,series,1920x1080,h264,2909.6,3489 +/mnt/Downloads/series/Mindhunter.S02.1080p.NF.WEB-DL.DDP5.1.x264-MZABI/Mindhunter.S02E03.1080p.NF.WEB-DL.DDP5.1.x264-MZABI.mkv,Mindhunter.S02E03.1080p.NF.WEB-DL.DDP5.1.x264-MZABI.mkv,1666837476,2019-08-25T14:10:39,series,1920x1080,h264,3638.048,3665 +/mnt/Downloads/series/Mindhunter.S02.1080p.NF.WEB-DL.DDP5.1.x264-MZABI/Mindhunter.S02E02.1080p.NF.WEB-DL.DDP5.1.x264-MZABI.mkv,Mindhunter.S02E02.1080p.NF.WEB-DL.DDP5.1.x264-MZABI.mkv,1476393429,2019-08-25T14:09:59,series,1920x1080,h264,2803.232,4213 +/mnt/Downloads/series/Mindhunter.S02.1080p.NF.WEB-DL.DDP5.1.x264-MZABI/Mindhunter.S02E05.1080p.NF.WEB-DL.DDP5.1.x264-MZABI.mkv,Mindhunter.S02E05.1080p.NF.WEB-DL.DDP5.1.x264-MZABI.mkv,2025084845,2019-08-25T14:11:02,series,1920x1080,h264,4312.736,3756 +/mnt/Downloads/series/Mindhunter.S02.1080p.NF.WEB-DL.DDP5.1.x264-MZABI/Mindhunter.S02E04.1080p.NF.WEB-DL.DDP5.1.x264-MZABI.mkv,Mindhunter.S02E04.1080p.NF.WEB-DL.DDP5.1.x264-MZABI.mkv,1239752823,2019-08-25T14:08:46,series,1920x1080,h264,3067.808,3232 +/mnt/Downloads/series/Mindhunter.S02.1080p.NF.WEB-DL.DDP5.1.x264-MZABI/Mindhunter.S02E07.1080p.NF.WEB-DL.DDP5.1.x264-MZABI.mkv,Mindhunter.S02E07.1080p.NF.WEB-DL.DDP5.1.x264-MZABI.mkv,1642812532,2019-08-25T14:10:16,series,1920x1080,h264,3507.872,3746 +/mnt/Downloads/series/Mindhunter.S02.1080p.NF.WEB-DL.DDP5.1.x264-MZABI/Mindhunter.S02E06.1080p.NF.WEB-DL.DDP5.1.x264-MZABI.mkv,Mindhunter.S02E06.1080p.NF.WEB-DL.DDP5.1.x264-MZABI.mkv,1547913423,2019-08-25T14:09:17,series,1920x1080,h264,3532.064,3505 +/mnt/Downloads/series/Mindhunter.S02.1080p.NF.WEB-DL.DDP5.1.x264-MZABI/Mindhunter.S02E09.1080p.NF.WEB-DL.DDP5.1.x264-MZABI.mkv,Mindhunter.S02E09.1080p.NF.WEB-DL.DDP5.1.x264-MZABI.mkv,2090491946,2019-08-25T14:11:19,series,1920x1080,h264,4424.864,3779 +/mnt/Downloads/series/Mindhunter.S02.1080p.NF.WEB-DL.DDP5.1.x264-MZABI/Mindhunter.S02E08.1080p.NF.WEB-DL.DDP5.1.x264-MZABI.mkv,Mindhunter.S02E08.1080p.NF.WEB-DL.DDP5.1.x264-MZABI.mkv,1287610186,2019-08-25T14:09:39,series,1920x1080,h264,3191.84,3227 +/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,The.Wheel.of.Time.S01E03.A.Place.of.Safety.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv,4290081450,2022-01-05T12:36:52,series,1920x1080,h264,3450.592,9946 +/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,The.Wheel.of.Time.S01E08.The.Eye.of.the.World.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv,3935646572,2022-01-05T13:25:00,series,1920x1080,h264,3402.656,9253 +/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,The.Wheel.of.Time.S01E01.Leavetaking.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv,3782282876,2022-01-05T12:22:50,series,1920x1080,h264,3244.192,9326 +/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,The.Wheel.of.Time.S01E04.The.Dragon.Reborn.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv,4631750889,2022-01-05T12:45:48,series,1920x1080,h264,3701.024,10011 +/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,The.Wheel.of.Time.S01E07.The.Dark.Along.the.Ways.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv,4181300958,2022-01-05T13:24:59,series,1920x1080,h264,3572.928,9362 +/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,The.Wheel.of.Time.S01E05.Blood.Calls.Blood.1080p.AMZN.WEB-DL.DDP5.1.H.265-NTb.mkv,4415934693,2022-01-05T13:25:01,series,1920x1080,h264,3620.0,9758 +/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,The.Wheel.of.Time.S01E02.Shadows.Waiting.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv,4189033221,2022-01-05T12:29:39,series,1920x1080,h264,3429.728,9771 +/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,The.Wheel.of.Time.S01E06.The.Flame.of.Tar.Valon.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv,4584090887,2022-01-05T13:24:59,series,1920x1080,h264,3732.0,9826 +/mnt/Downloads/series/Dark.Matter.2024.S01E01.Are.You.Happy.in.Your.Life.1080p.ATVP.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv,Dark.Matter.2024.S01E01.Are.You.Happy.in.Your.Life.1080p.ATVP.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv,3750002271,2024-06-08T05:43:56,series,1920x960,h264,2775.648,10808 +/mnt/Downloads/series/RoOT 第04話 1080p KKTV WEB-DL H264 AAC.mkv,RoOT 第04話 1080p KKTV WEB-DL H264 AAC.mkv,561895379,2024-05-21T14:58:50,series,1920x1080,h264,1395.055,3222 +/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,Extremely.Inappropriate.S01E10.Episode.10.1080p.NF.WEB-DL.DDP.2.0.H.264-CHDWEB.mkv,2580855636,2024-06-14T14:48:14,series,1920x1080,h264,3486.368,5922 +/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,Extremely.Inappropriate.S01E02.Episode.2.1080p.NF.WEB-DL.DDP.2.0.H.264-CHDWEB.mkv,1739127140,2024-06-14T14:48:11,series,1920x1080,h264,2701.216,5150 +/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,Extremely.Inappropriate.S01E01.Episode.1.1080p.NF.WEB-DL.DDP.2.0.H.264-CHDWEB.mkv,2256231945,2024-06-14T13:30:02,series,1920x1080,h264,3518.496,5129 +/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,Extremely.Inappropriate.S01E09.Episode.9.1080p.NF.WEB-DL.DDP.2.0.H.264-CHDWEB.mkv,1729021720,2024-06-14T14:48:08,series,1920x1080,h264,2693.408,5135 +/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,Extremely.Inappropriate.S01E04.Episode.4.1080p.NF.WEB-DL.DDP.2.0.H.264-CHDWEB.mkv,1915022254,2024-06-14T14:48:14,series,1920x1080,h264,2708.512,5656 +/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,Extremely.Inappropriate.S01E07.Episode.7.1080p.NF.WEB-DL.DDP.2.0.H.264-CHDWEB.mkv,1736293283,2024-06-14T14:48:14,series,1920x1080,h264,2708.256,5128 +/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,Extremely.Inappropriate.S01E03.Episode.3.1080p.NF.WEB-DL.DDP.2.0.H.264-CHDWEB.mkv,1734966265,2024-06-14T14:48:13,series,1920x1080,h264,2708.512,5124 +/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,Extremely.Inappropriate.S01E05.Episode.5.1080p.NF.WEB-DL.DDP.2.0.H.264-CHDWEB.mkv,1735297786,2024-06-14T14:47:53,series,1920x1080,h264,2708.384,5125 +/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,Extremely.Inappropriate.S01E08.Episode.8.1080p.NF.WEB-DL.DDP.2.0.H.264-CHDWEB.mkv,1819305871,2024-06-14T14:48:08,series,1920x1080,h264,2693.536,5403 +/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,Extremely.Inappropriate.S01E06.Episode.6.1080p.NF.WEB-DL.DDP.2.0.H.264-CHDWEB.mkv,1732567825,2024-06-14T14:48:08,series,1920x1080,h264,2701.856,5130 +/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,Hijack.2023.S01E07.Brace.Brace.Brace.1080p.ATVP.WEB-DL.DDP5.1.H.264-NTb.mkv,4221492270,2023-08-02T15:01:27,series,1920x960,h264,3125.927,10803 +/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,Severance.S01E05.2022.1080p.WEB-DL.x265.10bit.AC3£cXcY@FRDS.mkv,1483153837,2022-12-25T16:46:35,series,1918x802,hevc,2619.104,4530 +/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,Severance.S01E01.2022.1080p.WEB-DL.x265.10bit.AC3£cXcY@FRDS.mkv,1935224066,2022-12-25T16:50:05,series,1918x802,hevc,3434.752,4507 +/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,Severance.S01E09.2022.1080p.WEB-DL.x265.10bit.AC3£cXcY@FRDS.mkv,1381558884,2022-12-25T16:46:49,series,1918x802,hevc,2416.512,4573 +/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,Severance.S01E06.2022.1080p.WEB-DL.x265.10bit.AC3£cXcY@FRDS.mkv,1376027448,2022-12-25T16:46:36,series,1918x802,hevc,2421.44,4546 +/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,Severance.S01E02.2022.1080p.WEB-DL.x265.10bit.AC3£cXcY@FRDS.mkv,1829920149,2022-12-25T16:50:02,series,1918x802,hevc,3202.208,4571 +/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,Severance.S01E04.2022.1080p.WEB-DL.x265.10bit.AC3£cXcY@FRDS.mkv,1587947333,2022-12-25T16:46:43,series,1918x802,hevc,2795.552,4544 +/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,Severance.S01E08.2022.1080p.WEB-DL.x265.10bit.AC3£cXcY@FRDS.mkv,1610712044,2022-12-25T16:46:16,series,1918x802,hevc,2801.346,4599 +/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,Severance.S01E03.2022.1080p.WEB-DL.x265.10bit.AC3£cXcY@FRDS.mkv,1957847944,2022-12-25T16:50:06,series,1918x802,hevc,3399.744,4607 +/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,Severance.S01E07.2022.1080p.WEB-DL.x265.10bit.AC3£cXcY@FRDS.mkv,1742769816,2022-12-25T16:46:53,series,1918x802,hevc,2995.104,4654 +/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,Chicken.Nugget.S01E10.1080p.NF.WEB-DL.DUAL.DDP5.1.Atmos.H.264-FLUX.mkv,1591726600,2024-09-01T06:14:07,series,1920x1080,h264,2193.692,5804 +/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,Chicken.Nugget.S01E08.1080p.NF.WEB-DL.DUAL.DDP5.1.Atmos.H.264-FLUX.mkv,1851017335,2024-09-01T06:12:30,series,1920x1080,h264,2129.795,6952 +/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,Chicken.Nugget.S01E04.1080p.NF.WEB-DL.DUAL.DDP5.1.Atmos.H.264-FLUX.mkv,1448620998,2024-09-01T05:58:53,series,1920x1080,h264,2009.049,5768 +/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,Chicken.Nugget.S01E07.1080p.NF.WEB-DL.DUAL.DDP5.1.Atmos.H.264-FLUX.mkv,1359042729,2024-09-01T06:07:59,series,1920x1080,h264,1840.756,5906 +/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,Chicken.Nugget.S01E03.1080p.NF.WEB-DL.DUAL.DDP5.1.Atmos.H.264-FLUX.mkv,1425317226,2024-09-01T05:54:32,series,1920x1080,h264,1978.894,5762 +/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,Chicken.Nugget.S01E09.1080p.NF.WEB-DL.DUAL.DDP5.1.Atmos.H.264-FLUX.mkv,1285494581,2024-09-01T06:14:06,series,1920x1080,h264,1792.666,5736 +/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,Chicken.Nugget.S01E01.1080p.NF.WEB-DL.DUAL.DDP5.1.Atmos.H.264-FLUX.mkv,1409105484,2024-09-01T05:45:51,series,1920x1080,h264,1963.921,5739 +/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,Chicken.Nugget.S01E05.1080p.NF.WEB-DL.DUAL.DDP5.1.Atmos.H.264-FLUX.mkv,1188830350,2024-09-01T06:00:15,series,1920x1080,h264,1688.103,5633 +/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,Chicken.Nugget.S01E02.1080p.NF.WEB-DL.DUAL.DDP5.1.Atmos.H.264-FLUX.mkv,1691450179,2024-09-01T05:52:19,series,1920x1080,h264,1956.914,6914 +/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,Chicken.Nugget.S01E06.1080p.NF.WEB-DL.DUAL.DDP5.1.Atmos.H.264-FLUX.mkv,1199277167,2024-09-01T06:04:58,series,1920x1080,h264,1697.029,5653 +/mnt/Downloads/series/オリバーな犬、(Gosh!!)このヤロウ シーズン2 Complete 1080p HDTV x264 AAC/オリバーな犬、(Gosh!!)このヤロウ シーズン2 EP5 1080p HDTV x264 AAC.mkv,オリバーな犬、(Gosh!!)このヤロウ シーズン2 EP5 1080p HDTV x264 AAC.mkv,4531772560,2023-05-13T02:32:23,series,1920x1080,h264,2669.9,13578 +/mnt/Downloads/series/オリバーな犬、(Gosh!!)このヤロウ シーズン2 Complete 1080p HDTV x264 AAC/オリバーな犬、(Gosh!!)このヤロウ シーズン2 EP4 1080p HDTV x264 AAC.mkv,オリバーな犬、(Gosh!!)このヤロウ シーズン2 EP4 1080p HDTV x264 AAC.mkv,4579572433,2023-05-13T02:32:23,series,1920x1080,h264,2669.934,13721 +/mnt/Downloads/series/オリバーな犬、(Gosh!!)このヤロウ シーズン2 Complete 1080p HDTV x264 AAC/オリバーな犬、(Gosh!!)このヤロウ シーズン2 EP6 End 1080p HDTV x264 AAC.mkv,オリバーな犬、(Gosh!!)このヤロウ シーズン2 EP6 End 1080p HDTV x264 AAC.mkv,4069431251,2023-05-13T02:32:23,series,1920x1080,h264,2669.934,12193 +/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,A.House.of.Dynamite.2025.2160p.NF.WEB-DL.DDP5.1.Atmos.H.265-HHWEB.mkv,10235602898,2025-10-27T11:08:35,series,3840x2160,hevc,6904.128,11860 +/mnt/Downloads/series/Shogun.S01E07.2024.2160p.DSNP.WEB-DL.DDP5.1.DV.HDR.H.265-HHWEB.mkv,Shogun.S01E07.2024.2160p.DSNP.WEB-DL.DDP5.1.DV.HDR.H.265-HHWEB.mkv,6090068390,2024-04-03T11:47:38,series,3840x2160,hevc,3270.592,14896 +/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,Adolescence.S01E04.Episode.4.1080p.NF.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv,2544317505,2025-04-15T13:59:00,series,1920x1080,h264,3612.72,5634 +/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,Adolescence.S01E02.Episode.2.1080p.NF.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv,2115857272,2025-04-15T13:51:50,series,1920x1080,h264,3085.96,5485 +/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,Adolescence.S01E03.Episode.3.1080p.NF.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv,3259215595,2025-04-15T13:57:48,series,1920x1080,h264,3179.52,8200 +/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,Adolescence.S01E01.Episode.1.1080p.NF.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv,2724577244,2025-04-15T13:48:38,series,1920x1080,h264,3906.44,5579 +/mnt/Downloads/series/(ドラマ) 時をかけるな、恋人たち 第10話 「恋は大デジャブ」 (1440x1080i x264-AAC)-DoA.mkv,(ドラマ) 時をかけるな、恋人たち 第10話 「恋は大デジャブ」 (1440x1080i x264-AAC)-DoA.mkv,858969439,2024-01-05T13:03:30,series,1440x1080,h264,1374.74,4998 +/mnt/Downloads/series/恶人传记.Evillive.S01.2023.2160p.WEB-DL.H265.DDP2.0-OurTV/恶人传记.Evillive.S01E04.2023.2160p.WEB-DL.H265.DDP2.0-OurTV.mp4,恶人传记.Evillive.S01E04.2023.2160p.WEB-DL.H265.DDP2.0-OurTV.mp4,1276786102,2023-11-27T12:17:46,series,3840x2160,hevc,3607.822517,2831 +/mnt/Downloads/series/恶人传记.Evillive.S01.2023.2160p.WEB-DL.H265.DDP2.0-OurTV/恶人传记.Evillive.S01E08.2023.2160p.WEB-DL.H265.DDP2.0-OurTV.mp4,恶人传记.Evillive.S01E08.2023.2160p.WEB-DL.H265.DDP2.0-OurTV.mp4,1087307589,2023-11-27T12:17:47,series,3840x2160,hevc,3588.805374,2423 +/mnt/Downloads/series/恶人传记.Evillive.S01.2023.2160p.WEB-DL.H265.DDP2.0-OurTV/恶人传记.Evillive.S01E09.2023.2160p.WEB-DL.H265.DDP2.0-OurTV.mp4,恶人传记.Evillive.S01E09.2023.2160p.WEB-DL.H265.DDP2.0-OurTV.mp4,1238491040,2023-11-27T12:17:49,series,3840x2160,hevc,3608.844195,2745 +/mnt/Downloads/series/恶人传记.Evillive.S01.2023.2160p.WEB-DL.H265.DDP2.0-OurTV/恶人传记.Evillive.S01E01.2023.2160p.WEB-DL.H265.DDP2.0-OurTV.mp4,恶人传记.Evillive.S01E01.2023.2160p.WEB-DL.H265.DDP2.0-OurTV.mp4,1200616249,2023-11-27T12:17:46,series,3840x2160,hevc,3625.864422,2649 +/mnt/Downloads/series/恶人传记.Evillive.S01.2023.2160p.WEB-DL.H265.DDP2.0-OurTV/恶人传记.Evillive.S01E05.2023.2160p.WEB-DL.H265.DDP2.0-OurTV.mp4,恶人传记.Evillive.S01E05.2023.2160p.WEB-DL.H265.DDP2.0-OurTV.mp4,1241635801,2023-11-27T12:17:46,series,3840x2160,hevc,3596.816259,2761 +/mnt/Downloads/series/恶人传记.Evillive.S01.2023.2160p.WEB-DL.H265.DDP2.0-OurTV/恶人传记.Evillive.S01E10.2023.2160p.WEB-DL.H265.DDP2.0-OurTV.mp4,恶人传记.Evillive.S01E10.2023.2160p.WEB-DL.H265.DDP2.0-OurTV.mp4,1222290198,2023-11-27T12:17:47,series,3840x2160,hevc,4092.328549,2389 +/mnt/Downloads/series/恶人传记.Evillive.S01.2023.2160p.WEB-DL.H265.DDP2.0-OurTV/恶人传记.Evillive.S01E03.2023.2160p.WEB-DL.H265.DDP2.0-OurTV.mp4,恶人传记.Evillive.S01E03.2023.2160p.WEB-DL.H265.DDP2.0-OurTV.mp4,1330309052,2023-11-27T12:17:49,series,3840x2160,hevc,3597.814717,2958 +/mnt/Downloads/series/恶人传记.Evillive.S01.2023.2160p.WEB-DL.H265.DDP2.0-OurTV/恶人传记.Evillive.S01E07.2023.2160p.WEB-DL.H265.DDP2.0-OurTV.mp4,恶人传记.Evillive.S01E07.2023.2160p.WEB-DL.H265.DDP2.0-OurTV.mp4,1099610454,2023-11-27T12:17:49,series,3840x2160,hevc,3604.827143,2440 +/mnt/Downloads/series/恶人传记.Evillive.S01.2023.2160p.WEB-DL.H265.DDP2.0-OurTV/恶人传记.Evillive.S01E02.2023.2160p.WEB-DL.H265.DDP2.0-OurTV.mp4,恶人传记.Evillive.S01E02.2023.2160p.WEB-DL.H265.DDP2.0-OurTV.mp4,1245732829,2023-11-27T12:17:48,series,3840x2160,hevc,3674.904966,2711 +/mnt/Downloads/series/恶人传记.Evillive.S01.2023.2160p.WEB-DL.H265.DDP2.0-OurTV/恶人传记.Evillive.S01E06.2023.2160p.WEB-DL.H265.DDP2.0-OurTV.mp4,恶人传记.Evillive.S01E06.2023.2160p.WEB-DL.H265.DDP2.0-OurTV.mp4,1249465549,2023-11-27T12:17:45,series,3840x2160,hevc,3601.808549,2775 +/mnt/Downloads/series/花咲舞が黙ってない 2024 第01話 1080p friDay WEB-DL H264 AAC.mkv,花咲舞が黙ってない 2024 第01話 1080p friDay WEB-DL H264 AAC.mkv,2659788720,2024-05-01T08:55:54,series,1920x1080,h264,2700.964,7878 +/mnt/Downloads/series/(ドラマ) 時をかけるな、恋人たち 第08話 「サマータイムパトロール・ブルース」 (1440x1080i x264-AAC)-DoA.mkv,(ドラマ) 時をかけるな、恋人たち 第08話 「サマータイムパトロール・ブルース」 (1440x1080i x264-AAC)-DoA.mkv,814549214,2024-01-05T12:45:32,series,1440x1080,h264,1389.721,4688 +/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,The.Boys.S02E08.What.I.Know.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv,4338089954,2020-10-09T14:05:58,series,1920x800,h264,4046.304,8576 +/mnt/Downloads/series/Dark.Matter.2024.S01E04.The.Corridor.1080p.ATVP.WEB-DL.DDP5.1.H.264-NTb.mkv,Dark.Matter.2024.S01E04.The.Corridor.1080p.ATVP.WEB-DL.DDP5.1.H.264-NTb.mkv,4880916307,2024-06-08T05:52:10,series,1920x960,h264,3589.336,10878 +/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,The.Glory.S01E04.2160p.NF.WEB-DL.DDP5.1.Atmos.HDR.HEVC-XEBEC.mkv,6325636313,2023-01-02T05:45:24,series,3840x2160,hevc,2835.616,17846 +/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,The.Glory.S01E02.2160p.NF.WEB-DL.DDP5.1.Atmos.HDR.HEVC-XEBEC.mkv,7023556318,2023-01-02T05:26:18,series,3840x2160,hevc,3095.872,18149 +/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,The.Glory.S01E08.2160p.NF.WEB-DL.DDP5.1.Atmos.HDR.HEVC-XEBEC.mkv,7360835322,2023-01-02T05:45:32,series,3840x2160,hevc,3274.048,17985 +/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,The.Glory.S01E05.2160p.NF.WEB-DL.DDP5.1.Atmos.HDR.HEVC-XEBEC.mkv,6563737966,2023-01-02T05:45:25,series,3840x2160,hevc,2917.696,17997 +/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,The.Glory.S01E03.2160p.NF.WEB-DL.DDP5.1.Atmos.HDR.HEVC-XEBEC.mkv,7159939525,2023-01-02T05:45:24,series,3840x2160,hevc,3007.808,19043 +/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,The.Glory.S01E06.2160p.NF.WEB-DL.DDP5.1.Atmos.HDR.HEVC-XEBEC.mkv,6817162695,2023-01-02T05:45:28,series,3840x2160,hevc,3109.888,17536 +/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,The.Glory.S01E07.2160p.NF.WEB-DL.DDP5.1.Atmos.HDR.HEVC-XEBEC.mkv,4101393551,2023-01-02T05:45:29,series,3840x2160,hevc,2991.744,10967 +/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,The.Glory.S01E01.2160p.NF.WEB-DL.DDP5.1.Atmos.HDR.HEVC-XEBEC.mkv,6588542114,2023-01-02T05:14:14,series,3840x2160,hevc,2837.632,18574 +/mnt/Downloads/series/RoOT 第01話 1080p KKTV WEB-DL H264 AAC.mkv,RoOT 第01話 1080p KKTV WEB-DL H264 AAC.mkv,559178680,2024-04-21T12:09:49,series,1920x1080,h264,1395.055,3206 +/mnt/Downloads/series/(ドラマ) 時をかけるな、恋人たち 第06話 「バック・トゥ・ザ・エイティーズ」 (1440x1080i x264-AAC)-DoA.mkv,(ドラマ) 時をかけるな、恋人たち 第06話 「バック・トゥ・ザ・エイティーズ」 (1440x1080i x264-AAC)-DoA.mkv,988219416,2024-01-05T12:28:11,series,1440x1080,h264,1389.721,5688 +/mnt/Downloads/series/(ドラマ) 時をかけるな、恋人たち 第01話 「アバウト・タイムパトロール」 (1440x1080i x264-AAC)-DoA.mkv,(ドラマ) 時をかけるな、恋人たち 第01話 「アバウト・タイムパトロール」 (1440x1080i x264-AAC)-DoA.mkv,838799205,2024-01-05T11:53:42,series,1440x1080,h264,1389.721,4828 +/mnt/Downloads/series/Believe-君にかける橋- 第7話 忍び寄る危機!!裏切り者はすぐ側に― 1080p TVer WEB-DL H264 AAC-Solitude@DoA.mkv,Believe-君にかける橋- 第7話 忍び寄る危機!!裏切り者はすぐ側に― 1080p TVer WEB-DL H264 AAC-Solitude@DoA.mkv,951130130,2024-06-11T23:50:35,series,1920x1080,h264,2720.0,2797 +/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,Boku.no.Neechan.EP06.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv,1555043047,2022-05-09T15:09:36,series,1920x1080,h264,1440.032,8638 +/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,Boku.no.Neechan.EP02.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv,1346420287,2022-05-09T15:09:01,series,1920x1080,h264,1440.032,7479 +/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,Boku.no.Neechan.EP10.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv,1514787592,2022-05-09T14:34:56,series,1920x1080,h264,1440.032,8415 +/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,Boku.no.Neechan.EP07.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv,1512331240,2022-05-09T15:09:36,series,1920x1080,h264,1440.032,8401 +/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,Boku.no.Neechan.EP03.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv,1260961242,2022-05-09T15:09:36,series,1920x1080,h264,1440.032,7005 +/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,Boku.no.Neechan.EP09.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv,1510428587,2022-05-09T14:35:20,series,1920x1080,h264,1440.032,8391 +/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,Boku.no.Neechan.EP05.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv,1442049185,2022-05-09T15:08:00,series,1920x1080,h264,1440.032,8011 +/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,Boku.no.Neechan.EP01.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv,1251735288,2022-05-09T15:09:56,series,1920x1080,h264,1440.032,6953 +/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,Boku.no.Neechan.EP04.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv,1253974199,2022-05-09T15:09:38,series,1920x1080,h264,1440.032,6966 +/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,Boku.no.Neechan.EP08.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv,1585362421,2022-05-09T14:32:54,series,1920x1080,h264,1440.032,8807 +/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,The.Night.Agent.S01E05.The.Marionette.1080p.NF.WEB-DL.DDP5.1.Atmos.H.264-WDYM.mkv,2171499821,2023-03-24T12:40:21,series,1920x1080,h264,3137.632,5536 +/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,The.Night.Agent.S01E01.The.Call.1080p.NF.WEB-DL.DDP5.1.Atmos.H.264-WDYM.mkv,2287833445,2023-03-24T12:40:16,series,1920x1080,h264,3301.792,5543 +/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,The.Night.Agent.S01E10.Fathers.1080p.NF.WEB-DL.DDP5.1.Atmos.H.264-WDYM.mkv,1856354575,2023-03-24T12:40:07,series,1920x1080,h264,2709.184,5481 +/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,The.Night.Agent.S01E09.The.Devil.We.Know.1080p.NF.WEB-DL.DDP5.1.Atmos.H.264-WDYM.mkv,1857621660,2023-03-24T12:39:02,series,1920x1080,h264,2709.184,5485 +/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,The.Night.Agent.S01E07.Best.Served.Cold.REPACK.1080p.NF.WEB-DL.DDP5.1.Atmos.H.264-WDYM.mkv,1886749467,2023-03-24T12:40:23,series,1920x1080,h264,2753.248,5482 +/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,The.Night.Agent.S01E06.Fathoms.1080p.NF.WEB-DL.DDP5.1.Atmos.H.264-WDYM.mkv,2059630677,2023-03-24T12:40:25,series,1920x1080,h264,2975.456,5537 +/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,The.Night.Agent.S01E04.Eyes.Only.1080p.NF.WEB-DL.DDP5.1.Atmos.H.264-WDYM.mkv,1986031311,2023-03-24T12:40:16,series,1920x1080,h264,2889.376,5498 +/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,The.Night.Agent.S01E02.Redial.1080p.NF.WEB-DL.DDP5.1.Atmos.H.264-WDYM.mkv,1987186752,2023-03-24T12:40:11,series,1920x1080,h264,2895.392,5490 +/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,The.Night.Agent.S01E03.The.Zookeeper.1080p.NF.WEB-DL.DDP5.1.Atmos.H.264-WDYM.mkv,2356409421,2023-03-24T12:39:58,series,1920x1080,h264,3369.856,5594 +/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,The.Night.Agent.S01E08.Redux.1080p.NF.WEB-DL.DDP5.1.Atmos.H.264-WDYM.mkv,1869549578,2023-03-24T12:40:17,series,1920x1080,h264,2735.232,5468 +/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,City.Hunter.2024.1080p.NF.WEB-DL.DDP5.1.Atmos.H264-HHWEB.mkv,4841776012,2024-04-25T23:28:04,series,1920x1080,h264,6243.104,6204 +/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,The.Green.Planet.E03.2022.2160p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi.mkv,8743210555,2023-01-15T10:22:19,series,3840x2160,hevc,3076.95,22732 +/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,The.Green.Planet.E02.2022.2160p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi.mkv,8838656588,2023-01-15T10:22:21,series,3840x2160,hevc,3126.832,22613 +/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,The.Green.Planet.E05.2022.2160p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi.mkv,8814376579,2023-01-15T10:22:20,series,3840x2160,hevc,3114.737,22639 +/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,The.Green.Planet.E01.2022.2160p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi.mkv,8689867126,2023-01-15T10:22:20,series,3840x2160,hevc,3022.562,23000 +/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,The.Green.Planet.E04.2022.2160p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi.mkv,8703127990,2023-01-15T10:22:20,series,3840x2160,hevc,3128.084,22258 +/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,The.Green.Planet.2022.2160p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi.Sample.mkv,183421336,2023-01-15T10:02:55,series,3840x2160,hevc,60.811,24130 +/mnt/Downloads/series/RoOT 第02話 1080p KKTV WEB-DL H264 AAC.mkv,RoOT 第02話 1080p KKTV WEB-DL H264 AAC.mkv,560024057,2024-04-21T13:18:15,series,1920x1080,h264,1395.124,3211 +/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,Shitsuren.Meshi.E07.2022.Amazon.WEB-DL.1080p.H264.DDP-HDCTV.mkv,1589489724,2025-03-07T18:50:45,series,1920x1080,h264,1440.032,8830 +/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,Shitsuren.Meshi.E01.2022.Amazon.WEB-DL.1080p.H264.DDP-HDCTV.mkv,1716860353,2025-03-07T18:50:45,series,1920x1080,h264,1440.032,9537 +/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,Shitsuren.Meshi.E10.2022.Amazon.WEB-DL.1080p.H264.DDP-HDCTV.mkv,1737105112,2025-03-07T18:50:48,series,1920x1080,h264,1440.032,9650 +/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,Shitsuren.Meshi.E06.2022.Amazon.WEB-DL.1080p.H264.DDP-HDCTV.mkv,1785591984,2025-03-07T18:50:46,series,1920x1080,h264,1440.032,9919 +/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,Shitsuren.Meshi.E09.2022.Amazon.WEB-DL.1080p.H264.DDP-HDCTV.mkv,1760136845,2025-03-07T18:50:04,series,1920x1080,h264,1440.032,9778 +/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,Shitsuren.Meshi.E03.2022.Amazon.WEB-DL.1080p.H264.DDP-HDCTV.mkv,1714838200,2025-03-07T18:50:38,series,1920x1080,h264,1440.032,9526 +/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,Shitsuren.Meshi.E05.2022.Amazon.WEB-DL.1080p.H264.DDP-HDCTV.mkv,1761336710,2025-03-07T18:50:35,series,1920x1080,h264,1440.032,9784 +/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,Shitsuren.Meshi.E08.2022.Amazon.WEB-DL.1080p.H264.DDP-HDCTV.mkv,1779377228,2025-03-07T18:50:54,series,1920x1080,h264,1440.032,9885 +/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,Shitsuren.Meshi.E02.2022.Amazon.WEB-DL.1080p.H264.DDP-HDCTV.mkv,1688525362,2025-03-07T18:50:46,series,1920x1080,h264,1440.032,9380 +/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,Shitsuren.Meshi.E04.2022.Amazon.WEB-DL.1080p.H264.DDP-HDCTV.mkv,1668648650,2025-03-07T18:50:52,series,1920x1080,h264,1440.032,9270 +/mnt/Downloads/series/家政婦のミタ 全11話+放送直前+特別版/【ドラマ】 家政婦のミタ 第08話 「私の過去、すべてお話します」 (1440x1080i x264-AAC).mp4,【ドラマ】 家政婦のミタ 第08話 「私の過去、すべてお話します」 (1440x1080i x264-AAC).mp4,1683095230,2018-11-11T06:46:03,series,1440x1080,h264,2764.9622,4869 +/mnt/Downloads/series/家政婦のミタ 全11話+放送直前+特別版/【ドラマ】 家政婦のミタ 第07話 「死ぬまで二度と笑いません…」 (1440x1080i x264-AAC).mp4,【ドラマ】 家政婦のミタ 第07話 「死ぬまで二度と笑いません…」 (1440x1080i x264-AAC).mp4,1880941553,2018-11-11T06:46:38,series,1440x1080,h264,2764.928833,5442 +/mnt/Downloads/series/家政婦のミタ 全11話+放送直前+特別版/【ドラマ】 家政婦のミタ 第05話 「全部脱いで!…承知しました」 (1440x1080i x264-AAC).mp4,【ドラマ】 家政婦のミタ 第05話 「全部脱いで!…承知しました」 (1440x1080i x264-AAC).mp4,1858215224,2018-11-11T06:46:35,series,1440x1080,h264,2764.9622,5376 +/mnt/Downloads/series/家政婦のミタ 全11話+放送直前+特別版/【ドラマ】 家政婦のミタ 第06話 「王の監禁」 (1440x1080i x264-AAC).mp4,【ドラマ】 家政婦のミタ 第06話 「王の監禁」 (1440x1080i x264-AAC).mp4,1703748169,2018-11-11T06:46:42,series,1440x1080,h264,2764.928833,4929 +/mnt/Downloads/series/家政婦のミタ 全11話+放送直前+特別版/【ドラマ】 家政婦のミタ 第09話 「最終章の始まり!一筋の涙…炎の中で私を死なせて」 (1440x1080i x264-AAC).mp4,【ドラマ】 家政婦のミタ 第09話 「最終章の始まり!一筋の涙…炎の中で私を死なせて」 (1440x1080i x264-AAC).mp4,2255691508,2018-11-11T06:46:28,series,1440x1080,h264,3484.8814,5178 +/mnt/Downloads/series/家政婦のミタ 全11話+放送直前+特別版/【ドラマ】 家政婦のミタ 第10話 「息子よ、夫よ、お願い…私も天国に連れて行って!」 (1440x1080i x264-AAC).mp4,【ドラマ】 家政婦のミタ 第10話 「息子よ、夫よ、お願い…私も天国に連れて行って!」 (1440x1080i x264-AAC).mp4,2236314757,2018-11-11T06:46:44,series,1440x1080,h264,3469.833033,5156 +/mnt/Downloads/series/家政婦のミタ 全11話+放送直前+特別版/【ドラマ番宣】 家政婦のミタ が見たくなる! 放送直前!みどころ大公開SP!! (1440x1080i x264-AAC).mp4,【ドラマ番宣】 家政婦のミタ が見たくなる! 放送直前!みどころ大公開SP!! (1440x1080i x264-AAC).mp4,3039803586,2018-11-11T06:46:39,series,1440x1080,h264,2594.725466,9372 +/mnt/Downloads/series/家政婦のミタ 全11話+放送直前+特別版/【ドラマ】 さよなら 家政婦のミタ 特別版 「最終回への序章…三田灯が亡き最愛の夫と息子に向き合う新撮場面公開!」 (1440x1080i x264-AAC).mp4,【ドラマ】 さよなら 家政婦のミタ 特別版 「最終回への序章…三田灯が亡き最愛の夫と息子に向き合う新撮場面公開!」 (1440x1080i x264-AAC).mp4,1999739941,2018-11-11T06:46:42,series,1440x1080,h264,2759.890466,5796 +/mnt/Downloads/series/家政婦のミタ 全11話+放送直前+特別版/【ドラマ】 家政婦のミタ 第02話 「僕を裏切ったアイツを殺して」 (1440x1080i x264-AAC).mp4,【ドラマ】 家政婦のミタ 第02話 「僕を裏切ったアイツを殺して」 (1440x1080i x264-AAC).mp4,1712540251,2018-11-11T06:46:43,series,1440x1080,h264,2764.9622,4954 +/mnt/Downloads/series/家政婦のミタ 全11話+放送直前+特別版/【ドラマ】 家政婦のミタ 第03話 「母を殺した父の正体を暴いて」 (1440x1080i x264-AAC).mp4,【ドラマ】 家政婦のミタ 第03話 「母を殺した父の正体を暴いて」 (1440x1080i x264-AAC).mp4,1778182593,2018-11-11T06:46:43,series,1440x1080,h264,2764.9622,5144 +/mnt/Downloads/series/家政婦のミタ 全11話+放送直前+特別版/【ドラマ】 家政婦のミタ 第11話(終) 「最終回への序章…三田灯が亡き最愛の夫と息子に向き合う新撮場面公開!」 (1440x1080i x264-AAC).mp4,【ドラマ】 家政婦のミタ 第11話(終) 「最終回への序章…三田灯が亡き最愛の夫と息子に向き合う新撮場面公開!」 (1440x1080i x264-AAC).mp4,2301290747,2018-11-11T06:46:43,series,1440x1080,h264,3414.778033,5391 +/mnt/Downloads/series/家政婦のミタ 全11話+放送直前+特別版/【ドラマ】 家政婦のミタ 第04話 「あなたの愛娘を誘拐しました」 (1440x1080i x264-AAC).mp4,【ドラマ】 家政婦のミタ 第04話 「あなたの愛娘を誘拐しました」 (1440x1080i x264-AAC).mp4,1754440789,2018-11-11T06:46:18,series,1440x1080,h264,2764.9622,5076 +/mnt/Downloads/series/家政婦のミタ 全11話+放送直前+特別版/【ドラマ】 家政婦のミタ 第01話 「崩壊寸前の家庭にやって来た笑顔を忘れた氷の女…」 (1440x1080i x264-AAC).mp4,【ドラマ】 家政婦のミタ 第01話 「崩壊寸前の家庭にやって来た笑顔を忘れた氷の女…」 (1440x1080i x264-AAC).mp4,2305264565,2018-11-11T06:46:41,series,1440x1080,h264,3429.8264,5376 +/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,[黑白厨师:料理阶级战争].Culinary.Class.Wars.S02E10.2025.1080p.NF.WEB-DL.x264.DDP.5.1-CMCTV.mkv,3130798374,2026-01-19T14:04:21,series,1920x1080,h264,4615.232,5426 +/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,[黑白厨师:料理阶级战争].Culinary.Class.Wars.S02E07.2025.1080p.NF.WEB-DL.x264.DDP.5.1-CMCTV.mkv,3957671289,2026-01-19T14:02:45,series,1920x1080,h264,5816.0,5443 +/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,[黑白厨师:料理阶级战争].Culinary.Class.Wars.S02E01.2025.1080p.NF.WEB-DL.x264.DDP.5.1-CMCTV.mkv,2822196728,2026-01-19T13:59:26,series,1920x1080,h264,4195.52,5381 +/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,[黑白厨师:料理阶级战争].Culinary.Class.Wars.S02E11.2025.1080p.NF.WEB-DL.x264.DDP.5.1-CMCTV.mkv,3490320683,2026-01-19T14:04:57,series,1920x1080,h264,5112.941,5461 +/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,[黑白厨师:料理阶级战争].Culinary.Class.Wars.S02E06.2025.1080p.NF.WEB-DL.x264.DDP.5.1-CMCTV.mkv,2693606186,2026-01-19T14:02:13,series,1920x1080,h264,4005.44,5379 +/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,[黑白厨师:料理阶级战争].Culinary.Class.Wars.S02E12.2025.1080p.NF.WEB-DL.x264.DDP.5.1-CMCTV.mkv,3030000163,2026-01-19T14:05:28,series,1920x1080,h264,4453.992,5442 +/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,[黑白厨师:料理阶级战争].Culinary.Class.Wars.S02E09.2025.1080p.NF.WEB-DL.x264.DDP.5.1-CMCTV.mkv,3432030037,2026-01-19T14:03:45,series,1920x1080,h264,5039.168,5448 +/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,[黑白厨师:料理阶级战争].Culinary.Class.Wars.S02E03.2025.1080p.NF.WEB-DL.x264.DDP.5.1-CMCTV.mkv,3302891534,2026-01-19T14:00:35,series,1920x1080,h264,4864.832,5431 +/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,[黑白厨师:料理阶级战争].Culinary.Class.Wars.S02E05.2025.1080p.NF.WEB-DL.x264.DDP.5.1-CMCTV.mkv,3223917950,2026-01-19T14:01:48,series,1920x1080,h264,4764.608,5413 +/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,[黑白厨师:料理阶级战争].Culinary.Class.Wars.S02E13.2025.1080p.NF.WEB-DL.x264.DDP.5.1-CMCTV.mkv,2495981568,2026-01-19T14:05:58,series,1920x1080,h264,3732.032,5350 +/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,[黑白厨师:料理阶级战争].Culinary.Class.Wars.S02E08.2025.1080p.NF.WEB-DL.x264.DDP.5.1-CMCTV.mkv,2999296897,2026-01-19T14:03:15,series,1920x1080,h264,4437.056,5407 +/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,[黑白厨师:料理阶级战争].Culinary.Class.Wars.S02E02.2025.1080p.NF.WEB-DL.x264.DDP.5.1-CMCTV.mkv,3340148084,2026-01-19T14:00:00,series,1920x1080,h264,4925.504,5425 +/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,[黑白厨师:料理阶级战争].Culinary.Class.Wars.S02E04.2025.1080p.NF.WEB-DL.x264.DDP.5.1-CMCTV.mkv,3865091945,2026-01-19T14:01:14,series,1920x1080,h264,5665.088,5458 +/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,Last.Samurai.Standing.S01E01.2025.1080p.NF.WEB-DL.DDP5.1.H264-HHWEB.mkv,3565135331,2025-11-26T11:13:21,series,1920x1080,h264,3532.736,8073 +/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,Last.Samurai.Standing.S01E02.2025.1080p.NF.WEB-DL.DDP5.1.H264-HHWEB.mkv,3597448965,2025-11-26T11:16:14,series,1920x1080,h264,3072.704,9366 +/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,Last.Samurai.Standing.S01E03.2025.1080p.NF.WEB-DL.DDP5.1.H264-HHWEB.mkv,3171041406,2025-11-26T11:18:28,series,1920x1080,h264,2944.064,8616 +/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,Last.Samurai.Standing.S01E04.2025.1080p.NF.WEB-DL.DDP5.1.H264-HHWEB.mkv,3224885694,2025-11-26T11:20:04,series,1920x1080,h264,2924.917,8820 +/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,Last.Samurai.Standing.S01E05.2025.1080p.NF.WEB-DL.DDP5.1.H264-HHWEB.mkv,2891769115,2025-11-26T11:21:38,series,1920x1080,h264,2853.824,8106 +/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,Last.Samurai.Standing.S01E06.2025.1080p.NF.WEB-DL.DDP5.1.H264-HHWEB.mkv,3364108555,2025-11-26T11:22:17,series,1920x1080,h264,3227.84,8337 +/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,Vigilante.S01E07.Episode.7.2160p.Disney+.WEB-DL.DDP.5.1.HDR10.H.265-CHDWEB.mkv,4869006500,2023-12-25T13:46:19,series,3840x2160,hevc,2557.152,15232 +/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,Vigilante.S01E03.Episode.3.2160p.Disney+.WEB-DL.DDP.5.1.HDR10.H.265-CHDWEB.mkv,4770743559,2023-12-25T13:46:19,series,3840x2160,hevc,2532.448,15070 +/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,Vigilante.S01E02.Episode.2.2160p.Disney+.WEB-DL.DDP.5.1.HDR10.H.265-CHDWEB.mkv,4686373450,2023-12-25T12:27:03,series,3840x2160,hevc,2472.704,15161 +/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,Vigilante.S01E06.Episode.6.2160p.Disney+.WEB-DL.DDP.5.1.HDR10.H.265-CHDWEB.mkv,4760025436,2023-12-25T13:46:30,series,3840x2160,hevc,2483.872,15330 +/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,Vigilante.S01E04.Episode.4.2160p.Disney+.WEB-DL.DDP.5.1.HDR10.H.265-CHDWEB.mkv,4946521150,2023-12-25T13:46:32,series,3840x2160,hevc,2618.144,15114 +/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,Vigilante.S01E05.Episode.5.2160p.Disney+.WEB-DL.DDP.5.1.HDR10.H.265-CHDWEB.mkv,5175836338,2023-12-25T13:46:18,series,3840x2160,hevc,2700.096,15335 +/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,Vigilante.S01E08.Episode.8.2160p.Disney+.WEB-DL.DDP.5.1.HDR10.H.265-CHDWEB.mkv,6167162979,2023-12-25T13:46:17,series,3840x2160,hevc,3185.376,15488 +/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,Vigilante.S01E01.Episode.1.2160p.Disney+.WEB-DL.DDP.5.1.HDR10.H.265-CHDWEB.mkv,5716559246,2023-12-25T12:03:41,series,3840x2160,hevc,3051.392,14987 +/mnt/Downloads/series/連続ドラマW 湊かなえ「落日」 Complete 1080p HDTV x264 AAC/連続ドラマW 湊かなえ「落日」 第3話 1080p HDTV x264 AAC.mkv,連続ドラマW 湊かなえ「落日」 第3話 1080p HDTV x264 AAC.mkv,1234047580,2023-10-08T02:17:09,series,1920x1080,h264,2910.002,3392 +/mnt/Downloads/series/連続ドラマW 湊かなえ「落日」 Complete 1080p HDTV x264 AAC/連続ドラマW 湊かなえ「落日」 第2話 1080p HDTV x264 AAC.mkv,連続ドラマW 湊かなえ「落日」 第2話 1080p HDTV x264 AAC.mkv,1283744088,2023-10-08T02:17:11,series,1920x1080,h264,2999.958,3423 +/mnt/Downloads/series/連続ドラマW 湊かなえ「落日」 Complete 1080p HDTV x264 AAC/連続ドラマW 湊かなえ「落日」 第1話 1080p HDTV x264 AAC.mkv,連続ドラマW 湊かなえ「落日」 第1話 1080p HDTV x264 AAC.mkv,1346280387,2023-10-08T02:17:10,series,1920x1080,h264,3095.033,3479 +/mnt/Downloads/series/連続ドラマW 湊かなえ「落日」 Complete 1080p HDTV x264 AAC/連続ドラマW 湊かなえ「落日」 第4話 End 1080p HDTV x264 AAC.mkv,連続ドラマW 湊かなえ「落日」 第4話 End 1080p HDTV x264 AAC.mkv,1355428850,2023-10-08T02:17:14,series,1920x1080,h264,3249.97,3336 +/mnt/Downloads/series/教場Ⅱ SP 720p HDTV x264 AAC-DoA/教場Ⅱ 前編 SP 720p HDTV x264 AAC-DoA.mkv,教場Ⅱ 前編 SP 720p HDTV x264 AAC-DoA.mkv,2188993715,2021-01-16T04:01:16,series,1280x720,h264,6989.866,2505 +/mnt/Downloads/series/教場Ⅱ SP 720p HDTV x264 AAC-DoA/教場Ⅱ 後編 SP 720p HDTV x264 AAC-DoA.mkv,教場Ⅱ 後編 SP 720p HDTV x264 AAC-DoA.mkv,2629349487,2021-01-16T04:00:58,series,1280x720,h264,7299.797,2881 +/mnt/Downloads/series/(ドラマ) 時をかけるな、恋人たち 第02話 「10年先の彼女」 (1440x1080i x264-AAC)-DoA.mkv,(ドラマ) 時をかけるな、恋人たち 第02話 「10年先の彼女」 (1440x1080i x264-AAC)-DoA.mkv,881864631,2024-01-05T11:58:33,series,1440x1080,h264,1389.69,5076 +/mnt/Downloads/series/Zero.Day.S01.1080p.NF.WEB-DL.H.264-EniaHD/Zero.Day.S01E02.1080p.NF.WEB-DL.H.264-EniaHD.mkv,Zero.Day.S01E02.1080p.NF.WEB-DL.H.264-EniaHD.mkv,3019605308,2025-02-21T09:04:40,series,1920x1080,h264,3534.272,6835 +/mnt/Downloads/series/Zero.Day.S01.1080p.NF.WEB-DL.H.264-EniaHD/Zero.Day.S01E06.1080p.NF.WEB-DL.H.264-EniaHD.mkv,Zero.Day.S01E06.1080p.NF.WEB-DL.H.264-EniaHD.mkv,2728473771,2025-02-21T10:30:37,series,1920x1080,h264,3210.944,6797 +/mnt/Downloads/series/Zero.Day.S01.1080p.NF.WEB-DL.H.264-EniaHD/Zero.Day.S01E03.1080p.NF.WEB-DL.H.264-EniaHD.mkv,Zero.Day.S01E03.1080p.NF.WEB-DL.H.264-EniaHD.mkv,2546173587,2025-02-21T09:23:58,series,1920x1080,h264,3004.352,6779 +/mnt/Downloads/series/Zero.Day.S01.1080p.NF.WEB-DL.H.264-EniaHD/Zero.Day.S01E05.1080p.NF.WEB-DL.H.264-EniaHD.mkv,Zero.Day.S01E05.1080p.NF.WEB-DL.H.264-EniaHD.mkv,2203808365,2025-02-21T10:09:38,series,1920x1080,h264,2615.744,6740 +/mnt/Downloads/series/Zero.Day.S01.1080p.NF.WEB-DL.H.264-EniaHD/Zero.Day.S01E01.1080p.NF.WEB-DL.H.264-EniaHD.mkv,Zero.Day.S01E01.1080p.NF.WEB-DL.H.264-EniaHD.mkv,2502222507,2025-02-21T08:36:04,series,1920x1080,h264,2949.856,6786 +/mnt/Downloads/series/Zero.Day.S01.1080p.NF.WEB-DL.H.264-EniaHD/Zero.Day.S01E04.1080p.NF.WEB-DL.H.264-EniaHD.mkv,Zero.Day.S01E04.1080p.NF.WEB-DL.H.264-EniaHD.mkv,2741397655,2025-02-21T09:49:30,series,1920x1080,h264,3219.776,6811 +/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,Signal (2016) - S01E09 - Hongwon Dong Case (1080p BluRay x265 Silence).mkv,1850068223,2021-08-30T17:04:27,series,1920x1080,hevc,4379.134,3379 +/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,Signal (2016) - S01E03 - We Can Prevent the Killings (1080p BluRay x265 Silence).mkv,1305220649,2021-08-30T17:04:31,series,1920x1080,hevc,3849.641,2712 +/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,Signal (2016) - S01E10 - Someone Has to Stop the Bad Guys (1080p BluRay x265 Silence).mkv,1674776513,2021-08-30T17:04:28,series,1920x1080,hevc,4408.532,3039 +/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,Signal (2016) - S01E01 - You're Doomed (1080p BluRay x265 Silence).mkv,1535248462,2021-08-30T17:04:28,series,1920x1080,hevc,4604.517,2667 +/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,Signal (2016) - S01E12 - The Case Was Manipulated (1080p BluRay x265 Silence).mkv,1749354194,2021-08-30T17:04:22,series,1920x1080,hevc,4671.584,2995 +/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,Signal (2016) - S01E15 - Is It Really You (1080p BluRay x265 Silence).mkv,1458587147,2021-08-30T17:04:29,series,1920x1080,hevc,4306.177,2709 +/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,Signal (2016) - S01E02 - We Still Have a Chance (1080p BluRay x265 Silence).mkv,1327050633,2021-08-30T17:04:28,series,1920x1080,hevc,3934.27,2698 +/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,Signal (2016) - S01E05 - Changing the Past Alters the Present (1080p BluRay x265 Silence).mkv,1372173575,2021-08-30T17:04:24,series,1920x1080,hevc,4109.908,2670 +/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,Signal (2016) - S01E08 - How Are You Alive (1080p BluRay x265 Silence).mkv,1269650771,2021-08-30T17:04:27,series,1920x1080,hevc,4523.853,2245 +"/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","Signal (2016) - S01E14 - Not Now, But Maybe In The Past (1080p BluRay x265 Silence).mkv",1609798446,2021-08-30T17:04:27,series,1920x1080,hevc,4513.593,2853 +/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,Signal (2016) - S01E06 - Catch Him by All Means (1080p BluRay x265 Silence).mkv,1532386468,2021-08-30T17:03:28,series,1920x1080,hevc,4199.252,2919 +/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,Signal (2016) - S01E13 - The Real Assailant (1080p BluRay x265 Silence).mkv,1845347595,2021-08-30T17:04:29,series,1920x1080,hevc,4407.614,3349 +/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,Signal (2016) - S01E11 - The One Last Case (1080p BluRay x265 Silence).mkv,1733926668,2021-08-30T17:04:26,series,1920x1080,hevc,4674.388,2967 +/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,Signal (2016) - S01E16 - If You Don't Give Up (1080p BluRay x265 Silence).mkv,2338106244,2021-08-30T17:03:49,series,1920x1080,hevc,5325.076,3512 +/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,Signal (2016) - S01E04 - We Found the Killer (1080p BluRay x265 Silence).mkv,1258212699,2021-08-30T17:03:41,series,1920x1080,hevc,3960.041,2541 +/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,Signal (2016) - S01E07 - We Must Dig Deeper (1080p BluRay x265 Silence).mkv,1504974067,2021-08-30T17:03:59,series,1920x1080,hevc,4040.596,2979 +/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,The.Wheel.of.Time.S02E02.Strangers.and.Friends.1080p.AMZN.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv,4050122192,2023-09-16T06:09:46,series,1920x1080,h264,4094.08,7914 +/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,The.Wheel.of.Time.S02E01.A.Taste.of.Solitude.1080p.AMZN.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv,4020602169,2023-09-16T06:09:33,series,1920x1080,h264,4005.184,8030 +/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,The.Wheel.of.Time.S02E03.What.Might.Be.1080p.AMZN.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv,4537141779,2023-09-16T06:09:25,series,1920x1080,h264,4168.768,8706 +/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,The.Bear.S02E10.The.Bear.1080p.HULU.WEB-DL.DDP5.1.H.264-FLUX.mkv,1771781021,2023-07-29T17:07:38,series,1920x1080,h264,2438.272,5813 +/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,The.Bear.S02E07.Forks.1080p.HULU.WEB-DL.DDP5.1.H.264-FLUX.mkv,1373348127,2023-07-29T17:07:22,series,1920x1080,h264,2096.032,5241 +/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,The.Bear.S02E05.Pop.1080p.HULU.WEB-DL.DDP5.1.H.264-FLUX.mkv,1460291089,2023-07-29T17:07:20,series,1920x1080,h264,1998.72,5844 +/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,The.Bear.S02E06.Fishes.1080p.HULU.WEB-DL.DDP5.1.H.264-FLUX.mkv,3027943436,2023-07-29T17:07:21,series,1920x1080,h264,3977.056,6090 +/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,The.Bear.S02E09.Omelette.1080p.HULU.WEB-DL.DDP5.1.H.264-FLUX.mkv,1620406335,2023-07-29T17:07:22,series,1920x1080,h264,2328.864,5566 +/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,The.Bear.S02E08.Bolognese.1080p.HULU.WEB-DL.DDP5.1.H.264-FLUX.mkv,1413342659,2023-07-29T17:07:32,series,1920x1080,h264,1925.216,5872 +/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,The.Bear.S02E02.Pasta.1080p.HULU.WEB-DL.DDP5.1.H.264-FLUX.mkv,1257949330,2023-07-29T17:07:22,series,1920x1080,h264,1809.792,5560 +/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,The.Bear.S02E03.Sundae.1080p.HULU.WEB-DL.DDP5.1.H.264-FLUX.mkv,1148777092,2023-07-29T17:07:42,series,1920x1080,h264,1563.2,5879 +/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,The.Bear.S02E04.Honeydew.1080p.HULU.WEB-DL.DDP5.1.H.264-FLUX.mkv,1227729459,2023-07-29T17:07:40,series,1920x1080,h264,1776.096,5530 +/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,The.Bear.S02E01.Beef.1080p.HULU.WEB-DL.DDP5.1.H.264-FLUX.mkv,1276605047,2023-07-29T17:07:36,series,1920x1080,h264,1756.128,5815 +/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,有益的欺诈.Delightfully.Deceitful.S01E11.2023.1080p.friDay.WEB-DL.H264.AAC-OurTV.mkv,1753732268,2023-07-13T02:25:51,series,1920x1080,h264,3624.087,3871 +/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,有益的欺诈.Delightfully.Deceitful.S01E06.2023.1080p.friDay.WEB-DL.H264.AAC-OurTV.mkv,1759943767,2023-07-04T14:16:41,series,1920x1080,h264,3640.036,3867 +/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,有益的欺诈.Delightfully.Deceitful.S01E16.2023.1080p.friDay.WEB-DL.H264.AAC-OurTV.mkv,1958558897,2023-07-20T11:26:12,series,1920x1080,h264,4059.989,3859 +/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,有益的欺诈.Delightfully.Deceitful.S01E10.2023.1080p.friDay.WEB-DL.H264.AAC-OurTV.mkv,1847484887,2023-07-20T11:06:49,series,1920x1080,h264,3790.119,3899 +/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,有益的欺诈.Delightfully.Deceitful.S01E07.2023.1080p.friDay.WEB-DL.H264.AAC-OurTV.mkv,1722793867,2023-07-04T16:07:37,series,1920x1080,h264,3569.032,3861 +/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,有益的欺诈.Delightfully.Deceitful.S01E01.2023.1080p.friDay.WEB-DL.H264.AAC-OurTV.mkv,1876477952,2023-07-04T02:49:54,series,1920x1080,h264,3904.033,3845 +/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,有益的欺诈.Delightfully.Deceitful.S01E13.2023.1080p.friDay.WEB-DL.H264.AAC-OurTV.mkv,1861479423,2023-07-20T11:11:24,series,1920x1080,h264,3836.966,3881 +/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,有益的欺诈.Delightfully.Deceitful.S01E15.2023.1080p.friDay.WEB-DL.H264.AAC-OurTV.mkv,1839498234,2023-07-20T11:26:21,series,1920x1080,h264,3807.07,3865 +/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,有益的欺诈.Delightfully.Deceitful.S01E08.2023.1080p.friDay.WEB-DL.H264.AAC-OurTV.mkv,1715073215,2023-07-20T11:06:53,series,1920x1080,h264,3553.083,3861 +/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,有益的欺诈.Delightfully.Deceitful.S01E02.2023.1080p.friDay.WEB-DL.H264.AAC-OurTV.mkv,1749804738,2023-07-20T11:06:40,series,1920x1080,h264,3605.068,3882 +/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,有益的欺诈.Delightfully.Deceitful.S01E04.2023.1080p.friDay.WEB-DL.H264.AAC-OurTV.mkv,1769006347,2023-07-04T14:34:20,series,1920x1080,h264,3617.08,3912 +/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,有益的欺诈.Delightfully.Deceitful.S01E12.2023.1080p.friDay.WEB-DL.H264.AAC-OurTV.mkv,1833225207,2023-07-20T11:06:32,series,1920x1080,h264,3803.066,3856 +/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,有益的欺诈.Delightfully.Deceitful.S01E14.2023.1080p.friDay.WEB-DL.H264.AAC-OurTV.mkv,1799270691,2023-07-20T11:26:20,series,1920x1080,h264,3722.986,3866 +/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,有益的欺诈.Delightfully.Deceitful.S01E09.2023.1080p.friDay.WEB-DL.H264.AAC-OurTV.mkv,1859292057,2023-07-20T11:26:20,series,1920x1080,h264,3825.088,3888 +/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,有益的欺诈.Delightfully.Deceitful.S01E03.2023.1080p.friDay.WEB-DL.H264.AAC-OurTV.mkv,1805989448,2023-07-20T11:26:19,series,1920x1080,h264,3718.114,3885 +/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,有益的欺诈.Delightfully.Deceitful.S01E05.2023.1080p.friDay.WEB-DL.H264.AAC-OurTV.mkv,1718307643,2023-07-04T12:18:21,series,1920x1080,h264,3561.691,3859 +/mnt/Downloads/series/RoOT 第08話 1080p KKTV WEB-DL H264 AAC.mkv,RoOT 第08話 1080p KKTV WEB-DL H264 AAC.mkv,558059606,2024-06-05T14:51:29,series,1920x1080,h264,1395.124,3200 +/mnt/Downloads/series/Shogun.S01E08.2024.2160p.DSNP.WEB-DL.H265.HDR.DDP5.1.mkv,Shogun.S01E08.2024.2160p.DSNP.WEB-DL.H265.HDR.DDP5.1.mkv,6567869971,2024-04-11T08:50:52,series,3840x2160,hevc,3462.976,15172 +/mnt/Downloads/series/こっち向いてよ向井くん EP03 v2 720p HDTV x264 AAC-DoA.mkv,こっち向いてよ向井くん EP03 v2 720p HDTV x264 AAC-DoA.mkv,1750635136,2024-01-12T11:51:09,series,1280x720,h264,3099.866,4517 +/mnt/Downloads/series/(ドラマ) 完全無罪 第02話 「針穴と駱駝」 (1920x1080 x264-AAC)-DoA.mkv,(ドラマ) 完全無罪 第02話 「針穴と駱駝」 (1920x1080 x264-AAC)-DoA.mkv,2190911043,2024-08-18T12:20:44,series,1920x1080,h264,3010.007,5823 +/mnt/Downloads/series/True.Detective.S04E02.Night.Country.Part.2.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv,True.Detective.S04E02.Night.Country.Part.2.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv,4770748054,2024-01-27T11:22:18,series,1920x960,h264,3763.385,10141 +/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,Once.Upon.A.Bite.S04E04.2022.WEB-DL.4K.HEVC.DV.DDP-HDCTV.mp4,5961296756,2023-01-08T10:36:50,series,3840x2160,hevc,3375.328,14129 +/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,Once.Upon.A.Bite.S04E05.2022.WEB-DL.4K.HEVC.DV.DDP-HDCTV.mp4,5202475982,2023-01-08T10:36:51,series,3840x2160,hevc,3195.648,13023 +/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,Once.Upon.A.Bite.S04E06.2022.WEB-DL.4K.HEVC.DV.DDP-HDCTV.mp4,5799646255,2023-01-08T10:36:50,series,3840x2160,hevc,3253.088,14262 +/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,Once.Upon.A.Bite.S04E01.2022.WEB-DL.4K.HEVC.DV.DDP-HDCTV.mp4,6532651565,2023-01-08T10:36:50,series,3840x2160,hevc,3411.008,15321 +/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,Once.Upon.A.Bite.S04E03.2022.WEB-DL.4K.HEVC.DV.DDP-HDCTV.mp4,6215454227,2023-01-08T10:36:50,series,3840x2160,hevc,3292.224,15103 +/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,Once.Upon.A.Bite.S04E02.2022.WEB-DL.4K.HEVC.DV.DDP-HDCTV.mp4,5801049411,2023-01-08T10:36:48,series,3840x2160,hevc,3296.768,14076 +/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,Anne.Rices.Mayfair.Witches.S01E02.The.Dark.Place.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv,3295164087,2023-04-17T11:31:52,series,1792x1080,h264,2674.209,9857 +/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,Anne.Rices.Mayfair.Witches.S01E08.What.Rough.Beast.REPACK.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv,3226963219,2023-04-17T11:17:11,series,1792x1080,h264,2539.648,10165 +/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,Anne.Rices.Mayfair.Witches.S01E04.Curiouser.and.Curiouser.REPACK.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv,3268841110,2023-04-17T11:31:54,series,1792x1080,h264,2534.976,10315 +/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,Anne.Rices.Mayfair.Witches.S01E07.Tessa.REPACK.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv,3075240513,2023-04-17T11:31:54,series,1792x1080,h264,2404.928,10229 +/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,Anne.Rices.Mayfair.Witches.S01E05.The.Thrall.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv,3134017799,2023-04-17T11:31:51,series,1792x1080,h264,2599.424,9645 +/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,Anne.Rices.Mayfair.Witches.S01E03.Second.Line.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv,3145484581,2023-04-17T11:31:50,series,1792x1080,h264,2442.792,10301 +/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,Anne.Rices.Mayfair.Witches.S01E01.The.Witching.Hour.REPACK.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv,4054592489,2023-04-17T11:31:55,series,1920x1080,h264,3160.544,10263 +/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,Anne.Rices.Mayfair.Witches.S01E06.Transference.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv,3989242360,2023-04-17T11:31:52,series,1920x1080,h264,3127.264,10205 +/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,Furikaereba.yatsu.ga.iru.S01E06.1080p.AMZN.WEB-DL.DD+2.0.H.264-ARiN.mkv,1565462828,2023-02-23T13:30:21,series,1440x1080,h264,2799.04,4474 +/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,Furikaereba.yatsu.ga.iru.S01E02.1080p.AMZN.WEB-DL.DD+2.0.H.264-ARiN.mkv,1574644504,2023-02-23T13:30:12,series,1440x1080,h264,2800.032,4498 +/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,Furikaereba.yatsu.ga.iru.S01E11.1080p.AMZN.WEB-DL.DD+2.0.H.264-ARiN.mkv,1532843381,2023-02-23T13:30:50,series,1440x1080,h264,2754.048,4452 +/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,Furikaereba.yatsu.ga.iru.S01E10.1080p.AMZN.WEB-DL.DD+2.0.H.264-ARiN.mkv,1484773350,2023-02-23T13:30:53,series,1440x1080,h264,2792.0,4254 +/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,Furikaereba.yatsu.ga.iru.S01E07.1080p.AMZN.WEB-DL.DD+2.0.H.264-ARiN.mkv,1570432893,2023-02-23T13:30:12,series,1440x1080,h264,2784.0,4512 +/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,Furikaereba.yatsu.ga.iru.S01E03.1080p.AMZN.WEB-DL.DD+2.0.H.264-ARiN.mkv,1586149714,2023-02-23T13:29:44,series,1440x1080,h264,2800.032,4531 +/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,Furikaereba.yatsu.ga.iru.S01E09.1080p.AMZN.WEB-DL.DD+2.0.H.264-ARiN.mkv,1613829406,2023-02-23T13:30:50,series,1440x1080,h264,2799.04,4612 +/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,Furikaereba.yatsu.ga.iru.S01E12.1080p.AMZN.WEB-DL.DD+2.0.H.264-ARiN.mkv,2752114484,2023-02-23T13:30:53,series,1440x1080,h264,5806.048,3792 +/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,Furikaereba.yatsu.ga.iru.S01E05.1080p.AMZN.WEB-DL.DD+2.0.H.264-ARiN.mkv,1681386867,2023-02-23T13:30:40,series,1440x1080,h264,2799.04,4805 +/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,Furikaereba.yatsu.ga.iru.S01E01.1080p.AMZN.WEB-DL.DD+2.0.H.264-ARiN.mkv,1575236342,2023-02-23T13:29:14,series,1440x1080,h264,2784.0,4526 +/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,Furikaereba.yatsu.ga.iru.S01E04.1080p.AMZN.WEB-DL.DD+2.0.H.264-ARiN.mkv,1527246368,2023-02-23T13:30:02,series,1440x1080,h264,2800.032,4363 +/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,Furikaereba.yatsu.ga.iru.S01E08.1080p.AMZN.WEB-DL.DD+2.0.H.264-ARiN.mkv,1524914863,2023-02-23T13:30:52,series,1440x1080,h264,2779.008,4389 +/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,Presumed.Innocent.S01E05.Pregame.1080p.ATVP.WEB-DL.DDP5.1.H.264-NTb.mkv,3305132475,2024-07-26T02:05:58,series,1920x960,h264,2458.373,10755 +/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,Presumed.Innocent.S01E07.The.Witness.1080p.ATVP.WEB-DL.DDP5.1.H.264-NTb.mkv,3445497220,2024-07-26T02:05:59,series,1920x960,h264,2539.704,10853 +/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,Presumed.Innocent.S01E04.The.Burden.1080p.ATVP.WEB-DL.DDP5.1.H.264-NTb.mkv,3512166952,2024-07-26T02:06:00,series,1920x960,h264,2582.872,10878 +/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,Presumed.Innocent.S01E03.Discovery.1080p.ATVP.WEB-DL.DDP5.1.H.264-NTb.mkv,3455963529,2024-07-26T02:06:00,series,1920x960,h264,2556.638,10814 +/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,Presumed.Innocent.S01E06.The.Elements.1080p.ATVP.WEB-DL.DDP5.1.H.264-NTb.mkv,3429178231,2024-07-26T02:06:38,series,1920x960,h264,2529.944,10843 +/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,Presumed.Innocent.S01E08.The.Verdict.1080p.ATVP.WEB-DL.DDP5.1.H.264-NTb.mkv,4085648587,2024-07-26T02:05:58,series,1920x960,h264,3013.052,10847 +/mnt/Downloads/series/Believe-君にかける橋- 第1話 生きるため、俺は誰を信じるのか 1080p TVer WEB-DL H264 AAC-Solitude@DoA.mkv,Believe-君にかける橋- 第1話 生きるため、俺は誰を信じるのか 1080p TVer WEB-DL H264 AAC-Solitude@DoA.mkv,1131686585,2024-05-01T08:24:58,series,1920x1080,h264,3265.237,2772 +/mnt/Downloads/series/亚森·罗宾.Arsene Lupin.2021.1080p.WEB-DL.H264.AC3-HDHWEB/[第 1 部.Ep1] 怪盜羅蘋 - 第 1 章.mkv,[第 1 部.Ep1] 怪盜羅蘋 - 第 1 章.mkv,2875297713,2021-01-16T04:22:45,series,1920x1080,h264,2834.28,8115 +/mnt/Downloads/series/亚森·罗宾.Arsene Lupin.2021.1080p.WEB-DL.H264.AC3-HDHWEB/[第 1 部.Ep2] 怪盜羅蘋 - 第 2 章.mkv,[第 1 部.Ep2] 怪盜羅蘋 - 第 2 章.mkv,3049818226,2021-01-16T04:22:49,series,1920x1080,h264,3135.68,7780 +/mnt/Downloads/series/亚森·罗宾.Arsene Lupin.2021.1080p.WEB-DL.H264.AC3-HDHWEB/[第 1 部.Ep3] 怪盜羅蘋 - 第 3 章.mkv,[第 1 部.Ep3] 怪盜羅蘋 - 第 3 章.mkv,2822864863,2021-01-16T04:22:41,series,1920x1080,h264,2519.44,8963 +/mnt/Downloads/series/亚森·罗宾.Arsene Lupin.2021.1080p.WEB-DL.H264.AC3-HDHWEB/[第 1 部.Ep4] 怪盜羅蘋 - 第 4 章.mkv,[第 1 部.Ep4] 怪盜羅蘋 - 第 4 章.mkv,2685239190,2021-01-16T04:22:35,series,1920x1080,h264,2837.0,7572 +/mnt/Downloads/series/亚森·罗宾.Arsene Lupin.2021.1080p.WEB-DL.H264.AC3-HDHWEB/[第 1 部.Ep5] 怪盜羅蘋 - 第 5 章.mkv,[第 1 部.Ep5] 怪盜羅蘋 - 第 5 章.mkv,2627062390,2021-01-16T04:22:39,series,1920x1080,h264,2598.4,8088 +/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,Dragon.Zakura.2021.EP09.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv,1562217755,2025-03-25T05:15:38,series,1920x1080,hevc,3662.16,3412 +/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,Dragon.Zakura.2021.EP08.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv,1312834513,2025-03-25T05:13:10,series,1920x1080,hevc,2903.805,3616 +/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,Dragon.Zakura.2021.EP07.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv,1410504266,2025-03-25T05:11:17,series,1920x1080,hevc,2876.44,3922 +/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,Dragon.Zakura.2021.EP06.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv,1278119843,2025-03-25T05:09:06,series,1920x1080,hevc,2917.185,3505 +/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,Dragon.Zakura.2021.EP05.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv,1616933834,2025-03-25T05:06:57,series,1920x1080,hevc,3015.18,4290 +/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,Dragon.Zakura.2021.EP04.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv,1253950158,2025-03-25T05:06:38,series,1920x1080,hevc,2842.64,3528 +/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,Dragon.Zakura.2021.EP10.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv,2207547756,2025-03-25T05:17:20,series,1920x1080,hevc,4213.745,4191 +/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,Dragon.Zakura.2021.EP03.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv,1262777702,2025-03-25T05:02:32,series,1920x1080,hevc,2804.902,3601 +/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,Dragon.Zakura.2021.EP02.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv,2193312937,2025-03-25T04:59:37,series,1920x1080,hevc,3591.99,4884 +/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,Dragon.Zakura.2021.EP01.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv,2451561568,2025-03-25T04:56:36,series,1920x1080,hevc,4148.045,4728 +/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,Dragon.Zakura.2021.Bonus.Disc.SP4.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv,1037278230,2025-03-25T04:51:35,series,1920x1080,hevc,1157.156,7171 +/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,Dragon.Zakura.2021.Bonus.Disc.SP5.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv,204324674,2025-03-25T04:52:36,series,1920x1080,hevc,301.301,5425 +/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,Dragon.Zakura.2021.Bonus.Disc.SP1.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv,1538206984,2025-03-25T04:47:10,series,1920x1080,hevc,1470.503,8368 +/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,Dragon.Zakura.2021.Bonus.Disc.SP2.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv,980533936,2025-03-25T04:47:37,series,1920x1080,hevc,1271.27,6170 +/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,Dragon.Zakura.2021.Bonus.Disc.SP3.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv,971197660,2025-03-25T04:49:25,series,1920x1080,hevc,1802.801,4309 +/mnt/Downloads/series/こっち向いてよ向井くん EP02 720p HDTV x264 AAC-DoA.mkv,こっち向いてよ向井くん EP02 720p HDTV x264 AAC-DoA.mkv,1856236650,2024-01-12T11:08:19,series,1280x720,h264,3109.776,4775 +/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,【更多电视剧集下载请访问 www.BPHDTV.com】【更多剧集打包下载请访问 www.BPHDTV.com】.MKV,636976,2025-06-26T14:23:38,series,,,, +/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,【更多高清剧集下载请访问 www.BPHDTV.com】【更多剧集打包下载请访问 www.BPHDTV.com】.mkv,636976,2025-06-26T14:23:38,series,,,, +/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,Our.Unwritten.Seoul.S01E08.An.Unconventional.Whole.1080p.NF.WEB-DL.AAC.2.0.H.264-BlackTV.mkv,3093625459,2025-06-27T08:44:49,series,1920x1080,h264,4844.374,5108 +/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,Deaths.Game.S01E01.2023.1080p.AMZN.WEB-DL.DDP2.0.H264-HHWEB.mkv,3118206967,2024-01-20T11:44:17,series,1920x960,h264,2716.736,9182 +/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,Deaths.Game.S01E04.2023.1080p.AMZN.WEB-DL.DDP2.0.H264-HHWEB.mkv,3916097860,2024-01-20T11:44:17,series,1920x960,h264,3879.918,8074 +/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,Deaths.Game.S01E02.2023.1080p.AMZN.WEB-DL.DDP2.0.H264-HHWEB.mkv,3206402203,2024-01-20T11:44:17,series,1920x960,h264,3047.086,8418 +/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,Deaths.Game.S01E03.2023.1080p.AMZN.WEB-DL.DDP2.0.H264-HHWEB.mkv,4082318723,2024-01-20T11:44:16,series,1920x960,h264,3463.502,9429 +/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,Kazama.Kimichika.Kyoujou.Zero.EP10.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv,1902808293,2023-07-08T05:34:36,series,1920x1080,h264,2764.992,5505 +/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,Kazama.Kimichika.Kyoujou.Zero.EP07.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv,2002969404,2023-07-08T05:34:32,series,1920x1080,h264,2768.16,5788 +/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,Kazama.Kimichika.Kyoujou.Zero.EP03.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv,1978102555,2023-07-08T05:34:38,series,1920x1080,h264,2780.0,5692 +/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,Kazama.Kimichika.Kyoujou.Zero.EP06.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv,2093073352,2023-07-08T05:34:31,series,1920x1080,h264,2780.0,6023 +/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,Kazama.Kimichika.Kyoujou.Zero.EP02.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv,1911756217,2023-07-08T05:34:35,series,1920x1080,h264,2780.0,5501 +/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,Kazama.Kimichika.Kyoujou.Zero.EP11.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv,2449333829,2023-07-08T05:34:34,series,1920x1080,h264,3399.008,5764 +/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,Kazama.Kimichika.Kyoujou.Zero.EP04.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv,1787256537,2023-07-08T05:34:33,series,1920x1080,h264,2780.0,5143 +/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,Kazama.Kimichika.Kyoujou.Zero.EP08.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv,1932022224,2023-07-08T05:34:33,series,1920x1080,h264,2780.0,5559 +/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,Kazama.Kimichika.Kyoujou.Zero.EP09.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv,2184467102,2023-07-08T05:34:32,series,1920x1080,h264,2780.0,6286 +/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,Kazama.Kimichika.Kyoujou.Zero.EP05.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv,2048593763,2023-07-08T05:34:31,series,1920x1080,h264,2757.216,5943 +/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,Kazama.Kimichika.Kyoujou.Zero.EP01.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv,2890055685,2023-07-08T05:34:40,series,1920x1080,h264,4224.032,5473 +/mnt/Downloads/series/Foundation.S01.2021.AppleTV+.WEB-DL.1080p.H264.DDP-AREY/Foundation.S01E01.2021.AppleTV+.WEB-DL.1080p.H264.DDP-AREY.mkv,Foundation.S01E01.2021.AppleTV+.WEB-DL.1080p.H264.DDP-AREY.mkv,5694663519,2021-09-25T13:09:26,series,1920x960,h264,4155.744,10962 +/mnt/Downloads/series/Foundation.S01.2021.AppleTV+.WEB-DL.1080p.H264.DDP-AREY/Foundation.S01E02.2021.AppleTV+.WEB-DL.1080p.H264.DDP-AREY.mkv,Foundation.S01E02.2021.AppleTV+.WEB-DL.1080p.H264.DDP-AREY.mkv,5058531016,2021-09-25T13:09:26,series,1920x960,h264,3702.496,10929 +/mnt/Downloads/series/Dark.Matter.2024.S01E06.Superposition.1080p.ATVP.WEB-DL.DDP5.1.H.264-NTb.mkv,Dark.Matter.2024.S01E06.Superposition.1080p.ATVP.WEB-DL.DDP5.1.H.264-NTb.mkv,4474003619,2024-06-08T04:53:15,series,1920x960,h264,3291.872,10872 +/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,The.Trauma.Code.Heroes.on.Call.S01E05.2025.1080p.NF.WEB-DL.x264.DDP5.1-ADWeb.mkv,1954534930,2025-01-31T08:32:28,series,1920x1080,h264,2859.2,5468 +/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,The.Trauma.Code.Heroes.on.Call.S01E04.2025.1080p.NF.WEB-DL.x264.DDP5.1-ADWeb.mkv,1971034706,2025-01-31T08:29:37,series,1920x1080,h264,2878.784,5477 +/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,The.Trauma.Code.Heroes.on.Call.S01E07.2025.1080p.NF.WEB-DL.x264.DDP5.1-ADWeb.mkv,2198339552,2025-01-31T08:32:28,series,1920x1080,h264,3209.408,5479 +/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,The.Trauma.Code.Heroes.on.Call.S01E06.2025.1080p.NF.WEB-DL.x264.DDP5.1-ADWeb.mkv,1996323151,2025-01-31T08:32:23,series,1920x1080,h264,2915.705,5477 +/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,The.Trauma.Code.Heroes.on.Call.S01E01.2025.1080p.NF.WEB-DL.x264.DDP5.1-ADWeb.mkv,2254415857,2025-01-31T08:12:54,series,1920x1080,h264,3281.984,5495 +/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,The.Trauma.Code.Heroes.on.Call.S01E03.2025.1080p.NF.WEB-DL.x264.DDP5.1-ADWeb.mkv,2247002895,2025-01-31T08:25:02,series,1920x1080,h264,3269.696,5497 +/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,The.Trauma.Code.Heroes.on.Call.S01E02.2025.1080p.NF.WEB-DL.x264.DDP5.1-ADWeb.mkv,2221791914,2025-01-31T08:19:38,series,1920x1080,h264,3228.608,5505 +/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,The.Trauma.Code.Heroes.on.Call.S01E08.2025.1080p.NF.WEB-DL.x264.DDP5.1-ADWeb.mkv,2268789114,2025-01-31T08:32:23,series,1920x1080,h264,3303.884,5493 +/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,The.Copenhagen.Test.S01E08.The.Orphanage.2160p.AMZN.WEB-DL.DDP5.1.H.265-RAWR.mkv,5614257687,2026-02-03T13:34:57,series,3840x2160,hevc,2950.592,15222 +/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,The.Copenhagen.Test.S01E01.Copenhagen.2160p.AMZN.WEB-DL.DDP5.1.H.265-RAWR.mkv,6405805069,2026-02-03T13:26:12,series,3840x2160,hevc,3386.688,15131 +/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,The.Copenhagen.Test.S01E03.False.Flag.2160p.AMZN.WEB-DL.DDP5.1.H.265-RAWR.mkv,6133811175,2026-02-03T13:28:42,series,3840x2160,hevc,3220.352,15237 +/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,The.Copenhagen.Test.S01E06.Allegiance.2160p.AMZN.WEB-DL.DDP5.1.H.265-RAWR.mkv,5427486162,2026-02-03T13:32:33,series,3840x2160,hevc,2866.848,15145 +/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,The.Copenhagen.Test.S01E05.Looking.Glass.2160p.AMZN.WEB-DL.DDP5.1.H.265-RAWR.mkv,5909019935,2026-02-03T13:31:14,series,3840x2160,hevc,3101.984,15239 +/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,The.Copenhagen.Test.S01E04.Obsidian.2160p.AMZN.WEB-DL.DDP5.1.H.265-RAWR.mkv,6135136894,2026-02-03T13:29:59,series,3840x2160,hevc,3219.872,15243 +/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,The.Copenhagen.Test.S01E07.Not.the.World.of.Men.2160p.AMZN.WEB-DL.DDP5.1.H.265-RAWR.mkv,5598247961,2026-02-03T13:33:49,series,3840x2160,hevc,2945.664,15204 +/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,The.Copenhagen.Test.S01E02.Glass.House.2160p.AMZN.WEB-DL.DDP5.1.H.265-RAWR.mkv,5831721861,2026-02-03T13:27:31,series,3840x2160,hevc,3066.656,15213 +/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,The.Gentlemen.S01E08.The.Gospel.According.to.Bobby.Glass.1080p.NF.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv,1769098550,2024-03-11T10:35:22,series,1920x1080,h264,2594.5,5454 +/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,The.Gentlemen.S01E06.All.Eventualities.1080p.NF.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv,2003201228,2024-03-11T10:35:13,series,1920x1080,h264,2915.584,5496 +/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,The.Gentlemen.S01E04.An.Unsympathetic.Gentleman.1080p.NF.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv,1683953710,2024-03-11T10:35:14,series,1920x1080,h264,2469.417,5455 +/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,The.Gentlemen.S01E07.Not.Without.Danger.1080p.NF.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv,1782615836,2024-03-11T10:35:13,series,1920x1080,h264,2613.25,5457 +/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,The.Gentlemen.S01E01.Refined.Aggression.1080p.NF.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv,2803161788,2024-03-11T10:35:17,series,1920x1080,h264,4027.959,5567 +/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,The.Gentlemen.S01E05.Ive.Hundreds.of.Cousins.1080p.NF.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv,1807657808,2024-03-11T10:35:13,series,1920x1080,h264,2643.209,5471 +/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,The.Gentlemen.S01E03.Wheres.My.Weed.At.1080p.NF.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv,2069788668,2024-03-11T10:35:14,series,1920x1080,h264,3005.959,5508 +/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,The.Gentlemen.S01E02.Tackle.Tommy.Woo.Woo.1080p.NF.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv,2632320201,2024-03-11T10:35:18,series,1920x1080,h264,3794.375,5549 +/mnt/Downloads/series/【东京不够热】破解不在场证明 EP01_07/TNHSub_alibaikutsushi EP01.mkv,TNHSub_alibaikutsushi EP01.mkv,451601108,2020-11-04T15:31:33,series,1280x720,h264,2434.965,1483 +/mnt/Downloads/series/【东京不够热】破解不在场证明 EP01_07/TNHSub_alibaikutsushi EP06.mkv,TNHSub_alibaikutsushi EP06.mkv,511294008,2020-11-04T15:30:13,series,1280x720,h264,2435.008,1679 +/mnt/Downloads/series/【东京不够热】破解不在场证明 EP01_07/TNHSub_alibaikutsushi EP07 END.mkv,TNHSub_alibaikutsushi EP07 END.mkv,470687512,2020-11-04T15:31:27,series,1280x720,h264,2404.969,1565 +/mnt/Downloads/series/【东京不够热】破解不在场证明 EP01_07/TNHSub_alibaikutsushi EP03.mkv,TNHSub_alibaikutsushi EP03.mkv,461632369,2020-11-04T15:31:27,series,1280x720,h264,2434.944,1516 +/mnt/Downloads/series/【东京不够热】破解不在场证明 EP01_07/TNHSub_alibaikutsushi EP04.mkv,TNHSub_alibaikutsushi EP04.mkv,495898647,2020-11-04T15:31:27,series,1280x720,h264,2435.008,1629 +/mnt/Downloads/series/【东京不够热】破解不在场证明 EP01_07/TNHSub_alibaikutsushi EP05.mkv,TNHSub_alibaikutsushi EP05.mkv,453574893,2020-11-04T15:30:48,series,1280x720,h264,2434.932,1490 +/mnt/Downloads/series/【东京不够热】破解不在场证明 EP01_07/TNHSub_alibaikutsushi EP02.mkv,TNHSub_alibaikutsushi EP02.mkv,437387033,2020-11-04T15:31:33,series,1280x720,h264,2434.901,1437 +/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,Squid.Game.S01E03.2021.Netflix.WEB-DL.1080p.HEVC.DDP-AREY.mkv,2460947603,2022-10-06T02:44:56,series,1920x1080,hevc,3245.856,6065 +/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,Squid.Game.S01E05.2021.Netflix.WEB-DL.1080p.HEVC.DDP-AREY.mkv,2275500855,2022-10-06T02:44:56,series,1920x1080,hevc,3095.68,5880 +/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,Squid.Game.S01E09.2021.Netflix.WEB-DL.1080p.HEVC.DDP-AREY.mkv,2480651690,2022-10-06T02:45:01,series,1920x1080,hevc,3329.952,5959 +/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,Squid.Game.S01E02.2021.Netflix.WEB-DL.1080p.HEVC.DDP-AREY.mkv,2884227828,2022-10-06T02:44:59,series,1920x1080,hevc,3752.352,6149 +/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,Squid.Game.S01E04.2021.Netflix.WEB-DL.1080p.HEVC.DDP-AREY.mkv,2487842470,2022-10-06T02:44:58,series,1920x1080,hevc,3293.888,6042 +/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,Squid.Game.S01E08.2021.Netflix.WEB-DL.1080p.HEVC.DDP-AREY.mkv,1353103732,2022-10-06T02:45:06,series,1920x1080,hevc,1934.528,5595 +/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,Squid.Game.S01E07.2021.Netflix.WEB-DL.1080p.HEVC.DDP-AREY.mkv,2680695923,2022-10-06T02:45:00,series,1920x1080,hevc,3478.08,6165 +/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,Squid.Game.S01E01.2021.Netflix.WEB-DL.1080p.HEVC.DDP-AREY.mkv,2785193128,2022-10-06T02:44:57,series,1920x1080,hevc,3582.208,6220 +/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,Squid.Game.S01E06.2021.Netflix.WEB-DL.1080p.HEVC.DDP-AREY.mkv,2878318917,2022-10-06T02:45:02,series,1920x1080,hevc,3698.24,6226 +/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,Star.Wars.Andor.S01E05.The.Axe.Forgets.1080p.DSNP.WEB-DL.DDP5.1.H.264-NTb.mkv,1950877002,2023-01-03T12:46:04,series,1920x1080,h264,2590.304,6025 +/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,Star.Wars.Andor.S01E09.Nobodys.Listening.1080p.DSNP.WEB-DL.DDP5.1.H.264-NTb.mkv,2166196819,2023-01-03T12:54:19,series,1920x1080,h264,2812.672,6161 +/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,Star.Wars.Andor.S01E11.Daughter.of.Ferrix.1080p.DSNP.WEB-DL.DDP5.1.H.264-NTb.mkv,2006972139,2023-01-03T12:54:38,series,1920x1080,h264,2576.8,6230 +/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,Star.Wars.Andor.S01E10.One.Way.Out.1080p.DSNP.WEB-DL.DDP5.1.H.264-NTb.mkv,2019405657,2023-01-03T12:54:22,series,1920x1080,h264,2567.712,6291 +/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,Star.Wars.Andor.S01E08.Narkina.5.1080p.DSNP.WEB-DL.DDP5.1.H.264-NTb.mkv,2421329638,2023-01-03T12:54:24,series,1920x1080,h264,3195.136,6062 +/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,Star.Wars.Andor.S01E04.Aldhani.1080p.DSNP.WEB-DL.DDP5.1.H.264-NTb.mkv,2199274575,2023-01-03T12:46:22,series,1920x1080,h264,2817.056,6245 +/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,Star.Wars.Andor.S01E07.Announcement.1080p.DSNP.WEB-DL.DDP5.1.H.264-NTb.mkv,2303384155,2023-01-03T12:54:23,series,1920x1080,h264,3011.808,6118 +/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,Star.Wars.Andor.S01E12.Rix.Road.1080p.DSNP.WEB-DL.DDP5.1.H.264-NTb.mkv,2767784787,2023-01-03T12:54:37,series,1920x1080,h264,3251.424,6810 +/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,Star.Wars.Andor.S01E03.Reckoning.1080p.DSNP.WEB-DL.DDP5.1.H.264-NTb.mkv,2180332316,2023-01-03T12:38:51,series,1920x1080,h264,2417.28,7215 +/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,Star.Wars.Andor.S01E06.The.Eye.1080p.DSNP.WEB-DL.DDP5.1.H.264-NTb.mkv,2532437070,2023-01-03T12:45:34,series,1920x1080,h264,3037.344,6670 +/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,Star.Wars.Andor.S01E01.Kassa.1080p.DSNP.WEB-DL.DDP5.1.H.264-NTb.mkv,1985664765,2023-01-03T12:37:57,series,1920x1080,h264,2350.592,6758 +/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,Star.Wars.Andor.S01E02.That.Would.Be.Me.1080p.DSNP.WEB-DL.DDP5.1.H.264-NTb.mkv,1791356250,2023-01-03T12:38:13,series,1920x1080,h264,2138.048,6702 +/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,那你来做做看啊.Then.You.Try.Making.It.2025.S01E06.1080p.friDay.WEB-DL.H.264.AAC-AilMWeb.mp4,3443053580,2026-01-20T06:06:26,series,1920x1080,h264,2799.914333,9837 +/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,那你来做做看啊.Then.You.Try.Making.It.2025.S01E01.1080p.friDay.WEB-DL.H.264.AAC-AilMWeb.mp4,3428631418,2026-01-20T06:03:44,series,1920x1080,h264,2788.586333,9836 +/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,那你来做做看啊.Then.You.Try.Making.It.2025.S01E09.1080p.friDay.WEB-DL.H.264.AAC-AilMWeb.mp4,3705455670,2026-01-20T06:07:56,series,1920x1080,h264,3013.482333,9837 +/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,那你来做做看啊.Then.You.Try.Making.It.2025.S01E07.1080p.friDay.WEB-DL.H.264.AAC-AilMWeb.mp4,3442505975,2026-01-20T06:06:50,series,1920x1080,h264,2799.743667,9836 +/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,那你来做做看啊.Then.You.Try.Making.It.2025.S01E10.1080p.friDay.WEB-DL.H.264.AAC-AilMWeb.mp4,3717694496,2026-01-20T06:08:31,series,1920x1080,h264,3023.967,9835 +/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,那你来做做看啊.Then.You.Try.Making.It.2025.S01E08.1080p.friDay.WEB-DL.H.264.AAC-AilMWeb.mp4,3424221210,2026-01-20T06:07:22,series,1920x1080,h264,2784.682367,9837 +/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,那你来做做看啊.Then.You.Try.Making.It.2025.S01E03.1080p.friDay.WEB-DL.H.264.AAC-AilMWeb.mp4,3442728814,2026-01-20T06:04:47,series,1920x1080,h264,2799.807667,9837 +/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,那你来做做看啊.Then.You.Try.Making.It.2025.S01E04.1080p.friDay.WEB-DL.H.264.AAC-AilMWeb.mp4,3442622467,2026-01-20T06:05:19,series,1920x1080,h264,2799.701333,9837 +/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,那你来做做看啊.Then.You.Try.Making.It.2025.S01E02.1080p.friDay.WEB-DL.H.264.AAC-AilMWeb.mp4,3442937381,2026-01-20T06:04:15,series,1920x1080,h264,2799.871667,9837 +/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,那你来做做看啊.Then.You.Try.Making.It.2025.S01E05.1080p.friDay.WEB-DL.H.264.AAC-AilMWeb.mp4,3424752624,2026-01-20T06:05:50,series,1920x1080,h264,2785.194333,9837 +/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,[苦尽柑来遇见你].When.Life.Gives.You.Tangerines.2025.S01E04.1080p.NF.WEB-DL.H264.DDP5.1.Atmos-UBWEB.mkv,2392638116,2025-03-12T15:57:58,series,1920x1080,h264,3577.6,5350 +/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,[苦尽柑来遇见你].When.Life.Gives.You.Tangerines.2025.S01E02.1080p.NF.WEB-DL.H264.DDP5.1.Atmos-UBWEB.mkv,2309080249,2025-03-12T15:42:03,series,1920x1080,h264,3245.28,5692 +/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,[苦尽柑来遇见你].When.Life.Gives.You.Tangerines.2025.S01E03.1080p.NF.WEB-DL.H264.DDP5.1.Atmos-UBWEB.mkv,2726145402,2025-03-12T15:51:44,series,1920x1080,h264,3793.824,5748 +/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,[苦尽柑来遇见你].When.Life.Gives.You.Tangerines.2025.S01E01.1080p.NF.WEB-DL.H264.DDP5.1.Atmos-UBWEB.mkv,2309908772,2025-03-12T15:31:36,series,1920x1080,h264,3453.472,5350 +/mnt/Downloads/series/(ドラマ) 完全無罪 第03話 「正義という名の罪」 (1920x1080 x264-AAC)-DoA.mkv,(ドラマ) 完全無罪 第03話 「正義という名の罪」 (1920x1080 x264-AAC)-DoA.mkv,2595530155,2024-08-18T12:29:44,series,1920x1080,h264,2929.977,7086 +/mnt/Downloads/series/Reacher.S03E02.Truckin.1080p.AMZN.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv,Reacher.S03E02.Truckin.1080p.AMZN.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv,3010032691,2025-02-23T11:58:03,series,1920x960,h264,2580.161,9332 +/mnt/Downloads/series/(ドラマSP) GTOリバイバル [2024.04.01] (1440x1080i x264-AAC)-DoA.mkv,(ドラマSP) GTOリバイバル [2024.04.01] (1440x1080i x264-AAC)-DoA.mkv,4615570140,2024-06-14T11:13:26,series,1440x1080,h264,5530.024,6677 diff --git a/plan.json b/plan.json new file mode 100644 index 0000000..a30c8a9 --- /dev/null +++ b/plan.json @@ -0,0 +1,37365 @@ +{ + "plan_id": "853518f4-40ea-409f-8b5f-ab5d79908554", + "created_at": "2026-02-10T08:51:59.456050+00:00", + "operations": [ + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/Land.of.Bad.2024.1080p.BluRay.x265.10bit.TrueHD5.1-WiKi/Land.of.Bad.2024.1080p.BluRay.x265.10bit.TrueHD5.1-WiKi.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/Hunt.2022.1080p.BluRay.x265.10bit.TrueHD5.1-WiKi/Hunt.2022.1080p.BluRay.x265.10bit.TrueHD5.1-WiKi.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/Your.Eyes.Tell.2020.720p.BluRay.x264-WiKi/Sample/Your.Eyes.Tell.2020.720p.BluRay.x264-WiKi.sample.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/Your.Eyes.Tell.2020.720p.BluRay.x264-WiKi/Your.Eyes.Tell.2020.720p.BluRay.x264-WiKi.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/Wish.2020.1080p.BluRay.x264.DTS-WiKi/Sample/Wish.2020.1080p.BluRay.x264.DTS-WiKi.sample.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/Wish.2020.1080p.BluRay.x264.DTS-WiKi/Wish.2020.1080p.BluRay.x264.DTS-WiKi.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/Amsterdam.2022.1080p.BluRay.x265.10bit.DTS-WiKi/Sample/Amsterdam.2022.1080p.BluRay.x265.10bit.DTS-WiKi.Sample.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/Amsterdam.2022.1080p.BluRay.x265.10bit.DTS-WiKi/Amsterdam.2022.1080p.BluRay.x265.10bit.DTS-WiKi.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/Legacy.Of.Lies.2020.1080p.BluRay.x264.DTS-PTH/Legacy.Of.Lies.2020.1080p.BluRay.x264.DTS-PTH.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/Food.Luck.2020.720p.BluRay.x264-WiKi/Sample/Food.Luck.2020.720p.BluRay.x264-WiKi.sample.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/Food.Luck.2020.720p.BluRay.x264-WiKi/Food.Luck.2020.720p.BluRay.x264-WiKi.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/Next.Door.Neighbor.2020.720p.BluRay.x264-WiKi/Sample/Next.Door.Neighbor.2020.720p.BluRay.x264-WiKi.Sample.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/Next.Door.Neighbor.2020.720p.BluRay.x264-WiKi/Next.Door.Neighbor.2020.720p.BluRay.x264-WiKi.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/Offbeat.Cops.2022.1080p.BluRay.x265.10bit-WiKi/Offbeat.Cops.2022.1080p.BluRay.x265.10bit-WiKi.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/Exit.2019.720p.BluRay.x264-WiKi/Sample/Exit.2019.720p.BluRay.x264-WiKi.Sample.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/Exit.2019.720p.BluRay.x264-WiKi/Exit.2019.720p.BluRay.x264-WiKi.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/Fallen.1998.1080p.BluRay.x264.DTS-WiKi/Fallen.1998.1080p.BluRay.x264.DTS-WiKi.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/Fallen.1998.1080p.BluRay.x264.DTS-WiKi/Sample/Fallen.1998.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/Knives.Out.2019.1080p.BluRay.x264-WiKi/Knives.Out.2019.1080p.BluRay.x264-WiKi.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/Knives.Out.2019.1080p.BluRay.x264-WiKi/Sample/Knives.Out.2019.1080p.BluRay.x264-WiKi.Sample.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/Happy.End.1999.1080p.BluRay.x265.10bit.DTS-WiKi/Happy.End.1999.1080p.BluRay.x265.10bit.DTS-WiKi.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/Signal.The.Movie.2021.1080p.BluRay.x264.DTS-WiKi/Signal.The.Movie.2021.1080p.BluRay.x264.DTS-WiKi.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/AI.Amok.2020.720p.BluRay.x264-WiKi/Sample/AI.Amok.2020.720p.BluRay.x264-WiKi.sample.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/AI.Amok.2020.720p.BluRay.x264-WiKi/AI.Amok.2020.720p.BluRay.x264-WiKi.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/The.Call.2020.Netflix.WEB-DL.1080p.x264.DDP-AREY.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/Ambulance.2022.1080p.BluRay.x265.10bit-WiKi/Sample/Ambulance.2022.1080p.BluRay.x265.10bit-WiKi.Sample.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/Ambulance.2022.1080p.BluRay.x265.10bit-WiKi/Ambulance.2022.1080p.BluRay.x265.10bit-WiKi.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/Strange.World.2022.1080p.BluRay.x265.10bit.DTS-WiKi/Strange.World.2022.1080p.BluRay.x265.10bit.DTS-WiKi.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/Flowers.2010.1080p.BluRay.x264-WiKi/Sample/Flowers.2010.1080p.BluRay.x264-WiKi.sample.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/Flowers.2010.1080p.BluRay.x264-WiKi/Flowers.2010.1080p.BluRay.x264-WiKi.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/Ticket.to.Paradise.2022.1080p.BluRay.x264.DTS-WiKi/Ticket.to.Paradise.2022.1080p.BluRay.x264.DTS-WiKi.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/Young.Woman.and.the.Sea.2024.2160p.DSNP.WEB-DL.DDP5.1.Atmos.DV.HDR.H.265-FLUX.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/Feel 100% 1996 NF WEB-DL 1080p H.264 AAC & DD 2.0 3Audios-Dave.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/Shock.Wave.2.2020.720p.BluRay.x264-WiKi/Shock.Wave.2.2020.720p.BluRay.x264-WiKi.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/Shock.Wave.2.2020.720p.BluRay.x264-WiKi/Sample/Shock.Wave.2.2020.720p.BluRay.x264-WiKi.Sample.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/The.First.Gentleman.2021.720p.BluRay.x264-WiKi/Sample/The.First.Gentleman.2021.720p.BluRay.x264-WiKi.sample.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/The.First.Gentleman.2021.720p.BluRay.x264-WiKi/The.First.Gentleman.2021.720p.BluRay.x264-WiKi.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/One.Summer.Story.2020.720p.BluRay.x264.DTS-WiKi/One.Summer.Story.2020.720p.BluRay.x264.DTS-WiKi.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/The.Card.Counter.2021.720p.BluRay.x264-WiKi/Sample/The.Card.Counter.2021.720p.BluRay.x264-WiKi.Sample.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/The.Card.Counter.2021.720p.BluRay.x264-WiKi/The.Card.Counter.2021.720p.BluRay.x264-WiKi.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/Top.Gun.Maverick.2022.1080p.WEB-DL.AAC5.1.H.264-tG1R0.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/Strays.2023.Unrated.1080p.BluRay.x265.10bit.DTS-WiKi/Strays.2023.Unrated.1080p.BluRay.x265.10bit.DTS-WiKi.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/The.Mauritanian.2021.1080p.BluRay.x264.DTS-WiKi/Sample/The.Mauritanian.2021.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/The.Mauritanian.2021.1080p.BluRay.x264.DTS-WiKi/The.Mauritanian.2021.1080p.BluRay.x264.DTS-WiKi.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/Uncut.Gems.2019.REPACK.720p.BluRay.x264-WiKi/Uncut.Gems.2019.REPACK.720p.BluRay.x264-WiKi.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/Spy.2015.720p.BluRay.x264.DTS-WiKi/Sample/Spy.2015.720p.BluRay.x264.DTS-WiKi.Sample.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/Spy.2015.720p.BluRay.x264.DTS-WiKi/Spy.2015.720p.BluRay.x264.DTS-WiKi.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/Verdens.Verste.Menneske.2021.720p.BluRay.x264-WiKi/Verdens.Verste.Menneske.2021.720p.BluRay.x264-WiKi.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/Verdens.Verste.Menneske.2021.720p.BluRay.x264-WiKi/Sample/Verdens.Verste.Menneske.2021.720p.BluRay.x264-WiKi.Sample.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/Yowamushi.Pedal.2020.1080p.BluRay.x264.DTS-WiKi/Sample/Yowamushi.Pedal.2020.1080p.BluRay.x264.DTS-WiKi.sample.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/Yowamushi.Pedal.2020.1080p.BluRay.x264.DTS-WiKi/Yowamushi.Pedal.2020.1080p.BluRay.x264.DTS-WiKi.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/Sex.Is.Zero.2002.1080p.BluRay.x264.DTS-WiKi/Sex.Is.Zero.2002.1080p.BluRay.x264.DTS-WiKi.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/Hayabusa.2011.1080p.BluRay.x264.DTS-WiKi/Sample/Hayabusa.2011.1080p.BluRay.x264.DTS-WiKi.sample.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/Hayabusa.2011.1080p.BluRay.x264.DTS-WiKi/Hayabusa.2011.1080p.BluRay.x264.DTS-WiKi.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/Night.in.Paradise.2021.1080p.NF.WEB-DL.DDP5.1.x264-DoA.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/Top.Gun.Maverick.2022.1080p.BluRay.x265.10bit-WiKi/Sample/Top.Gun.Maverick.2022.1080p.BluRay.x265.10bit-WiKi.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/Top.Gun.Maverick.2022.1080p.BluRay.x265.10bit-WiKi/Top.Gun.Maverick.2022.1080p.BluRay.x265.10bit-WiKi.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/The.Hating.Game.2021.1080p.BluRay.x264.DTS-WiKi/The.Hating.Game.2021.1080p.BluRay.x264.DTS-WiKi.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/超时空亚当计划.The.Adam.Project.2022.1080p.WEB-DL.H264.AC3-HDHWEB/超時空亞當計畫.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/Raging Fire 2021 WEB-DL 4K H265 DDP 5.1-Dave.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/Next.Sohee.2022.1080p.BluRay.x265.10bit.DTS-WiKi/Next.Sohee.2022.1080p.BluRay.x265.10bit.DTS-WiKi.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/Weathering.with.You.2019.1080p.BluRay.x264.DTS-WiKi/Weathering.with.You.2019.1080p.BluRay.x264.DTS-WiKi.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/Daddio.2023.2160p.AMZN.WEB-DL.DDP5.1.H.265-FLUX.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/As.It.Burns.2023.1080p.BluRay.x265.10bit-WiKi/As.It.Burns.2023.1080p.BluRay.x265.10bit-WiKi.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/Wolfs.2024.2160p.ATVP.WEB-DL.DDP5.1.Atmos.DV.H.265-FLUX.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/Airport.2013.1080p.BluRay.x264-WiKi/Sample/Airport.2013.1080p.BluRay.x264-WiKi.sample.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/Airport.2013.1080p.BluRay.x264-WiKi/Airport.2013.1080p.BluRay.x264-WiKi.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/Lady.Chatterley's.Lover.1981.720p.BluRay.x264-WiKi/Lady.Chatterley's.Lover.1981.720p.BluRay.x264-WiKi.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/Past.Lives.2023.REPACK.1080p.AMZN.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/The.Killer.2023.1080p.NF.WEB-DL.DDP5.1.H.264-playWEB.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/Big.Shot's.Funeral.2001.720p.BluRay.x264-WiKi/Big.Shot's.Funeral.2001.720p.BluRay.x264-WiKi.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/Rurouni.Kenshin.the.Beginning.2021.1080p.NF.WEB-DL.DDP5.1.x264-DoA.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/Personal.Taulor.2013.1080p.WEB-DL.x264.AAC-SmY.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/見えない目撃者 2019 [R15+指定] 1080p HDTV x264 AAC5.1-DoA.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/Freaky.2020.720p.BluRay.x264-WiKi/Sample/Freaky.2020.720p.BluRay.x264-WiKi.Sample.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/Freaky.2020.720p.BluRay.x264-WiKi/Freaky.2020.720p.BluRay.x264-WiKi.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/Black.Widow.2021.1080p.DSNP.WEB-DL.DDP.5.1.Atmos.H.265-FLUX.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/The.Father.2020.1080p.BluRay.x264.DTS-WiKi/Sample/The.Father.2020.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/The.Father.2020.1080p.BluRay.x264.DTS-WiKi/The.Father.2020.1080p.BluRay.x264.DTS-WiKi.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/No.Longer.Human.2019.720p.BluRay.x264-WiKi/No.Longer.Human.2019.720p.BluRay.x264-WiKi.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/No.Longer.Human.2019.720p.BluRay.x264-WiKi/Sample/No.Longer.Human.2019.720p.BluRay.x264-WiKi.sample.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/Napoleon.The.Directors.Cut.2024.1080p.Apple.TV+.WEB-DL.DDP.5.1.Atmos.H.264-CHDWEB.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/Assassination.2015.1080p.BluRay.x264.DTS-WiKi/Sample/Assassination.2015.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/Assassination.2015.1080p.BluRay.x264.DTS-WiKi/Assassination.2015.1080p.BluRay.x264.DTS-WiKi.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/Greenland.2020.1080p.BluRay.x265.10bit.DTS-PTH/Greenland.2020.1080p.BluRay.x265.10bit.DTS-PTH.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/The.Family.Plan.2.2025.1080p.ATVP.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/Juror.#2.2024.1080p.BluRay.x265.10bit-WiKi/Juror.#2.2024.1080p.BluRay.x265.10bit-WiKi.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/脚本バカリズムの新春スペシャルドラマ「侵入者たちの晩餐」 SP 1080p HDTV x264 AAC.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/Violent.Night.2022.1080p.BluRay.x265.10bit.DTS-WiKi/Violent.Night.2022.1080p.BluRay.x265.10bit.DTS-WiKi.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/I.Wish.2011.1080p.BluRay.x265.10bit-WiKi/Sample/I.Wish.2011.1080p.BluRay.x265.10bit-WiKi.Sample.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/I.Wish.2011.1080p.BluRay.x265.10bit-WiKi/I.Wish.2011.1080p.BluRay.x265.10bit-WiKi.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/Evangelion.3.0+1.01.Thrice.Upon.a.Time.2021.Amazon.WEB-DL.1080p.H264.DDP-AREY.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/特送.Special.Delivery.2022.BluRay.MNHD-FRDS/BDMenu.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/特送.Special.Delivery.2022.BluRay.MNHD-FRDS/Special.Delivery.2022.BluRay.1080p.x265.10bit.DDP5.1.MNHD-FRDS.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/A.Real.Pain.2024.1080p.AMZN.WEB-DL.DDP5.1.H.264-FLUX.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/Remember.2022.1080p.SEEZN.WEB-DL.AAC2.0.H.264-tG1R0.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/A.Loving.Husband.2016.1080p.BluRay.x264-WiKi/Sample/A.Loving.Husband.2016.1080p.BluRay.x264-WiKi.sample.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/A.Loving.Husband.2016.1080p.BluRay.x264-WiKi/A.Loving.Husband.2016.1080p.BluRay.x264-WiKi.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/The.Policeman's.Lineage.2022.1080p.WEB-DL.DDP5.1.H264-HAMR.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/The.Voice.of.Sin.2020.720p.BluRay.x264-WiKi/The.Voice.of.Sin.2020.720p.BluRay.x264-WiKi.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/Tazza.The.Hidden.Card.2014.720p.BluRay.x264-WiKi/Tazza.The.Hidden.Card.2014.720p.BluRay.x264-WiKi.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/The.Last.Dance.2024.1080p.BluRay.x265.10bit-WiKi/The.Last.Dance.2024.1080p.BluRay.x265.10bit-WiKi.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/Be.My.Master.2018.1080p.BluRay.x264.DTS-WiKi/Be.My.Master.2018.1080p.BluRay.x264.DTS-WiKi.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/Serendipity.2001.1080p.BluRay.x264.DTS-WiKi/Serendipity.2001.1080p.BluRay.x264.DTS-WiKi.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/Serendipity.2001.1080p.BluRay.x264.DTS-WiKi/Sample/Serendipity.2001.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/The.Witcher.Sirens.of.the.Deep.2025.1080p.NF.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/Maharaja.2024.1080p.NF.WEB-DL.DDP5.1.x265.10bit-Yumi@FRDS.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/Predator.Badlands.2025.1080p.WEB-DL.LINE.AUDIO.H264-AOC.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/Renfield.2023.1080p.BluRay.x265.10bit.DTS-WiKi/Renfield.2023.1080p.BluRay.x265.10bit.DTS-WiKi.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/Thermae.Romae.2012.1080p.BluRay.x264.DTS-WiKi/Sample/Thermae.Romae.2012.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/Thermae.Romae.2012.1080p.BluRay.x264.DTS-WiKi/Thermae.Romae.2012.1080p.BluRay.x264.DTS-WiKi.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/Kimetsu no Yaiba - Mugen Ressha [PSNRip][1080p][CHT][v2].mp4", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/Dream.Scenario.2023.1080p.BluRay.x265.10bit-WiKi/Dream.Scenario.2023.1080p.BluRay.x265.10bit-WiKi.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/Summer.Sway.2020.1080p.BluRay.x264.DTS-WiKi/Sample/Summer.Sway.2020.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/Summer.Sway.2020.1080p.BluRay.x264.DTS-WiKi/Summer.Sway.2020.1080p.BluRay.x264.DTS-WiKi.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/飞机陷落.2023.1080p.中英字幕£CMCT春天/[飞机陷落].Plane.2023.BluRay.1080p.x264.AC3-CMCT.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/Finch.2021.1080p.ATVP.WEB-DL.DDP5.1.Atmos.H.264-TEPES.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/Encanto.2021.720p.BluRay.x264-WiKi/Encanto.2021.720p.BluRay.x264-WiKi.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/Encanto.2021.720p.BluRay.x264-WiKi/Sample/Encanto.2021.720p.BluRay.x264-WiKi.Sample.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/Demon Slayer Kimetsu No Yaiba Infinity Castle 2025 1080p WEB-DL JAPANESE AAC2.0 H.264-Cassu.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/Poupelle.of.Chimney.Town.2020.720p.BluRay.x264-WiKi/Poupelle.of.Chimney.Town.2020.720p.BluRay.x264-WiKi.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/Tenet.2020.IMAX.1080p.BluRay.x264.DTS-WiKi/Tenet.2020.IMAX.1080p.BluRay.x264.DTS-WiKi.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/Tenet.2020.IMAX.1080p.BluRay.x264.DTS-WiKi/Sample/Tenet.2020.IMAX.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/Under.the.Open.Sky.2020.720p.BluRay.x264-WiKi/Under.the.Open.Sky.2020.720p.BluRay.x264-WiKi.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/The.Running.Man.2025.1080p.AMZN.WEB-DL.English.DDP5.1.H.264-KyoGo.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/The.Gray.Man.2022.1080p.NF.WEB-DL.DDP.5.1.Atmos.H.264-Lee@CHDWEB.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/Wrath.of.Man.2021.720p.BluRay.x264-WiKi/Sample/Wrath.of.Man.2021.720p.BluRay.x264-WiKi.Sample.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/Wrath.of.Man.2021.720p.BluRay.x264-WiKi/Wrath.of.Man.2021.720p.BluRay.x264-WiKi.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/The.Sparring.Partner.2022.1080p.BluRay.x265.10bit-WiKi/The.Sparring.Partner.2022.1080p.BluRay.x265.10bit-WiKi.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/Intouchables.2011.720p.BluRay.x264.DTS-WiKi/Sample/Intouchables.2011.720p.BluRay.x264.DTS-WiKi.Sample.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/Intouchables.2011.720p.BluRay.x264.DTS-WiKi/Intouchables.2011.720p.BluRay.x264.DTS-WiKi.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/Dune.2021.1080p.HDRip.X264.AC3-EVO/Dune.2021.1080p.HDRip.X264.AC3-EVO.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/Extreme.Job.2019.1080p.BluRay.x264.DTS-WiKi/Sample/Extreme.Job.2019.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/Extreme.Job.2019.1080p.BluRay.x264.DTS-WiKi/Extreme.Job.2019.1080p.BluRay.x264.DTS-WiKi.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/Gojira-1.0.2023.1080p.BluRay.DD+.7.1.x264-SPHD.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/Boss.Level.2020.1080p.BluRay.x264.DTS-WiKi/Boss.Level.2020.1080p.BluRay.x264.DTS-WiKi.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/Boss.Level.2020.1080p.BluRay.x264.DTS-WiKi/Sample/Boss.Level.2020.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/The.Outpost.2020.720p.BluRay.x264-WiKi/The.Outpost.2020.720p.BluRay.x264-WiKi.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/The.Outpost.2020.720p.BluRay.x264-WiKi/Sample/The.Outpost.2020.720p.BluRay.x264-WiKi.Sample.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/Wanted.2008.2160p.BluRay.x265.10bit.DTS-WiKi/Wanted.2008.2160p.BluRay.x265.10bit.DTS-WiKi.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/Summer.Wars.2009.1080p.BluRay.x264.DTS-WiKi/Sample/Summer.Wars.2009.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/Summer.Wars.2009.1080p.BluRay.x264.DTS-WiKi/Summer.Wars.2009.1080p.BluRay.x264.DTS-WiKi.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/Freelance.2023.1080p.BluRay.x265.10bit.DTS-WiKi/Freelance.2023.1080p.BluRay.x265.10bit.DTS-WiKi.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/Bound.1996.1080p.1080p.BluRay.x264.DTS-WiKi/Bound.1996.1080p.1080p.BluRay.x264.DTS-WiKi.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/Bound.1996.1080p.1080p.BluRay.x264.DTS-WiKi/Sample/Bound.1996.1080p.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/The.Golden.Lotus.1974.1080p.BluRay.FLAC2.0.x264-PTer.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/星に願いを。 2003 1080p HDTV x264 AAC.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/Mes.seances.de.lutte.2013.BDRip.X264.iNT-TLF/Mes.seances.de.lutte.2013.BDRip.X264.iNT-TLF.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/Godzilla.vs.Kong.2021.1080p.HMAX.WEB-DL.DDP5.1.CHS-ENG.x264.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/Exhuma.2024.1080p.BluRay.x265.10bit-WiKi/Exhuma.2024.1080p.BluRay.x265.10bit-WiKi.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/正牌韦小宝之奉旨沟女.Hero.from.Beyond.the.Boundary.of.Time.1993.D5.2Audio.MiniSD-TLF.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/Her.Story.2024.1080p.BluRay.x265.10bit.DTS-WiKi/Her.Story.2024.1080p.BluRay.x265.10bit.DTS-WiKi.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/Galileo.Forbidden.Sorcery.2022.1080p.BluRay.x265.10bit-WiKi/Galileo.Forbidden.Sorcery.2022.1080p.BluRay.x265.10bit-WiKi.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/Pig.2021.720p.BluRay.x264-WiKi/Sample/Pig.2021.720p.BluRay.x264-WiKi.Sample.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/Pig.2021.720p.BluRay.x264-WiKi/Pig.2021.720p.BluRay.x264-WiKi.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/Listen.to.My.Heart.2009.1080p.AMZN.WEB-DL.DDP5.1.x264-ARiN.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/Your.Name.2016.RERiP.1080p.BluRay.x264.DTS-WiKi/Your.Name.2016.RERiP.1080p.BluRay.x264.DTS-WiKi.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/A.Guilty.Conscience.2023.1080p.BluRay.x265.10bit-WiKi/A.Guilty.Conscience.2023.1080p.BluRay.x265.10bit-WiKi.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/隣人X 疑惑の彼女 2023 1080p HDTV x264 AAC5.1.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/Golden.Slumber.2010.1080p.BluRay.x265.10bit.DTS-WiKi/Golden.Slumber.2010.1080p.BluRay.x265.10bit.DTS-WiKi.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/Prey.2022.1080p.BluRay.x265.10bit.DTS-WiKi/Prey.2022.1080p.BluRay.x265.10bit.DTS-WiKi.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/A.Writer's.Odyssey.2021.720p.BluRay.x264-WiKi/A.Writer's.Odyssey.2021.720p.BluRay.x264-WiKi.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/Baby.Driver.2017.1080p.BluRay.x264.DTS-WiKi/Sample/Baby.Driver.2017.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/Baby.Driver.2017.1080p.BluRay.x264.DTS-WiKi/Baby.Driver.2017.1080p.BluRay.x264.DTS-WiKi.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/Hard.Hit.2021.720p.BluRay.x264-WiKi/Hard.Hit.2021.720p.BluRay.x264-WiKi.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/Hard.Hit.2021.720p.BluRay.x264-WiKi/Sample/Hard.Hit.2021.720p.BluRay.x264-WiKi.Sample.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/Sinners 2025 REPACK 1080p BluRay x265 10bit TrueHD-WiKi/Sinners 2025 REPACK 1080p BluRay x265 10bit TrueHD-WiKi.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/Raging Fire Exclusive Documentary 2021 WEB-DL 1080p H264 DDP 2.0-Dave.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/A.Man.2022.1080p.BluRay.x265.10bit.DTS-WiKi/A.Man.2022.1080p.BluRay.x265.10bit.DTS-WiKi.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/The.Family.Plan.2023.1080p.Apple.TV+.WEB-DL.DDP.5.1.Atmos.H.264-CHDWEB.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/Waiting.For.Rain.2021.1080p.WEB-DL.AAC2.0.H264-TTG.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/Let.Him.Go.2020.720p.BluRay.x264-WiKi/Sample/Let.Him.Go.2020.720p.BluRay.x264-WiKi.Sample.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/Let.Him.Go.2020.720p.BluRay.x264-WiKi/Let.Him.Go.2020.720p.BluRay.x264-WiKi.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/步履不停.2008.CC.1080p.日语.简繁中字£CMCT槿年/[步履不停].Still.Walking.2008.CC.BluRay.1080p.x264.DTS-CMCT.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/松本清張「ガラスの城」テレビ朝日開局65周年記念 松本清張二夜連続ドラマプレミアム 1080p AbemaTV WEB-DL H264 AAC-Solitude@DoA.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/Crying.Out.Love, in.the.Center.of.the.World.2004.1080p.AMZN.WEB-DL.DDP5.1.H.264-ARiN.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/Bad.Boys.for.Life.2020.1080p.BluRay.x264-WUTANG/bad.boys.for.life.2020.1080p.bluray.x264-wutang.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/Confidential.Assignment.2017.1080p.BluRay.x264-WiKi/Confidential.Assignment.2017.1080p.BluRay.x264-WiKi.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/Confidential.Assignment.2017.1080p.BluRay.x264-WiKi/Sample/Confidential.Assignment.2017.1080p.BluRay.x264-WiKi.Sample.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/爱,不由自主.2017.1080p.日语.简繁中字£CMCT陆判/[爱,不由自主].Narratage.2017.BluRay.1080p.x264.DTS-CMCT.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/Muzi.v.nadeji.2011.1080p.BluRay.x264.DTS-WiKi/Muzi.v.nadeji.2011.1080p.BluRay.x264.DTS-WiKi.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/明日を綴る写真館 2024 1080p HDTV x264 AAC5.1.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/Warriors of Future 2022 NF WEB-DL 1080p H.264 DDP 5.1 10Audios-Dave.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/DogMan.2023.1080p.BluRay.x265.10bit-WiKi/DogMan.2023.1080p.BluRay.x265.10bit-WiKi.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/Bushido.2024.1080p.BluRay.x265.10bit.DTS-WiKi/Bushido.2024.1080p.BluRay.x265.10bit.DTS-WiKi.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/Way.Down.2021.720p.BluRay.x264-WiKi/Sample/Way.Down.2021.720p.BluRay.x264-WiKi.Sample.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/Way.Down.2021.720p.BluRay.x264-WiKi/Way.Down.2021.720p.BluRay.x264-WiKi.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/The.Door.Into.Summer.2021.720p.BluRay.x264-WiKi/The.Door.Into.Summer.2021.720p.BluRay.x264-WiKi.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/Monster.Hunter.2020.REPACK.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTG.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/Luca.2021.1080p.BluRay.x264.DTS-WiKi/Sample/Luca.2021.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/Luca.2021.1080p.BluRay.x264.DTS-WiKi/Luca.2021.1080p.BluRay.x264.DTS-WiKi.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/The.Soul.2021.1080p.NF.WEB-DL.DDP5.1.x264-DoA.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/Dog.2022.1080p.BluRay.x264.DTS-WiKi/Dog.2022.1080p.BluRay.x264.DTS-WiKi.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/Dog.2022.1080p.BluRay.x264.DTS-WiKi/Sample/Dog.2022.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/Vernost AKA Fidelity 2019 1080p BluRay DD5.1 x264-BdC.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/Detective VS. Sleuths 2022 WEB-DL 4K H.265 DDP 2.0 & AAC 4Audios-Dave.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/Julie.&.Julia.2009.1080p.BluRay.x265.10bit.DTS-WiKi/Julie.&.Julia.2009.1080p.BluRay.x265.10bit.DTS-WiKi.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/Moonlight.Express.1999.720p.BluRay.x264-WiKi/Moonlight.Express.1999.720p.BluRay.x264-WiKi.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/Moonlight.Express.1999.720p.BluRay.x264-WiKi/Sample/Moonlight.Express.1999.720p.BluRay.x264-WiKi.Sample.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/カツベン! 2019 1080p HDTV x264 AAC5.1-DoA.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/The.Lost.City.2022.1080p.BluRay.x265.10bit-WiKi/The.Lost.City.2022.1080p.BluRay.x265.10bit-WiKi.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/Shoplifters.2018.1080p.BluRay.x264.DTS-WiKi/Shoplifters.2018.1080p.BluRay.x264.DTS-WiKi.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/Shoplifters.2018.1080p.BluRay.x264.DTS-WiKi/Sample/Shoplifters.2018.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/PBS.美国经历.长津湖战役.American.Experience.The.Battle.of.Chosin.2016.WEB-DL.MiniSD-TLF.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/翻译疑云.Les.Traducteurs.2019.Bluray.1080p.x265.10bit.MNHD-FRDS/Les.Traducteurs.2019.Bluray.1080p.x265.10bit.MNHD-FRDS.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/The.Substance.2024.1080p.BluRay.x265.10bit.DTS-WiKi/The.Substance.2024.1080p.BluRay.x265.10bit.DTS-WiKi.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/Bullet.Train.2022.1080p.BluRay.x264.DTS-WiKi/Sample/Bullet.Train.2022.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/Bullet.Train.2022.1080p.BluRay.x264.DTS-WiKi/Bullet.Train.2022.1080p.BluRay.x264.DTS-WiKi.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/Burnt.2015.1080p.BluRay.x265.10bit.DTS-WiKi/Burnt.2015.1080p.BluRay.x265.10bit.DTS-WiKi.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/Drive.My.Car.2021.1080p.BluRay.x264.DTS-WiKi/Drive.My.Car.2021.1080p.BluRay.x264.DTS-WiKi.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/SexWorld.1978.1080p.BluRay.x264.AAC-PornPlus.mp4", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/Loro.2018.720p.BluRay.DD5.1.x264-BMDru/Loro.2018.720p.BluRay.DD5.1.x264-BMDru.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/Ghost.Book.2022.1080p.BluRay.x265.10bit.DTS-WiKi/Ghost.Book.2022.1080p.BluRay.x265.10bit.DTS-WiKi.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/[HYSUB]Omoi, Omoware, Furi, Furare[BIG5_MP4][1920X1080].mp4", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/The.Valet.2022.2160p.DSNP.WEB-DL.DDP5.1.HDR.HEVC-CMRG.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/The.Creator.2023.1080p.BluRay.x265.10bit.DTS-WiKi/The.Creator.2023.1080p.BluRay.x265.10bit.DTS-WiKi.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/Deliver.Us.from.Evil.2020.720p.BluRay.x264-WiKi/Deliver.Us.from.Evil.2020.720p.BluRay.x264-WiKi.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/Nothing Serious 2021.mp4", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/Demolition.2015.720p.BluRay.x264-WiKi/Demolition.2015.720p.BluRay.x264-WiKi.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/Demolition.2015.720p.BluRay.x264-WiKi/Sample/Demolition.2015.720p.BluRay.x264-WiKi.sample.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/Empire.Of.Lust.2014.720p.Uncut.HDRip.H264-Ental.mp4", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/Shin.Ultraman.2022.1080p.BluRay.x265.10bit.DTS-WiKi/Shin.Ultraman.2022.1080p.BluRay.x265.10bit.DTS-WiKi.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/Crimes.of.the.Future.2022.2160p.WEB-DL.DDP5.1.HDR.H.265-FLUX.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/The.Super.Mario.Bros.Movie.2023.1080p.MA.WEB-DL.DDP5.1.Atmos.H.264-CMaRioG.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/Portrait.of.a.Beauty.2008.720p.BluRay.x264-WiKi/Portrait.of.a.Beauty.2008.720p.BluRay.x264-WiKi.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/Operation.Mincemeat.2021.1080p.NF.WEB-DL.DDP5.1.HDR.H265-HAMR.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/Tonkatsu.DJ.Agetaro.2020.720p.BluRay.x264.DTS-WiKi/Tonkatsu.DJ.Agetaro.2020.720p.BluRay.x264.DTS-WiKi.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/Ghostbusters.Afterlife.2021.1080p.BluRay.x264.DTS-WiKi/Ghostbusters.Afterlife.2021.1080p.BluRay.x264.DTS-WiKi.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/Ghostbusters.Afterlife.2021.1080p.BluRay.x264.DTS-WiKi/Sample/Ghostbusters.Afterlife.2021.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/当男人恋爱时.2021.1080p.闽南语.简繁中字£CMCT利姆鲁/[当男人恋爱时].Man.in.Love.2021.BluRay.1080p.x264.DTS-CMCT.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/Wake.Up.Dead.Man.A.Knives.Out.Mystery.2025.1080p.NF.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/穆赫兰道.2001.CC.1080p.中英字幕£CMCT风潇潇/[穆赫兰道].Mulholland.Dr.2001.CC.BluRay.1080p.x264.DTS-CMCT.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/Honest.Thief.2020.720p.BluRay.x264-WiKi/Honest.Thief.2020.720p.BluRay.x264-WiKi.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/Honest.Thief.2020.720p.BluRay.x264-WiKi/Sample/Honest.Thief.2020.720p.BluRay.x264-WiKi.Sample.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/Dont.Look.Up.2021.1080p.NF.WEB-DL.DDP5.1.Atmos.HDR.HEVC-MZABI.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/The.Master.Plan.2021.720p.BluRay.x264-WiKi/The.Master.Plan.2021.720p.BluRay.x264-WiKi.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/The.Master.Plan.2021.720p.BluRay.x264-WiKi/Sample/The.Master.Plan.2021.720p.BluRay.x264-WiKi.sample.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/The.Northman.2022.RERiP.1080p.BluRay.x264-WiKi/The.Northman.2022.RERiP.1080p.BluRay.x264-WiKi.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/The.Northman.2022.RERiP.1080p.BluRay.x264-WiKi/Sample/The.Northman.2022.RERiP.1080p.BluRay.x264-WiKi.Sample.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/Dragon Fight 1989 NF WEB-DL 1080p H.264 AAC & DD 2.0 2Audios-Dave.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/Innocent.Witness.2019.720p.BluRay.x264-WiKi/Innocent.Witness.2019.720p.BluRay.x264-WiKi.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/Innocent.Witness.2019.720p.BluRay.x264-WiKi/Sample/Innocent.Witness.2019.720p.BluRay.x264-WiKi.Sample.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/Fallen.Angels.1995.1080p.BluRay.x264.DTS-WiKi/Fallen.Angels.1995.1080p.BluRay.x264.DTS-WiKi.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/Fallen.Angels.1995.1080p.BluRay.x264.DTS-WiKi/Sample/Fallen.Angels.1995.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/Gran.Turismo.2023.REPACK.2160p.MA.WEB-DL.DDP5.1.Atmos.DV.HDR.H.265-FLUX.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/The.Cell.2000.720p.BluRay.x264.DTS-WiKi/The.Cell.2000.720p.BluRay.x264.DTS-WiKi.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/The.Cell.2000.720p.BluRay.x264.DTS-WiKi/Sample/The.Cell.2000.720p.BluRay.x264.DTS-WiKi.Sample.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/Flight.Risk.2025.1080p.AMZN.WEB-DL.DDP5.1.H.264-APEX.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/The.Killer.2022.1080p.BluRay.x264.DTS-WiKi/The.Killer.2022.1080p.BluRay.x264.DTS-WiKi.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/The.Killer.2022.1080p.BluRay.x264.DTS-WiKi/Sample/The.Killer.2022.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/My.Wife.Got.Married.2008.1080p.NF.WEB-DL.DD+5.1.H.264-ARiN.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/Tron.Ares.2025.Hybrid.1080p.BluRay.DDP7.1.x264-ZoroSenpai.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/The.Little.Things.2021.720p.BluRay.x264-WiKi/Sample/The.Little.Things.2021.720p.BluRay.x264-WiKi.Sample.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/The.Little.Things.2021.720p.BluRay.x264-WiKi/The.Little.Things.2021.720p.BluRay.x264-WiKi.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/Shylock's.Children.2023.1080p.BluRay.x264.DTS-WiKi/Shylock's.Children.2023.1080p.BluRay.x264.DTS-WiKi.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/Oppenheimer.2023.IMAX.1080p.BluRay.x265.10bit.DTS-WiKi/Oppenheimer.2023.IMAX.1080p.BluRay.x265.10bit.DTS-WiKi.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/行运超人.国粤双语.My.Lucky.Star.2003.WEB-DL.4k.H265.2Audio.AAC-PTHweb.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/Sausalito.2000.720p.BluRay.x264-WiKi/Sample/Sausalito.2000.720p.BluRay.x264-WiKi.sample.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/Sausalito.2000.720p.BluRay.x264-WiKi/Sausalito.2000.720p.BluRay.x264-WiKi.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/土曜プレミアム・イチケイのカラス 映画公開記念スペシャルドラマ SP 1080p HDTV x264 AAC.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/Soul.2020.1080p.BluRay.x264.DTS-WiKi/Soul.2020.1080p.BluRay.x264.DTS-WiKi.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/Soul.2020.1080p.BluRay.x264.DTS-WiKi/Sample/Soul.2020.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/罪恶六芒星-美色狩猎者.Star.of.David-Hunting.for.Beautiful.Girls.1979.BluRay.1080p.x265.10bit.FLAC-fnscar.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/The.Goldfinger.2023.1080p.BluRay.x265.10bit-WiKi/The.Goldfinger.2023.1080p.BluRay.x265.10bit-WiKi.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/The.Menu.2022.1080p.BluRay.x265.10bit.DTS-WiKi/The.Menu.2022.1080p.BluRay.x265.10bit.DTS-WiKi.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/1秒先の彼 2023 1080p HDTV x264 AAC5.1.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/Bandit.2022.1080p.BluRay.x265.10bit.DTS-WiKi/Bandit.2022.1080p.BluRay.x265.10bit.DTS-WiKi.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/Wu.Kong.2017.1080p.BluRay.x264-WiKi/Wu.Kong.2017.1080p.BluRay.x264-WiKi.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/Wu.Kong.2017.1080p.BluRay.x264-WiKi/Sample/Wu.Kong.2017.1080p.BluRay.x264-WiKi.sample.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/Perfect.Days.2023.1080p.BluRay.x265.10bit.DTS-WiKi/Perfect.Days.2023.1080p.BluRay.x265.10bit.DTS-WiKi.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/The.Program.2015.1080p.BluRay.x264.DTS-WiKi/The.Program.2015.1080p.BluRay.x264.DTS-WiKi.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/The.Program.2015.1080p.BluRay.x264.DTS-WiKi/Sample/The.Program.2015.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/McFarland.USA.2015.1080p.BluRay.x264.DTS-WiKi/Sample/McFarland.USA.2015.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/McFarland.USA.2015.1080p.BluRay.x264.DTS-WiKi/McFarland.USA.2015.1080p.BluRay.x264.DTS-WiKi.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/[手遮天].The.Butcher's.Blade.2026.2160p.WEB-DL.120Fps.H265.10bit.AAC-UBWEB.mp4", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/Free.Guy.2021.1080p.BluRay.x264.DTS-WiKi/Sample/Free.Guy.2021.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/Free.Guy.2021.1080p.BluRay.x264.DTS-WiKi/Free.Guy.2021.1080p.BluRay.x264.DTS-WiKi.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/Obsessed.2014.1080p.BluRay.x265.10bit.DTS-WiKi/Sample/Obsessed.2014.1080p.BluRay.x265.10bit.DTS-WiKi.Sample.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/Obsessed.2014.1080p.BluRay.x265.10bit.DTS-WiKi/Obsessed.2014.1080p.BluRay.x265.10bit.DTS-WiKi.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/The Wave 2019 1080p BluRay DD5.1 x264-BdC.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/In.the.Wake.2021.1080p.BluRay.x264.DTS-WiKi/In.the.Wake.2021.1080p.BluRay.x264.DTS-WiKi.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/Midnight.in.Paris.2011.1080p.BluRay.x264.DTS-WiKi/Midnight.in.Paris.2011.1080p.BluRay.x264.DTS-WiKi.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/Operation.Fortune.2023.1080p.BluRay.x265.10bit.DTS-WiKi/Operation.Fortune.2023.1080p.BluRay.x265.10bit.DTS-WiKi.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/Boite.noire.2021.1080p.BluRay.x265.10bit.DTS-WiKi/Boite.noire.2021.1080p.BluRay.x265.10bit.DTS-WiKi.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/Be.with.You.2004.1080p.BluRay.x264.DTS-WiKi/Be.with.You.2004.1080p.BluRay.x264.DTS-WiKi.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/Confidential.Assignment.2.International.2022.1080p.WEB-DL.AAC2.0.H.264-tG1R0.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/Step.2020.720p.BluRay.x264-WiKi/Step.2020.720p.BluRay.x264-WiKi.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/Step.2020.720p.BluRay.x264-WiKi/Sample/Step.2020.720p.BluRay.x264-WiKi.sample.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/Eternals.2021.1080p.WEBRip.DDP5.1.Atmos.x264-PRGON/Eternals.2021.1080p.WEBRip.DDP5.1.Atmos.x264-PRGON.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/Gura.Gura.2019.1080p.BluRay.x264.DTS-WiKi/Gura.Gura.2019.1080p.BluRay.x264.DTS-WiKi.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/Gura.Gura.2019.1080p.BluRay.x264.DTS-WiKi/Sample/Gura.Gura.2019.1080p.BluRay.x264.DTS-WiKi.sample.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/The.Hunt.2020.1080p.BluRay.x264.DTS-WiKi/The.Hunt.2020.1080p.BluRay.x264.DTS-WiKi.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/The.Hunt.2020.1080p.BluRay.x264.DTS-WiKi/Sample/The.Hunt.2020.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/News.of.the.World.2020.1080p.AMZN.WEB-DL.DDP5.1.H.264-EVO.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/My.Missing.Valentine.2020.720p.BluRay.x264-WiKi/My.Missing.Valentine.2020.720p.BluRay.x264-WiKi.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/My.Missing.Valentine.2020.720p.BluRay.x264-WiKi/Sample/My.Missing.Valentine.2020.720p.BluRay.x264-WiKi.Sample.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/The.Northman.2022.1080p.BluRay.x265.10bit-WiKi/Sample/The.Northman.2022.1080p.BluRay.x265.10bit-WiKi.Sample.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/The.Northman.2022.1080p.BluRay.x265.10bit-WiKi/The.Northman.2022.1080p.BluRay.x265.10bit-WiKi.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/Dirty.Grandpa.2016.1080p.BluRay.x264.DTS-WiKi/Sample/Dirty.Grandpa.2016.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/Dirty.Grandpa.2016.1080p.BluRay.x264.DTS-WiKi/Dirty.Grandpa.2016.1080p.BluRay.x264.DTS-WiKi.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/Silent.Parade.2022.1080p.BluRay.x265.10bit.DTS-WiKi/Silent.Parade.2022.1080p.BluRay.x265.10bit.DTS-WiKi.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/My.Blueberry.Nights.2007.BluRay.720p.x264.DTS-WiKi/My.Blueberry.Nights.2007.BluRay.720p.x264.DTS-WiKi.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/Холоп.2019.WEB-DL.1080p.m4v", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/Hit.Man.2024.1080p.NF.WEB-DL.DDP.5.1.Atmos.H.264-CHDWEB.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/El.Camino.A.Breaking.Bad.Movie.2019.720p.BluRay.DD5.1.x264-iFT.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/GTO.Revival.2024.1080p.BluRay.x264-WiKi/GTO.Revival.2024.1080p.BluRay.x264-WiKi.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/Worlds.Apart.2024.1080p.BluRay.x265.10bit.DTS-WiKi/Worlds.Apart.2024.1080p.BluRay.x265.10bit.DTS-WiKi.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/Anime.Supremacy.2022.1080p.BluRay.x265.10bit-WiKi/Anime.Supremacy.2022.1080p.BluRay.x265.10bit-WiKi.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/Anime.Supremacy.2022.1080p.BluRay.x265.10bit-WiKi/Sample/Anime.Supremacy.2022.1080p.BluRay.x265.10bit-WiKi.sample.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/Infinite.2021.1080p.AMZN.WEB-DL.DDP5.1.H.264-MZABI.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/Alienoid.2022.1080p.BluRay.x265.10bit.DTS-WiKi/Alienoid.2022.1080p.BluRay.x265.10bit.DTS-WiKi.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/比海更深.2016.1080p.日语.简繁中字£CMCT蒙太奇/[比海更深].After.the.Storm.2016.BluRay.1080p.x264.AC3-CMCT.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/The.Attorney.2021.720p.BluRay.x264-WiKi/Sample/The.Attorney.2021.720p.BluRay.x264-WiKi.Sample.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/The.Attorney.2021.720p.BluRay.x264-WiKi/The.Attorney.2021.720p.BluRay.x264-WiKi.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/Detective.vs.Sleuths.2022.1080p.BluRay.x265.10bit-WiKi/Detective.vs.Sleuths.2022.1080p.BluRay.x265.10bit-WiKi.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/Reminiscence.2021.1080p.HMAX.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/1917.2019.1080p.BluRay.x264-WiKi/Sample/1917.2019.1080p.BluRay.x264-WiKi.Sample.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/1917.2019.1080p.BluRay.x264-WiKi/1917.2019.1080p.BluRay.x264-WiKi.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/Crossing.Hennessy.2010.720p.BluRay.x264.DTS-WiKi/Crossing.Hennessy.2010.720p.BluRay.x264.DTS-WiKi.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/Crossing.Hennessy.2010.720p.BluRay.x264.DTS-WiKi/Sample/Crossing.Hennessy.2010.720p.BluRay.x264.DTS-WiKi.Sample.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/Sad.Movie.2005.720p.BluRay.x264-WiKi/Sad.Movie.2005.720p.BluRay.x264-WiKi.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/Sad.Movie.2005.720p.BluRay.x264-WiKi/Sample/Sad.Movie.2005.720p.BluRay.x264-WiKi.Sample.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/A.Man.2022.1080p.U-NEXT.WEB-DL.AAC2.0.H.264-xiaopie@CHDWEB.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/Pain.Hustlers.2023.1080p.NF.WEB-DL.DD+5.1.Atmos.H.264-playWEB.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/Masquerade.Night.2021.1080p.BluRay.x264.DTS-WiKi/Sample/Masquerade.Night.2021.1080p.BluRay.x264.DTS-WiKi.sample.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/Masquerade.Night.2021.1080p.BluRay.x264.DTS-WiKi/Masquerade.Night.2021.1080p.BluRay.x264.DTS-WiKi.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/Druk.2020.720p.BluRay.x264-WiKi/Druk.2020.720p.BluRay.x264-WiKi.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/Druk.2020.720p.BluRay.x264-WiKi/Sample/Druk.2020.720p.BluRay.x264-WiKi.Sample.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/Bad.Guys.The.Movie.2019.720p.BluRay.x264-WiKi/Bad.Guys.The.Movie.2019.720p.BluRay.x264-WiKi.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/Thermae.Romae.II.2014.1080p.BluRay.x264.DTS-WiKi/Thermae.Romae.II.2014.1080p.BluRay.x264.DTS-WiKi.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/Chilli.Laugh.Story.2022.1080p.BluRay.x265.10bit-WiKi/Chilli.Laugh.Story.2022.1080p.BluRay.x265.10bit-WiKi.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/The.Contractor.2022.1080p.BluRay.x265.10bit.DTS-WiKi/The.Contractor.2022.1080p.BluRay.x265.10bit.DTS-WiKi.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/千钧一发.Gattaca.1997.BluRay.1080p.x265.10bit.3Audio.MNHD-FRDS/Gattaca.1997.BluRay.1080p.x265.10bit.3Audio.MNHD-FRDS.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/movies/The.Gorge.2025.2160p.ATVP.WEB-DL.DDP5.1.Atmos.H.265-APEX.mkv", + "destination_path": null, + "reason": "Movie needs manual review (no year found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/The.Witcher.S01.1080p.NF.WEB-DL.DDP5.1.Atmos.x264-NG/The.Witcher.S01E07.Before.a.Fall.1080p.NF.WEB-DL.DDP5.1.Atmos.x264-NG.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/Dexter.Resurrection.S01E01.A.Beating.Heart.1080p.REPACK.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/白夜行.2006.全11集.1080p.简繁中字£CMCT木丁西/[白夜行].Into.the.White.Night.E04.2006.1080p.BluRay.x265.FLAC-CMCT.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/白夜行.2006.全11集.1080p.简繁中字£CMCT木丁西/[白夜行].Into.the.White.Night.E05.2006.1080p.BluRay.x265.FLAC-CMCT.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/白夜行.2006.全11集.1080p.简繁中字£CMCT木丁西/[白夜行].Into.the.White.Night.E08.2006.1080p.BluRay.x265.FLAC-CMCT.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/白夜行.2006.全11集.1080p.简繁中字£CMCT木丁西/[白夜行].Into.the.White.Night.E06.2006.1080p.BluRay.x265.FLAC-CMCT.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/白夜行.2006.全11集.1080p.简繁中字£CMCT木丁西/[白夜行].Into.the.White.Night.E09.2006.1080p.BluRay.x265.FLAC-CMCT.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/白夜行.2006.全11集.1080p.简繁中字£CMCT木丁西/[白夜行].Into.the.White.Night.E07.2006.1080p.BluRay.x265.FLAC-CMCT.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/白夜行.2006.全11集.1080p.简繁中字£CMCT木丁西/[白夜行].Into.the.White.Night.E11.2006.1080p.BluRay.x265.FLAC-CMCT.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/白夜行.2006.全11集.1080p.简繁中字£CMCT木丁西/[白夜行].Into.the.White.Night.E01.2006.1080p.BluRay.x265.FLAC-CMCT.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/白夜行.2006.全11集.1080p.简繁中字£CMCT木丁西/[白夜行].Into.the.White.Night.E10.2006.1080p.BluRay.x265.FLAC-CMCT.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/白夜行.2006.全11集.1080p.简繁中字£CMCT木丁西/[白夜行].Into.the.White.Night.E03.2006.1080p.BluRay.x265.FLAC-CMCT.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/白夜行.2006.全11集.1080p.简繁中字£CMCT木丁西/[白夜行].Into.the.White.Night.E02.2006.1080p.BluRay.x265.FLAC-CMCT.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/Believe-君にかける橋- 第06話 1080p KKTV WEB-DL H264 AAC.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/Zenryouiki.Ijou.Kaiketsushitsu.EP01.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/Reacher.S03E05.Smackdown.1080p.AMZN.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/Mare.Of.Easttown.S01.1080p.WEB-DL.x264-DJYDXS/Mare.Of.Easttown.S01E06.1080p.WEB-DL.x264-DJYDXS.mp4", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/Mare.Of.Easttown.S01.1080p.WEB-DL.x264-DJYDXS/Mare.Of.Easttown.S01E07.1080p.WEB-DL.x264-DJYDXS.mp4", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/Mare.Of.Easttown.S01.1080p.WEB-DL.x264-DJYDXS/Mare.Of.Easttown.S01E04.1080p.WEB-DL.x264-DJYDXS.mp4", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/Mare.Of.Easttown.S01.1080p.WEB-DL.x264-DJYDXS/Mare.Of.Easttown.S01E05.1080p.WEB-DL.x264-DJYDXS.mp4", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/Mare.Of.Easttown.S01.1080p.WEB-DL.x264-DJYDXS/Mare.Of.Easttown.S01E03.1080p.WEB-DL.x264-DJYDXS.mp4", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/Mare.Of.Easttown.S01.1080p.WEB-DL.x264-DJYDXS/Mare.Of.Easttown.S01E02.1080p.WEB-DL.x264-DJYDXS.mp4", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/Mare.Of.Easttown.S01.1080p.WEB-DL.x264-DJYDXS/Mare.Of.Easttown.S01E01.1080p.WEB-DL.x264-DJYDXS.mp4", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/True.Detective.S04E04.Night.Country.Part.4.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/战争与和平.全6集.2016.1080p.中英字幕£CMCT风潇潇/[战争与和平].War.And.Peace.EP04.2016.BluRay.1080p.x264.DTS-CMCT.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/战争与和平.全6集.2016.1080p.中英字幕£CMCT风潇潇/[战争与和平].War.And.Peace.EP05.2016.BluRay.1080p.x264.DTS-CMCT.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/战争与和平.全6集.2016.1080p.中英字幕£CMCT风潇潇/[战争与和平].War.And.Peace.EP01.2016.BluRay.1080p.x264.DTS-CMCT.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/战争与和平.全6集.2016.1080p.中英字幕£CMCT风潇潇/[战争与和平].War.And.Peace.EP03.2016.BluRay.1080p.x264.DTS-CMCT.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/战争与和平.全6集.2016.1080p.中英字幕£CMCT风潇潇/[战争与和平].War.And.Peace.EP02.2016.BluRay.1080p.x264.DTS-CMCT.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/战争与和平.全6集.2016.1080p.中英字幕£CMCT风潇潇/[战争与和平].War.And.Peace.EP06.2016.BluRay.1080p.x264.DTS-CMCT.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/Believe-君にかける橋- 第3話 今夜決行!191秒の脱獄計画! 1080p TVer WEB-DL H264 AAC-Solitude@DoA.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/Unsere.Muetter.unsere.Vaeter.S01.720p.BluRay.x264-WiKi/Unsere.Muetter.unsere.Vaeter.S01E03.720p.BluRay.x264-WiKi.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/Unsere.Muetter.unsere.Vaeter.S01.720p.BluRay.x264-WiKi/Unsere.Muetter.unsere.Vaeter.S01E01.720p.BluRay.x264-WiKi.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/Unsere.Muetter.unsere.Vaeter.S01.720p.BluRay.x264-WiKi/Unsere.Muetter.unsere.Vaeter.S01E02.720p.BluRay.x264-WiKi.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/Midnight.Diner.S04.2016.720p.BluRay.x264-WiKi/Midnight.Diner.S04E03.2016.720p.BluRay.x264-WiKi.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/Midnight.Diner.S04.2016.720p.BluRay.x264-WiKi/Midnight.Diner.S04E07.2016.720p.BluRay.x264-WiKi.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/Midnight.Diner.S04.2016.720p.BluRay.x264-WiKi/Midnight.Diner.S04E02.2016.720p.BluRay.x264-WiKi.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/Midnight.Diner.S04.2016.720p.BluRay.x264-WiKi/Midnight.Diner.S04E06.2016.720p.BluRay.x264-WiKi.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/Midnight.Diner.S04.2016.720p.BluRay.x264-WiKi/Midnight.Diner.S04E10.2016.720p.BluRay.x264-WiKi.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/Midnight.Diner.S04.2016.720p.BluRay.x264-WiKi/Midnight.Diner.S04E04.2016.720p.BluRay.x264-WiKi.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/Midnight.Diner.S04.2016.720p.BluRay.x264-WiKi/Midnight.Diner.S04E08.2016.720p.BluRay.x264-WiKi.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/Midnight.Diner.S04.2016.720p.BluRay.x264-WiKi/Midnight.Diner.S04E09.2016.720p.BluRay.x264-WiKi.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/Midnight.Diner.S04.2016.720p.BluRay.x264-WiKi/Midnight.Diner.S04E01.2016.720p.BluRay.x264-WiKi.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/Midnight.Diner.S04.2016.720p.BluRay.x264-WiKi/Midnight.Diner.S04E05.2016.720p.BluRay.x264-WiKi.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/(ドラマ) 時をかけるな、恋人たち 第09話 「ミッドナイト・イン・オフィス」 (1440x1080i x264-AAC)-DoA.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/マイファミリー EP01 1080p HDTV x264 AAC/マイファミリー 第01話「今こそ、家族を守れ 前代未聞の完全誘!?子供の未来の為に闘う家族の愛と絆の物語」 1080p HDTV x264 AAC.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/マイファミリー EP01 1080p HDTV x264 AAC/マイファミリー ナビ 1080p HDTV x264 AAC.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/[Nekomoe kissaten][Tantei wa Mou, Shindeiru.][05][720p][JPTC]/[Nekomoe kissaten][Tantei wa Mou, Shindeiru. Yokoku][06][720p][JPTC].mp4", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/[Nekomoe kissaten][Tantei wa Mou, Shindeiru.][05][720p][JPTC]/[Nekomoe kissaten][Tantei wa Mou, Shindeiru.][05][720p][JPTC].mp4", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/(ドラマ) 時をかけるな、恋人たち 第11話(終) 「時をかけろ、恋人たち」 (1440x1080i x264-AAC)-DoA.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/Love.Generation.1997.720p.BluRay.x264-WiKi/Love.Generation.E09.1997.720p.BluRay.x264-WiKi.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/Love.Generation.1997.720p.BluRay.x264-WiKi/Love.Generation.E01.1997.720p.BluRay.x264-WiKi.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/Love.Generation.1997.720p.BluRay.x264-WiKi/Love.Generation.E11.1997.720p.BluRay.x264-WiKi.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/Love.Generation.1997.720p.BluRay.x264-WiKi/Love.Generation.E05.1997.720p.BluRay.x264-WiKi.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/Love.Generation.1997.720p.BluRay.x264-WiKi/Love.Generation.E10.1997.720p.BluRay.x264-WiKi.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/Love.Generation.1997.720p.BluRay.x264-WiKi/Love.Generation.E04.1997.720p.BluRay.x264-WiKi.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/Love.Generation.1997.720p.BluRay.x264-WiKi/Love.Generation.E08.1997.720p.BluRay.x264-WiKi.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/Love.Generation.1997.720p.BluRay.x264-WiKi/Love.Generation.E02.1997.720p.BluRay.x264-WiKi.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/Love.Generation.1997.720p.BluRay.x264-WiKi/Love.Generation.E06.1997.720p.BluRay.x264-WiKi.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/Love.Generation.1997.720p.BluRay.x264-WiKi/Love.Generation.E03.1997.720p.BluRay.x264-WiKi.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/Love.Generation.1997.720p.BluRay.x264-WiKi/Love.Generation.E07.1997.720p.BluRay.x264-WiKi.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/ロングバケーション Complete 1080p friDay WEB-DL H264 AAC-e@DoA/ロングバケーション 第01話 1080p friDay WEB-DL H264 AAC-e@DoA.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/ロングバケーション Complete 1080p friDay WEB-DL H264 AAC-e@DoA/ロングバケーション 第09話 1080p friDay WEB-DL H264 AAC-e@DoA.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/ロングバケーション Complete 1080p friDay WEB-DL H264 AAC-e@DoA/ロングバケーション 第06話 1080p friDay WEB-DL H264 AAC-e@DoA.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/ロングバケーション Complete 1080p friDay WEB-DL H264 AAC-e@DoA/ロングバケーション 第10話 1080p friDay WEB-DL H264 AAC-e@DoA.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/ロングバケーション Complete 1080p friDay WEB-DL H264 AAC-e@DoA/ロングバケーション 第08話 1080p friDay WEB-DL H264 AAC-e@DoA.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/ロングバケーション Complete 1080p friDay WEB-DL H264 AAC-e@DoA/ロングバケーション 第07話 1080p friDay WEB-DL H264 AAC-e@DoA.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/ロングバケーション Complete 1080p friDay WEB-DL H264 AAC-e@DoA/ロングバケーション 第04話 1080p friDay WEB-DL H264 AAC-e@DoA.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/ロングバケーション Complete 1080p friDay WEB-DL H264 AAC-e@DoA/ロングバケーション 第03話 1080p friDay WEB-DL H264 AAC-e@DoA.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/ロングバケーション Complete 1080p friDay WEB-DL H264 AAC-e@DoA/ロングバケーション 第05話 1080p friDay WEB-DL H264 AAC-e@DoA.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/ロングバケーション Complete 1080p friDay WEB-DL H264 AAC-e@DoA/ロングバケーション 第11話 END 1080p friDay WEB-DL H264 AAC-e@DoA.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/ロングバケーション Complete 1080p friDay WEB-DL H264 AAC-e@DoA/ロングバケーション 第02話 1080p friDay WEB-DL H264 AAC-e@DoA.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/Dark.Matter.2024.S01E07.In.the.Fires.of.Dead.Stars.1080p.ATVP.WEB-DL.DDP5.1.H.264-NTb.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/こっち向いてよ向井くん EP06 720p HDTV x264 AAC-DoA.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/連続ドラマW コールドケース2 ~真実の扉~ Complete 720p HDTV x264 AAC-DoA/連続ドラマW コールドケース2 ~真実の扉~ CASE10 「真犯人」 End 720p HDTV x264 AAC-DoA.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/連続ドラマW コールドケース2 ~真実の扉~ Complete 720p HDTV x264 AAC-DoA/連続ドラマW コールドケース2 ~真実の扉~ CASE6 「バブル」 720p HDTV x264 AAC-DoA.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/連続ドラマW コールドケース2 ~真実の扉~ Complete 720p HDTV x264 AAC-DoA/連続ドラマW コールドケース2 ~真実の扉~ CASE2 「名前のない殺人者」 720p HDTV x264 AAC-DoA.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/連続ドラマW コールドケース2 ~真実の扉~ Complete 720p HDTV x264 AAC-DoA/連続ドラマW コールドケース2 ~真実の扉~ CASE3 「PKO」 720p HDTV x264 AAC-DoA.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/連続ドラマW コールドケース2 ~真実の扉~ Complete 720p HDTV x264 AAC-DoA/連続ドラマW コールドケース2 ~真実の扉~ CASE8 「17歳の母」 720p HDTV x264 AAC-DoA.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/連続ドラマW コールドケース2 ~真実の扉~ Complete 720p HDTV x264 AAC-DoA/連続ドラマW コールドケース2 ~真実の扉~ CASE1 「学生運動」 720p HDTV x264 AAC-DoA.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/連続ドラマW コールドケース2 ~真実の扉~ Complete 720p HDTV x264 AAC-DoA/連続ドラマW コールドケース2 ~真実の扉~ CASE4 「執行」 720p HDTV x264 AAC-DoA.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/連続ドラマW コールドケース2 ~真実の扉~ Complete 720p HDTV x264 AAC-DoA/連続ドラマW コールドケース2 ~真実の扉~ CASE5 「指輪」 720p HDTV x264 AAC-DoA.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/連続ドラマW コールドケース2 ~真実の扉~ Complete 720p HDTV x264 AAC-DoA/連続ドラマW コールドケース2 ~真実の扉~ CASE7 「光と影」 720p HDTV x264 AAC-DoA.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/連続ドラマW コールドケース2 ~真実の扉~ Complete 720p HDTV x264 AAC-DoA/連続ドラマW コールドケース2 ~真実の扉~ CASE9 「シベリアの涙」 720p HDTV x264 AAC-DoA.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/好久没做.Long.time.no.sex.S01E01.2024.1080p.friDay.WEB-DL.H264.AAC-OurTV.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/【幻月字幕组】【24年日剧】【追踪者游戏W 职权骚扰的上司是我的前女友】【01】【1080P】【中日双语】.mp4", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/Reacher.S03E04.Dominique.1080p.AMZN.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/Reacher.S03E06.Smoke.on.the.Water.1080p.AMZN.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/コタツがない家 Complete 1080p HDTV x264 AAC/コタツがない家 第2話 「舅 VS 夫」 1080p HDTV x264 AAC.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/コタツがない家 Complete 1080p HDTV x264 AAC/コタツがない家 第7話 「下僕の逆襲」 1080p HDTV x264 AAC.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/コタツがない家 Complete 1080p HDTV x264 AAC/コタツがない家 第6話 「後継者は君だ」 1080p HDTV x264 AAC.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/コタツがない家 Complete 1080p HDTV x264 AAC/コタツがない家 第10話 「クリスマスの奇跡」 End 1080p HDTV x264 AAC.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/コタツがない家 Complete 1080p HDTV x264 AAC/コタツがない家 第5話 「鬼怒川の晴れ女」 1080p HDTV x264 AAC.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/コタツがない家 Complete 1080p HDTV x264 AAC/コタツがない家 第8話 「シン・嫉妬怪獣」 1080p HDTV x264 AAC.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/コタツがない家 Complete 1080p HDTV x264 AAC/コタツがない家 第4話 「母の仕事 子知らず」 1080p HDTV x264 AAC.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/コタツがない家 Complete 1080p HDTV x264 AAC/コタツがない家 第9話 「最終兵器チョーさん」 1080p HDTV x264 AAC.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/コタツがない家 Complete 1080p HDTV x264 AAC/コタツがない家 第1話 「戦力外の男たち」 1080p HDTV x264 AAC.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/コタツがない家 Complete 1080p HDTV x264 AAC/コタツがない家 第3話 「ダメ夫 働く」 1080p HDTV x264 AAC.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/RoOT 第05話 1080p KKTV WEB-DL H264 AAC.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/未来への10カウント Complete 720p HDTV x264 AAC-DoA/未来への10カウント 第07話「お前たちが決めろ! 乱闘事件で部を追放!?涙のミーティング!」720p HDTV x264 AAC-DoA.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/未来への10カウント Complete 720p HDTV x264 AAC-DoA/未来への10カウント 第05話「消えた部員から届いた謎の伝言!宅配ピザ救出作戦!?」720p HDTV x264 AAC-DoA.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/未来への10カウント Complete 720p HDTV x264 AAC-DoA/未来への10カウント 第06話「亡き妻から宅配ピザ注文!?俺の名を呼んでくれ...奇跡の再会!」720p HDTV x264 AAC-DoA.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/未来への10カウント Complete 720p HDTV x264 AAC-DoA/未来への10カウント 第01話「伝説の男、母校へ…弱小チームを導く!」720p HDTV x264 AAC-DoA.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/未来への10カウント Complete 720p HDTV x264 AAC-DoA/未来への10カウント 第03話「コーチ助けて...女子部員の危機!母の敵をKOせよ!?」720p HDTV x264 AAC-DoA.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/未来への10カウント Complete 720p HDTV x264 AAC-DoA/未来への10カウント 第08話「逆プロポーズは突然に!? ついに決断の時...別れまでの7日間!」720p HDTV x264 AAC-DoA.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/未来への10カウント Complete 720p HDTV x264 AAC-DoA/未来への10カウント 第04話「リングの中心で、愛を叫ぶ!?型破りな恋愛指導で、衝撃結末!」720p HDTV x264 AAC-DoA.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/未来への10カウント Complete 720p HDTV x264 AAC-DoA/未来への10カウント 第09話「お前たちをインターハイに連れていく... 涙の決勝戦!」END 720p HDTV x264 AAC-DoA.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/未来への10カウント Complete 720p HDTV x264 AAC-DoA/未来への10カウント 第02話「型破り監督最弱チームに奇跡を!18年ぶり焼鳥授業!?」720p HDTV x264 AAC-DoA.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/Miyamoto.Musashi.2014.720p.BluRay.x264-WiKi/Miyamoto.Musashi.E02.2014.720p.BluRay.x264-WiKi.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/Miyamoto.Musashi.2014.720p.BluRay.x264-WiKi/Sample/Miyamoto.Musashi.E01.2014.720p.BluRay.x264-WiKi.sample.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/Miyamoto.Musashi.2014.720p.BluRay.x264-WiKi/Miyamoto.Musashi.E01.2014.720p.BluRay.x264-WiKi.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/主厨是名侦探.EP01-EP09.END.中日双语.1920X1080.HDTVrip-幻月字幕组/主厨是名侦探.EP09.END.中日双语.1920X1080.HDTVrip-幻月字幕组.mp4", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/主厨是名侦探.EP01-EP09.END.中日双语.1920X1080.HDTVrip-幻月字幕组/主厨是名侦探.EP02.中日双语.1920X1080.HDTVrip-幻月字幕组V2.mp4", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/主厨是名侦探.EP01-EP09.END.中日双语.1920X1080.HDTVrip-幻月字幕组/主厨是名侦探.EP04.中日双语.1920X1080.HDTVrip-幻月字幕组.mp4", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/主厨是名侦探.EP01-EP09.END.中日双语.1920X1080.HDTVrip-幻月字幕组/主厨是名侦探.EP05.中日双语.1920X1080.HDTVrip-幻月字幕组.mp4", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/主厨是名侦探.EP01-EP09.END.中日双语.1920X1080.HDTVrip-幻月字幕组/主厨是名侦探.EP06.中日双语.1920X1080.HDTVrip-幻月字幕组.mp4", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/主厨是名侦探.EP01-EP09.END.中日双语.1920X1080.HDTVrip-幻月字幕组/主厨是名侦探.EP07.中日双语.1920X1080.HDTVrip-幻月字幕组.mp4", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/主厨是名侦探.EP01-EP09.END.中日双语.1920X1080.HDTVrip-幻月字幕组/主厨是名侦探.EP01.中日双语.1920X1080.HDTVrip-幻月字幕组.mp4", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/主厨是名侦探.EP01-EP09.END.中日双语.1920X1080.HDTVrip-幻月字幕组/主厨是名侦探.EP03.中日双语.1920X1080.HDTVrip-幻月字幕组.mp4", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/主厨是名侦探.EP01-EP09.END.中日双语.1920X1080.HDTVrip-幻月字幕组/主厨是名侦探.EP08.中日双语.1920X1080.HDTVrip-幻月字幕组.mp4", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/Shogun.2024.S01E05.Broken.to.the.Fist.1080p.DSNP.WEB-DL.DDP5.1.H.264-APEX.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/RoOT 第06話 1080p KKTV WEB-DL H264 AAC.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/Taxi.Driver.S03E01.1080p.WEB-DL.AAC2.0.H.264-CHIOS.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/(ドラマ) 時をかけるな、恋人たち 第07話 「私は明日、20年後のきみとデートしない」 (1440x1080i x264-AAC)-DoA.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/豺狼的日子.第一季/The.Day.Of.The.Jackal.S01E07.1080p.WEB-DL.DDP5.1.Atmos.x265.10bit-Yumi@FRDS.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/豺狼的日子.第一季/The.Day.Of.The.Jackal.S01E06.1080p.WEB-DL.DDP5.1.Atmos.x265.10bit-Yumi@FRDS.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/豺狼的日子.第一季/The.Day.Of.The.Jackal.S01E10.1080p.WEB-DL.DDP5.1.Atmos.x265.10bit-Yumi@FRDS.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/豺狼的日子.第一季/The.Day.Of.The.Jackal.S01E05.1080p.WEB-DL.DDP5.1.Atmos.x265.10bit-Yumi@FRDS.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/豺狼的日子.第一季/The.Day.Of.The.Jackal.S01E04.1080p.WEB-DL.DDP5.1.Atmos.x265.10bit-Yumi@FRDS.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/豺狼的日子.第一季/The.Day.Of.The.Jackal.S01E03.1080p.WEB-DL.DDP5.1.Atmos.x265.10bit-Yumi@FRDS.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/豺狼的日子.第一季/The.Day.Of.The.Jackal.S01E02.1080p.WEB-DL.DDP5.1.Atmos.x265.10bit-Yumi@FRDS.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/豺狼的日子.第一季/The.Day.Of.The.Jackal.S01E01.1080p.WEB-DL.DDP5.1.Atmos.x265.10bit-Yumi@FRDS.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/豺狼的日子.第一季/The.Day.Of.The.Jackal.S01E08.1080p.WEB-DL.DDP5.1.Atmos.x265.10bit-Yumi@FRDS.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/豺狼的日子.第一季/The.Day.Of.The.Jackal.S01E09.1080p.WEB-DL.DDP5.1.Atmos.x265.10bit-Yumi@FRDS.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/Dark.Matter.2024.S01E03.The.Box.1080p.ATVP.WEB-DL.DDP5.1.H.264-NTb.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/Reacher.S03E01.Persuader.1080p.AMZN.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/True.Detective.S04E01.Night.Country.Part.1.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/こっち向いてよ向井くん EP04 720p HDTV x264 AAC-DoA.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/RoOT 第03話 1080p KKTV WEB-DL H264 AAC.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/Shogun.2024.S01E03.Tomorrow.Is.Tomorrow.1080p.DSNP.WEB-DL.DDP5.1.H.264-APEX.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/(ドラマ) 時をかけるな、恋人たち 第04話 「ある日浅草のどこかで」 (1440x1080i x264-AAC)-DoA.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/RoOT 第09話 1080p KKTV WEB-DL H264 AAC.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/Dark.Matter.2024.S01E05.Worldless.1080p.ATVP.WEB-DL.DDP5.1.H.264-NTb.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/こっち向いてよ向井くん EP05 720p HDTV x264 AAC-DoA.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/True.Detective.S04E05.Night.Country.Part.5.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/Believe-君にかける橋- 第4話 最愛の妻の嘘 1080p TVer WEB-DL H264 AAC-Solitude@DoA.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/2010.圣殿春秋/圣殿春秋.The.Pillars.Of.The.Earth.E03.Chi_Eng.HR-HDTV.AC3.1024X576.x264-YYeTs人人影视.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/2010.圣殿春秋/圣殿春秋.The.Pillars.Of.The.Earth.E04.Chi_Eng.HR-HDTV.AC3.1024X576.x264-YYeTs人人影视.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/2010.圣殿春秋/圣殿春秋.The.Pillars.Of.The.Earth.E02.Chi_Eng.HR-HDTV.AC3.1024X576.x264-YYeTs人人影视.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/2010.圣殿春秋/圣殿春秋.The.Pillars.Of.The.Earth.E05.Chi_Eng.HR-HDTV.AC3.1024X576.x264-YYeTs人人影视.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/2010.圣殿春秋/圣殿春秋.The.Pillars.Of.The.Earth.E06.Chi_Eng.HR-HDTV.AC3.1024X576.x264-YYeTs人人影视.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/2010.圣殿春秋/圣殿春秋.The.Pillars.Of.The.Earth.E01.Chi_Eng.HR-HDTV.AC3.1024X576.x264-YYeTs人人影视.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/2010.圣殿春秋/圣殿春秋.The.Pillars.Of.The.Earth.E07-E08.Chi_Eng.HR-HDTV.AC3.1024X576.x264-YYeTs人人影视.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/Reacher.S02E06.New.Yorks.Finest.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/(ドラマ) 完全無罪 第01話 「悪い夢」 (1920x1080 x264-AAC)-DoA [v2].mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/True.Detective.S04E03.Night.Country.Part.3.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/Reacher.S02E07.The.Man.Goes.Through.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/Daredevil.Born.Again.S01E01.Heavens.Half.Hour.1080p.DSNP.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/Bara no nai Hanaya/E04[1280x720 DivX6.xx].avi", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/Bara no nai Hanaya/E05[1280x720 DivX6.xx].avi", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/Bara no nai Hanaya/E10[1280x720 DivX6.xx].avi", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/Bara no nai Hanaya/E07[1280x720 DivX6.xx].avi", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/Bara no nai Hanaya/E06[1280x720 DivX6.xx].avi", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/Bara no nai Hanaya/E11[1280x720 DivX6.xx].avi", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/Bara no nai Hanaya/E09[1280x720 DivX6.xx].avi", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/Bara no nai Hanaya/E02[1280x720 DivX6.xx].avi", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/Bara no nai Hanaya/E03[1280x720 DivX6.xx].avi", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/Bara no nai Hanaya/E08[1280x720 DivX6.xx].avi", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/Bara no nai Hanaya/E01[1280x720 DivX6.xx].avi", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/[MagicStar] Nemesis EP07 [WEBDL] [1080p] [HULU] [JPN_SUB]/Nemesis.EP07.1080p.HULU.WEB-DL.AAC2.0.H.264-MagicStar.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/Shogun.2024.S01E02.Servants.of.Two.Masters.REPACK.1080p.DSNP.WEB-DL.DDP5.1.H.264-APEX.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/新参者/【ドラマ】 新参者 第07話 「刑事の息子」 (1440x1080i x264-AAC).mp4", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/新参者/【ドラマ】 新参者 第09話 「民芸品店の客」 (1440x1080i x264-AAC).mp4", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/新参者/【ドラマ】 新参者 第04話 「時計屋の犬」 (1440x1080i x264-AAC).mp4", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/新参者/【ドラマ】 新参者 第03話 「瀬戸物屋の娘」 (1440x1080i x264-AAC).mp4", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/新参者/【ドラマ】 新参者 第02話 「料亭の小僧」 (1440x1080i x264-AAC).mp4", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/新参者/【ドラマ】 新参者 第08話 「清掃会社の社長」 (1440x1080i x264-AAC).mp4", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/新参者/【ドラマ】 新参者 第06話 「翻訳家の友」 (1440x1080i x264-AAC).mp4", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/新参者/【ドラマ】 新参者 第01話 「煎餅屋の娘」 (1440x1080i x264-AAC).mp4", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/新参者/【ドラマSP】 赤い指~『新参者』加賀恭一郎再び! (1440x1080i x264-AAC).mp4", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/新参者/【ドラマ】 新参者 第05話 「洋菓子屋の店員」 (1440x1080i x264-AAC).mp4", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/新参者/【ドラマ】 新参者 第10話(終) 「人形町の刑事」(1440x1080i x264-AAC).mp4", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/Dark.Matter.2024.S01E02.Trip.of.a.Lifetime.1080p.ATVP.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/(ドラマ) 時をかけるな、恋人たち 第05話 「バスクラッシュ・エフェクト」 (1440x1080i x264-AAC)-DoA.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/Daredevil.Born.Again.S01E02.With.Interest.1080p.DSNP.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/The Amateur (2025) (2160p iT WEB-DL H265 DV DDP Atmos 5.1 English - HONE).mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/Reacher.S03E03.Number.2.with.a.Bullet.1080p.AMZN.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/坂道上的家.Sakaie.2019.HDTV.1080p.x265.10bit-Yumi/Sakaie.2019.EP01.HDTV.1080p.x265.10bit-Yumi.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/坂道上的家.Sakaie.2019.HDTV.1080p.x265.10bit-Yumi/Sakaie.2019.EP05.HDTV.1080p.x265.10bit-Yumi.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/坂道上的家.Sakaie.2019.HDTV.1080p.x265.10bit-Yumi/Sakaie.2019.EP04.HDTV.1080p.x265.10bit-Yumi.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/坂道上的家.Sakaie.2019.HDTV.1080p.x265.10bit-Yumi/Sakaie.2019.EP02.HDTV.1080p.x265.10bit-Yumi.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/坂道上的家.Sakaie.2019.HDTV.1080p.x265.10bit-Yumi/Sakaie.2019.EP06.HDTV.1080p.x265.10bit-Yumi.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/坂道上的家.Sakaie.2019.HDTV.1080p.x265.10bit-Yumi/Sakaie.2019.EP03.HDTV.1080p.x265.10bit-Yumi.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/Saiai.2021.KKTV.WEB-DL.1080p.x264.AAC-HDCTV/Saiai.E03.2021.KKTV.WEB-DL.1080p.x264.AAC-HDCTV.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/Saiai.2021.KKTV.WEB-DL.1080p.x264.AAC-HDCTV/Saiai.E02.2021.KKTV.WEB-DL.1080p.x264.AAC-HDCTV.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/Study.Group.2025.S01E02.1080p.Friday.WEB-DL.H264.AAC-PTerWEB.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/Stranger.S02.1080p.BluRay.x265.10bit-WiKi/Stranger.S02E14.1080p.BluRay.x265.10bit-WiKi.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/Stranger.S02.1080p.BluRay.x265.10bit-WiKi/Stranger.S02E03.1080p.BluRay.x265.10bit-WiKi.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/Stranger.S02.1080p.BluRay.x265.10bit-WiKi/Stranger.S02E07.1080p.BluRay.x265.10bit-WiKi.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/Stranger.S02.1080p.BluRay.x265.10bit-WiKi/Stranger.S02E10.1080p.BluRay.x265.10bit-WiKi.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/Stranger.S02.1080p.BluRay.x265.10bit-WiKi/Stranger.S02E06.1080p.BluRay.x265.10bit-WiKi.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/Stranger.S02.1080p.BluRay.x265.10bit-WiKi/Stranger.S02E11.1080p.BluRay.x265.10bit-WiKi.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/Stranger.S02.1080p.BluRay.x265.10bit-WiKi/Stranger.S02E15.1080p.BluRay.x265.10bit-WiKi.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/Stranger.S02.1080p.BluRay.x265.10bit-WiKi/Stranger.S02E02.1080p.BluRay.x265.10bit-WiKi.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/Stranger.S02.1080p.BluRay.x265.10bit-WiKi/Stranger.S02E04.1080p.BluRay.x265.10bit-WiKi.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/Stranger.S02.1080p.BluRay.x265.10bit-WiKi/Stranger.S02E13.1080p.BluRay.x265.10bit-WiKi.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/Stranger.S02.1080p.BluRay.x265.10bit-WiKi/Stranger.S02E09.1080p.BluRay.x265.10bit-WiKi.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/Stranger.S02.1080p.BluRay.x265.10bit-WiKi/Stranger.S02E16.1080p.BluRay.x265.10bit-WiKi.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/Stranger.S02.1080p.BluRay.x265.10bit-WiKi/Stranger.S02E01.1080p.BluRay.x265.10bit-WiKi.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/Stranger.S02.1080p.BluRay.x265.10bit-WiKi/Stranger.S02E08.1080p.BluRay.x265.10bit-WiKi.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/Stranger.S02.1080p.BluRay.x265.10bit-WiKi/Stranger.S02E05.1080p.BluRay.x265.10bit-WiKi.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/Stranger.S02.1080p.BluRay.x265.10bit-WiKi/Stranger.S02E12.1080p.BluRay.x265.10bit-WiKi.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/Presumed.Innocent.S01E01.Bases.Loaded.1080p.ATVP.WEB-DL.DDP5.1.H.264-NTb.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/(ドラマ) 時をかけるな、恋人たち 第03話 「きみがぼくを見つけた夜」 (1440x1080i x264-AAC)-DoA.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/こっち向いてよ向井くん EP01 720p HDTV x264 AAC-DoA.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/Believe-君にかける橋- 第08話 1080p KKTV WEB-DL H264 AAC.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/Zenryouiki.Ijou.Kaiketsushitsu.EP02.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/【幻月字幕组】【21年日剧】【38岁离婚单身女尝试相亲APP的成果日记】【01-06】【END】【1080P】【中日双语】/【幻月字幕组】【21年日剧】【38岁离婚单身女尝试相亲APP的成果日记】【04】【1080P】【中日双语】.mp4", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/【幻月字幕组】【21年日剧】【38岁离婚单身女尝试相亲APP的成果日记】【01-06】【END】【1080P】【中日双语】/【幻月字幕组】【21年日剧】【38岁离婚单身女尝试相亲APP的成果日记】【06】【END】【1080P】【中日双语】.mp4", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/【幻月字幕组】【21年日剧】【38岁离婚单身女尝试相亲APP的成果日记】【01-06】【END】【1080P】【中日双语】/【幻月字幕组】【21年日剧】【38岁离婚单身女尝试相亲APP的成果日记】【05】【1080P】【中日双语】.mp4", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/【幻月字幕组】【21年日剧】【38岁离婚单身女尝试相亲APP的成果日记】【01-06】【END】【1080P】【中日双语】/【幻月字幕组】【21年日剧】【38岁离婚单身女尝试相亲APP的成果日记】【01】【1080P】【中日双语】.mp4", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/【幻月字幕组】【21年日剧】【38岁离婚单身女尝试相亲APP的成果日记】【01-06】【END】【1080P】【中日双语】/【幻月字幕组】【21年日剧】【38岁离婚单身女尝试相亲APP的成果日记】【03】【1080P】【中日双语】.mp4", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/【幻月字幕组】【21年日剧】【38岁离婚单身女尝试相亲APP的成果日记】【01-06】【END】【1080P】【中日双语】/【幻月字幕组】【21年日剧】【38岁离婚单身女尝试相亲APP的成果日记】【02】【1080P】【中日双语】.mp4", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/A.Shop.for.Killers.S01E01.Murthehelp.1080p.Disney+.WEB-DL.DDP.5.1.H.264-CHDWEB.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/リビングの松永さん Complete 1080p HDTV x264 AAC/リビングの松永さん #07 「誕生日会は恋の決戦!」 1080p HDTV x264 AAC.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/リビングの松永さん Complete 1080p HDTV x264 AAC/リビングの松永さん #09 「愛と涙の結婚式!松永の決意」 1080p HDTV x264 AAC.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/リビングの松永さん Complete 1080p HDTV x264 AAC/リビングの松永さん #11 「クライマックス突入!最大の危機」 1080p HDTV x264 AAC.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/リビングの松永さん Complete 1080p HDTV x264 AAC/リビングの松永さん #08 「あふれる思い!涙の告白」 1080p HDTV x264 AAC.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/リビングの松永さん Complete 1080p HDTV x264 AAC/リビングの松永さん #04 「合コンで事件発生」 1080p HDTV x264 AAC.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/リビングの松永さん Complete 1080p HDTV x264 AAC/リビングの松永さん #01 「同居生活開始!」 1080p HDTV x264 AAC.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/リビングの松永さん Complete 1080p HDTV x264 AAC/リビングの松永さん #05 「恋の三角関係!忍び寄る影」 1080p HDTV x264 AAC.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/リビングの松永さん Complete 1080p HDTV x264 AAC/リビングの松永さん #12 「最終回!運命の恋の結末!」 End 1080p HDTV x264 AAC.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/リビングの松永さん Complete 1080p HDTV x264 AAC/リビングの松永さん #02 「真夜中に近づく心」 1080p HDTV x264 AAC.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/リビングの松永さん Complete 1080p HDTV x264 AAC/リビングの松永さん #10 「恋心の結末!呪いを解くキス」 1080p HDTV x264 AAC.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/リビングの松永さん Complete 1080p HDTV x264 AAC/リビングの松永さん #03 「二人きりでお泊り」 1080p HDTV x264 AAC.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/リビングの松永さん Complete 1080p HDTV x264 AAC/リビングの松永さん #06 「忘れられない、昔の恋」 1080p HDTV x264 AAC.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/Presumed.Innocent.S01E02.People.vs.Rozat.Sabich.1080p.ATVP.WEB-DL.DDP5.1.H.264-NTb.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/Dark.Matter.2024.S01E08.Jupiter.1080p.ATVP.WEB-DL.DDP5.1.H.264-NTb.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/連続ドラマW パレートの誤算~ケースワーカー殺人事件 Complete 720p HDTV x264 AAC-DoA/連続ドラマW パレートの誤算~ケースワーカー殺人事件 第一話 720p HDTV x264 AAC-DoA.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/連続ドラマW パレートの誤算~ケースワーカー殺人事件 Complete 720p HDTV x264 AAC-DoA/連続ドラマW パレートの誤算~ケースワーカー殺人事件 最終話 End 720p HDTV x264 AAC-DoA.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/連続ドラマW パレートの誤算~ケースワーカー殺人事件 Complete 720p HDTV x264 AAC-DoA/連続ドラマW パレートの誤算~ケースワーカー殺人事件 第三話 720p HDTV x264 AAC-DoA.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/連続ドラマW パレートの誤算~ケースワーカー殺人事件 Complete 720p HDTV x264 AAC-DoA/連続ドラマW パレートの誤算~ケースワーカー殺人事件 第二話 720p HDTV x264 AAC-DoA.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/連続ドラマW パレートの誤算~ケースワーカー殺人事件 Complete 720p HDTV x264 AAC-DoA/連続ドラマW パレートの誤算~ケースワーカー殺人事件 第四話 720p HDTV x264 AAC-DoA.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/Study.Group.2025.S01E01.1080p.Friday.WEB-DL.H264.AAC-PTerWEB.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/連続ドラマW セイレーンの懺悔 Complete 720p HDTV x264 AAC-DoA/連続ドラマW セイレーンの懺悔 第一話 720p HDTV x264 AAC-DoA.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/連続ドラマW セイレーンの懺悔 Complete 720p HDTV x264 AAC-DoA/連続ドラマW セイレーンの懺悔 最終話 720p HDTV x264 AAC-DoA.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/連続ドラマW セイレーンの懺悔 Complete 720p HDTV x264 AAC-DoA/連続ドラマW セイレーンの懺悔 第二話 720p HDTV x264 AAC-DoA.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/連続ドラマW セイレーンの懺悔 Complete 720p HDTV x264 AAC-DoA/連続ドラマW セイレーンの懺悔 第三話 720p HDTV x264 AAC-DoA.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/Believe-君にかける橋- 第5話 〈波乱の逃亡編〉ついに完結―! 1080p TVer WEB-DL H264 AAC-Solitude@DoA.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/Believe-君にかける橋- 第09話 END 1080p KKTV WEB-DL H264 AAC.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/Shogun.2024.S01E04.The.Eightfold.Fence.1080p.DSNP.WEB-DL.DDP5.1.H.264-APEX.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/Shogun.2024.S01E01.Anjin.1080p.DSNP.WEB-DL.DDP5.1.H.264-APEX.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/冰上恋人/Pride 06 1280x720p.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/冰上恋人/Pride 09 1280x720p.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/冰上恋人/Pride 10 1280x720p.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/冰上恋人/Pride 01-02 1280x720p.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/冰上恋人/Pride 11 1280x720p.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/冰上恋人/Pride 05 1280x720p.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/冰上恋人/Pride 08 1280x720p.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/冰上恋人/Pride 03-04 1280x720p.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/冰上恋人/Pride 07 1280x720p.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/ホリデイラブ Complete 720p HDTV x264 AAC-DoA/ホリデイラブ ep.3 「最後のクリスマス」 720p HDTV x264 AAC-DoA.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/ホリデイラブ Complete 720p HDTV x264 AAC-DoA/ホリデイラブ ep.1 「夫の帰還」 720p HDTV x264 AAC-DoA.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/ホリデイラブ Complete 720p HDTV x264 AAC-DoA/ホリデイラブ ep.2 「妻の攻撃」 720p HDTV x264 AAC-DoA.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/ホリデイラブ Complete 720p HDTV x264 AAC-DoA/ホリデイラブ ep.4 「妻の覚醒」 720p HDTV x264 AAC-DoA.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/ホリデイラブ Complete 720p HDTV x264 AAC-DoA/ホリデイラブ ep.5 「夫の逆襲」 720p HDTV x264 AAC-DoA.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/ホリデイラブ Complete 720p HDTV x264 AAC-DoA/ホリデイラブ ep.6 「魔性の復讐」 720p HDTV x264 AAC-DoA.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/ホリデイラブ Complete 720p HDTV x264 AAC-DoA/ホリデイラブ ep.8 「新たなる希望」 End 720p HDTV x264 AAC-DoA.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/ホリデイラブ Complete 720p HDTV x264 AAC-DoA/ホリデイラブ ep.7 「夫婦間恋愛」 720p HDTV x264 AAC-DoA.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/しずかちゃんとパパ Complete 1080p HDTV x264 AAC/しずかちゃんとパパ 第5回 「パパのいない夜」 1080p HDTV x264 AAC.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/しずかちゃんとパパ Complete 1080p HDTV x264 AAC/しずかちゃんとパパ 第7回 「パパの深い海の底」 1080p HDTV x264 AAC.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/しずかちゃんとパパ Complete 1080p HDTV x264 AAC/しずかちゃんとパパ 第6回 「この優しい世界」 1080p HDTV x264 AAC.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/しずかちゃんとパパ Complete 1080p HDTV x264 AAC/しずかちゃんとパパ 第3回 「空飛ぶ自転車」 1080p HDTV x264 AAC.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/しずかちゃんとパパ Complete 1080p HDTV x264 AAC/しずかちゃんとパパ 第2回 「聞こえない音楽会」 1080p HDTV x264 AAC.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/しずかちゃんとパパ Complete 1080p HDTV x264 AAC/しずかちゃんとパパ 第8回 「紙吹雪の中で」 End 1080p HDTV x264 AAC.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/しずかちゃんとパパ Complete 1080p HDTV x264 AAC/しずかちゃんとパパ 第1回 「ケバブサンドの秘密」 1080p HDTV x264 AAC.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/しずかちゃんとパパ Complete 1080p HDTV x264 AAC/しずかちゃんとパパ 第4回 「涙のけんちん汁」 1080p HDTV x264 AAC.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/Play.Dirty.2025.2160p.AMZN.WEB-DL.DDP.5.1.H.265-CHDWEB.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/RoOT 第07話 1080p KKTV WEB-DL H264 AAC.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/Believe-君にかける橋- 第2話 決意の脱獄計画…全ては妻の為に 1080p TVer WEB-DL H264 AAC-Solitude@DoA.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/Ludwig.S01/谜探路德维希.Ludwig.S01E03.1080p.炸鱼薯条字幕组.双语字幕.mp4", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/Ludwig.S01/谜探路德维希.Ludwig.S01E06.1080p.炸鱼薯条字幕组.双语字幕.mp4", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/Ludwig.S01/谜探路德维希.Ludwig.S01E04.1080p.炸鱼薯条字幕组.双语字幕.V2.mp4", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/Ludwig.S01/谜探路德维希.Ludwig.S01E02.1080p.炸鱼薯条字幕组.双语字幕.V2.mp4", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/Ludwig.S01/谜探路德维希.Ludwig.S01E05.1080p.炸鱼薯条字幕组.双语字幕.mp4", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/Ludwig.S01/谜探路德维希.Ludwig.S01E01.1080p.炸鱼薯条字幕组.双语字幕.mp4", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/RoOT 第04話 1080p KKTV WEB-DL H264 AAC.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/オリバーな犬、(Gosh!!)このヤロウ シーズン2 Complete 1080p HDTV x264 AAC/オリバーな犬、(Gosh!!)このヤロウ シーズン2 EP5 1080p HDTV x264 AAC.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/オリバーな犬、(Gosh!!)このヤロウ シーズン2 Complete 1080p HDTV x264 AAC/オリバーな犬、(Gosh!!)このヤロウ シーズン2 EP4 1080p HDTV x264 AAC.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/オリバーな犬、(Gosh!!)このヤロウ シーズン2 Complete 1080p HDTV x264 AAC/オリバーな犬、(Gosh!!)このヤロウ シーズン2 EP6 End 1080p HDTV x264 AAC.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/Shogun.S01E07.2024.2160p.DSNP.WEB-DL.DDP5.1.DV.HDR.H.265-HHWEB.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/(ドラマ) 時をかけるな、恋人たち 第10話 「恋は大デジャブ」 (1440x1080i x264-AAC)-DoA.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/花咲舞が黙ってない 2024 第01話 1080p friDay WEB-DL H264 AAC.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/(ドラマ) 時をかけるな、恋人たち 第08話 「サマータイムパトロール・ブルース」 (1440x1080i x264-AAC)-DoA.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/Dark.Matter.2024.S01E04.The.Corridor.1080p.ATVP.WEB-DL.DDP5.1.H.264-NTb.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/RoOT 第01話 1080p KKTV WEB-DL H264 AAC.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/(ドラマ) 時をかけるな、恋人たち 第06話 「バック・トゥ・ザ・エイティーズ」 (1440x1080i x264-AAC)-DoA.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/(ドラマ) 時をかけるな、恋人たち 第01話 「アバウト・タイムパトロール」 (1440x1080i x264-AAC)-DoA.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/Believe-君にかける橋- 第7話 忍び寄る危機!!裏切り者はすぐ側に― 1080p TVer WEB-DL H264 AAC-Solitude@DoA.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/RoOT 第02話 1080p KKTV WEB-DL H264 AAC.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/家政婦のミタ 全11話+放送直前+特別版/【ドラマ】 家政婦のミタ 第08話 「私の過去、すべてお話します」 (1440x1080i x264-AAC).mp4", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/家政婦のミタ 全11話+放送直前+特別版/【ドラマ】 家政婦のミタ 第07話 「死ぬまで二度と笑いません…」 (1440x1080i x264-AAC).mp4", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/家政婦のミタ 全11話+放送直前+特別版/【ドラマ】 家政婦のミタ 第05話 「全部脱いで!…承知しました」 (1440x1080i x264-AAC).mp4", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/家政婦のミタ 全11話+放送直前+特別版/【ドラマ】 家政婦のミタ 第06話 「王の監禁」 (1440x1080i x264-AAC).mp4", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/家政婦のミタ 全11話+放送直前+特別版/【ドラマ】 家政婦のミタ 第09話 「最終章の始まり!一筋の涙…炎の中で私を死なせて」 (1440x1080i x264-AAC).mp4", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/家政婦のミタ 全11話+放送直前+特別版/【ドラマ】 家政婦のミタ 第10話 「息子よ、夫よ、お願い…私も天国に連れて行って!」 (1440x1080i x264-AAC).mp4", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/家政婦のミタ 全11話+放送直前+特別版/【ドラマ番宣】 家政婦のミタ が見たくなる! 放送直前!みどころ大公開SP!! (1440x1080i x264-AAC).mp4", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/家政婦のミタ 全11話+放送直前+特別版/【ドラマ】 さよなら 家政婦のミタ 特別版 「最終回への序章…三田灯が亡き最愛の夫と息子に向き合う新撮場面公開!」 (1440x1080i x264-AAC).mp4", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/家政婦のミタ 全11話+放送直前+特別版/【ドラマ】 家政婦のミタ 第02話 「僕を裏切ったアイツを殺して」 (1440x1080i x264-AAC).mp4", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/家政婦のミタ 全11話+放送直前+特別版/【ドラマ】 家政婦のミタ 第03話 「母を殺した父の正体を暴いて」 (1440x1080i x264-AAC).mp4", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/家政婦のミタ 全11話+放送直前+特別版/【ドラマ】 家政婦のミタ 第11話(終) 「最終回への序章…三田灯が亡き最愛の夫と息子に向き合う新撮場面公開!」 (1440x1080i x264-AAC).mp4", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/家政婦のミタ 全11話+放送直前+特別版/【ドラマ】 家政婦のミタ 第04話 「あなたの愛娘を誘拐しました」 (1440x1080i x264-AAC).mp4", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/家政婦のミタ 全11話+放送直前+特別版/【ドラマ】 家政婦のミタ 第01話 「崩壊寸前の家庭にやって来た笑顔を忘れた氷の女…」 (1440x1080i x264-AAC).mp4", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/連続ドラマW 湊かなえ「落日」 Complete 1080p HDTV x264 AAC/連続ドラマW 湊かなえ「落日」 第3話 1080p HDTV x264 AAC.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/連続ドラマW 湊かなえ「落日」 Complete 1080p HDTV x264 AAC/連続ドラマW 湊かなえ「落日」 第2話 1080p HDTV x264 AAC.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/連続ドラマW 湊かなえ「落日」 Complete 1080p HDTV x264 AAC/連続ドラマW 湊かなえ「落日」 第1話 1080p HDTV x264 AAC.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/連続ドラマW 湊かなえ「落日」 Complete 1080p HDTV x264 AAC/連続ドラマW 湊かなえ「落日」 第4話 End 1080p HDTV x264 AAC.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/教場Ⅱ SP 720p HDTV x264 AAC-DoA/教場Ⅱ 前編 SP 720p HDTV x264 AAC-DoA.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/教場Ⅱ SP 720p HDTV x264 AAC-DoA/教場Ⅱ 後編 SP 720p HDTV x264 AAC-DoA.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/(ドラマ) 時をかけるな、恋人たち 第02話 「10年先の彼女」 (1440x1080i x264-AAC)-DoA.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/RoOT 第08話 1080p KKTV WEB-DL H264 AAC.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/Shogun.S01E08.2024.2160p.DSNP.WEB-DL.H265.HDR.DDP5.1.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/こっち向いてよ向井くん EP03 v2 720p HDTV x264 AAC-DoA.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/(ドラマ) 完全無罪 第02話 「針穴と駱駝」 (1920x1080 x264-AAC)-DoA.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/True.Detective.S04E02.Night.Country.Part.2.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/Believe-君にかける橋- 第1話 生きるため、俺は誰を信じるのか 1080p TVer WEB-DL H264 AAC-Solitude@DoA.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/亚森·罗宾.Arsene Lupin.2021.1080p.WEB-DL.H264.AC3-HDHWEB/[第 1 部.Ep1] 怪盜羅蘋 - 第 1 章.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/亚森·罗宾.Arsene Lupin.2021.1080p.WEB-DL.H264.AC3-HDHWEB/[第 1 部.Ep2] 怪盜羅蘋 - 第 2 章.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/亚森·罗宾.Arsene Lupin.2021.1080p.WEB-DL.H264.AC3-HDHWEB/[第 1 部.Ep3] 怪盜羅蘋 - 第 3 章.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/亚森·罗宾.Arsene Lupin.2021.1080p.WEB-DL.H264.AC3-HDHWEB/[第 1 部.Ep4] 怪盜羅蘋 - 第 4 章.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/亚森·罗宾.Arsene Lupin.2021.1080p.WEB-DL.H264.AC3-HDHWEB/[第 1 部.Ep5] 怪盜羅蘋 - 第 5 章.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/こっち向いてよ向井くん EP02 720p HDTV x264 AAC-DoA.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/Dark.Matter.2024.S01E06.Superposition.1080p.ATVP.WEB-DL.DDP5.1.H.264-NTb.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/【东京不够热】破解不在场证明 EP01_07/TNHSub_alibaikutsushi EP01.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/【东京不够热】破解不在场证明 EP01_07/TNHSub_alibaikutsushi EP06.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/【东京不够热】破解不在场证明 EP01_07/TNHSub_alibaikutsushi EP07 END.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/【东京不够热】破解不在场证明 EP01_07/TNHSub_alibaikutsushi EP03.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/【东京不够热】破解不在场证明 EP01_07/TNHSub_alibaikutsushi EP04.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/【东京不够热】破解不在场证明 EP01_07/TNHSub_alibaikutsushi EP05.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/【东京不够热】破解不在场证明 EP01_07/TNHSub_alibaikutsushi EP02.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_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", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/(ドラマ) 完全無罪 第03話 「正義という名の罪」 (1920x1080 x264-AAC)-DoA.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/Reacher.S03E02.Truckin.1080p.AMZN.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/series/(ドラマSP) GTOリバイバル [2024.04.01] (1440x1080i x264-AAC)-DoA.mkv", + "destination_path": null, + "reason": "Series needs manual review (no season/episode found)", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Nekomoe kissaten][ZENSHU][01][1080p][CHS].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Tensei Kizoku, Kantei Skill de Nariagaru - 13 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 最近的偵探真沒用 - 08 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 膽大黨 - 08 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Beheneko - 02 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 靠廢柴技能【狀態異常】成為最強的我將蹂躪一切 - 07 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Shangri-La Frontier - 35 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 轉生貴族憑鑑定技能扭轉人生 第二季 - 19 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 膽大黨 第二季 - 21 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Tensei Kizoku, Kantei Skill de Nariagaru - 08 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] SI-VIS:英雄之聲 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] GNOSIA - 06 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Lilith-Raws] Date A Live S05 - 02 [Baha][WebDL 1080p AVC AAC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] Acro Trip 頂尖惡路 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 我要【招架】一切~反誤解的世界最強想成為冒險家~ - 08 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[HYSUB]Dungeon Meshi[11][BIG5_MP4][1920X1080].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Nekomoe kissaten&LoliHouse] Pon no Michi - 01 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Nekomoe kissaten][Ninja Kamui][08][1080p][CHS].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Izure Saikyou no Renkinjutsushi - 03 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[orion origin] Boukyaku Battery [02] [1080p] [H265 AAC] [CHT&JPN].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 判處勇者刑 - 05 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Skymoon-Raws] Shangri-La Frontier 2nd Season - 23 [ViuTV][WEB-DL][CHT][SRT][1080p][AVC AAC].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] DDDD 惡魔的破壞 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 身為暗殺者的我明顯比勇者還強 - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 新人大叔冒險者,被最強隊伍操到死成無敵 - 11 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[HYSUB]Magic Maker ~Isekai Mahou no Tsukurikata~[04][BIG5_MP4][1920X1080].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 無職轉生~到了異世界就拿出真本事 第二季 - 20 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 治癒魔法的錯誤使用法 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Grand Blue S2 - 04 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 最強肉盾的迷宮攻略~擁有稀少技能體力 9999 的肉盾,被勇者隊伍辭退了~ - 11 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 香格里拉・開拓異境~糞作獵手挑戰神作~ 第二季 - 09 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/《BLEACH 死神 千年血戰篇-訣別譚-》#19/《BLEACH 死神 千年血戰篇-訣別譚-》#19 (日語原聲)【Ani-One Asia ULTRA】.mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Nekomoe kissaten&LoliHouse] Hibi wa Sugiredo Meshi Umashi - 07 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 水屬性的魔法師 - 11 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 結緣甘神神社 - 10 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 一拳超人(第三季) - 34 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 異世界悠閒紀行~邊養娃邊當冒險者~ - 06 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 葬送的芙莉蓮 - 23 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 九龍大眾浪漫 - 07 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 現在的是哪一個多聞!? - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 怪獸 8 號 第二季 - 23 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 香格里拉・開拓異境~糞作獵手挑戰神作~ 第二季 - 12 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 香格里拉・開拓異境~糞作獵手挑戰神作~ - 23 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Katainaka no Ossan, Kensei ni Naru - 07 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 刀劍神域外傳 Gun Gale Online II - 10 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 擁有超常技能的異世界流浪美食家 S2 - 17 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] Re:從零開始的異世界生活 第三季 - 04 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Haite Kudasai, Takamine-san - 02 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 鬼人幻燈抄 - 09 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Nekomoe kissaten][Tower of God S2][05][1080p][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 杖與劍的魔劍譚 - 06 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Kowloon Generic Romance - 01 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Tensei Shitara Slime Datta Ken 3rd Season - 49 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 異世界自殺突擊隊 - 07 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 勇氣爆發 BANG BRAVERN - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[orion origin] Boukyaku Battery [06] [1080p] [H265 AAC] [CHT&JPN].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 轉生貴族憑鑑定技能扭轉人生 - 05 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Kaijuu 8-gou - 17 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Tensei Shitara Slime Datta Ken 3rd Season - 52 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 永遠的黃昏 - 10 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Nekomoe kissaten][Boku no Kokoro no Yabai Yatsu][21][1080p][JPSC].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Feibanyama] Fate-strange Fake -Whispers of Dawn- [CR WebRip 1080p HEVC OPUS Multi-Subs].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 地下城中的人 - 06 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Amagami-san Chi no Enmusubi - 02 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[MMSUB][Goblin Slayer Goblin's Crown][Movie][BDRip 1080p HEVC-10bit FLAC]/[MMSUB][Goblin Slayer Goblin's Crown][Movie][BDRip 1080p HEVC-10bit FLAC].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[BeanSub][Ao no Exorcist _Yosuga Hen][01][GB][1080P][x264_AAC].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 孤單一人的異世界攻略 - 08 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 瞬間治癒卻被當成廢物踢出隊伍的天才治療師,改當無照治療師快樂過活 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Shinmai Ossan - 06 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[KyokuSai] Adam's Sweet Agony [01][1080P][WEBRip][HEVC 10bit].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 中禪寺老師妖怪講義錄 解謎就交給老師 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/《BLEACH 死神 千年血戰篇》#13/《BLEACH 死神 千年血戰篇》#13 (日語原聲)【Ani-One Asia ULTRA】.mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 遲早是最強的鍊金術師? - 09 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 一拳超人(第三季) - 30 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 在地下城尋求邂逅是否搞錯了什麼 第五季 - 13 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 異世界悠閒紀行~邊養娃邊當冒險者~ - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 被逐出隊伍的治癒師,其實是最強 - 04 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 魔女與野獸 - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] Fate/strange Fake - 04 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Lilith-Raws] Mushoku Tensei S02 - 21 [Baha][WebDL 1080p AVC AAC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Skymoon-Raws] SPY×FAMILY - 14 [ViuTV][WEB-DL][CHT][1080p][AVC AAC][MP4+ASS]/[Skymoon-Raws] SPY×FAMILY - 14 [ViuTV][WEB-DL][1080p][AVC AAC].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 29 歲單身中堅冒險家的日常 - 03 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 葬送的芙莉蓮 - 27 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 九龍大眾浪漫 - 03 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 擁有超常技能的異世界流浪美食家 S2 - 13 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 在地下城尋求邂逅是否搞錯了什麼 第五季 - 08 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 怪獸 8 號 - 06 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 終末起點 - 08 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Katainaka no Ossan, Kensei ni Naru - 03 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Nekomoe kissaten][Kusuriya no Hitorigoto][15][1080p][JPSC].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/阿基拉 Akira(1988)[BDRIP][1920x1080][movie][x264_m4a][10bit]加刘景长压制/阿基拉 Akira(1988)1080P.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 杖與劍的魔劍譚 - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Kowloon Generic Romance - 05 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Mirai.2018.1080p.BluRay.x264.DTS-WiKi/Sample/Mirai.2018.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Mirai.2018.1080p.BluRay.x264.DTS-WiKi/Mirai.2018.1080p.BluRay.x264.DTS-WiKi.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 異國日記 - 04 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[DMG&LoliHouse] Isekai Ojisan [01-13][WebRip 1080p HEVC-10bit AAC]/[DMG&LoliHouse] Isekai Ojisan - 04 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[DMG&LoliHouse] Isekai Ojisan [01-13][WebRip 1080p HEVC-10bit AAC]/[DMG&LoliHouse] Isekai Ojisan - 13 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[DMG&LoliHouse] Isekai Ojisan [01-13][WebRip 1080p HEVC-10bit AAC]/[DMG&LoliHouse] Isekai Ojisan - 08 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[DMG&LoliHouse] Isekai Ojisan [01-13][WebRip 1080p HEVC-10bit AAC]/[DMG&LoliHouse] Isekai Ojisan - 09 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[DMG&LoliHouse] Isekai Ojisan [01-13][WebRip 1080p HEVC-10bit AAC]/[DMG&LoliHouse] Isekai Ojisan - 12 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[DMG&LoliHouse] Isekai Ojisan [01-13][WebRip 1080p HEVC-10bit AAC]/[DMG&LoliHouse] Isekai Ojisan - 05 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[DMG&LoliHouse] Isekai Ojisan [01-13][WebRip 1080p HEVC-10bit AAC]/[DMG&LoliHouse] Isekai Ojisan - 01 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[DMG&LoliHouse] Isekai Ojisan [01-13][WebRip 1080p HEVC-10bit AAC]/[DMG&LoliHouse] Isekai Ojisan - 10 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[DMG&LoliHouse] Isekai Ojisan [01-13][WebRip 1080p HEVC-10bit AAC]/[DMG&LoliHouse] Isekai Ojisan - 07 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[DMG&LoliHouse] Isekai Ojisan [01-13][WebRip 1080p HEVC-10bit AAC]/[DMG&LoliHouse] Isekai Ojisan - 03 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[DMG&LoliHouse] Isekai Ojisan [01-13][WebRip 1080p HEVC-10bit AAC]/[DMG&LoliHouse] Isekai Ojisan - 06 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[DMG&LoliHouse] Isekai Ojisan [01-13][WebRip 1080p HEVC-10bit AAC]/[DMG&LoliHouse] Isekai Ojisan - 02 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[DMG&LoliHouse] Isekai Ojisan [01-13][WebRip 1080p HEVC-10bit AAC]/[DMG&LoliHouse] Isekai Ojisan - 11 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 異世界自殺突擊隊 - 03 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[BeanSub&FZSD&LoliHouse] Jujutsu Kaisen - 49v2 [WebRip 1080p HEVC-10bit AAC ASSx2]/[BeanSub&FZSD&LoliHouse] Jujutsu Kaisen - 49v2 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 記憶縫線 YOUR FORMA - 09 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Psycho-Pass.Providence.2023.1080p.BluRay.x265.10bit.DTS-ADE/Psycho-Pass.Providence.2023.1080p.BluRay.x265.10bit.DTS-ADE.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[HYSUB]Violet Evergarden The Movie[BDrip][BIG5_MP4][1920X1080]/[HYSUB]Violet Evergarden The Movie[BDrip][BIG5_MP4][1920X1080].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[HYSUB]Violet Evergarden The Movie[BDrip][BIG5_MP4][1920X1080]/EXTRA/[HYSUB]Violet Evergarden The Movie[Theatre Greeting][BDrip][MP4][1920X1080].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[HYSUB]Violet Evergarden The Movie[BDrip][BIG5_MP4][1920X1080]/EXTRA/[HYSUB]Violet Evergarden The Movie[PV2][BDrip][MP4][1920X1080].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[HYSUB]Violet Evergarden The Movie[BDrip][BIG5_MP4][1920X1080]/EXTRA/[HYSUB]Violet Evergarden The Movie[Trailer2][BDrip][MP4][1920X1080].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[HYSUB]Violet Evergarden The Movie[BDrip][BIG5_MP4][1920X1080]/EXTRA/[HYSUB]Violet Evergarden The Movie[Trailer1][BDrip][MP4][1920X1080].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[HYSUB]Violet Evergarden The Movie[BDrip][BIG5_MP4][1920X1080]/EXTRA/[HYSUB]Violet Evergarden The Movie[PV3][BDrip][MP4][1920X1080].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[HYSUB]Violet Evergarden The Movie[BDrip][BIG5_MP4][1920X1080]/EXTRA/[HYSUB]Violet Evergarden The Movie[PV1][BDrip][MP4][1920X1080].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[HYSUB]Violet Evergarden The Movie[BDrip][BIG5_MP4][1920X1080]/EXTRA/[HYSUB]Violet Evergarden The Movie[CM][BDrip][MP4][1920X1080].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] LAZARUS 拉撒路 - 11 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Nekomoe kissaten][Ishura][12][1080p][JPSC].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 地獄模式 ~喜歡挑戰特殊成就的玩家在廢設定的異世界成為無雙~ - 04 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Shin Samurai-den YAIBA - 05 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 01~22 [ViuTV]/[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 08 [ViuTV][WEB-DL][CHT][1080p][AVC AAC][MP4+ASS]/[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 08 [ViuTV][WEB-DL][1080p][AVC AAC].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 01~22 [ViuTV]/[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 02 [ViuTV][WEB-DL][CHT][1080p][AVC AAC][MP4+ASS]/[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 02 [ViuTV][WEB-DL][1080p][AVC AAC].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 01~22 [ViuTV]/[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 01 [ViuTV][WEB-DL][CHT][1080p][AVC AAC][MP4+ASS]/[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 01 [ViuTV][WEB-DL][1080p][AVC AAC].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 01~22 [ViuTV]/[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 07 [ViuTV][WEB-DL][CHT][1080p][AVC AAC][MP4+ASS]/[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 07 [ViuTV][WEB-DL][1080p][AVC AAC].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 01~22 [ViuTV]/[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 04 [ViuTV][WEB-DL][CHT][1080p][AVC AAC][MP4+ASS]/[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 04 [ViuTV][WEB-DL][1080p][AVC AAC].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 01~22 [ViuTV]/[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 10 [ViuTV][WEB-DL][CHT][1080p][AVC AAC][MP4+ASS]/[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 10 [ViuTV][WEB-DL][1080p][AVC AAC].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 01~22 [ViuTV]/[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 13 [ViuTV][WEB-DL][CHT][1080p][AVC AAC][MP4+ASS]/[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 13 [ViuTV][WEB-DL][1080p][AVC AAC].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 01~22 [ViuTV]/[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 15 [ViuTV][WEB-DL][CHT][1080p][AVC AAC][MP4+ASS]/[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 15 [ViuTV][WEB-DL][1080p][AVC AAC].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 01~22 [ViuTV]/[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 16 [ViuTV][WEB-DL][CHT][1080p][AVC AAC][MP4+ASS]/[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 16 [ViuTV][WEB-DL][1080p][AVC AAC].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 01~22 [ViuTV]/[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 19 [ViuTV][WEB-DL][CHT][1080p][AVC AAC][MP4+ASS]/[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 19 [ViuTV][WEB-DL][1080p][AVC AAC].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 01~22 [ViuTV]/[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 20 [ViuTV][WEB-DL][CHT][1080p][AVC AAC][MP4+ASS]/[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 20 [ViuTV][WEB-DL][1080p][AVC AAC].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 01~22 [ViuTV]/[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 05 [ViuTV][WEB-DL][CHT][1080p][AVC AAC][MP4+ASS]/[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 05 [ViuTV][WEB-DL][1080p][AVC AAC].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 01~22 [ViuTV]/[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 06 [ViuTV][WEB-DL][CHT][1080p][AVC AAC][MP4+ASS]/[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 06 [ViuTV][WEB-DL][1080p][AVC AAC].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 01~22 [ViuTV]/[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 03 [ViuTV][WEB-DL][CHT][1080p][AVC AAC][MP4+ASS]/[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 03 [ViuTV][WEB-DL][1080p][AVC AAC].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 01~22 [ViuTV]/[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 09 [ViuTV][WEB-DL][CHT][1080p][AVC AAC][MP4+ASS]/[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 09 [ViuTV][WEB-DL][1080p][AVC AAC].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 01~22 [ViuTV]/[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 18 [ViuTV][WEB-DL][CHT][1080p][AVC AAC][MP4+ASS]/[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 18 [ViuTV][WEB-DL][1080p][AVC AAC].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 01~22 [ViuTV]/[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 17 [ViuTV][WEB-DL][CHT][1080p][AVC AAC][MP4+ASS]/[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 17 [ViuTV][WEB-DL][1080p][AVC AAC].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 01~22 [ViuTV]/[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 14 [ViuTV][WEB-DL][CHT][1080p][AVC AAC][MP4+ASS]/[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 14 [ViuTV][WEB-DL][1080p][AVC AAC].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 01~22 [ViuTV]/[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 12 [ViuTV][WEB-DL][CHT][1080p][AVC AAC][MP4+ASS]/[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 12 [ViuTV][WEB-DL][1080p][AVC AAC].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 01~22 [ViuTV]/[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 11 [ViuTV][WEB-DL][CHT][1080p][AVC AAC][MP4+ASS]/[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 11 [ViuTV][WEB-DL][1080p][AVC AAC].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 01~22 [ViuTV]/[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 22 [ViuTV][WEB-DL][CHT][1080p][AVC AAC][MP4+ASS]/[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 22 [ViuTV][WEB-DL][1080p][AVC AAC].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 01~22 [ViuTV]/[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 21 [ViuTV][WEB-DL][CHT][1080p][AVC AAC][MP4+ASS]/[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka S04 - 21 [ViuTV][WEB-DL][1080p][AVC AAC].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 無職轉生~到了異世界就拿出真本事 第二季 - 18 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Around 40 Otoko no Isekai Tsuuhan - 04 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 勇氣爆發 BANG BRAVERN - 06 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Nekomoe kissaten][Tower of God S2][11][1080p][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Nekomoe kissaten][Ishura][07][1080p][JPSC].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 記憶縫線 YOUR FORMA - 12 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Nekomoe kissaten][Mayonaka Punch][01][1080p][JPTC].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[KitaujiSub] Ao no Hako [09][WebRip][HEVC_AAC][CHS_JP].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 忍者與殺手的兩人生活 - 04 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Tensei Shitara Slime Datta Ken 3rd Season - 56 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 地下城中的人 - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] WIND BREAKER—防風少年— Season 2 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Tensei Kizoku, Kantei Skill de Nariagaru - 17 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Nekomoe kissaten&LoliHouse] Girumasu - 01 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 聽說你們要結婚!? - 10 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 戀上換裝娃娃 Season 2 - 23 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] Silent Witch 沉默魔女的祕密 - 05 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Nageki no Bourei wa Intai shitai - 14 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Party kara Tsuihou sareta Sono Chiyushi, Jitsu wa Saikyou ni Tsuki - 03 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 安逸領主的愉快領地防衛~用生產系魔術將無名村改造成最強要塞都市~ - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Nekomoe kissaten][Tower of God S2][04][1080p][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 我獨自升級 - 12 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Nekomoe kissaten][Ishura][09][1080p][JPTC].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 差點在迷宮深處被信任的夥伴殺掉,但靠著天賜技能「無限扭蛋」獲得等級 9999 的夥伴,我要向前隊友和世界展開復仇&「給他們好看!」 - 09 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 愚蠢天使與惡魔共舞 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 靠廢柴技能【狀態異常】成為最強的我將蹂躪一切 - 03 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] GNOSIA - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 歲月流逝飯菜依舊美味 - 10 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Mobile Suit Gundam the Witch from Mercury - 『PROLOGUE』/Mobile Suit Gundam the Witch from Mercury - 『PROLOGUE』.mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 我獨自升級 - 09 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[KTXP][Violet_Evergarden][01-13][BIG5][1080p][BDrip]/[KTXP][Violet_Evergarden][12][BIG5][1080p][BDrip].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[KTXP][Violet_Evergarden][01-13][BIG5][1080p][BDrip]/[KTXP][Violet_Evergarden][NCOP][1080p][BDrip].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[KTXP][Violet_Evergarden][01-13][BIG5][1080p][BDrip]/[KTXP][Violet_Evergarden][13][BIG5][1080p][BDrip].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[KTXP][Violet_Evergarden][01-13][BIG5][1080p][BDrip]/[KTXP][Violet_Evergarden][11][BIG5][1080p][BDrip].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[KTXP][Violet_Evergarden][01-13][BIG5][1080p][BDrip]/[KTXP][Violet_Evergarden][10][BIG5][1080p][BDrip].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[KTXP][Violet_Evergarden][01-13][BIG5][1080p][BDrip]/[KTXP][Violet_Evergarden][NCED][1080p][BDrip].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[KTXP][Violet_Evergarden][01-13][BIG5][1080p][BDrip]/[KTXP][Violet_Evergarden][02][BIG5][1080p][BDrip].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[KTXP][Violet_Evergarden][01-13][BIG5][1080p][BDrip]/[KTXP][Violet_Evergarden][03][BIG5][1080p][BDrip].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[KTXP][Violet_Evergarden][01-13][BIG5][1080p][BDrip]/[KTXP][Violet_Evergarden][01][BIG5][1080p][BDrip].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[KTXP][Violet_Evergarden][01-13][BIG5][1080p][BDrip]/[KTXP][Violet_Evergarden][05][BIG5][1080p][BDrip].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[KTXP][Violet_Evergarden][01-13][BIG5][1080p][BDrip]/[KTXP][Violet_Evergarden][04][BIG5][1080p][BDrip].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[KTXP][Violet_Evergarden][01-13][BIG5][1080p][BDrip]/[KTXP][Violet_Evergarden][06][BIG5][1080p][BDrip].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[KTXP][Violet_Evergarden][01-13][BIG5][1080p][BDrip]/[KTXP][Violet_Evergarden][07][BIG5][1080p][BDrip].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[KTXP][Violet_Evergarden][01-13][BIG5][1080p][BDrip]/[KTXP][Violet_Evergarden][09][BIG5][1080p][BDrip].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[KTXP][Violet_Evergarden][01-13][BIG5][1080p][BDrip]/[KTXP][Violet_Evergarden][08][BIG5][1080p][BDrip].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 轉生貴族憑鑑定技能扭轉人生 第二季 - 21 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Nekomoe kissaten][Your Forma][04][1080p][JPSC].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Skymoon-Raws] DAN DA DAN - 14 [ViuTV][WEB-DL][CHT][SRT][1080p][AVC AAC].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 膽大黨 第二季 - 19 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] FARMAGIA 魔農傳記 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 從路人角色開始的探索英雄譚 - 05 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Nekomoe kissaten][Dosanko Gal wa Namara Menkoi][11][1080p][JPTC].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Tate no Yuusha no Nariagari S4 - 05 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 素材採集家的異世界旅行記 - 04 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 盾之勇者成名錄 Season 4 - 12 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 身為暗殺者的我明顯比勇者還強 - 06 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Nekomoe kissaten&LoliHouse] Dandadan - 01 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 遲早是最強的鍊金術師? - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Tensei Shitara Slime Datta Ken 3rd Season - 62 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] Re:從零開始的異世界生活 第三季 - 13 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 葬送的芙莉蓮 第二季 - 29 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Katainaka no Ossan, Kensei ni Naru - 10 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Nekomoe kissaten][Ninja Kamui][03][1080p][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 香格里拉・開拓異境~糞作獵手挑戰神作~ 第二季 - 05 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[HYSUB]Dungeon Meshi[02][BIG5_MP4][1920X1080].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 這個世界漏洞百出 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 九龍大眾浪漫 - 10 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Nekomoe kissaten][Your Forma][02][1080p][JPSC].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 結緣甘神神社 - 07 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[DragsterPS] Kengan Ashura S01 [720p] [Multi-Audio] [Multi-Subs]/[DragsterPS] Kengan Ashura S01E09 [720p] [Multi-Audio] [Multi-Subs] [2A8CE00A].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[DragsterPS] Kengan Ashura S01 [720p] [Multi-Audio] [Multi-Subs]/[DragsterPS] Kengan Ashura S01E05 [720p] [Multi-Audio] [Multi-Subs] [2129990F].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[DragsterPS] Kengan Ashura S01 [720p] [Multi-Audio] [Multi-Subs]/[DragsterPS] Kengan Ashura S01E11 [720p] [Multi-Audio] [Multi-Subs] [7EFF4030].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[DragsterPS] Kengan Ashura S01 [720p] [Multi-Audio] [Multi-Subs]/[DragsterPS] Kengan Ashura S01E07 [720p] [Multi-Audio] [Multi-Subs] [732DED05].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[DragsterPS] Kengan Ashura S01 [720p] [Multi-Audio] [Multi-Subs]/[DragsterPS] Kengan Ashura S01E12 [720p] [Multi-Audio] [Multi-Subs] [8242AFF3].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[DragsterPS] Kengan Ashura S01 [720p] [Multi-Audio] [Multi-Subs]/[DragsterPS] Kengan Ashura S01E01 [720p] [Multi-Audio] [Multi-Subs] [5CFDFC8D].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[DragsterPS] Kengan Ashura S01 [720p] [Multi-Audio] [Multi-Subs]/[DragsterPS] Kengan Ashura S01E10 [720p] [Multi-Audio] [Multi-Subs] [D2EB50E7].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[DragsterPS] Kengan Ashura S01 [720p] [Multi-Audio] [Multi-Subs]/[DragsterPS] Kengan Ashura S01E08 [720p] [Multi-Audio] [Multi-Subs] [60C56D1C].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[DragsterPS] Kengan Ashura S01 [720p] [Multi-Audio] [Multi-Subs]/[DragsterPS] Kengan Ashura S01E03 [720p] [Multi-Audio] [Multi-Subs] [D46187C5].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[DragsterPS] Kengan Ashura S01 [720p] [Multi-Audio] [Multi-Subs]/[DragsterPS] Kengan Ashura S01E06 [720p] [Multi-Audio] [Multi-Subs] [383F22E1].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[DragsterPS] Kengan Ashura S01 [720p] [Multi-Audio] [Multi-Subs]/[DragsterPS] Kengan Ashura S01E04 [720p] [Multi-Audio] [Multi-Subs] [8D939D02].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[DragsterPS] Kengan Ashura S01 [720p] [Multi-Audio] [Multi-Subs]/[DragsterPS] Kengan Ashura S01E02 [720p] [Multi-Audio] [Multi-Subs] [80409C50].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] SPY×FAMILY 間諜家家酒 Season 3 - 38 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] Re:從零開始的異世界生活 第三季 - 08 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Shin no Nakama 2nd - 07 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 葬送的芙莉蓮 第二季 - 32 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 關於我轉生變成史萊姆這檔事 第三季 - 69 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Nekomoe kissaten][Dosanko Gal wa Namara Menkoi][02][1080p][JPTC].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 水屬性的魔法師 - 06 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Skymoon-Raws] Mob Psycho 100 S03 - 06 [ViuTV][WEB-DL][CHT][1080p][AVC AAC][MP4+ASS]/[Skymoon-Raws] Mob Psycho 100 S03 - 06 [ViuTV][WEB-DL][1080p][AVC AAC].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Tekken Bloodline [WebRip 1080p HEVC-10bit AAC SRTx3]/[LoliHouse] Tekken Bloodline - 02 [WebRip 1080p HEVC-10bit AAC SRTx3].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Tekken Bloodline [WebRip 1080p HEVC-10bit AAC SRTx3]/[LoliHouse] Tekken Bloodline - 06 [WebRip 1080p HEVC-10bit AAC SRTx3].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Tekken Bloodline [WebRip 1080p HEVC-10bit AAC SRTx3]/[LoliHouse] Tekken Bloodline - 03 [WebRip 1080p HEVC-10bit AAC SRTx3].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Tekken Bloodline [WebRip 1080p HEVC-10bit AAC SRTx3]/[LoliHouse] Tekken Bloodline - 01 [WebRip 1080p HEVC-10bit AAC SRTx3].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Tekken Bloodline [WebRip 1080p HEVC-10bit AAC SRTx3]/[LoliHouse] Tekken Bloodline - 05 [WebRip 1080p HEVC-10bit AAC SRTx3].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Tekken Bloodline [WebRip 1080p HEVC-10bit AAC SRTx3]/[LoliHouse] Tekken Bloodline - 04 [WebRip 1080p HEVC-10bit AAC SRTx3].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 魔都精兵的奴隸 第二季 - 05 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 記憶縫線 YOUR FORMA - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 永遠的黃昏 - 07 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 地下城中的人 - 11 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[DMG&VCB-Studio] Isekai Ojisan [1080p][chs]/[DMG&VCB-Studio] Isekai Ojisan [12][1080p][x264_aac][chs].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[DMG&VCB-Studio] Isekai Ojisan [1080p][chs]/[DMG&VCB-Studio] Isekai Ojisan [06][1080p][x264_aac][chs].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[DMG&VCB-Studio] Isekai Ojisan [1080p][chs]/[DMG&VCB-Studio] Isekai Ojisan [13][1080p][x264_aac][chs].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[DMG&VCB-Studio] Isekai Ojisan [1080p][chs]/[DMG&VCB-Studio] Isekai Ojisan [07][1080p][x264_aac][chs].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[DMG&VCB-Studio] Isekai Ojisan [1080p][chs]/[DMG&VCB-Studio] Isekai Ojisan [11][1080p][x264_aac][chs].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[DMG&VCB-Studio] Isekai Ojisan [1080p][chs]/[DMG&VCB-Studio] Isekai Ojisan [05][1080p][x264_aac][chs].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[DMG&VCB-Studio] Isekai Ojisan [1080p][chs]/[DMG&VCB-Studio] Isekai Ojisan [10][1080p][x264_aac][chs].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[DMG&VCB-Studio] Isekai Ojisan [1080p][chs]/[DMG&VCB-Studio] Isekai Ojisan [04][1080p][x264_aac][chs].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[DMG&VCB-Studio] Isekai Ojisan [1080p][chs]/[DMG&VCB-Studio] Isekai Ojisan [09][1080p][x264_aac][chs].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[DMG&VCB-Studio] Isekai Ojisan [1080p][chs]/[DMG&VCB-Studio] Isekai Ojisan [01][1080p][x264_aac][chs].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[DMG&VCB-Studio] Isekai Ojisan [1080p][chs]/[DMG&VCB-Studio] Isekai Ojisan [08][1080p][x264_aac][chs].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[DMG&VCB-Studio] Isekai Ojisan [1080p][chs]/[DMG&VCB-Studio] Isekai Ojisan [02][1080p][x264_aac][chs].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[DMG&VCB-Studio] Isekai Ojisan [1080p][chs]/[DMG&VCB-Studio] Isekai Ojisan [03][1080p][x264_aac][chs].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] NUKITASHI 住在拔作島上的我該如何是好? [年齡限制版] - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 貫徹輔助魔法支援弱小隊友的宮廷魔法師,慘遭驅逐後目標成為最強冒險者 - 05 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 轉生貴族憑鑑定技能扭轉人生 - 12 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 我的妻子不具感情 - 12 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 怪獸 8 號 第二季 - 13 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 香格里拉・開拓異境~糞作獵手挑戰神作~ 第二季 - 22 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 異世界自殺突擊隊 - 10 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Flow.2024.1080p.BluRay.x265.10bit.DTS-WiKi/Flow.2024.1080p.BluRay.x265.10bit.DTS-WiKi.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 結緣甘神神社 - 20 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 孤單一人的異世界攻略 - 04 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] LAZARUS 拉撒路 - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[HYSUB]Sono Bisque Doll wa Koi wo Suru[21][GB_MP4][1920X1080].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 杖與劍的魔劍譚 - 11 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Nekomoe kissaten][Tower of God S2][07][1080p][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Skymoon-Raws] Kaguya-sama wa Kokurasetai S03 - 05 [ViuTV][WEB-DL][CHT][1080p][AVC AAC][MP4+ASS]/[Skymoon-Raws] Kaguya-sama wa Kokurasetai S03 - 05 [ViuTV][WEB-DL][1080p][AVC AAC].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Skymoon-Raws] Boushoku no Berserk - 01 [ViuTV][WEB-DL][CHT][1080p][AVC AAC][MP4+ASS]/[Skymoon-Raws] Boushoku no Berserk - 01 [ViuTV][WEB-DL][1080p][AVC AAC].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Nekomoe kissaten&LoliHouse] Ao no Hako - 03 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 膽大黨 - 04 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 最近的偵探真沒用 - 04 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[BeanSub&FZSD][BLEACH_Sennen_Kessen-hen][29][GB][1080P][x264_AAC].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Lilith-Raws] Date A Live S05 - 03 [Baha][WebDL 1080p AVC AAC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Skymoon-Raws] Kaguya-sama wa Kokurasetai S03 - 09 [ViuTV][WEB-DL][CHT][1080p][AVC AAC][MP4+ASS]/[Skymoon-Raws] Kaguya-sama wa Kokurasetai S03 - 09 [ViuTV][WEB-DL][1080p][AVC AAC].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 靠廢柴技能【狀態異常】成為最強的我將蹂躪一切 - 10 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Nekomoe kissaten][Dungeon Meshi][09][1080p][JPTC].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Nekomoe kissaten][Ishura][01][1080p][JPSC].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Re Monster - 04 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 我獨自升級 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Tensei Kizoku, Kantei Skill de Nariagaru - 04 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] NEET Kunoichi to Nazeka Dousei Hajimemashita - 12 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 聽說你們要結婚!? - 03 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 轉生貴族憑鑑定技能扭轉人生 第二季 - 15 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] WIND BREAKER—防風少年— - 09 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Hitoribocchi no Isekai Kouryaku - 02 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Nekomoe kissaten][Ishura][04][1080p][JPTC].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Sword Art Online Alternative - Gun Gale Online II - 06 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Chotto dake Ai ga Omoi Dark Elf ga Isekai kara Oikakete Kita - 06 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/The.Animatrix.2003.RERiP.1080p.BluRay.x264.DTS-WiKi/The.Animatrix.2003.RERiP.1080p.BluRay.x264.DTS-WiKi.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/The.Animatrix.2003.RERiP.1080p.BluRay.x264.DTS-WiKi/Sample/The.Animatrix.2003.RERiP.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 盾之勇者成名錄 Season 4 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] 29-sai Dokushin Chuuken Boukensha no Nichijou - 02 [WebRip 1080p HEVC-10bit AAC ASS].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[FZSD][Hime-sama Goumon no Jikan Desu][14][BIG5][1080P][x264_AAC].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 身為魔族的我 想向勇者小隊的可愛女孩告白 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] WIND BREAKER—防風少年— - 12 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 我內心的糟糕念頭 第二季 - 15 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/《不要欺負我,長瀞同學 2nd Attack》#3/《不要欺負我,長瀞同學 2nd Attack》#3 (日語原聲)【Ani-One Asia】.mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Lilith-Raws] Kantei Skill - 07 [Baha][WebDL 1080p AVC AAC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 使人誤解的工房主~關於原英雄隊伍的雜役人員,實際上除了戰鬥能力外全是SSS的故事~ - 12 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 「憑妳也想討伐魔王?」被勇者小隊逐出隊伍,只好在王都自在過活 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Tensei Kizoku, Kantei Skill de Nariagaru - 23 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Girls.und.Panzer.das.Finale.Part.IV.2023.1080p.BluRay.x265.10bit.DTS-WiKi/Girls.und.Panzer.das.Finale.Part.IV.2023.1080p.BluRay.x265.10bit.DTS-WiKi.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Sakurato] Modaete yo, Adam-kun [03][AVC-8bit 1080p AAC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Up to 21°C] Kami no Tou - Ouji no Kikan - 04 (ABEMA 1920x1080 AVC AAC MP4) [2548E81E].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 最後可以再拜託您一件事嗎? - 04 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Nekomoe kissaten&LoliHouse] Ao no Hako - 07 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[HYSUB]Sono Bisque Doll wa Koi wo Suru[17][BIG5_MP4][1920X1080].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[BeanSub&FZSD][Kimetsu_no_Yaiba][63][GB][1080P][x264_AAC].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[BeanSub&FZSD][Jujutsu_Kaisen][48-49][BIG5][1080P][MP4]/[BeanSub&FZSD][Jujutsu_Kaisen][48][BIG5][1080P][x264_AAC].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[BeanSub&FZSD][Jujutsu_Kaisen][48-49][BIG5][1080P][MP4]/[BeanSub&FZSD][Jujutsu_Kaisen][49][BIG5][1080P][x264_AAC].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Pantheon.S01.1080p.AMZN.WEB-DL.DD+5.1.H.264-NTb/Pantheon.S01E01.Pantheon.1080p.AMZN.WEB-DL.DD+5.1.H.264-NTb.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Pantheon.S01.1080p.AMZN.WEB-DL.DD+5.1.H.264-NTb/Pantheon.S01E02.Cycles.1080p.AMZN.WEB-DL.DD+5.1.H.264-NTb.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Pantheon.S01.1080p.AMZN.WEB-DL.DD+5.1.H.264-NTb/Pantheon.S01E05.Zero.Daze.1080p.AMZN.WEB-DL.DD+5.1.H.264-NTb.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Pantheon.S01.1080p.AMZN.WEB-DL.DD+5.1.H.264-NTb/Pantheon.S01E06.You.Must.Be.Caspian.1080p.AMZN.WEB-DL.DD+5.1.H.264-NTb.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Pantheon.S01.1080p.AMZN.WEB-DL.DD+5.1.H.264-NTb/Pantheon.S01E04.The.Gods.Will.Not.Be.Chained.1080p.AMZN.WEB-DL.DD+5.1.H.264-NTb.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Pantheon.S01.1080p.AMZN.WEB-DL.DD+5.1.H.264-NTb/Pantheon.S01E03.Reign.of.Winter.1080p.AMZN.WEB-DL.DD+5.1.H.264-NTb.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Pantheon.S01.1080p.AMZN.WEB-DL.DD+5.1.H.264-NTb/Pantheon.S01E08.The.Gods.Will.Not.Be.Slain.1080p.AMZN.WEB-DL.DD+5.1.H.264-NTb.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Pantheon.S01.1080p.AMZN.WEB-DL.DD+5.1.H.264-NTb/Pantheon.S01E07.We.Are.You.1080p.AMZN.WEB-DL.DD+5.1.H.264-NTb.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] BLEACH 死神 千年血戰篇-相剋譚- - 30 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 和雨.和你 - 09 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] Silent Witch 沉默魔女的祕密 - 09 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Lilith-Raws] Kantei Skill - 09 [Baha][WebDL 1080p AVC AAC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 我獨自升級 第二季 -起於闇影- - 22 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 拉麵赤貓 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Nekomoe kissaten][Ao no Hako][20][1080p][JPSC].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 我獨自升級 - 05 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 和雨.和你 - 12 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/《繼母的拖油瓶是我的前女友》#2/《繼母的拖油瓶是我的前女友》#2 (日語原聲)【Ani-One Asia】.mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Cyberpunk.Edgerunners.S01.1080p.NF.WEB-DL.DUAL.DDP5.1.H.264-SMURF/Cyberpunk.Edgerunners.S01E02.Like.A.Boy.1080p.NF.WEB-DL.DUAL.DDP5.1.H.264-SMURF.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Cyberpunk.Edgerunners.S01.1080p.NF.WEB-DL.DUAL.DDP5.1.H.264-SMURF/Cyberpunk.Edgerunners.S01E04.Lucky.You.1080p.NF.WEB-DL.DUAL.DDP5.1.H.264-SMURF.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Cyberpunk.Edgerunners.S01.1080p.NF.WEB-DL.DUAL.DDP5.1.H.264-SMURF/Cyberpunk.Edgerunners.S01E10.My.Moon.My.Man.1080p.NF.WEB-DL.DUAL.DDP5.1.H.264-SMURF.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Cyberpunk.Edgerunners.S01.1080p.NF.WEB-DL.DUAL.DDP5.1.H.264-SMURF/Cyberpunk.Edgerunners.S01E05.All.Eyez.On.Me.1080p.NF.WEB-DL.DUAL.DDP5.1.H.264-SMURF.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Cyberpunk.Edgerunners.S01.1080p.NF.WEB-DL.DUAL.DDP5.1.H.264-SMURF/Cyberpunk.Edgerunners.S01E08.Stay.1080p.NF.WEB-DL.DUAL.DDP5.1.H.264-SMURF.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Cyberpunk.Edgerunners.S01.1080p.NF.WEB-DL.DUAL.DDP5.1.H.264-SMURF/Cyberpunk.Edgerunners.S01E07.Stronger.1080p.NF.WEB-DL.DUAL.DDP5.1.H.264-SMURF.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Cyberpunk.Edgerunners.S01.1080p.NF.WEB-DL.DUAL.DDP5.1.H.264-SMURF/Cyberpunk.Edgerunners.S01E09.Humanity.1080p.NF.WEB-DL.DUAL.DDP5.1.H.264-SMURF.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Cyberpunk.Edgerunners.S01.1080p.NF.WEB-DL.DUAL.DDP5.1.H.264-SMURF/Cyberpunk.Edgerunners.S01E03.Smooth.Criminal.1080p.NF.WEB-DL.DUAL.DDP5.1.H.264-SMURF.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Cyberpunk.Edgerunners.S01.1080p.NF.WEB-DL.DUAL.DDP5.1.H.264-SMURF/Cyberpunk.Edgerunners.S01E06.Girl.on.Fire.1080p.NF.WEB-DL.DUAL.DDP5.1.H.264-SMURF.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Cyberpunk.Edgerunners.S01.1080p.NF.WEB-DL.DUAL.DDP5.1.H.264-SMURF/Cyberpunk.Edgerunners.S01E01.Let.You.Down.1080p.NF.WEB-DL.DUAL.DDP5.1.H.264-SMURF.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] RINKAI!女子競輪 - 12 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Nekomoe kissaten][Tower of God S2][06][1080p][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Tsuki ga Michibiku Isekai Douchuu S2 - 18 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/《BLEACH 死神 千年血戰篇》#4/《BLEACH 死神 千年血戰篇》#4 (日語原聲)【Ani-One Asia ULTRA】.mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/I.Am.Groot.S01.1080p.WEB.h264-KOGi/I.Am.Groot.S01E03.1080p.WEB.h264-KOGi.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/I.Am.Groot.S01.1080p.WEB.h264-KOGi/I.Am.Groot.S01E04.1080p.WEB.h264-KOGi.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/I.Am.Groot.S01.1080p.WEB.h264-KOGi/I.Am.Groot.S01E02.1080p.WEB.h264-KOGi.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/I.Am.Groot.S01.1080p.WEB.h264-KOGi/I.Am.Groot.S01E05.1080p.WEB.h264-KOGi.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/I.Am.Groot.S01.1080p.WEB.h264-KOGi/I.Am.Groot.S01E01.1080p.WEB.h264-KOGi.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Sword Art Online Alternative - Gun Gale Online II - 02 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Evacuate.from.the.21st.Century.2024.1080p.BluRay.x265.10bit.DTS-WiKi/Evacuate.from.the.21st.Century.2024.1080p.BluRay.x265.10bit.DTS-WiKi.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 身為暗殺者的我明顯比勇者還強 - 11 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Nekomoe kissaten][Ninja Kamui][02][1080p][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Nekomoe kissaten][Ao no Hako][25][1080p][JPTC].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[orion origin] Wind Breaker [03] [1080p] [H265 AAC] [CHT&JPN].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 新人大叔冒險者,被最強隊伍操到死成無敵 - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 膽大黨 第二季 - 15 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[HYSUB]Dungeon Meshi[01][BIG5_MP4][1920X1080].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Nekomoe kissaten&LoliHouse] Pon no Michi - 12 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Izure Saikyou no Renkinjutsushi - 10 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] Re:Monster - 08 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Demon.Slayer.S02.2021.1080p.BluRay.x265.10bit-WiKi/Demon.Slayer.S02E05.2021.1080p.BluRay.x265.10bit-WiKi.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Demon.Slayer.S02.2021.1080p.BluRay.x265.10bit-WiKi/Demon.Slayer.S02E04.2021.1080p.BluRay.x265.10bit-WiKi.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Demon.Slayer.S02.2021.1080p.BluRay.x265.10bit-WiKi/Demon.Slayer.S02E11.2021.1080p.BluRay.x265.10bit-WiKi.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Demon.Slayer.S02.2021.1080p.BluRay.x265.10bit-WiKi/Demon.Slayer.S02E07.2021.1080p.BluRay.x265.10bit-WiKi.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Demon.Slayer.S02.2021.1080p.BluRay.x265.10bit-WiKi/Demon.Slayer.S02E10.2021.1080p.BluRay.x265.10bit-WiKi.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Demon.Slayer.S02.2021.1080p.BluRay.x265.10bit-WiKi/Demon.Slayer.S02E06.2021.1080p.BluRay.x265.10bit-WiKi.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Demon.Slayer.S02.2021.1080p.BluRay.x265.10bit-WiKi/Demon.Slayer.S02E01.2021.1080p.BluRay.x265.10bit-WiKi.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Demon.Slayer.S02.2021.1080p.BluRay.x265.10bit-WiKi/Demon.Slayer.S02E03.2021.1080p.BluRay.x265.10bit-WiKi.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Demon.Slayer.S02.2021.1080p.BluRay.x265.10bit-WiKi/Demon.Slayer.S02E02.2021.1080p.BluRay.x265.10bit-WiKi.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Demon.Slayer.S02.2021.1080p.BluRay.x265.10bit-WiKi/Demon.Slayer.S02E09.2021.1080p.BluRay.x265.10bit-WiKi.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Demon.Slayer.S02.2021.1080p.BluRay.x265.10bit-WiKi/Demon.Slayer.S02E08.2021.1080p.BluRay.x265.10bit-WiKi.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 我和班上最討厭的女生結婚了。 - 08 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[BeanSub][Ao no Exorcist _Yuki no Hate Hen][03][GB][1080P][x264_AAC].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Tate no Yuusha no Nariagari S4 - 09 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 素材採集家的異世界旅行記 - 08 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 怪獸 8 號 - 11 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 被逐出隊伍的治癒師,其實是最強 - 08 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 治癒魔法的錯誤使用法 - 09 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 轉生為第七王子,隨心所欲的魔法學習之路 - 10 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 香格里拉・開拓異境~糞作獵手挑戰神作~ 第二季 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[orion origin] Sentai Red Isekai de Boukensha ni Naru [05] [1080p] [H265 AAC] [CHT&JPN].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Shin no Nakama 2nd - 03 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 終末起點 - 04 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Baki.Hanma.S02.2023.1080p.NF.WEB-DL.x264.DDP5.1-ADWeb/Baki.Hanma.S02E08.2023.1080p.NF.WEB-DL.x264.DDP5.1-ADWeb.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Baki.Hanma.S02.2023.1080p.NF.WEB-DL.x264.DDP5.1-ADWeb/Baki.Hanma.S02E09.2023.1080p.NF.WEB-DL.x264.DDP5.1-ADWeb.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Baki.Hanma.S02.2023.1080p.NF.WEB-DL.x264.DDP5.1-ADWeb/Baki.Hanma.S02E12.2023.1080p.NF.WEB-DL.x264.DDP5.1-ADWeb.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Baki.Hanma.S02.2023.1080p.NF.WEB-DL.x264.DDP5.1-ADWeb/Baki.Hanma.S02E06.2023.1080p.NF.WEB-DL.x264.DDP5.1-ADWeb.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Baki.Hanma.S02.2023.1080p.NF.WEB-DL.x264.DDP5.1-ADWeb/Baki.Hanma.S02E13.2023.1080p.NF.WEB-DL.x264.DDP5.1-ADWeb.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Baki.Hanma.S02.2023.1080p.NF.WEB-DL.x264.DDP5.1-ADWeb/Baki.Hanma.S02E07.2023.1080p.NF.WEB-DL.x264.DDP5.1-ADWeb.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Baki.Hanma.S02.2023.1080p.NF.WEB-DL.x264.DDP5.1-ADWeb/Baki.Hanma.S02E10.2023.1080p.NF.WEB-DL.x264.DDP5.1-ADWeb.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Baki.Hanma.S02.2023.1080p.NF.WEB-DL.x264.DDP5.1-ADWeb/Baki.Hanma.S02E04.2023.1080p.NF.WEB-DL.x264.DDP5.1-ADWeb.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Baki.Hanma.S02.2023.1080p.NF.WEB-DL.x264.DDP5.1-ADWeb/Baki.Hanma.S02E11.2023.1080p.NF.WEB-DL.x264.DDP5.1-ADWeb.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Baki.Hanma.S02.2023.1080p.NF.WEB-DL.x264.DDP5.1-ADWeb/Baki.Hanma.S02E05.2023.1080p.NF.WEB-DL.x264.DDP5.1-ADWeb.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Baki.Hanma.S02.2023.1080p.NF.WEB-DL.x264.DDP5.1-ADWeb/Baki.Hanma.S02E02.2023.1080p.NF.WEB-DL.x264.DDP5.1-ADWeb.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Baki.Hanma.S02.2023.1080p.NF.WEB-DL.x264.DDP5.1-ADWeb/Baki.Hanma.S02E03.2023.1080p.NF.WEB-DL.x264.DDP5.1-ADWeb.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Baki.Hanma.S02.2023.1080p.NF.WEB-DL.x264.DDP5.1-ADWeb/Baki.Hanma.S02E01.2023.1080p.NF.WEB-DL.x264.DDP5.1-ADWeb.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 水屬性的魔法師 - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Laid-Back.Camp.The.Movie.2022.1080p.BluRay.x265.10bit-WiKi/Laid-Back.Camp.The.Movie.2022.1080p.BluRay.x265.10bit-WiKi.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 一拳超人(第三季) - 27 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 在地下城尋求邂逅是否搞錯了什麼 第五季 - 04 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 治癒魔法的錯誤使用法 - 12 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 機械臂 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Love.Death.and.Robots.S01.1080p.NF.WEB-DL.DDP5.1.x264-NTG/Love.Death.and.Robots.S01E12.Fish.Night.1080p.NF.WEB-DL.DDP5.1.x264-NTG.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Love.Death.and.Robots.S01.1080p.NF.WEB-DL.DDP5.1.x264-NTG/Love.Death.and.Robots.S01E14.Zima.Blue.1080p.NF.WEB-DL.DDP5.1.x264-NTG.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Love.Death.and.Robots.S01.1080p.NF.WEB-DL.DDP5.1.x264-NTG/Love.Death.and.Robots.S01E17.Alternate.Histories.1080p.NF.WEB-DL.DDP5.1.x264-NTG.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Love.Death.and.Robots.S01.1080p.NF.WEB-DL.DDP5.1.x264-NTG/Love.Death.and.Robots.S01E15.Blindspot.1080p.NF.WEB-DL.DDP5.1.x264-NTG.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Love.Death.and.Robots.S01.1080p.NF.WEB-DL.DDP5.1.x264-NTG/Love.Death.and.Robots.S01E10.Shape-Shifters.1080p.NF.WEB-DL.DDP5.1.x264-NTG.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Love.Death.and.Robots.S01.1080p.NF.WEB-DL.DDP5.1.x264-NTG/Love.Death.and.Robots.S01E16.Ice.Age.1080p.NF.WEB-DL.DDP5.1.x264-NTG.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Love.Death.and.Robots.S01.1080p.NF.WEB-DL.DDP5.1.x264-NTG/Love.Death.and.Robots.S01E02.Three.Robots.1080p.NF.WEB-DL.DDP5.1.x264-NTG.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Love.Death.and.Robots.S01.1080p.NF.WEB-DL.DDP5.1.x264-NTG/Love.Death.and.Robots.S01E08.Good.Hunting.1080p.NF.WEB-DL.DDP5.1.x264-NTG.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Love.Death.and.Robots.S01.1080p.NF.WEB-DL.DDP5.1.x264-NTG/Love.Death.and.Robots.S01E07.Beyond.the.Aquila.Rift.1080p.NF.WEB-DL.DDP5.1.x264-NTG.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Love.Death.and.Robots.S01.1080p.NF.WEB-DL.DDP5.1.x264-NTG/Love.Death.and.Robots.S01E04.Suits.1080p.NF.WEB-DL.DDP5.1.x264-NTG.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Love.Death.and.Robots.S01.1080p.NF.WEB-DL.DDP5.1.x264-NTG/Love.Death.and.Robots.S01E13.Lucky.13.1080p.NF.WEB-DL.DDP5.1.x264-NTG.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Love.Death.and.Robots.S01.1080p.NF.WEB-DL.DDP5.1.x264-NTG/Love.Death.and.Robots.S01E05.Sucker.of.Souls.1080p.NF.WEB-DL.DDP5.1.x264-NTG.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Love.Death.and.Robots.S01.1080p.NF.WEB-DL.DDP5.1.x264-NTG/Love.Death.and.Robots.S01E18.The.Secret.War.1080p.NF.WEB-DL.DDP5.1.x264-NTG.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Love.Death.and.Robots.S01.1080p.NF.WEB-DL.DDP5.1.x264-NTG/Love.Death.and.Robots.S01E06.When.the.Yogurt.Took.Over.1080p.NF.WEB-DL.DDP5.1.x264-NTG.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Love.Death.and.Robots.S01.1080p.NF.WEB-DL.DDP5.1.x264-NTG/Love.Death.and.Robots.S01E09.The.Dump.1080p.NF.WEB-DL.DDP5.1.x264-NTG.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Love.Death.and.Robots.S01.1080p.NF.WEB-DL.DDP5.1.x264-NTG/Love.Death.and.Robots.S01E03.The.Witness.1080p.NF.WEB-DL.DDP5.1.x264-NTG.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Love.Death.and.Robots.S01.1080p.NF.WEB-DL.DDP5.1.x264-NTG/Love.Death.and.Robots.S01E01.Sonnies.Edge.1080p.NF.WEB-DL.DDP5.1.x264-NTG.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Love.Death.and.Robots.S01.1080p.NF.WEB-DL.DDP5.1.x264-NTG/Love.Death.and.Robots.S01E11.Helping.Hand.1080p.NF.WEB-DL.DDP5.1.x264-NTG.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 最強肉盾的迷宮攻略~擁有稀少技能體力 9999 的肉盾,被勇者隊伍辭退了~ - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[orion origin] Isekai Meikyuu de Harem o [01-12] [WebRip] [1080p] [H265 AAC] [GB]/[orion origin] Isekai Meikyuu de Harem o [10] [1080p] [H265 AAC] [GB] .mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[orion origin] Isekai Meikyuu de Harem o [01-12] [WebRip] [1080p] [H265 AAC] [GB]/[orion origin] Isekai Meikyuu de Harem o [09v3] [1080p] [H265 AAC] [GB] .mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[orion origin] Isekai Meikyuu de Harem o [01-12] [WebRip] [1080p] [H265 AAC] [GB]/[orion origin] Isekai Meikyuu de Harem o [11] [1080p] [H265 AAC] [GB] .mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[orion origin] Isekai Meikyuu de Harem o [01-12] [WebRip] [1080p] [H265 AAC] [GB]/[orion origin] Isekai Meikyuu de Harem o [12] [END] [1080p] [H265 AAC] [GB] .mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[orion origin] Isekai Meikyuu de Harem o [01-12] [WebRip] [1080p] [H265 AAC] [GB]/[orion origin] Isekai Meikyuu de Harem o [02v2] [1080p] [H265 AAC] [GB] .mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[orion origin] Isekai Meikyuu de Harem o [01-12] [WebRip] [1080p] [H265 AAC] [GB]/[orion origin] Isekai Meikyuu de Harem o [01v2] [1080p] [H265 AAC] [GB] .mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[orion origin] Isekai Meikyuu de Harem o [01-12] [WebRip] [1080p] [H265 AAC] [GB]/[orion origin] Isekai Meikyuu de Harem o [08] [1080p] [H265 AAC] [GB] .mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[orion origin] Isekai Meikyuu de Harem o [01-12] [WebRip] [1080p] [H265 AAC] [GB]/[orion origin] Isekai Meikyuu de Harem o [05v2] [1080p] [H265 AAC] [GB] .mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[orion origin] Isekai Meikyuu de Harem o [01-12] [WebRip] [1080p] [H265 AAC] [GB]/[orion origin] Isekai Meikyuu de Harem o [03v3] [1080p] [H265 AAC] [GB] .mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[orion origin] Isekai Meikyuu de Harem o [01-12] [WebRip] [1080p] [H265 AAC] [GB]/[orion origin] Isekai Meikyuu de Harem o [04v2] [1080p] [H265 AAC] [GB] .mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[orion origin] Isekai Meikyuu de Harem o [01-12] [WebRip] [1080p] [H265 AAC] [GB]/[orion origin] Isekai Meikyuu de Harem o [06v2] [1080p] [H265 AAC] [GB] .mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[orion origin] Isekai Meikyuu de Harem o [01-12] [WebRip] [1080p] [H265 AAC] [GB]/[orion origin] Isekai Meikyuu de Harem o [07v2] [1080p] [H265 AAC] [GB] .mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 擁有超常技能的異世界流浪美食家 S2 - 23 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 永遠的黃昏 - 03 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 貫徹輔助魔法支援弱小隊友的宮廷魔法師,慘遭驅逐後目標成為最強冒險者 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] NUKITASHI 住在拔作島上的我該如何是好? [年齡限制版] - 05 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 瞬間治癒卻被當成廢物踢出隊伍的天才治療師,改當無照治療師快樂過活 - 12 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 當不成魔法師的女孩 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Yami Healer - 02 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 記憶縫線 YOUR FORMA - 05 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 勇氣爆發 BANG BRAVERN - 11 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 鬼人幻燈抄 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 香格里拉・開拓異境~糞作獵手挑戰神作~ - 17 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Eternal][Modaete yo, Adam-kun][07][GB][720P][Premium].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 葬送的芙莉蓮 - 17 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Kowloon Generic Romance - 09 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 忍者與殺手的兩人生活 - 08 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 一拳超人(第三季) - 00 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Nekomoe kissaten&LoliHouse] Sousou no Frieren - 17 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 結緣甘神神社 - 24 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] LAZARUS 拉撒路 - 06 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 瞬間治癒卻被當成廢物踢出隊伍的天才治療師,改當無照治療師快樂過活 - 09 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Nekomoe kissaten&LoliHouse] Kaii to Otome to Kamikakushi - 01 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Around 40 Otoko no Isekai Tsuuhan - 08 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 妻子變成小學生。 - 04 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Shin Samurai-den YAIBA - 09 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Shin no Nakama 2nd - 06 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 關於我轉生變成史萊姆這檔事 第三季 - 68 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 終末起點 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 水屬性的魔法師 - 07 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 結緣甘神神社 - 06 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[SAIO-Raws] Gekijouban Goblin Slayer Goblin's Crown [BD 1920x1080 HEVC-10bit OPUS]/[SAIO-Raws] Gekijouban Goblin Slayer Goblin's Crown [BD 1920x1080 HEVC-10bit OPUS].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] Re:從零開始的異世界生活 第三季 - 09 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 在地下城尋求邂逅是否搞錯了什麼 第五季 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 異世界悠閒紀行~邊養娃邊當冒險者~ - 10 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Skymoon-Raws] Kimetsu no Yaiba - Yuukaku-Hen - 08 [ViuTV][WEB-DL][CHT][1080p][AVC AAC][MP4+ASS]/[Skymoon-Raws] Kimetsu no Yaiba - Yuukaku-Hen - 08 [ViuTV][WEB-DL][1080p][AVC AAC].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Nekomoe kissaten][Tower of God S2][15][1080p][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Nekomoe kissaten][Ao no Hako][08][1080p][JPTC].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Tsue to Tsurugi no Wistoria - 07 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 咒術迴戰 死滅迴游 前篇 - 53 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Strange-Raw] Sentai Red Isekai de Boukensha ni Naru S01 [03] [Bilibili] [WEB-DL] [1080P AVC-8Bits AAC 2.0] [CHS_JPN].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 因為不是真正的夥伴而被逐出勇者隊伍,流落到邊境展開慢活人生 第二季(僅限港澳台地區) - 02 [1080P][Bilibili][WEB-DL][AAC AVC][CHT CHS].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Tensura Nikki - Tensei Shitara Slime Datta Ken [WebRip 1080p HEVC-10bit AAC]/[LoliHouse] Tensura Nikki - Tensei Shitara Slime Datta Ken - 11 [WebRip 1080p HEVC-10bit AAC SRTx3].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Tensura Nikki - Tensei Shitara Slime Datta Ken [WebRip 1080p HEVC-10bit AAC]/[LoliHouse] Tensura Nikki - Tensei Shitara Slime Datta Ken - 02 [WebRip 1080p HEVC-10bit AAC SRTx3].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Tensura Nikki - Tensei Shitara Slime Datta Ken [WebRip 1080p HEVC-10bit AAC]/[LoliHouse] Tensura Nikki - Tensei Shitara Slime Datta Ken - 06 [WebRip 1080p HEVC-10bit AAC SRTx3].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Tensura Nikki - Tensei Shitara Slime Datta Ken [WebRip 1080p HEVC-10bit AAC]/[LoliHouse] Tensura Nikki - Tensei Shitara Slime Datta Ken - 03 [WebRip 1080p HEVC-10bit AAC SRTx3].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Tensura Nikki - Tensei Shitara Slime Datta Ken [WebRip 1080p HEVC-10bit AAC]/[LoliHouse] Tensura Nikki - Tensei Shitara Slime Datta Ken - 07 [WebRip 1080p HEVC-10bit AAC SRTx3].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Tensura Nikki - Tensei Shitara Slime Datta Ken [WebRip 1080p HEVC-10bit AAC]/[LoliHouse] Tensura Nikki - Tensei Shitara Slime Datta Ken - 10 [WebRip 1080p HEVC-10bit AAC SRTx3].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Tensura Nikki - Tensei Shitara Slime Datta Ken [WebRip 1080p HEVC-10bit AAC]/[LoliHouse] Tensura Nikki - Tensei Shitara Slime Datta Ken - 01 [WebRip 1080p HEVC-10bit AAC SRTx3].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Tensura Nikki - Tensei Shitara Slime Datta Ken [WebRip 1080p HEVC-10bit AAC]/[LoliHouse] Tensura Nikki - Tensei Shitara Slime Datta Ken - 05 [WebRip 1080p HEVC-10bit AAC SRTx3].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Tensura Nikki - Tensei Shitara Slime Datta Ken [WebRip 1080p HEVC-10bit AAC]/[LoliHouse] Tensura Nikki - Tensei Shitara Slime Datta Ken - 09 [WebRip 1080p HEVC-10bit AAC SRTx3].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Tensura Nikki - Tensei Shitara Slime Datta Ken [WebRip 1080p HEVC-10bit AAC]/[LoliHouse] Tensura Nikki - Tensei Shitara Slime Datta Ken - 12 [WebRip 1080p HEVC-10bit AAC SRTx3].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Tensura Nikki - Tensei Shitara Slime Datta Ken [WebRip 1080p HEVC-10bit AAC]/[LoliHouse] Tensura Nikki - Tensei Shitara Slime Datta Ken - 08 [WebRip 1080p HEVC-10bit AAC SRTx3].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Tensura Nikki - Tensei Shitara Slime Datta Ken [WebRip 1080p HEVC-10bit AAC]/[LoliHouse] Tensura Nikki - Tensei Shitara Slime Datta Ken - 04 [WebRip 1080p HEVC-10bit AAC SRTx3].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Nekomoe kissaten][Boku no Kokoro no Yabai Yatsu][20][1080p][JPSC].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Katainaka no Ossan, Kensei ni Naru - 11 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 刀劍神域外傳 Gun Gale Online II - 06 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[BeanSub&FZSD][Jigokuraku][16][GB][1080P][x264_AAC].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] Re:從零開始的異世界生活 第三季 - 12 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 離開 A 級隊伍的我,和從前的弟子往迷宮深處邁進 - 07 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 香格里拉・開拓異境~糞作獵手挑戰神作~ 第二季 - 04 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 結緣甘神神社 - 21 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] LAZARUS 拉撒路 - 03 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 孤單一人的異世界攻略 - 05 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Nekomoe kissaten&LoliHouse] BURN THE WITCH - 0.8 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Nekomoe kissaten][Ao no Hako][18][1080p][JPSC].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 妻子變成小學生。 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 鬼滅之刃 柱訓練篇 - 05 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 杖與劍的魔劍譚 - 10 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 永遠的黃昏 - 06 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 地下城中的人 - 10 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 貫徹輔助魔法支援弱小隊友的宮廷魔法師,慘遭驅逐後目標成為最強冒險者 - 04 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Amagami-san Chi no Enmusubi - 14 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 魔都精兵的奴隸 第二季 - 04 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Nekomoe kissaten][Ninja Kamui][11][1080p][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Sakurato] Ookami to Koushinryou:Merchant Meets the Wise Wolf [01][AVC-8bit 1080p AAC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Nekomoe kissaten][Tower of God S2][22][1080p][CHS].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Nekomoe kissaten&LoliHouse] Ao no Hako - 19 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Nekomoe kissaten][Silent Witch - Chinmoku no Majo no Kakushigoto][02][1080p][JPTC].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Nekomoe kissaten][Ao no Hako][16][1080p][JPTC].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[DMG&LoliHouse] Senpai ga Uzai Kouhai no Hanashi - [01-12][WebRip 1080p HEVC-10bit AAC ASSx2]/[DMG&LoliHouse] Senpai ga Uzai Kouhai no Hanashi - 01 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[DMG&LoliHouse] Senpai ga Uzai Kouhai no Hanashi - [01-12][WebRip 1080p HEVC-10bit AAC ASSx2]/[DMG&LoliHouse] Senpai ga Uzai Kouhai no Hanashi - 05 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[DMG&LoliHouse] Senpai ga Uzai Kouhai no Hanashi - [01-12][WebRip 1080p HEVC-10bit AAC ASSx2]/[DMG&LoliHouse] Senpai ga Uzai Kouhai no Hanashi - 12 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[DMG&LoliHouse] Senpai ga Uzai Kouhai no Hanashi - [01-12][WebRip 1080p HEVC-10bit AAC ASSx2]/[DMG&LoliHouse] Senpai ga Uzai Kouhai no Hanashi - 09 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[DMG&LoliHouse] Senpai ga Uzai Kouhai no Hanashi - [01-12][WebRip 1080p HEVC-10bit AAC ASSx2]/[DMG&LoliHouse] Senpai ga Uzai Kouhai no Hanashi - 08 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[DMG&LoliHouse] Senpai ga Uzai Kouhai no Hanashi - [01-12][WebRip 1080p HEVC-10bit AAC ASSx2]/[DMG&LoliHouse] Senpai ga Uzai Kouhai no Hanashi - 04 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[DMG&LoliHouse] Senpai ga Uzai Kouhai no Hanashi - [01-12][WebRip 1080p HEVC-10bit AAC ASSx2]/[DMG&LoliHouse] Senpai ga Uzai Kouhai no Hanashi - 11 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[DMG&LoliHouse] Senpai ga Uzai Kouhai no Hanashi - [01-12][WebRip 1080p HEVC-10bit AAC ASSx2]/[DMG&LoliHouse] Senpai ga Uzai Kouhai no Hanashi - 02 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[DMG&LoliHouse] Senpai ga Uzai Kouhai no Hanashi - [01-12][WebRip 1080p HEVC-10bit AAC ASSx2]/[DMG&LoliHouse] Senpai ga Uzai Kouhai no Hanashi - 06 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[DMG&LoliHouse] Senpai ga Uzai Kouhai no Hanashi - [01-12][WebRip 1080p HEVC-10bit AAC ASSx2]/[DMG&LoliHouse] Senpai ga Uzai Kouhai no Hanashi - 03 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[DMG&LoliHouse] Senpai ga Uzai Kouhai no Hanashi - [01-12][WebRip 1080p HEVC-10bit AAC ASSx2]/[DMG&LoliHouse] Senpai ga Uzai Kouhai no Hanashi - 07 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[DMG&LoliHouse] Senpai ga Uzai Kouhai no Hanashi - [01-12][WebRip 1080p HEVC-10bit AAC ASSx2]/[DMG&LoliHouse] Senpai ga Uzai Kouhai no Hanashi - 10 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[KitaujiSub&LoliHouse] SAKAMOTO DAYS - 01 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Moonrise.S01.2025.1080p.NF.WEB-DL.H.264.DDP.5.1-FROGWeb/Moonrise.S01E10.2025.1080p.NF.WEB-DL.H.264.DDP.5.1-FROGWeb.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Moonrise.S01.2025.1080p.NF.WEB-DL.H.264.DDP.5.1-FROGWeb/Moonrise.S01E03.2025.1080p.NF.WEB-DL.H.264.DDP.5.1-FROGWeb.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Moonrise.S01.2025.1080p.NF.WEB-DL.H.264.DDP.5.1-FROGWeb/Moonrise.S01E04.2025.1080p.NF.WEB-DL.H.264.DDP.5.1-FROGWeb.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Moonrise.S01.2025.1080p.NF.WEB-DL.H.264.DDP.5.1-FROGWeb/Moonrise.S01E17.2025.1080p.NF.WEB-DL.H.264.DDP.5.1-FROGWeb.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Moonrise.S01.2025.1080p.NF.WEB-DL.H.264.DDP.5.1-FROGWeb/Moonrise.S01E09.2025.1080p.NF.WEB-DL.H.264.DDP.5.1-FROGWeb.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Moonrise.S01.2025.1080p.NF.WEB-DL.H.264.DDP.5.1-FROGWeb/Moonrise.S01E13.2025.1080p.NF.WEB-DL.H.264.DDP.5.1-FROGWeb.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Moonrise.S01.2025.1080p.NF.WEB-DL.H.264.DDP.5.1-FROGWeb/Moonrise.S01E14.2025.1080p.NF.WEB-DL.H.264.DDP.5.1-FROGWeb.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Moonrise.S01.2025.1080p.NF.WEB-DL.H.264.DDP.5.1-FROGWeb/Moonrise.S01E07.2025.1080p.NF.WEB-DL.H.264.DDP.5.1-FROGWeb.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Moonrise.S01.2025.1080p.NF.WEB-DL.H.264.DDP.5.1-FROGWeb/Moonrise.S01E08.2025.1080p.NF.WEB-DL.H.264.DDP.5.1-FROGWeb.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Moonrise.S01.2025.1080p.NF.WEB-DL.H.264.DDP.5.1-FROGWeb/Moonrise.S01E16.2025.1080p.NF.WEB-DL.H.264.DDP.5.1-FROGWeb.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Moonrise.S01.2025.1080p.NF.WEB-DL.H.264.DDP.5.1-FROGWeb/Moonrise.S01E05.2025.1080p.NF.WEB-DL.H.264.DDP.5.1-FROGWeb.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Moonrise.S01.2025.1080p.NF.WEB-DL.H.264.DDP.5.1-FROGWeb/Moonrise.S01E02.2025.1080p.NF.WEB-DL.H.264.DDP.5.1-FROGWeb.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Moonrise.S01.2025.1080p.NF.WEB-DL.H.264.DDP.5.1-FROGWeb/Moonrise.S01E11.2025.1080p.NF.WEB-DL.H.264.DDP.5.1-FROGWeb.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Moonrise.S01.2025.1080p.NF.WEB-DL.H.264.DDP.5.1-FROGWeb/Moonrise.S01E18.2025.1080p.NF.WEB-DL.H.264.DDP.5.1-FROGWeb.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Moonrise.S01.2025.1080p.NF.WEB-DL.H.264.DDP.5.1-FROGWeb/Moonrise.S01E06.2025.1080p.NF.WEB-DL.H.264.DDP.5.1-FROGWeb.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Moonrise.S01.2025.1080p.NF.WEB-DL.H.264.DDP.5.1-FROGWeb/Moonrise.S01E15.2025.1080p.NF.WEB-DL.H.264.DDP.5.1-FROGWeb.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Moonrise.S01.2025.1080p.NF.WEB-DL.H.264.DDP.5.1-FROGWeb/Moonrise.S01E12.2025.1080p.NF.WEB-DL.H.264.DDP.5.1-FROGWeb.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Moonrise.S01.2025.1080p.NF.WEB-DL.H.264.DDP.5.1-FROGWeb/Moonrise.S01E01.2025.1080p.NF.WEB-DL.H.264.DDP.5.1-FROGWeb.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 轉生貴族憑鑑定技能扭轉人生 第二季 - 14 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[BeanSub&FZSD][BLEACH_Sennen_Kessen-hen][35][GB][1080P][x264_AAC].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Nekomoe kissaten][Ninja Kamui][04][1080p][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Nekomoe kissaten&LoliHouse] Ao no Hako - 02 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 最近的偵探真沒用 - 05 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Snack Basue - 01 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 膽大黨 - 05 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[BDrip] Solo Leveling S01 [7³ACG]/Solo Leveling S01E03-[1080p][BDRIP][x265.FLAC].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[BDrip] Solo Leveling S01 [7³ACG]/Solo Leveling S01E05-[1080p][BDRIP][x265.FLAC].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[BDrip] Solo Leveling S01 [7³ACG]/Solo Leveling S01E09-[1080p][BDRIP][x265.FLAC].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[BDrip] Solo Leveling S01 [7³ACG]/NCED.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[BDrip] Solo Leveling S01 [7³ACG]/Solo Leveling S01E12-[1080p][BDRIP][x265.FLAC].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[BDrip] Solo Leveling S01 [7³ACG]/Solo Leveling S01E02-[1080p][BDRIP][x265.FLAC].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[BDrip] Solo Leveling S01 [7³ACG]/Solo Leveling S01E04-[1080p][BDRIP][x265.FLAC].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[BDrip] Solo Leveling S01 [7³ACG]/Solo Leveling S01E08-[1080p][BDRIP][x265.FLAC].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[BDrip] Solo Leveling S01 [7³ACG]/Solo Leveling S01E01-[1080p][BDRIP][x265.FLAC].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[BDrip] Solo Leveling S01 [7³ACG]/NCOP.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[BDrip] Solo Leveling S01 [7³ACG]/Solo Leveling S01E07-[1080p][BDRIP][x265.FLAC].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[BDrip] Solo Leveling S01 [7³ACG]/Solo Leveling S01E10-[1080p][BDRIP][x265.FLAC].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[BDrip] Solo Leveling S01 [7³ACG]/Solo Leveling S01E06-[1080p][BDRIP][x265.FLAC].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[BDrip] Solo Leveling S01 [7³ACG]/Solo Leveling S01E11-[1080p][BDRIP][x265.FLAC].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Airota&LoliHouse] Hibike! Euphonium 3 - 01 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 歲月流逝飯菜依舊美味 - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Nekomoe kissaten][Zoku Owarimonogatari][Commentary][01-06END][720p]/[Nekomoe kissaten][Zoku Owarimonogatari][Commentary][06][720p][x264_aac][chs].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Nekomoe kissaten][Zoku Owarimonogatari][Commentary][01-06END][720p]/[Nekomoe kissaten][Zoku Owarimonogatari][Commentary][02][720p][x264_aac][cht].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Nekomoe kissaten][Zoku Owarimonogatari][Commentary][01-06END][720p]/[Nekomoe kissaten][Zoku Owarimonogatari][Commentary][05][720p][x264_aac][chs].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Nekomoe kissaten][Zoku Owarimonogatari][Commentary][01-06END][720p]/[Nekomoe kissaten][Zoku Owarimonogatari][Commentary][01][720p][x264_aac][cht].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Nekomoe kissaten][Zoku Owarimonogatari][Commentary][01-06END][720p]/[Nekomoe kissaten][Zoku Owarimonogatari][Commentary][04][720p][x264_aac][cht].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Nekomoe kissaten][Zoku Owarimonogatari][Commentary][01-06END][720p]/[Nekomoe kissaten][Zoku Owarimonogatari][Commentary][03][720p][x264_aac][chs].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Nekomoe kissaten][Zoku Owarimonogatari][Commentary][01-06END][720p]/[Nekomoe kissaten][Zoku Owarimonogatari][Commentary][03][720p][x264_aac][cht].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Nekomoe kissaten][Zoku Owarimonogatari][Commentary][01-06END][720p]/[Nekomoe kissaten][Zoku Owarimonogatari][Commentary][04][720p][x264_aac][chs].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Nekomoe kissaten][Zoku Owarimonogatari][Commentary][01-06END][720p]/[Nekomoe kissaten][Zoku Owarimonogatari][Commentary][05][720p][x264_aac][cht].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Nekomoe kissaten][Zoku Owarimonogatari][Commentary][01-06END][720p]/[Nekomoe kissaten][Zoku Owarimonogatari][Commentary][01][720p][x264_aac][chs].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Nekomoe kissaten][Zoku Owarimonogatari][Commentary][01-06END][720p]/[Nekomoe kissaten][Zoku Owarimonogatari][Commentary][06][720p][x264_aac][cht].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Nekomoe kissaten][Zoku Owarimonogatari][Commentary][01-06END][720p]/[Nekomoe kissaten][Zoku Owarimonogatari][Commentary][02][720p][x264_aac][chs].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Lilith-Raws] Rinkai! - 04 [Baha][WebDL 1080p AVC AAC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 靠廢柴技能【狀態異常】成為最強的我將蹂躪一切 - 11 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[orion origin] Zom 100:Zombie ni Naru made ni Shitai 100 no Koto [12] [END] [1080p] [H265 AAC] [CHS&JPN].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Kakushite! Makina-san!! - 05 [WebRip 1080p HEVC-10bit AAC].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 輝夜姬想讓人告白 邁向大人的階梯 - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 最後可以再拜託您一件事嗎? - 05 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 我與尼特女忍者的莫名同居生活 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[KitaujiSub] Ao no Hako [10][WebRip][HEVC_AAC][CHS_JP].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Class no Daikirai na Joshi to Kekkon suru Koto ni Natta. - 12 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Ghost.in.the.Shell.SAC.The.Laughing.Man.2005.1080p.BluRay.x265.10bit-WiKi/Ghost.in.the.Shell.SAC.The.Laughing.Man.2005.1080p.BluRay.x265.10bit-WiKi.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Sword Art Online Alternative - Gun Gale Online II - 07 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] WIND BREAKER—防風少年— - 08 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Comicat&KissSub][Kanojo, Okarishimasu 2][01-12][BIG5][MP4]/[Comicat&KissSub][Kanojo, Okarishimasu][23][1080P][BIG5][MP4].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Comicat&KissSub][Kanojo, Okarishimasu 2][01-12][BIG5][MP4]/[Comicat&KissSub][Kanojo, Okarishimasu][22][1080P][BIG5][MP4].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Comicat&KissSub][Kanojo, Okarishimasu 2][01-12][BIG5][MP4]/[Comicat&KissSub][Kanojo, Okarishimasu][19][1080P][BIG5][MP4].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Comicat&KissSub][Kanojo, Okarishimasu 2][01-12][BIG5][MP4]/[Comicat&KissSub][Kanojo, Okarishimasu][20][1080P][BIG5][MP4].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Comicat&KissSub][Kanojo, Okarishimasu 2][01-12][BIG5][MP4]/[Comicat&KissSub][Kanojo, Okarishimasu][21][1080P][BIG5][MP4].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Comicat&KissSub][Kanojo, Okarishimasu 2][01-12][BIG5][MP4]/[Comicat&KissSub][Kanojo, Okarishimasu][18][1080P][BIG5][MP4].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Comicat&KissSub][Kanojo, Okarishimasu 2][01-12][BIG5][MP4]/[Comicat&KissSub][Kanojo, Okarishimasu][13][1080P][BIG5][MP4].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Comicat&KissSub][Kanojo, Okarishimasu 2][01-12][BIG5][MP4]/[Comicat&KissSub][Kanojo, Okarishimasu][17][1080P][BIG5][MP4].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Comicat&KissSub][Kanojo, Okarishimasu 2][01-12][BIG5][MP4]/[Comicat&KissSub][Kanojo, Okarishimasu][16][1080P][BIG5][MP4].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Comicat&KissSub][Kanojo, Okarishimasu 2][01-12][BIG5][MP4]/[Comicat&KissSub][Kanojo, Okarishimasu][24][1080P][BIG5][MP4].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Comicat&KissSub][Kanojo, Okarishimasu 2][01-12][BIG5][MP4]/[Comicat&KissSub][Kanojo, Okarishimasu][14][1080P][BIG5][MP4].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Comicat&KissSub][Kanojo, Okarishimasu 2][01-12][BIG5][MP4]/[Comicat&KissSub][Kanojo, Okarishimasu][15][1080P][BIG5][MP4].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 新人大叔冒險者,被最強隊伍操到死成無敵 - 07 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Nekomoe kissaten][Ao no Hako][13][1080p][JPSC].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Hitoribocchi no Isekai Kouryaku - 03 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Skymoon-Raws] Mushoku Tensei 2nd Season - 04 [ViuTV][WEB-DL][CHT][1080p][AVC AAC][MP4+ASS]/[Skymoon-Raws] Mushoku Tensei 2nd Season - 04 [ViuTV][WEB-DL][1080p][AVC AAC].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 使人誤解的工房主~關於原英雄隊伍的雜役人員,實際上除了戰鬥能力外全是SSS的故事~ - 08 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 我要【招架】一切~反誤解的世界最強想成為冒險家~ - 05 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[KTXP][Great_Pretender][01-23][BIG5][720p]/[KTXP][Great_Pretender][11][BIG5][720p].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[KTXP][Great_Pretender][01-23][BIG5][720p]/[KTXP][Great_Pretender][04][BIG5][720p].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[KTXP][Great_Pretender][01-23][BIG5][720p]/[KTXP][Great_Pretender][10][BIG5][720p].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[KTXP][Great_Pretender][01-23][BIG5][720p]/[KTXP][Great_Pretender][05][BIG5][720p].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[KTXP][Great_Pretender][01-23][BIG5][720p]/[KTXP][Great_Pretender][06][BIG5][720p].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[KTXP][Great_Pretender][01-23][BIG5][720p]/[KTXP][Great_Pretender][13][BIG5][720p].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[KTXP][Great_Pretender][01-23][BIG5][720p]/[KTXP][Great_Pretender][07][BIG5][720p].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[KTXP][Great_Pretender][01-23][BIG5][720p]/[KTXP][Great_Pretender][12][BIG5][720p].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[KTXP][Great_Pretender][01-23][BIG5][720p]/[KTXP][Great_Pretender][14][BIG5][720p].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[KTXP][Great_Pretender][01-23][BIG5][720p]/[KTXP][Great_Pretender][01][BIG5][720p].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[KTXP][Great_Pretender][01-23][BIG5][720p]/[KTXP][Great_Pretender][15][BIG5][720p].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[KTXP][Great_Pretender][01-23][BIG5][720p]/[KTXP][Great_Pretender][03][BIG5][720p].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[KTXP][Great_Pretender][01-23][BIG5][720p]/[KTXP][Great_Pretender][16][BIG5][720p].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[KTXP][Great_Pretender][01-23][BIG5][720p]/[KTXP][Great_Pretender][02][BIG5][720p].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[KTXP][Great_Pretender][01-23][BIG5][720p]/[KTXP][Great_Pretender][17][BIG5][720p].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[KTXP][Great_Pretender][01-23][BIG5][720p]/[KTXP][Great_Pretender][19][BIG5][720p].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[KTXP][Great_Pretender][01-23][BIG5][720p]/[KTXP][Great_Pretender][18][BIG5][720p].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[KTXP][Great_Pretender][01-23][BIG5][720p]/[KTXP][Great_Pretender][20][BIG5][720p].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[KTXP][Great_Pretender][01-23][BIG5][720p]/[KTXP][Great_Pretender][21][BIG5][720p].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[KTXP][Great_Pretender][01-23][BIG5][720p]/[KTXP][Great_Pretender][09][BIG5][720p].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[KTXP][Great_Pretender][01-23][BIG5][720p]/[KTXP][Great_Pretender][22][BIG5][720p].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[KTXP][Great_Pretender][01-23][BIG5][720p]/[KTXP][Great_Pretender][08][BIG5][720p].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[KTXP][Great_Pretender][01-23][BIG5][720p]/[KTXP][Great_Pretender][23][BIG5][720p].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] Silent Witch 沉默魔女的祕密 - 13 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Nekomoe kissaten][Hibi wa Sugiredo Meshi Umashi][01][1080p][JPSC].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Nekomoe kissaten][Kanpekiseijo][05][1080p][JPSC].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Nekomoe kissaten][Dosanko Gal wa Namara Menkoi][10][1080p][JPTC].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 我獨自升級 - 04 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[HYSUB]Free! -Road to the World- Yume[BDrip][BIG5_MP4][1280X720][GER.ver]/[HYSUB]Free! -Road to the World- Yume[BDrip][BIG5_MP4][1280X720][GER.ver].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[HYSUB]Free! -Road to the World- Yume[BDrip][BIG5_MP4][1280X720][GER.ver]/EXTRA/[HYSUB]Free! -Road to the World- Yume[CREDIT][MP4][1280X720][GER.ver].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Tensei Kizoku, Kantei Skill de Nariagaru - 01 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Skymoon-Raws] Shin Samurai-den YAIBA - 01 [ViuTV][WEB-DL][CHT][SRT][1080p][AVC AAC].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[BeanSub&FZSD][Jujutsu_Kaisen][50][GB][1080P][x264_AAC].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[orion origin] Wind Breaker [02] [1080p] [H265 AAC] [CHT&JPN].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] Silent Witch 沉默魔女的祕密 - 08 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Nekomoe kissaten][Dosanko Gal wa Namara Menkoi][05][1080p][JPTC].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Skymoon-Raws] Shin Samurai-den YAIBA - 02 [ViuTV][WEB-DL][CHT][SRT][1080p][AVC AAC].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Skymoon-Raws] Shingeki no Kyojin - The Final Season - 19 [ViuTV][WEB-DL][CHT][1080p][AVC AAC][MP4+ASS]/[Skymoon-Raws] Shingeki no Kyojin - The Final Season - 19 [ViuTV][WEB-DL][1080p][AVC AAC].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Mabors] Ookami to Koushinryou - Merchant Meets the Wise Wolf - 01 [1080p][HEVC].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Nekomoe kissaten&LoliHouse] Ao no Hako - 06 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 最近的偵探真沒用 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Nekomoe kissaten][Ninja Kamui][10][1080p][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 無職英雄:技能什麼的毫無用處 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 我獨自升級 第二季 -起於闇影- - 23 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[BeanSub&FZSD][BLEACH_Sennen_Kessen-hen][27][BIG5][1080P][x264_AAC].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Izure Saikyou no Renkinjutsushi - 11 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] Re:Monster - 09 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Skymoon-Raws] Mashle - 12 [ViuTV][WEB-DL][CHT][1080p][AVC AAC][MP4+ASS]/[Skymoon-Raws] Mashle - 12 [ViuTV][WEB-DL][1080p][AVC AAC].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Kamigami] Haikyuu!! S2 [BD 1080p x265 Ma10p AAC]/[Kamigami] Haikyuu!! S2 - 22 [BD 1080p x265 Ma10p AAC].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Kamigami] Haikyuu!! S2 [BD 1080p x265 Ma10p AAC]/[Kamigami] Haikyuu!! S2 - 01 [BD 1080p x265 Ma10p AAC].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Kamigami] Haikyuu!! S2 [BD 1080p x265 Ma10p AAC]/[Kamigami] Haikyuu!! S2 - 24 [BD 1080p x265 Ma10p AAC].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Kamigami] Haikyuu!! S2 [BD 1080p x265 Ma10p AAC]/[Kamigami] Haikyuu!! S2 - 07 [BD 1080p x265 Ma10p AAC].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Kamigami] Haikyuu!! S2 [BD 1080p x265 Ma10p AAC]/[Kamigami] Haikyuu!! S2 - 10 [BD 1080p x265 Ma10p AAC].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Kamigami] Haikyuu!! S2 [BD 1080p x265 Ma10p AAC]/[Kamigami] Haikyuu!! S2 - 16 [BD 1080p x265 Ma10p AAC].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Kamigami] Haikyuu!! S2 [BD 1080p x265 Ma10p AAC]/[Kamigami] Haikyuu!! S2 - 23 [BD 1080p x265 Ma10p AAC].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Kamigami] Haikyuu!! S2 [BD 1080p x265 Ma10p AAC]/[Kamigami] Haikyuu!! S2 - 25 [BD 1080p x265 Ma10p AAC].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Kamigami] Haikyuu!! S2 [BD 1080p x265 Ma10p AAC]/[Kamigami] Haikyuu!! S2 - 06 [BD 1080p x265 Ma10p AAC].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Kamigami] Haikyuu!! S2 [BD 1080p x265 Ma10p AAC]/[Kamigami] Haikyuu!! S2 - 11 [BD 1080p x265 Ma10p AAC].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Kamigami] Haikyuu!! S2 [BD 1080p x265 Ma10p AAC]/[Kamigami] Haikyuu!! S2 - 17 [BD 1080p x265 Ma10p AAC].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Kamigami] Haikyuu!! S2 [BD 1080p x265 Ma10p AAC]/[Kamigami] Haikyuu!! S2 - 18 [BD 1080p x265 Ma10p AAC].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Kamigami] Haikyuu!! S2 [BD 1080p x265 Ma10p AAC]/[Kamigami] Haikyuu!! S2 - 03 [BD 1080p x265 Ma10p AAC].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Kamigami] Haikyuu!! S2 [BD 1080p x265 Ma10p AAC]/[Kamigami] Haikyuu!! S2 - 20 [BD 1080p x265 Ma10p AAC].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Kamigami] Haikyuu!! S2 [BD 1080p x265 Ma10p AAC]/[Kamigami] Haikyuu!! S2 - 05 [BD 1080p x265 Ma10p AAC].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Kamigami] Haikyuu!! S2 [BD 1080p x265 Ma10p AAC]/[Kamigami] Haikyuu!! S2 - 09 [BD 1080p x265 Ma10p AAC].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Kamigami] Haikyuu!! S2 [BD 1080p x265 Ma10p AAC]/[Kamigami] Haikyuu!! S2 - 12 [BD 1080p x265 Ma10p AAC].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Kamigami] Haikyuu!! S2 [BD 1080p x265 Ma10p AAC]/[Kamigami] Haikyuu!! S2 - 14 [BD 1080p x265 Ma10p AAC].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Kamigami] Haikyuu!! S2 [BD 1080p x265 Ma10p AAC]/[Kamigami] Haikyuu!! S2 - 19 [BD 1080p x265 Ma10p AAC].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Kamigami] Haikyuu!! S2 [BD 1080p x265 Ma10p AAC]/[Kamigami] Haikyuu!! S2 - 02 [BD 1080p x265 Ma10p AAC].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Kamigami] Haikyuu!! S2 [BD 1080p x265 Ma10p AAC]/[Kamigami] Haikyuu!! S2 - 21 [BD 1080p x265 Ma10p AAC].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Kamigami] Haikyuu!! S2 [BD 1080p x265 Ma10p AAC]/[Kamigami] Haikyuu!! S2 - 04 [BD 1080p x265 Ma10p AAC].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Kamigami] Haikyuu!! S2 [BD 1080p x265 Ma10p AAC]/Bonus/[Kamigami] Haikyuu!! S2 - NCOP2 [BD 1080p x265 Ma10p AAC].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Kamigami] Haikyuu!! S2 [BD 1080p x265 Ma10p AAC]/Bonus/[Kamigami] Haikyuu!! S2 - NCED1 [BD 1080p x265 Ma10p AAC].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Kamigami] Haikyuu!! S2 [BD 1080p x265 Ma10p AAC]/Bonus/[Kamigami] Haikyuu!! S2 - NCED2 [BD 1080p x265 Ma10p AAC].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Kamigami] Haikyuu!! S2 [BD 1080p x265 Ma10p AAC]/Bonus/[Kamigami] Haikyuu!! S2 - NCOP1 [BD 1080p x265 Ma10p AAC].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Kamigami] Haikyuu!! S2 [BD 1080p x265 Ma10p AAC]/[Kamigami] Haikyuu!! S2 - 08 [BD 1080p x265 Ma10p AAC].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Kamigami] Haikyuu!! S2 [BD 1080p x265 Ma10p AAC]/[Kamigami] Haikyuu!! S2 - 13 [BD 1080p x265 Ma10p AAC].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Kamigami] Haikyuu!! S2 [BD 1080p x265 Ma10p AAC]/[Kamigami] Haikyuu!! S2 - 15 [BD 1080p x265 Ma10p AAC].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 素材採集家的異世界旅行記 - 09 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Skymoon-Raws] Shin Samurai-den YAIBA - 04 [ViuTV][WEB-DL][CHT][SRT][1080p][AVC AAC].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[orion origin] Saikyou Tank no Meikyuu Kouryaku [07] [1080p] [H265 AAC] [CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Skymoon-Raws] Mushoku Tensei - 24 [ViuTV][WEB-DL][CHT][1080p][AVC AAC][MP4+ASS]/[Skymoon-Raws] Mushoku Tensei - 24 [ViuTV][WEB-DL][1080p][AVC AAC].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 我和班上最討厭的女生結婚了。 - 09 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 最後可以再拜託您一件事嗎? - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 我與尼特女忍者的莫名同居生活 - 05 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Suzu-Kaze&POPGO][Dorohedoro][01-12+OVA][BDRip_1080P][X265_Main10p]/[Suzu-Kaze&POPGO][Dorohedoro][NCED2][BDRip_1080P][X265_Main10p_Flac](0D6039AE).mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Suzu-Kaze&POPGO][Dorohedoro][01-12+OVA][BDRip_1080P][X265_Main10p]/[Suzu-Kaze&POPGO][Dorohedoro][CM03][BDRip_1080P][X265_Main10p_Flac](FCF167C2).mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Suzu-Kaze&POPGO][Dorohedoro][01-12+OVA][BDRip_1080P][X265_Main10p]/[Suzu-Kaze&POPGO][Dorohedoro][08][BDRip_1080P][X265_Main10p_Flac_Chap](4A5CFA78).mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Suzu-Kaze&POPGO][Dorohedoro][01-12+OVA][BDRip_1080P][X265_Main10p]/[Suzu-Kaze&POPGO][Dorohedoro][NCED1_V2][BDRip_1080P][X265_Main10p_Flac](9415B2B4).mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Suzu-Kaze&POPGO][Dorohedoro][01-12+OVA][BDRip_1080P][X265_Main10p]/[Suzu-Kaze&POPGO][Dorohedoro][CM04][BDRip_1080P][X265_Main10p_Flac](54DE0D17).mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Suzu-Kaze&POPGO][Dorohedoro][01-12+OVA][BDRip_1080P][X265_Main10p]/[Suzu-Kaze&POPGO][Dorohedoro][11][BDRip_1080P][X265_Main10p_Flac_Chap](18087804).mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Suzu-Kaze&POPGO][Dorohedoro][01-12+OVA][BDRip_1080P][X265_Main10p]/[Suzu-Kaze&POPGO][Dorohedoro][CM07][BDRip_1080P][X265_Main10p_Flac](FD280ABF).mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Suzu-Kaze&POPGO][Dorohedoro][01-12+OVA][BDRip_1080P][X265_Main10p]/[Suzu-Kaze&POPGO][Dorohedoro][05][BDRip_1080P][X265_Main10p_Flac_Chap](3893156C).mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Suzu-Kaze&POPGO][Dorohedoro][01-12+OVA][BDRip_1080P][X265_Main10p]/[Suzu-Kaze&POPGO][Dorohedoro][09][BDRip_1080P][X265_Main10p_Flac_Chap](5E350022).mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Suzu-Kaze&POPGO][Dorohedoro][01-12+OVA][BDRip_1080P][X265_Main10p]/[Suzu-Kaze&POPGO][Dorohedoro][03][BDRip_1080P][X265_Main10p_Flac_Chap](E230AFE4).mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Suzu-Kaze&POPGO][Dorohedoro][01-12+OVA][BDRip_1080P][X265_Main10p]/[Suzu-Kaze&POPGO][Dorohedoro][NCED1_V1][BDRip_1080P][X265_Main10p_Flac](EDC4435B).mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Suzu-Kaze&POPGO][Dorohedoro][01-12+OVA][BDRip_1080P][X265_Main10p]/[Suzu-Kaze&POPGO][Dorohedoro][01][BDRip_1080P][X265_Main10p_Flac_Chap](DA256438).mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Suzu-Kaze&POPGO][Dorohedoro][01-12+OVA][BDRip_1080P][X265_Main10p]/[Suzu-Kaze&POPGO][Dorohedoro][04][BDRip_1080P][X265_Main10p_Flac_Chap](45C8EE0A).mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Suzu-Kaze&POPGO][Dorohedoro][01-12+OVA][BDRip_1080P][X265_Main10p]/[Suzu-Kaze&POPGO][Dorohedoro][12FIN][BDRip_1080P][X265_Main10p_Flac_Chap](A7595605).mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Suzu-Kaze&POPGO][Dorohedoro][01-12+OVA][BDRip_1080P][X265_Main10p]/[Suzu-Kaze&POPGO][Dorohedoro][OVA][BDRip_1080P][X265_Main10p_Flac_Chap](ABE325F9).mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Suzu-Kaze&POPGO][Dorohedoro][01-12+OVA][BDRip_1080P][X265_Main10p]/[Suzu-Kaze&POPGO][Dorohedoro][NCED3][BDRip_1080P][X265_Main10p_Flac](E090A971).mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Suzu-Kaze&POPGO][Dorohedoro][01-12+OVA][BDRip_1080P][X265_Main10p]/[Suzu-Kaze&POPGO][Dorohedoro][NCED4][BDRip_1080P][X265_Main10p_Flac](D1063420).mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Suzu-Kaze&POPGO][Dorohedoro][01-12+OVA][BDRip_1080P][X265_Main10p]/[Suzu-Kaze&POPGO][Dorohedoro][CM02][BDRip_1080P][X265_Main10p_Flac](1C0E5914).mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Suzu-Kaze&POPGO][Dorohedoro][01-12+OVA][BDRip_1080P][X265_Main10p]/[Suzu-Kaze&POPGO][Dorohedoro][10][BDRip_1080P][X265_Main10p_Flac_Chap](59036AFC).mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Suzu-Kaze&POPGO][Dorohedoro][01-12+OVA][BDRip_1080P][X265_Main10p]/[Suzu-Kaze&POPGO][Dorohedoro][02][BDRip_1080P][X265_Main10p_Flac_Chap](B61E145F).mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Suzu-Kaze&POPGO][Dorohedoro][01-12+OVA][BDRip_1080P][X265_Main10p]/[Suzu-Kaze&POPGO][Dorohedoro][NCOP][BDRip_1080P][X265_Main10p_Flac](9E15AF32).mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Suzu-Kaze&POPGO][Dorohedoro][01-12+OVA][BDRip_1080P][X265_Main10p]/[Suzu-Kaze&POPGO][Dorohedoro][07][BDRip_1080P][X265_Main10p_Flac_Chap](2FFC6945).mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Suzu-Kaze&POPGO][Dorohedoro][01-12+OVA][BDRip_1080P][X265_Main10p]/[Suzu-Kaze&POPGO][Dorohedoro][CM01][BDRip_1080P][X265_Main10p_Flac](796324BF).mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Suzu-Kaze&POPGO][Dorohedoro][01-12+OVA][BDRip_1080P][X265_Main10p]/[Suzu-Kaze&POPGO][Dorohedoro][CM05][BDRip_1080P][X265_Main10p_Flac](4CF0025D).mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Suzu-Kaze&POPGO][Dorohedoro][01-12+OVA][BDRip_1080P][X265_Main10p]/[Suzu-Kaze&POPGO][Dorohedoro][NCED5][BDRip_1080P][X265_Main10p_Flac](2051A28C).mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Suzu-Kaze&POPGO][Dorohedoro][01-12+OVA][BDRip_1080P][X265_Main10p]/[Suzu-Kaze&POPGO][Dorohedoro][CM06][BDRip_1080P][X265_Main10p_Flac](75CABC4E).mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Suzu-Kaze&POPGO][Dorohedoro][01-12+OVA][BDRip_1080P][X265_Main10p]/[Suzu-Kaze&POPGO][Dorohedoro][06][BDRip_1080P][X265_Main10p_Flac_Chap](1A184C3A).mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Suzu-Kaze&POPGO][Dorohedoro][01-12+OVA][BDRip_1080P][X265_Main10p]/[Suzu-Kaze&POPGO][Dorohedoro][NCED6_EP12][BDRip_1080P][X265_Main10p_Flac](3E64C67F).mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 新人大叔冒險者,被最強隊伍操到死成無敵 - 03 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] Re:Monster - 12 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Sword Art Online Alternative - Gun Gale Online II - 03 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[BeanSub&FZSD][Jigokuraku][15][GB][1080P][x264_AAC].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 盾之勇者成名錄 Season 4 - 04 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 身為暗殺者的我明顯比勇者還強 - 10 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 素材採集家的異世界旅行記 - 12 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Tensei Shitara Slime Datta Ken 3rd Season - 65.5 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 我要【招架】一切~反誤解的世界最強想成為冒險家~ - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/無職転生 〜異世界行ったら本気だす〜 2021 1080P BDrip HEVC-YUV444 FLAC SUP-SweetDreamDay & AI-Raws/無職転生 〜異世界行ったら本気だす〜 EP23 (BDrip HEVC-YUV444 FLAC SUP).mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/無職転生 〜異世界行ったら本気だす〜 2021 1080P BDrip HEVC-YUV444 FLAC SUP-SweetDreamDay & AI-Raws/無職転生 〜異世界行ったら本気だす〜 EP13 (BDrip HEVC-YUV444 FLAC SUP).mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/無職転生 〜異世界行ったら本気だす〜 2021 1080P BDrip HEVC-YUV444 FLAC SUP-SweetDreamDay & AI-Raws/無職転生 〜異世界行ったら本気だす〜 EP04 (BDrip HEVC-YUV444 FLAC SUP).mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/無職転生 〜異世界行ったら本気だす〜 2021 1080P BDrip HEVC-YUV444 FLAC SUP-SweetDreamDay & AI-Raws/無職転生 〜異世界行ったら本気だす〜 EP09 (BDrip HEVC-YUV444 FLAC SUP).mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/無職転生 〜異世界行ったら本気だす〜 2021 1080P BDrip HEVC-YUV444 FLAC SUP-SweetDreamDay & AI-Raws/無職転生 〜異世界行ったら本気だす〜 EP17 (BDrip HEVC-YUV444 FLAC SUP).mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/無職転生 〜異世界行ったら本気だす〜 2021 1080P BDrip HEVC-YUV444 FLAC SUP-SweetDreamDay & AI-Raws/無職転生 〜異世界行ったら本気だす〜 EP01 (BDrip HEVC-YUV444 FLAC SUP).mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/無職転生 〜異世界行ったら本気だす〜 2021 1080P BDrip HEVC-YUV444 FLAC SUP-SweetDreamDay & AI-Raws/無職転生 〜異世界行ったら本気だす〜 EP16 (BDrip HEVC-YUV444 FLAC SUP).mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/無職転生 〜異世界行ったら本気だす〜 2021 1080P BDrip HEVC-YUV444 FLAC SUP-SweetDreamDay & AI-Raws/無職転生 〜異世界行ったら本気だす〜 EP08 (BDrip HEVC-YUV444 FLAC SUP).mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/無職転生 〜異世界行ったら本気だす〜 2021 1080P BDrip HEVC-YUV444 FLAC SUP-SweetDreamDay & AI-Raws/映像特典/ノンクレジットOP#11 (BDrip HEVC-YUV444 FLAC).mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/無職転生 〜異世界行ったら本気だす〜 2021 1080P BDrip HEVC-YUV444 FLAC SUP-SweetDreamDay & AI-Raws/映像特典/ノンクレジットOP#03 (BDrip HEVC-YUV444 FLAC).mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/無職転生 〜異世界行ったら本気だす〜 2021 1080P BDrip HEVC-YUV444 FLAC SUP-SweetDreamDay & AI-Raws/映像特典/ノンクレジットED#22 (BDrip HEVC-YUV444 FLAC).mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/無職転生 〜異世界行ったら本気だす〜 2021 1080P BDrip HEVC-YUV444 FLAC SUP-SweetDreamDay & AI-Raws/映像特典/ノンクレジットOP#10 (BDrip HEVC-YUV444 FLAC).mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/無職転生 〜異世界行ったら本気だす〜 2021 1080P BDrip HEVC-YUV444 FLAC SUP-SweetDreamDay & AI-Raws/映像特典/ノンクレジットED#08 (BDrip HEVC-YUV444 FLAC).mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/無職転生 〜異世界行ったら本気だす〜 2021 1080P BDrip HEVC-YUV444 FLAC SUP-SweetDreamDay & AI-Raws/映像特典/ノンクレジットED#23 (BDrip HEVC-YUV444 FLAC).mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/無職転生 〜異世界行ったら本気だす〜 2021 1080P BDrip HEVC-YUV444 FLAC SUP-SweetDreamDay & AI-Raws/映像特典/ノンクレジットOP#02 (BDrip HEVC-YUV444 FLAC).mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/無職転生 〜異世界行ったら本気だす〜 2021 1080P BDrip HEVC-YUV444 FLAC SUP-SweetDreamDay & AI-Raws/映像特典/ノンクレジットED#17 (BDrip HEVC-YUV444 FLAC).mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/無職転生 〜異世界行ったら本気だす〜 2021 1080P BDrip HEVC-YUV444 FLAC SUP-SweetDreamDay & AI-Raws/映像特典/ノンクレジットOP#13 (BDrip HEVC-YUV444 FLAC).mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/無職転生 〜異世界行ったら本気だす〜 2021 1080P BDrip HEVC-YUV444 FLAC SUP-SweetDreamDay & AI-Raws/映像特典/ノンクレジットOP#12 (BDrip HEVC-YUV444 FLAC).mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/無職転生 〜異世界行ったら本気だす〜 2021 1080P BDrip HEVC-YUV444 FLAC SUP-SweetDreamDay & AI-Raws/映像特典/ノンクレジットED (BDrip HEVC-YUV444 FLAC).mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/無職転生 〜異世界行ったら本気だす〜 2021 1080P BDrip HEVC-YUV444 FLAC SUP-SweetDreamDay & AI-Raws/映像特典/ノンクレジットOP#06 (BDrip HEVC-YUV444 FLAC).mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/無職転生 〜異世界行ったら本気だす〜 2021 1080P BDrip HEVC-YUV444 FLAC SUP-SweetDreamDay & AI-Raws/映像特典/ノンクレジットOP#23 (BDrip HEVC-YUV444 FLAC).mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/無職転生 〜異世界行ったら本気だす〜 2021 1080P BDrip HEVC-YUV444 FLAC SUP-SweetDreamDay & AI-Raws/映像特典/ノンクレジットOP#14 (BDrip HEVC-YUV444 FLAC).mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/無職転生 〜異世界行ったら本気だす〜 2021 1080P BDrip HEVC-YUV444 FLAC SUP-SweetDreamDay & AI-Raws/映像特典/ノンクレジットOP#08 (BDrip HEVC-YUV444 FLAC).mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/無職転生 〜異世界行ったら本気だす〜 2021 1080P BDrip HEVC-YUV444 FLAC SUP-SweetDreamDay & AI-Raws/映像特典/ノンクレジットOP#07 (BDrip HEVC-YUV444 FLAC).mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/無職転生 〜異世界行ったら本気だす〜 2021 1080P BDrip HEVC-YUV444 FLAC SUP-SweetDreamDay & AI-Raws/映像特典/ノンクレジットED#11 (BDrip HEVC-YUV444 FLAC).mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/無職転生 〜異世界行ったら本気だす〜 2021 1080P BDrip HEVC-YUV444 FLAC SUP-SweetDreamDay & AI-Raws/映像特典/ノンクレジットOP#09 (BDrip HEVC-YUV444 FLAC).mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/無職転生 〜異世界行ったら本気だす〜 2021 1080P BDrip HEVC-YUV444 FLAC SUP-SweetDreamDay & AI-Raws/映像特典/ノンクレジットOP#15 (BDrip HEVC-YUV444 FLAC).mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/無職転生 〜異世界行ったら本気だす〜 2021 1080P BDrip HEVC-YUV444 FLAC SUP-SweetDreamDay & AI-Raws/映像特典/ノンクレジットOP#22 (BDrip HEVC-YUV444 FLAC).mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/無職転生 〜異世界行ったら本気だす〜 2021 1080P BDrip HEVC-YUV444 FLAC SUP-SweetDreamDay & AI-Raws/映像特典/ノンクレジットED2 (BDrip HEVC-YUV444 FLAC).mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/無職転生 〜異世界行ったら本気だす〜 2021 1080P BDrip HEVC-YUV444 FLAC SUP-SweetDreamDay & AI-Raws/映像特典/ノンクレジットOP#21 (BDrip HEVC-YUV444 FLAC).mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/無職転生 〜異世界行ったら本気だす〜 2021 1080P BDrip HEVC-YUV444 FLAC SUP-SweetDreamDay & AI-Raws/映像特典/ノンクレジットOP#16 (BDrip HEVC-YUV444 FLAC).mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/無職転生 〜異世界行ったら本気だす〜 2021 1080P BDrip HEVC-YUV444 FLAC SUP-SweetDreamDay & AI-Raws/映像特典/ノンクレジットOP#04 (BDrip HEVC-YUV444 FLAC).mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/無職転生 〜異世界行ったら本気だす〜 2021 1080P BDrip HEVC-YUV444 FLAC SUP-SweetDreamDay & AI-Raws/映像特典/ノンクレジットOP#18 (BDrip HEVC-YUV444 FLAC).mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/無職転生 〜異世界行ったら本気だす〜 2021 1080P BDrip HEVC-YUV444 FLAC SUP-SweetDreamDay & AI-Raws/映像特典/ノンクレジットOP#17 (BDrip HEVC-YUV444 FLAC).mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/無職転生 〜異世界行ったら本気だす〜 2021 1080P BDrip HEVC-YUV444 FLAC SUP-SweetDreamDay & AI-Raws/映像特典/ノンクレジットOP#20 (BDrip HEVC-YUV444 FLAC).mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/無職転生 〜異世界行ったら本気だす〜 2021 1080P BDrip HEVC-YUV444 FLAC SUP-SweetDreamDay & AI-Raws/映像特典/PV・CM集 (BDrip HEVC-YUV444 FLAC).mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/無職転生 〜異世界行ったら本気だす〜 2021 1080P BDrip HEVC-YUV444 FLAC SUP-SweetDreamDay & AI-Raws/映像特典/ノンクレジットOP#19 (BDrip HEVC-YUV444 FLAC).mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/無職転生 〜異世界行ったら本気だす〜 2021 1080P BDrip HEVC-YUV444 FLAC SUP-SweetDreamDay & AI-Raws/映像特典/ノンクレジットOP#05 (BDrip HEVC-YUV444 FLAC).mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/無職転生 〜異世界行ったら本気だす〜 2021 1080P BDrip HEVC-YUV444 FLAC SUP-SweetDreamDay & AI-Raws/無職転生 〜異世界行ったら本気だす〜 EP12 (BDrip HEVC-YUV444 FLAC SUP).mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/無職転生 〜異世界行ったら本気だす〜 2021 1080P BDrip HEVC-YUV444 FLAC SUP-SweetDreamDay & AI-Raws/無職転生 〜異世界行ったら本気だす〜 EP05 (BDrip HEVC-YUV444 FLAC SUP).mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/無職転生 〜異世界行ったら本気だす〜 2021 1080P BDrip HEVC-YUV444 FLAC SUP-SweetDreamDay & AI-Raws/無職転生 〜異世界行ったら本気だす〜 EP22 (BDrip HEVC-YUV444 FLAC SUP).mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/無職転生 〜異世界行ったら本気だす〜 2021 1080P BDrip HEVC-YUV444 FLAC SUP-SweetDreamDay & AI-Raws/無職転生 〜異世界行ったら本気だす〜 EP03 (BDrip HEVC-YUV444 FLAC SUP).mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/無職転生 〜異世界行ったら本気だす〜 2021 1080P BDrip HEVC-YUV444 FLAC SUP-SweetDreamDay & AI-Raws/無職転生 〜異世界行ったら本気だす〜 EP14 (BDrip HEVC-YUV444 FLAC SUP).mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/無職転生 〜異世界行ったら本気だす〜 2021 1080P BDrip HEVC-YUV444 FLAC SUP-SweetDreamDay & AI-Raws/無職転生 〜異世界行ったら本気だす〜 EP24 (BDrip HEVC-YUV444 FLAC SUP).mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/無職転生 〜異世界行ったら本気だす〜 2021 1080P BDrip HEVC-YUV444 FLAC SUP-SweetDreamDay & AI-Raws/無職転生 〜異世界行ったら本気だす〜 EP10 (BDrip HEVC-YUV444 FLAC SUP).mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/無職転生 〜異世界行ったら本気だす〜 2021 1080P BDrip HEVC-YUV444 FLAC SUP-SweetDreamDay & AI-Raws/無職転生 〜異世界行ったら本気だす〜 EP07 (BDrip HEVC-YUV444 FLAC SUP).mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/無職転生 〜異世界行ったら本気だす〜 2021 1080P BDrip HEVC-YUV444 FLAC SUP-SweetDreamDay & AI-Raws/無職転生 〜異世界行ったら本気だす〜 EP19 (BDrip HEVC-YUV444 FLAC SUP).mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/無職転生 〜異世界行ったら本気だす〜 2021 1080P BDrip HEVC-YUV444 FLAC SUP-SweetDreamDay & AI-Raws/無職転生 〜異世界行ったら本気だす〜 EP20 (BDrip HEVC-YUV444 FLAC SUP).mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/無職転生 〜異世界行ったら本気だす〜 2021 1080P BDrip HEVC-YUV444 FLAC SUP-SweetDreamDay & AI-Raws/無職転生 〜異世界行ったら本気だす〜 EP18 (BDrip HEVC-YUV444 FLAC SUP).mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/無職転生 〜異世界行ったら本気だす〜 2021 1080P BDrip HEVC-YUV444 FLAC SUP-SweetDreamDay & AI-Raws/無職転生 〜異世界行ったら本気だす〜 EP21 (BDrip HEVC-YUV444 FLAC SUP).mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/無職転生 〜異世界行ったら本気だす〜 2021 1080P BDrip HEVC-YUV444 FLAC SUP-SweetDreamDay & AI-Raws/無職転生 〜異世界行ったら本気だす〜 EP11 (BDrip HEVC-YUV444 FLAC SUP).mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/無職転生 〜異世界行ったら本気だす〜 2021 1080P BDrip HEVC-YUV444 FLAC SUP-SweetDreamDay & AI-Raws/無職転生 〜異世界行ったら本気だす〜 EP06 (BDrip HEVC-YUV444 FLAC SUP).mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/無職転生 〜異世界行ったら本気だす〜 2021 1080P BDrip HEVC-YUV444 FLAC SUP-SweetDreamDay & AI-Raws/無職転生 〜異世界行ったら本気だす〜 EP02 (BDrip HEVC-YUV444 FLAC SUP).mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/無職転生 〜異世界行ったら本気だす〜 2021 1080P BDrip HEVC-YUV444 FLAC SUP-SweetDreamDay & AI-Raws/無職転生 〜異世界行ったら本気だす〜 EP15 (BDrip HEVC-YUV444 FLAC SUP).mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 一拳超人(第三季) - 26 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 終末起點 - 05 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 水屬性的魔法師 - 03 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 被逐出隊伍的治癒師,其實是最強 - 12 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Haruhana] Ikoku Nikki - 03 [WebRip][HEVC-10bit 1080p][CHI_JPN].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[BeanSub][Ao no Exorcist _Yosuga Hen][02][BIG5][1080P][x264_AAC].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 最強肉盾的迷宮攻略~擁有稀少技能體力 9999 的肉盾,被勇者隊伍辭退了~ - 03 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 尋神的旅途 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 泛而不精的我被逐出了勇者隊伍 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 結緣甘神神社 - 19 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Tensei Shitara Slime Datta Ken 3rd Season - 67 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Nekomoe kissaten][Tower of God S2][01][1080p][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] Re:從零開始的異世界生活 第三季 - 16 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[KitaujiSub&LoliHouse] Suicide Squad Isekai - 04 [WebRip 1080p HEVC-10bit AACx2 ASSx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 怪獸 8 號 - 10 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 被逐出隊伍的治癒師,其實是最強 - 09 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Nekomoe kissaten&LoliHouse] Dungeon Meshi - 07 [WebRip 1080p HEVC-10bit AAC EAC3 ASSx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 治癒魔法的錯誤使用法 - 08 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Kage no Jitsuryokusha ni Naritakute! S2 [01-12][WebRip 1080p HEVC-10bit AAC]/[LoliHouse] Kage no Jitsuryokusha ni Naritakute! S2 - 03 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Kage no Jitsuryokusha ni Naritakute! S2 [01-12][WebRip 1080p HEVC-10bit AAC]/[LoliHouse] Kage no Jitsuryokusha ni Naritakute! S2 - 07 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Kage no Jitsuryokusha ni Naritakute! S2 [01-12][WebRip 1080p HEVC-10bit AAC]/[LoliHouse] Kage no Jitsuryokusha ni Naritakute! S2 - 10 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Kage no Jitsuryokusha ni Naritakute! S2 [01-12][WebRip 1080p HEVC-10bit AAC]/[LoliHouse] Kage no Jitsuryokusha ni Naritakute! S2 - 11 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Kage no Jitsuryokusha ni Naritakute! S2 [01-12][WebRip 1080p HEVC-10bit AAC]/[LoliHouse] Kage no Jitsuryokusha ni Naritakute! S2 - 02 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Kage no Jitsuryokusha ni Naritakute! S2 [01-12][WebRip 1080p HEVC-10bit AAC]/[LoliHouse] Kage no Jitsuryokusha ni Naritakute! S2 - 06 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Kage no Jitsuryokusha ni Naritakute! S2 [01-12][WebRip 1080p HEVC-10bit AAC]/[LoliHouse] Kage no Jitsuryokusha ni Naritakute! S2 - 08 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Kage no Jitsuryokusha ni Naritakute! S2 [01-12][WebRip 1080p HEVC-10bit AAC]/[LoliHouse] Kage no Jitsuryokusha ni Naritakute! S2 - 04 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Kage no Jitsuryokusha ni Naritakute! S2 [01-12][WebRip 1080p HEVC-10bit AAC]/[LoliHouse] Kage no Jitsuryokusha ni Naritakute! S2 - 01 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Kage no Jitsuryokusha ni Naritakute! S2 [01-12][WebRip 1080p HEVC-10bit AAC]/[LoliHouse] Kage no Jitsuryokusha ni Naritakute! S2 - 05 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Kage no Jitsuryokusha ni Naritakute! S2 [01-12][WebRip 1080p HEVC-10bit AAC]/[LoliHouse] Kage no Jitsuryokusha ni Naritakute! S2 - 09 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Kage no Jitsuryokusha ni Naritakute! S2 [01-12][WebRip 1080p HEVC-10bit AAC]/[LoliHouse] Kage no Jitsuryokusha ni Naritakute! S2 - 12 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Nekomoe kissaten][Ninja Kamui][05][1080p][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Nekomoe kissaten][Ishura][03][1080p][JPTC].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 忍者與殺手的兩人生活 - 09 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] LAZARUS 拉撒路 - 07 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Nekomoe kissaten&LoliHouse] Mushoku Tensei S2 - 11 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 瞬間治癒卻被當成廢物踢出隊伍的天才治療師,改當無照治療師快樂過活 - 08 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 妻子變成小學生。 - 05 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Shin Samurai-den YAIBA - 08 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Yami Healer - 03 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[HYSUB]Sono Bisque Doll wa Koi wo Suru[22][BIG5_MP4][1920X1080].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Amagami-san Chi no Enmusubi - 01 [WebRip 1080p HEVC-10bit AAC SRTx2]).mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 記憶縫線 YOUR FORMA - 04 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] FAIRY TAIL 魔導少年 百年任務 - 10 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 擁有超常技能的異世界流浪美食家 S2 - 22 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 永遠的黃昏 - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 忍者與殺手的兩人生活 - 12 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/The.Stranger.by.the.Beach.2020.1080p.BluRay.x264.DTS-WiKi/Sample/The.Stranger.by.the.Beach.2020.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/The.Stranger.by.the.Beach.2020.1080p.BluRay.x264.DTS-WiKi/The.Stranger.by.the.Beach.2020.1080p.BluRay.x264.DTS-WiKi.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Shin Samurai-den YAIBA - 13 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 怪獸 8 號 第二季 - 16 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Around 40 Otoko no Isekai Tsuuhan - 12 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 香格里拉・開拓異境~糞作獵手挑戰神作~ - 16 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Feibanyama] DARK MOON THE BLOOD ALTAR - 01 [BILIBILI WebRip 2160p HEVC OPUS Multi-Subs].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 膽大黨 第二季 - 20 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Beheneko - 03 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[orion origin] Boukyaku Battery [03] [1080p] [H265 AAC] [CHT&JPN].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 轉生貴族憑鑑定技能扭轉人生 第二季 - 18 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] GNOSIA - 07 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[BeanSub&FZSD][Kimetsu_no_Yaiba][57][BIG5][1080P][x264_AAC].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Kijin Gentoushou - 06 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 膽大黨 - 12 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[BeanSub&FZSD][BLEACH_Sennen_Kessen-hen][33][GB][1080P][x264_AAC].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Penguin.Highway.2018.1080p.BluRay.x264.DTS-WiKi/Sample/Penguin.Highway.2018.1080p.BluRay.x264.DTS-WiKi.sample.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Penguin.Highway.2018.1080p.BluRay.x264.DTS-WiKi/Penguin.Highway.2018.1080p.BluRay.x264.DTS-WiKi.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Tensei Kizoku, Kantei Skill de Nariagaru - 12 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Nekomoe kissaten][Dungeon Meshi][22][1080p][JPTC].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Nekomoe kissaten][HELLO WORLD][BDRip][1080p][JPTC]/[Nekomoe kissaten][ANOTHER WORLD][02][1080p][JPTC].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Nekomoe kissaten][HELLO WORLD][BDRip][1080p][JPTC]/[Nekomoe kissaten][ANOTHER WORLD][03][1080p][JPTC].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Nekomoe kissaten][HELLO WORLD][BDRip][1080p][JPTC]/[Nekomoe kissaten][ANOTHER WORLD][01][1080p][JPTC].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Nekomoe kissaten][HELLO WORLD][BDRip][1080p][JPTC]/[Nekomoe kissaten][HELLO WORLD][Movie][1080p][JPTC].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[KTXP][Hokkaido_Gals_Are_Super_Adorable!][08][HEVC_opus][1080p].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[KyokuSai] Isekai Onsen Paradise [03][720P][WEB-DL][Premium].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Nekomoe kissaten][Ninja Kamui][06][1080p][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Nekomoe kissaten][Tower of God S2][20][1080p][CHS].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 完美到難以接近的聖女遭到解除婚約後被賣到鄰國 - 06 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 膽大黨 - 09 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 我內心的糟糕念頭 第二季 - 24 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 我要【招架】一切~反誤解的世界最強想成為冒險家~ - 12 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 素材採集家的異世界旅行記 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Nekomoe kissaten][Tower of God S2][02][1080p][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 我和班上最討厭的女生結婚了。 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 最後可以再拜託您一件事嗎? - 09 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 我獨自升級 第二季 -起於闇影- - 17 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 不時輕聲地以俄語遮羞的鄰座艾莉同學 - 12 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 判處勇者刑 - 04 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 新人大叔冒險者,被最強隊伍操到死成無敵 - 10 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/《盾之勇者成名錄 第二季》#7/《盾之勇者成名錄 第二季》#7 (日語原聲)【Ani-One ULTRA】.mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 失憶投捕 - 11 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 身為暗殺者的我明顯比勇者還強 - 03 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 使人誤解的工房主~關於原英雄隊伍的雜役人員,實際上除了戰鬥能力外全是SSS的故事~ - 04 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 我要【招架】一切~反誤解的世界最強想成為冒險家~ - 09 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 轉生貴族憑鑑定技能扭轉人生 第二季 - 24 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] FARMAGIA 魔農傳記 - 04 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 最後可以再拜託您一件事嗎? - 12 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 不時輕聲地以俄語遮羞的鄰座艾莉同學 - 09 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Izure Saikyou no Renkinjutsushi - 02 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Nekomoe kissaten][Dungeon Meshi][08][1080p][JPTC].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Nekomoe kissaten&LoliHouse] Your Forma - 05 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 怪獸 8 號 第二季 - 22 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] Fate/strange Fake - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 香格里拉・開拓異境~糞作獵手挑戰神作~ 第二季 - 13 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 香格里拉・開拓異境~糞作獵手挑戰神作~ - 22 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] S 級怪獸《貝希摩斯》被誤認成小貓,成為精靈女孩的騎士(寵物)一起生活 - 06 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 九龍大眾浪漫 - 06 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[KTXP][Hokkaido_Gals_Are_Super_Adorable!][10][BIG5][1080p].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[orion origin] Boukyaku Battery [07] [1080p] [H265 AAC] [CHT&JPN].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Sakurato] Haite Kudasai, Takamine-san [07][AVC-8bit 1080p AAC][CHT&JPN].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 擁有超常技能的異世界流浪美食家 S2 - 16 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 最狂輔助職業【話術士】世界最強戰團聽我號令 - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] Re:從零開始的異世界生活 第三季 - 05 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Sakurato] Dungeon Meshi [17v2][HEVC-10bit 1080p AAC][CHS&CHT].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Lilith-Raws] Re:Monster - 05 [Baha][WebDL 1080p AVC AAC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Skymoon-Raws] Sozai Saishuka no Isekai Ryokouki - 01 [ViuTV][WEB-DL][CHT][SRT][1080p][AVC AAC].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[BeanSub][Ao no Exorcist _Shimane Illuminati Hen][08][BIG5][1080P][x264_AAC].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Katainaka no Ossan, Kensei ni Naru - 06 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 厄里斯的聖杯 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Nekomoe kissaten][Tower of God S2][17][1080p][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 香格里拉・開拓異境~糞作獵手挑戰神作~ 第二季 - 08 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Skymoon-Raws] Sozai Saishuka no Isekai Ryokouki - 02 [ViuTV][WEB-DL][CHT][SRT][1080p][AVC AAC].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Ghost.in.the.Shell.SAC_2045.Sustainable.War.2021.1080p.BluRay.x265.10bit-WiKi/Ghost.in.the.Shell.SAC_2045.Sustainable.War.2021.1080p.BluRay.x265.10bit-WiKi.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[U3-Web] PSYCHO-PASS 3 - FIRST INSPECTOR (2020) [AMZN WEB-DL 1080p AVC DDP]/[U3-Web] Psycho-Pass 3 - First Inspector - 01 [AMZN WEB-DL 1080p AVC AAC E-AC-3 SRT].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[U3-Web] PSYCHO-PASS 3 - FIRST INSPECTOR (2020) [AMZN WEB-DL 1080p AVC DDP]/[U3-Web] Psycho-Pass 3 - First Inspector - 02 [AMZN WEB-DL 1080p AVC AAC E-AC-3 SRT].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[U3-Web] PSYCHO-PASS 3 - FIRST INSPECTOR (2020) [AMZN WEB-DL 1080p AVC DDP]/[U3-Web] Psycho-Pass 3 - First Inspector - 03 [AMZN WEB-DL 1080p AVC AAC E-AC-3 SRT].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[HYSUB]Dungeon Meshi[24][BIG5_MP4][1920X1080].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 結緣甘神神社 - 11 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 午夜的傾心旋律 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 一拳超人(第三季) - 35 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 被逐出隊伍的治癒師,其實是最強 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 水屬性的魔法師 - 10 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 轉生貴族憑鑑定技能扭轉人生 - 04 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Mato Seihei no Slave 2 - 01 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Nekomoe kissaten][Ninja Kamui][13][1080p][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 勇氣爆發 BANG BRAVERN - 03 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Sakurato] Modaete yo, Adam-kun [02][AVC-8bit 1080p AAC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 持續狩獵史萊姆三百年,不知不覺就練到 LV MAX 第二季 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 永遠的黃昏 - 11 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 忍者與殺手的兩人生活 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Nekomoe kissaten][Hibi wa Sugiredo Meshi Umashi][07][1080p][JPSC].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[orion origin] Boukyaku Battery [01] [1080p] [H265 AAC] [CHT&JPN].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 孤單一人的異世界攻略 - 09 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Amagami-san Chi no Enmusubi - 03 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[KitaujiSub&LoliHouse] The Grimm Variations - 01 [1080p HEVC-10bit AAC EAC3 ASSx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Nekomoe kissaten&LoliHouse] Vivy [WebRip 1080p HEVC-10bit AAC ASSx2]/[Nekomoe kissaten&LoliHouse] Vivy - 01 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Nekomoe kissaten&LoliHouse] Vivy [WebRip 1080p HEVC-10bit AAC ASSx2]/[Nekomoe kissaten&LoliHouse] Vivy - 05 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Nekomoe kissaten&LoliHouse] Vivy [WebRip 1080p HEVC-10bit AAC ASSx2]/[Nekomoe kissaten&LoliHouse] Vivy - 09 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Nekomoe kissaten&LoliHouse] Vivy [WebRip 1080p HEVC-10bit AAC ASSx2]/[Nekomoe kissaten&LoliHouse] Vivy - 12 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Nekomoe kissaten&LoliHouse] Vivy [WebRip 1080p HEVC-10bit AAC ASSx2]/[Nekomoe kissaten&LoliHouse] Vivy - 13 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Nekomoe kissaten&LoliHouse] Vivy [WebRip 1080p HEVC-10bit AAC ASSx2]/[Nekomoe kissaten&LoliHouse] Vivy - 08 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Nekomoe kissaten&LoliHouse] Vivy [WebRip 1080p HEVC-10bit AAC ASSx2]/[Nekomoe kissaten&LoliHouse] Vivy - 04 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Nekomoe kissaten&LoliHouse] Vivy [WebRip 1080p HEVC-10bit AAC ASSx2]/[Nekomoe kissaten&LoliHouse] Vivy - 11 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Nekomoe kissaten&LoliHouse] Vivy [WebRip 1080p HEVC-10bit AAC ASSx2]/[Nekomoe kissaten&LoliHouse] Vivy - 02 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Nekomoe kissaten&LoliHouse] Vivy [WebRip 1080p HEVC-10bit AAC ASSx2]/[Nekomoe kissaten&LoliHouse] Vivy - 06 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Nekomoe kissaten&LoliHouse] Vivy [WebRip 1080p HEVC-10bit AAC ASSx2]/[Nekomoe kissaten&LoliHouse] Vivy - 03 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Nekomoe kissaten&LoliHouse] Vivy [WebRip 1080p HEVC-10bit AAC ASSx2]/[Nekomoe kissaten&LoliHouse] Vivy - 07 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Nekomoe kissaten&LoliHouse] Vivy [WebRip 1080p HEVC-10bit AAC ASSx2]/[Nekomoe kissaten&LoliHouse] Vivy - 10 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Nekomoe kissaten][Dungeon Meshi][16][1080p][JPTC].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Belle.2021.1080p.BluRay.x264.DTS-WiKi/Belle.2021.1080p.BluRay.x264.DTS-WiKi.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Belle.2021.1080p.BluRay.x264.DTS-WiKi/Sample/Belle.2021.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Haite Kudasai, Takamine-san - 03 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 異國日記 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 異世界自殺突擊隊 - 06 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Nekomoe kissaten][Dosanko Gal wa Namara Menkoi][03][1080p][JPTC].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 地獄模式 ~喜歡挑戰特殊成就的玩家在廢設定的異世界成為無雙~ - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[BeanSub&FZSD][Chainsaw_Man_Reze_Arc][MOVIE][BIG5][1080P][x264_AAC].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 葬送的芙莉蓮 - 26 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 九龍大眾浪漫 - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 香格里拉・開拓異境~糞作獵手挑戰神作~ 第二季 - 17 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Nekomoe kissaten][Tower of God S2][03][1080p][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Lilith-Raws] Date A Live S05 - 01 [Baha][WebDL 1080p AVC AAC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 終末起點 - 09 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Katainaka no Ossan, Kensei ni Naru - 02 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Eternal][Modaete yo, Adam-kun][08][GB][720P][Premium].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] Re:從零開始的異世界生活 第三季 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[BeanSub][Ao no Exorcist _Yosuga Hen][10][BIG5][1080P][x264_AAC].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[orion origin] Apocalypse Hotel [01] [1080p] [H265 AAC] [CHS_JPN].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 治癒魔法的錯誤使用法 - 04 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Love.Death.and.Robots.S03.1080p.NF.WEB-DL.DDP5.1.Atmos.x264-SMURF/Love.Death.and.Robots.S03E08.In.Vaulted.Halls.Entombed.1080p.NF.WEB-DL.DDP5.1.Atmos.x264-SMURF.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Love.Death.and.Robots.S03.1080p.NF.WEB-DL.DDP5.1.Atmos.x264-SMURF/Love.Death.and.Robots.S03E07.Masons.Rats.1080p.NF.WEB-DL.DDP5.1.Atmos.x264-SMURF.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Love.Death.and.Robots.S03.1080p.NF.WEB-DL.DDP5.1.Atmos.x264-SMURF/Love.Death.and.Robots.S03E03.The.Very.Pulse.of.the.Machine.1080p.NF.WEB-DL.DDP5.1.Atmos.x264-SMURF.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Love.Death.and.Robots.S03.1080p.NF.WEB-DL.DDP5.1.Atmos.x264-SMURF/Love.Death.and.Robots.S03E01.Three.Robots.Exit.Strategies.1080p.NF.WEB-DL.DDP5.1.Atmos.x264-SMURF.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Love.Death.and.Robots.S03.1080p.NF.WEB-DL.DDP5.1.Atmos.x264-SMURF/Love.Death.and.Robots.S03E06.Swarm.1080p.NF.WEB-DL.DDP5.1.Atmos.x264-SMURF.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Love.Death.and.Robots.S03.1080p.NF.WEB-DL.DDP5.1.Atmos.x264-SMURF/Love.Death.and.Robots.S03E05.Kill.Team.Kill.1080p.NF.WEB-DL.DDP5.1.Atmos.x264-SMURF.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Love.Death.and.Robots.S03.1080p.NF.WEB-DL.DDP5.1.Atmos.x264-SMURF/Love.Death.and.Robots.S03E04.Night.of.the.Mini.Dead.1080p.NF.WEB-DL.DDP5.1.Atmos.x264-SMURF.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Love.Death.and.Robots.S03.1080p.NF.WEB-DL.DDP5.1.Atmos.x264-SMURF/Love.Death.and.Robots.S03E09.Jibaro.1080p.NF.WEB-DL.DDP5.1.Atmos.x264-SMURF.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Love.Death.and.Robots.S03.1080p.NF.WEB-DL.DDP5.1.Atmos.x264-SMURF/Love.Death.and.Robots.S03E02.Bad.Travelling.1080p.NF.WEB-DL.DDP5.1.Atmos.x264-SMURF.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[DanMachi S4][00-11][BIG5][1080P]/[DanMachi S4][10][BIG5][1080P].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[DanMachi S4][00-11][BIG5][1080P]/[DanMachi S4][11][BIG5][1080P].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Grand Blue S2 - 01 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 終末起點 - 12 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 被逐出隊伍的治癒師,其實是最強 - 05 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Nekomoe kissaten][Ao no Hako][15][1080p][JPSC].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 遲早是最強的鍊金術師? - 08 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 結緣甘神神社 - 15 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 一拳超人(第三季) - 31 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 在地下城尋求邂逅是否搞錯了什麼 第五季 - 12 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 異世界悠閒紀行~邊養娃邊當冒險者~ - 03 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Nekomoe kissaten&LoliHouse] Dungeon Meshi - 14 [WebRip 1080p HEVC-10bit AAC EAC3 ASSx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Jigoku Sensei Nube 2025 - 16 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 勇氣爆發 BANG BRAVERN - 07 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Skymoon-Raws] Guild no Uketsukejou desu ga, Zangyou wa Iya nanode Boss wo Solo Toubatsu Shiyou to Omoimasu - 09 [ViuTV][WEB-DL][CHT][SRT][1080p][AVC AAC].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 妻子變成小學生。 - 09 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 無職轉生~到了異世界就拿出真本事 第二季 - 19 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 忍者與殺手的兩人生活 - 05 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Tensei Shitara Slime Datta Ken 3rd Season - 57 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Lilith-Raws] Kaijuu 8-gou - 01 [Baha][WebDL 1080p AVC AAC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/《繼母的拖油瓶是我的前女友》#1/《繼母的拖油瓶是我的前女友》#1 (日語原聲)【Ani-One Asia】.mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 瞬間治癒卻被當成廢物踢出隊伍的天才治療師,改當無照治療師快樂過活 - 04 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 記憶縫線 YOUR FORMA - 13 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Episode of Skypiea 1080p/[OPFansMaplesnow][one_piece][2018][Special][01][Episode of Skypiea][jap_chs_cht][x264_aac][1080p].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 異國日記 - 05 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 妻子變成小學生。 - 12 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Nekomoe kissaten][Tower of God S2][21][1080p][CHS].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 杖與劍的魔劍譚 - 03 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] The Seven Deadly Sins the Movie - Prisoners of the Sky/[LoliHouse] The Seven Deadly Sins the Movie - Prisoners of the Sky [WebRip 1080p HEVC-10bit AAC SRTx4].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Nekomoe kissaten][Ninja Kamui][07][1080p][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] LAZARUS 拉撒路 - 10 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 地獄模式 ~喜歡挑戰特殊成就的玩家在廢設定的異世界成為無雙~ - 05 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 異世界自殺突擊隊 - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[KTXP][BAKI][01-13][GB][1080p]/[KTXP][BAKI][04][GB][1080p].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[KTXP][BAKI][01-13][GB][1080p]/[KTXP][BAKI][05][GB][1080p].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[KTXP][BAKI][01-13][GB][1080p]/[KTXP][BAKI][08][GB][1080p].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[KTXP][BAKI][01-13][GB][1080p]/[KTXP][BAKI][06][GB][1080p].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[KTXP][BAKI][01-13][GB][1080p]/[KTXP][BAKI][09][GB][1080p].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[KTXP][BAKI][01-13][GB][1080p]/[KTXP][BAKI][07][GB][1080p].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[KTXP][BAKI][01-13][GB][1080p]/[KTXP][BAKI][11][GB][1080p].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[KTXP][BAKI][01-13][GB][1080p]/[KTXP][BAKI][01][GB][1080p].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[KTXP][BAKI][01-13][GB][1080p]/[KTXP][BAKI][10][GB][1080p].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[KTXP][BAKI][01-13][GB][1080p]/[KTXP][BAKI][03][GB][1080p].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[KTXP][BAKI][01-13][GB][1080p]/[KTXP][BAKI][13][GB][1080p].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[KTXP][BAKI][01-13][GB][1080p]/[KTXP][BAKI][02][GB][1080p].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[KTXP][BAKI][01-13][GB][1080p]/[KTXP][BAKI][12][GB][1080p].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Castlevania.S03.1080p.NF.WEBRip.DDP5.1.Atmos.x264-NTG[rartv]/Castlevania.S03E09.1080p.NF.WEB-DL.DDP5.1.x264-NTG.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Castlevania.S03.1080p.NF.WEBRip.DDP5.1.Atmos.x264-NTG[rartv]/Castlevania.S03E05.1080p.NF.WEB-DL.DDP5.1.x264-NTG.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Castlevania.S03.1080p.NF.WEBRip.DDP5.1.Atmos.x264-NTG[rartv]/Castlevania.S03E01.1080p.NF.WEB-DL.DDP5.1.x264-NTG.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Castlevania.S03.1080p.NF.WEBRip.DDP5.1.Atmos.x264-NTG[rartv]/Castlevania.S03E10.1080p.NF.WEB-DL.DDP5.1.x264-NTG.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Castlevania.S03.1080p.NF.WEBRip.DDP5.1.Atmos.x264-NTG[rartv]/Castlevania.S03E08.1080p.NF.WEB-DL.DDP5.1.x264-NTG.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Castlevania.S03.1080p.NF.WEBRip.DDP5.1.Atmos.x264-NTG[rartv]/Castlevania.S03E04.1080p.NF.WEB-DL.DDP5.1.x264-NTG.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Castlevania.S03.1080p.NF.WEBRip.DDP5.1.Atmos.x264-NTG[rartv]/Castlevania.S03E02.1080p.NF.WEB-DL.DDP5.1.x264-NTG.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Castlevania.S03.1080p.NF.WEBRip.DDP5.1.Atmos.x264-NTG[rartv]/Castlevania.S03E06.1080p.NF.WEB-DL.DDP5.1.x264-NTG.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Castlevania.S03.1080p.NF.WEBRip.DDP5.1.Atmos.x264-NTG[rartv]/Castlevania.S03E03.1080p.NF.WEB-DL.DDP5.1.x264-NTG.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Castlevania.S03.1080p.NF.WEBRip.DDP5.1.Atmos.x264-NTG[rartv]/Castlevania.S03E07.1080p.NF.WEB-DL.DDP5.1.x264-NTG.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[UHA-WINGS][Kimetsu no Yaiba][01-26 END][x264 1080p][CHT]/[UHA-WINGS][Kimetsu no Yaiba][19][x264 1080p][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[UHA-WINGS][Kimetsu no Yaiba][01-26 END][x264 1080p][CHT]/[UHA-WINGS][Kimetsu no Yaiba][13][x264 1080p][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[UHA-WINGS][Kimetsu no Yaiba][01-26 END][x264 1080p][CHT]/[UHA-WINGS][Kimetsu no Yaiba][24][x264 1080p][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[UHA-WINGS][Kimetsu no Yaiba][01-26 END][x264 1080p][CHT]/[UHA-WINGS][Kimetsu no Yaiba][22][x264 1080p][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[UHA-WINGS][Kimetsu no Yaiba][01-26 END][x264 1080p][CHT]/[UHA-WINGS][Kimetsu no Yaiba][15][x264 1080p][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[UHA-WINGS][Kimetsu no Yaiba][01-26 END][x264 1080p][CHT]/[UHA-WINGS][Kimetsu no Yaiba][05][x264 1080p][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[UHA-WINGS][Kimetsu no Yaiba][01-26 END][x264 1080p][CHT]/[UHA-WINGS][Kimetsu no Yaiba][03][x264 1080p][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[UHA-WINGS][Kimetsu no Yaiba][01-26 END][x264 1080p][CHT]/[UHA-WINGS][Kimetsu no Yaiba][09][x264 1080p][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[UHA-WINGS][Kimetsu no Yaiba][01-26 END][x264 1080p][CHT]/[UHA-WINGS][Kimetsu no Yaiba][18][x264 1080p][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[UHA-WINGS][Kimetsu no Yaiba][01-26 END][x264 1080p][CHT]/[UHA-WINGS][Kimetsu no Yaiba][25][x264 1080p][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[UHA-WINGS][Kimetsu no Yaiba][01-26 END][x264 1080p][CHT]/[UHA-WINGS][Kimetsu no Yaiba][12][x264 1080p][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[UHA-WINGS][Kimetsu no Yaiba][01-26 END][x264 1080p][CHT]/[UHA-WINGS][Kimetsu no Yaiba][14][x264 1080p][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[UHA-WINGS][Kimetsu no Yaiba][01-26 END][x264 1080p][CHT]/[UHA-WINGS][Kimetsu no Yaiba][23][x264 1080p][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[UHA-WINGS][Kimetsu no Yaiba][01-26 END][x264 1080p][CHT]/[UHA-WINGS][Kimetsu no Yaiba][04][x264 1080p][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[UHA-WINGS][Kimetsu no Yaiba][01-26 END][x264 1080p][CHT]/[UHA-WINGS][Kimetsu no Yaiba][02][x264 1080p][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[UHA-WINGS][Kimetsu no Yaiba][01-26 END][x264 1080p][CHT]/[UHA-WINGS][Kimetsu no Yaiba][08][x264 1080p][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[UHA-WINGS][Kimetsu no Yaiba][01-26 END][x264 1080p][CHT]/[UHA-WINGS][Kimetsu no Yaiba][20][x264 1080p][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[UHA-WINGS][Kimetsu no Yaiba][01-26 END][x264 1080p][CHT]/[UHA-WINGS][Kimetsu no Yaiba][17][x264 1080p][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[UHA-WINGS][Kimetsu no Yaiba][01-26 END][x264 1080p][CHT]/[UHA-WINGS][Kimetsu no Yaiba][11][x264 1080p][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[UHA-WINGS][Kimetsu no Yaiba][01-26 END][x264 1080p][CHT]/[UHA-WINGS][Kimetsu no Yaiba][26][x264 1080p][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[UHA-WINGS][Kimetsu no Yaiba][01-26 END][x264 1080p][CHT]/[UHA-WINGS][Kimetsu no Yaiba][01][x264 1080p][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[UHA-WINGS][Kimetsu no Yaiba][01-26 END][x264 1080p][CHT]/[UHA-WINGS][Kimetsu no Yaiba][07][x264 1080p][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[UHA-WINGS][Kimetsu no Yaiba][01-26 END][x264 1080p][CHT]/[UHA-WINGS][Kimetsu no Yaiba][16][x264 1080p][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[UHA-WINGS][Kimetsu no Yaiba][01-26 END][x264 1080p][CHT]/[UHA-WINGS][Kimetsu no Yaiba][21][x264 1080p][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[UHA-WINGS][Kimetsu no Yaiba][01-26 END][x264 1080p][CHT]/[UHA-WINGS][Kimetsu no Yaiba][10][x264 1080p][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[UHA-WINGS][Kimetsu no Yaiba][01-26 END][x264 1080p][CHT]/[UHA-WINGS][Kimetsu no Yaiba][06][x264 1080p][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 記憶縫線 YOUR FORMA - 08 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Sakurato] Okinawa de Suki ni Natta Ko ga Hougen Sugite Tsura Sugiru [01][HEVC-10bit 1080p AAC][CHS&CHT&JPN].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 靠廢柴技能【狀態異常】成為最強的我將蹂躪一切 - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Hikaru ga Shinda Natsu - 01 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Lilith-Raws] Mushoku Tensei S02 - 13 [Baha][WebDL 1080p AVC AAC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[U3-Web] Kabaneri of the Iron Fortress - The Battle of Unato (2019) [Movie][NFLX WEB-DL 1080p AVC E-AC-3 DDP5.1]/[U3-Web] Koutetsujou no Kabaneri Unato Kessen - 01 [NFLX WEB-DL 1080p AVC DDP5.1].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[U3-Web] Kabaneri of the Iron Fortress - The Battle of Unato (2019) [Movie][NFLX WEB-DL 1080p AVC E-AC-3 DDP5.1]/[U3-Web] Koutetsujou no Kabaneri Unato Kessen - 02 [NFLX WEB-DL 1080p AVC DDP5.1].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[U3-Web] Kabaneri of the Iron Fortress - The Battle of Unato (2019) [Movie][NFLX WEB-DL 1080p AVC E-AC-3 DDP5.1]/[U3-Web] Koutetsujou no Kabaneri Unato Kessen - 03 [NFLX WEB-DL 1080p AVC DDP5.1].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[heibaiSub] Arafou Otoko no Isekai Tsuuhan Seikatsu [09] [WebRip] [AVC-8bit 1080P AAC][CHT&JPN].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 膽大黨 第二季 - 24 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 差點在迷宮深處被信任的夥伴殺掉,但靠著天賜技能「無限扭蛋」獲得等級 9999 的夥伴,我要向前隊友和世界展開復仇&「給他們好看!」 - 08 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Saikyou Tank no Meikyuu Kouryaku - 01 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 我獨自升級 - 08 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Hazure Waku no Joutaiijou Sukiru - 06 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/爱,死亡和机器人S03.Love,Death.and.Robots.2022.1080p.WEB-DL.x265.AC3£cXcY@FRDS/Love,Death.and.Robots.S03E03.2022.1080p.WEB-DL.x265.10bit.AC3£cXcY@FRDS.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/爱,死亡和机器人S03.Love,Death.and.Robots.2022.1080p.WEB-DL.x265.AC3£cXcY@FRDS/Love,Death.and.Robots.S03E07.2022.1080p.WEB-DL.x265.10bit.AC3£cXcY@FRDS.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/爱,死亡和机器人S03.Love,Death.and.Robots.2022.1080p.WEB-DL.x265.AC3£cXcY@FRDS/Love,Death.and.Robots.S03E04.2022.1080p.WEB-DL.x265.10bit.AC3£cXcY@FRDS.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/爱,死亡和机器人S03.Love,Death.and.Robots.2022.1080p.WEB-DL.x265.AC3£cXcY@FRDS/Love,Death.and.Robots.S03E08.2022.1080p.WEB-DL.x265.10bit.AC3£cXcY@FRDS.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/爱,死亡和机器人S03.Love,Death.and.Robots.2022.1080p.WEB-DL.x265.AC3£cXcY@FRDS/Love,Death.and.Robots.S03E06.2022.1080p.WEB-DL.x265.10bit.AC3£cXcY@FRDS.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/爱,死亡和机器人S03.Love,Death.and.Robots.2022.1080p.WEB-DL.x265.AC3£cXcY@FRDS/Love,Death.and.Robots.S03E02.2022.1080p.WEB-DL.x265.10bit.AC3£cXcY@FRDS.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/爱,死亡和机器人S03.Love,Death.and.Robots.2022.1080p.WEB-DL.x265.AC3£cXcY@FRDS/Love,Death.and.Robots.S03E05.2022.1080p.WEB-DL.x265.10bit.AC3£cXcY@FRDS.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/爱,死亡和机器人S03.Love,Death.and.Robots.2022.1080p.WEB-DL.x265.AC3£cXcY@FRDS/Love,Death.and.Robots.S03E01.2022.1080p.WEB-DL.x265.10bit.AC3£cXcY@FRDS.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/爱,死亡和机器人S03.Love,Death.and.Robots.2022.1080p.WEB-DL.x265.AC3£cXcY@FRDS/Love,Death.and.Robots.S03E09.2022.1080p.WEB-DL.x265.10bit.AC3£cXcY@FRDS.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 歲月流逝飯菜依舊美味 - 11 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] GNOSIA - 03 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 王者天下 第六季 - 08 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Nekomoe kissaten][Ninja Kamui][12][1080p][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[BeanSub&FZSD][Kimetsu_no_Yaiba][59][BIG5][1080P][x264_AAC].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 魔術師庫諾看得見一切 - 04 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Kizetsu Yuusha to Ansatsu Hime - 01 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 聽說你們要結婚!? - 11 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Sakurato] Dungeon Meshi [10][AVC-8bit 1080p AAC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Sakurato] Haite Kudasai, Takamine-san [01][AVC-8bit 1080p AAC][CHT&JPN].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Levius [WebRip 1080p HEVC-10bit AAC SRTx4]/[LoliHouse] Levius - 11 [WebRip 1080p HEVC-10bit AAC SRTx4].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Levius [WebRip 1080p HEVC-10bit AAC SRTx4]/[LoliHouse] Levius - 06 [WebRip 1080p HEVC-10bit AAC SRTx4].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Levius [WebRip 1080p HEVC-10bit AAC SRTx4]/[LoliHouse] Levius - 02 [WebRip 1080p HEVC-10bit AAC SRTx4].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Levius [WebRip 1080p HEVC-10bit AAC SRTx4]/[LoliHouse] Levius - 07 [WebRip 1080p HEVC-10bit AAC SRTx4].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Levius [WebRip 1080p HEVC-10bit AAC SRTx4]/[LoliHouse] Levius - 03 [WebRip 1080p HEVC-10bit AAC SRTx4].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Levius [WebRip 1080p HEVC-10bit AAC SRTx4]/[LoliHouse] Levius - 10 [WebRip 1080p HEVC-10bit AAC SRTx4].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Levius [WebRip 1080p HEVC-10bit AAC SRTx4]/[LoliHouse] Levius - 05 [WebRip 1080p HEVC-10bit AAC SRTx4].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Levius [WebRip 1080p HEVC-10bit AAC SRTx4]/[LoliHouse] Levius - 01 [WebRip 1080p HEVC-10bit AAC SRTx4].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Levius [WebRip 1080p HEVC-10bit AAC SRTx4]/[LoliHouse] Levius - 09 [WebRip 1080p HEVC-10bit AAC SRTx4].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Levius [WebRip 1080p HEVC-10bit AAC SRTx4]/[LoliHouse] Levius - 12 [WebRip 1080p HEVC-10bit AAC SRTx4].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Levius [WebRip 1080p HEVC-10bit AAC SRTx4]/[LoliHouse] Levius - 08 [WebRip 1080p HEVC-10bit AAC SRTx4].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Levius [WebRip 1080p HEVC-10bit AAC SRTx4]/[LoliHouse] Levius - 04 [WebRip 1080p HEVC-10bit AAC SRTx4].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 我獨自升級 第二季 -起於闇影- - 13 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 素材採集家的異世界旅行記 - 05 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Feibanyama] Fate-strange Fake - 05 [IQIYI WebRip 2160p HEVC OPUS Dual-Audio Multi-Subs].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 身為暗殺者的我明顯比勇者還強 - 07 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Hitoribocchi no Isekai Kouryaku - 10 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[KissSub][Dosanko Gal wa Namara Menkoi][12][1080P][BIG5][MP4].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 膽大黨 第二季 - 18 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Nekomoe kissaten][Chi. Chikyuu no Undou ni Tsuite][05][1080p][JPSC].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 轉生貴族憑鑑定技能扭轉人生 第二季 - 20 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 盾之勇者成名錄 Season 4 - 08 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/The.Monkey.King.2023.Netflix.WEB-DL.1080p.x264.DDP-Enichi/The.Monkey.King.2023.Netflix.WEB-DL.1080p.x264.DDP-Enichi.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Nekomoe kissaten][Your Forma][03][1080p][JPTC].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Kamigami] Kaze ga Tsuyoku Fuiteiru [BD 1080p x265 Ma10p AAC]/[Kamigami] Kaze ga Tsuyoku Fuiteiru - 04 [BD 1080p x265 Ma10p AAC].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Kamigami] Kaze ga Tsuyoku Fuiteiru [BD 1080p x265 Ma10p AAC]/[Kamigami] Kaze ga Tsuyoku Fuiteiru - 02 [BD 1080p x265 Ma10p AAC].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Kamigami] Kaze ga Tsuyoku Fuiteiru [BD 1080p x265 Ma10p AAC]/[Kamigami] Kaze ga Tsuyoku Fuiteiru - 21 [BD 1080p x265 Ma10p AAC].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Kamigami] Kaze ga Tsuyoku Fuiteiru [BD 1080p x265 Ma10p AAC]/[Kamigami] Kaze ga Tsuyoku Fuiteiru - 19 [BD 1080p x265 Ma10p AAC].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Kamigami] Kaze ga Tsuyoku Fuiteiru [BD 1080p x265 Ma10p AAC]/[Kamigami] Kaze ga Tsuyoku Fuiteiru - 15 [BD 1080p x265 Ma10p AAC].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Kamigami] Kaze ga Tsuyoku Fuiteiru [BD 1080p x265 Ma10p AAC]/[Kamigami] Kaze ga Tsuyoku Fuiteiru - 13 [BD 1080p x265 Ma10p AAC].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Kamigami] Kaze ga Tsuyoku Fuiteiru [BD 1080p x265 Ma10p AAC]/[Kamigami] Kaze ga Tsuyoku Fuiteiru - 08 [BD 1080p x265 Ma10p AAC].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Kamigami] Kaze ga Tsuyoku Fuiteiru [BD 1080p x265 Ma10p AAC]/[Kamigami] Kaze ga Tsuyoku Fuiteiru - 05 [BD 1080p x265 Ma10p AAC].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Kamigami] Kaze ga Tsuyoku Fuiteiru [BD 1080p x265 Ma10p AAC]/[Kamigami] Kaze ga Tsuyoku Fuiteiru - 03 [BD 1080p x265 Ma10p AAC].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Kamigami] Kaze ga Tsuyoku Fuiteiru [BD 1080p x265 Ma10p AAC]/[Kamigami] Kaze ga Tsuyoku Fuiteiru - 20 [BD 1080p x265 Ma10p AAC].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Kamigami] Kaze ga Tsuyoku Fuiteiru [BD 1080p x265 Ma10p AAC]/[Kamigami] Kaze ga Tsuyoku Fuiteiru - 18 [BD 1080p x265 Ma10p AAC].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Kamigami] Kaze ga Tsuyoku Fuiteiru [BD 1080p x265 Ma10p AAC]/[Kamigami] Kaze ga Tsuyoku Fuiteiru - 14 [BD 1080p x265 Ma10p AAC].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Kamigami] Kaze ga Tsuyoku Fuiteiru [BD 1080p x265 Ma10p AAC]/[Kamigami] Kaze ga Tsuyoku Fuiteiru - 12 [BD 1080p x265 Ma10p AAC].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Kamigami] Kaze ga Tsuyoku Fuiteiru [BD 1080p x265 Ma10p AAC]/[Kamigami] Kaze ga Tsuyoku Fuiteiru - 09 [BD 1080p x265 Ma10p AAC].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Kamigami] Kaze ga Tsuyoku Fuiteiru [BD 1080p x265 Ma10p AAC]/[Kamigami] Kaze ga Tsuyoku Fuiteiru - 06 [BD 1080p x265 Ma10p AAC].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Kamigami] Kaze ga Tsuyoku Fuiteiru [BD 1080p x265 Ma10p AAC]/[Kamigami] Kaze ga Tsuyoku Fuiteiru - 23 [BD 1080p x265 Ma10p AAC].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Kamigami] Kaze ga Tsuyoku Fuiteiru [BD 1080p x265 Ma10p AAC]/[Kamigami] Kaze ga Tsuyoku Fuiteiru - 17 [BD 1080p x265 Ma10p AAC].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Kamigami] Kaze ga Tsuyoku Fuiteiru [BD 1080p x265 Ma10p AAC]/[Kamigami] Kaze ga Tsuyoku Fuiteiru - 11 [BD 1080p x265 Ma10p AAC].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Kamigami] Kaze ga Tsuyoku Fuiteiru [BD 1080p x265 Ma10p AAC]/Bonus/[Kamigami] Kaze ga Tsuyoku Fuiteiru - NCED2 [BD 1080p x265 Ma10p AAC].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Kamigami] Kaze ga Tsuyoku Fuiteiru [BD 1080p x265 Ma10p AAC]/Bonus/[Kamigami] Kaze ga Tsuyoku Fuiteiru - NCOP1 [BD 1080p x265 Ma10p AAC].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Kamigami] Kaze ga Tsuyoku Fuiteiru [BD 1080p x265 Ma10p AAC]/Bonus/[Kamigami] Kaze ga Tsuyoku Fuiteiru - NCOP2 [BD 1080p x265 Ma10p AAC].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Kamigami] Kaze ga Tsuyoku Fuiteiru [BD 1080p x265 Ma10p AAC]/Bonus/[Kamigami] Kaze ga Tsuyoku Fuiteiru - NCED1 [BD 1080p x265 Ma10p AAC].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Kamigami] Kaze ga Tsuyoku Fuiteiru [BD 1080p x265 Ma10p AAC]/[Kamigami] Kaze ga Tsuyoku Fuiteiru - 07 [BD 1080p x265 Ma10p AAC].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Kamigami] Kaze ga Tsuyoku Fuiteiru [BD 1080p x265 Ma10p AAC]/[Kamigami] Kaze ga Tsuyoku Fuiteiru - 22 [BD 1080p x265 Ma10p AAC].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Kamigami] Kaze ga Tsuyoku Fuiteiru [BD 1080p x265 Ma10p AAC]/[Kamigami] Kaze ga Tsuyoku Fuiteiru - 01 [BD 1080p x265 Ma10p AAC].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Kamigami] Kaze ga Tsuyoku Fuiteiru [BD 1080p x265 Ma10p AAC]/[Kamigami] Kaze ga Tsuyoku Fuiteiru - 16 [BD 1080p x265 Ma10p AAC].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Kamigami] Kaze ga Tsuyoku Fuiteiru [BD 1080p x265 Ma10p AAC]/[Kamigami] Kaze ga Tsuyoku Fuiteiru - 10 [BD 1080p x265 Ma10p AAC].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 妻子變成小學生。 - 03 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 杖與劍的魔劍譚 - 12 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 地下城中的人 - 09 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] LAZARUS 拉撒路 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Feibanyama] JUJUTSU KAISEN S3 - 05 [IQIYI WebRip 2160p HEVC OPUS Multi-Subs].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Shigurui/[Cervoz] Shigurui - 04 {Bluray.1080p}{Jap-Fr.Aac}{Fr-For.Sub} [975477FF].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Shigurui/[Cervoz] Shigurui - 06 {Bluray.1080p}{Jap-Fr.Aac}{Fr-For.Sub} [1ADE42BE].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Shigurui/[Cervoz] Shigurui - 01 {Bluray.1080p}{Jap-Fr.Aac}{Fr-For.Sub} [521617A2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Shigurui/[Cervoz] Shigurui - 02 {Bluray.1080p}{Jap-Fr.Aac}{Fr-For.Sub} [650B5190].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Shigurui/[Cervoz] Shigurui - 08 {Bluray.1080p}{Jap-Fr.Aac}{Fr-For.Sub} [B6D8A8E0].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Shigurui/[Cervoz] Shigurui - 09 {Bluray.1080p}{Jap-Fr.Aac}{Fr-For.Sub} [D8A4BC20].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Shigurui/[Cervoz] Shigurui - 05 {Bluray.1080p}{Jap-Fr.Aac}{Fr-For.Sub} [1F0206C6].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Shigurui/[Cervoz] Shigurui - 10 {Bluray.1080p}{Jap-Fr.Aac}{Fr-For.Sub} [D3D7C5D9].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Shigurui/[Cervoz] Shigurui - 11 {Bluray.1080p}{Jap-Fr.Aac}{Fr-For.Sub} [B321B908].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Shigurui/[Cervoz] Shigurui - 12 {Bluray.1080p}{Jap-Fr.Aac}{Fr-For.Sub} [7432E577].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Shigurui/[Cervoz] Shigurui - 03 {Bluray.1080p}{Jap-Fr.Aac}{Fr-For.Sub} [0852517D].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Shigurui/[Cervoz] Shigurui - 07 {Bluray.1080p}{Jap-Fr.Aac}{Fr-For.Sub} [66499B33].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 香格里拉・開拓異境~糞作獵手挑戰神作~ 第二季 - 21 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 轉生貴族憑鑑定技能扭轉人生 - 11 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Shin Samurai-den YAIBA - 15 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 杖與劍的魔劍譚 - 09 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Fate strange Fake - 03 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Lilith-Raws] Re:Monster - 03 [Baha][WebDL 1080p AVC AAC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 地下城中的人 - 12 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 擁有超常技能的異世界流浪美食家 S2 - 24 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 永遠的黃昏 - 04 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[BeanSub&FZSD][BLEACH_Sennen_Kessen-hen][28][BIG5][1080P][x264_AAC].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] NUKITASHI 住在拔作島上的我該如何是好? [年齡限制版] - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 貫徹輔助魔法支援弱小隊友的宮廷魔法師,慘遭驅逐後目標成為最強冒險者 - 06 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Yami Healer - 05 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Nekomoe kissaten][Kusuriya no Hitorigoto][19][1080p][JPTC].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Tsue to Tsurugi no Wistoria - 05 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 九龍大眾浪漫 - 08 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 最強肉盾的迷宮攻略~擁有稀少技能體力 9999 的肉盾,被勇者隊伍辭退了~ - 05 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Skymoon-Raws] Zom 100 - Zombie ni Naru made ni Shitai 100 no Koto - 01 [ViuTV][WEB-DL][CHT][1080p][AVC AAC][MP4+ASS]/[Skymoon-Raws] Zom 100 - Zombie ni Naru made ni Shitai 100 no Koto - 01 [ViuTV][WEB-DL][1080p][AVC AAC].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 葬送的芙莉蓮 第二季 - 31 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Shin no Nakama 2nd - 04 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[KTXP][Hokkaido_Gals_Are_Super_Adorable!][10][HEVC_opus][1080p].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Katainaka no Ossan, Kensei ni Naru - 08 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 水屬性的魔法師 - 05 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 終末起點 - 03 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 擁有超常技能的異世界流浪美食家 S2 - 18 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 在地下城尋求邂逅是否搞錯了什麼 第五季 - 03 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Sakurato] Mushoku Tensei S2 [14][AVC-8bit 1080P AAC][CHT@60FPS].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 九龍大眾浪漫 - 13 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 香格里拉・開拓異境~糞作獵手挑戰神作~ 第二季 - 06 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 關於我轉生變成史萊姆這檔事 第三季 - 71 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Tensei Shitara Slime Datta Ken 3rd Season - 61 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 我與尼特女忍者的莫名同居生活 - 03 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 我獨自升級 第二季 -起於闇影- - 19 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 最後可以再拜託您一件事嗎? - 07 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[DragsterPS] Ghost in the Shell - SAC_2045 S01 [720p] [Japanese Audio] [Multi-Subs]/[DragsterPS] Ghost in the Shell - SAC_2045 S01E03 [720p] [Japanese Audio] [Multi-Subs] [9F9FC6CA].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[DragsterPS] Ghost in the Shell - SAC_2045 S01 [720p] [Japanese Audio] [Multi-Subs]/[DragsterPS] Ghost in the Shell - SAC_2045 S01E01 [720p] [Japanese Audio] [Multi-Subs] [5DD471D6].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[DragsterPS] Ghost in the Shell - SAC_2045 S01 [720p] [Japanese Audio] [Multi-Subs]/[DragsterPS] Ghost in the Shell - SAC_2045 S01E12 [720p] [Japanese Audio] [Multi-Subs] [E20D6E8C].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[DragsterPS] Ghost in the Shell - SAC_2045 S01 [720p] [Japanese Audio] [Multi-Subs]/[DragsterPS] Ghost in the Shell - SAC_2045 S01E08 [720p] [Japanese Audio] [Multi-Subs] [DBB56C13].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[DragsterPS] Ghost in the Shell - SAC_2045 S01 [720p] [Japanese Audio] [Multi-Subs]/[DragsterPS] Ghost in the Shell - SAC_2045 S01E09 [720p] [Japanese Audio] [Multi-Subs] [627F8BBA].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[DragsterPS] Ghost in the Shell - SAC_2045 S01 [720p] [Japanese Audio] [Multi-Subs]/[DragsterPS] Ghost in the Shell - SAC_2045 S01E02 [720p] [Japanese Audio] [Multi-Subs] [79CFBC72].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[DragsterPS] Ghost in the Shell - SAC_2045 S01 [720p] [Japanese Audio] [Multi-Subs]/[DragsterPS] Ghost in the Shell - SAC_2045 S01E05 [720p] [Japanese Audio] [Multi-Subs] [8F6F0778].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[DragsterPS] Ghost in the Shell - SAC_2045 S01 [720p] [Japanese Audio] [Multi-Subs]/[DragsterPS] Ghost in the Shell - SAC_2045 S01E04 [720p] [Japanese Audio] [Multi-Subs] [A6410DBD].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[DragsterPS] Ghost in the Shell - SAC_2045 S01 [720p] [Japanese Audio] [Multi-Subs]/[DragsterPS] Ghost in the Shell - SAC_2045 S01E11 [720p] [Japanese Audio] [Multi-Subs] [90855CF9].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[DragsterPS] Ghost in the Shell - SAC_2045 S01 [720p] [Japanese Audio] [Multi-Subs]/[DragsterPS] Ghost in the Shell - SAC_2045 S01E07 [720p] [Japanese Audio] [Multi-Subs] [3DA89D78].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[DragsterPS] Ghost in the Shell - SAC_2045 S01 [720p] [Japanese Audio] [Multi-Subs]/[DragsterPS] Ghost in the Shell - SAC_2045 S01E10 [720p] [Japanese Audio] [Multi-Subs] [63349AB5].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[DragsterPS] Ghost in the Shell - SAC_2045 S01 [720p] [Japanese Audio] [Multi-Subs]/[DragsterPS] Ghost in the Shell - SAC_2045 S01E06 [720p] [Japanese Audio] [Multi-Subs] [7398EB28].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 使人誤解的工房主~關於原英雄隊伍的雜役人員,實際上除了戰鬥能力外全是SSS的故事~ - 11 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 戀上換裝娃娃 Season 2 - 14 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Lv2 kara Cheat datta Motoyuusha Kouho no Mattari Isekai Life - 02 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] WIND BREAKER—防風少年— - 11 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 我內心的糟糕念頭 第二季 - 16 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Nekomoe kissaten][Tower of God S2][13][1080p][CHS].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/The.Garden.of.Words.2013.1080p.BluRay.x264-WiKi/The.Garden.of.Words.2013.1080p.BluRay.x264-WiKi.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/The.Garden.of.Words.2013.1080p.BluRay.x264-WiKi/Sample/The.Garden.of.Words.2013.1080p.BluRay.x264-WiKi.Sample.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Skymoon-Raws] Akuyaku Reijou Tensei Ojisan - 01 [ViuTV][WEB-DL][CHT][SRT][1080p][AVC AAC].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[UHA-WINGS][Vindland Saga][BDRIP x264 1080p]/[UHA-WINGS][Vindland Saga][07][BDRIP x264 1080p].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[UHA-WINGS][Vindland Saga][BDRIP x264 1080p]/[UHA-WINGS][Vindland Saga][10][BDRIP x264 1080p].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[UHA-WINGS][Vindland Saga][BDRIP x264 1080p]/[UHA-WINGS][Vindland Saga][22][BDRIP x264 1080p].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[UHA-WINGS][Vindland Saga][BDRIP x264 1080p]/[UHA-WINGS][Vindland Saga][23][BDRIP x264 1080p].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[UHA-WINGS][Vindland Saga][BDRIP x264 1080p]/[UHA-WINGS][Vindland Saga][11][BDRIP x264 1080p].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[UHA-WINGS][Vindland Saga][BDRIP x264 1080p]/[UHA-WINGS][Vindland Saga][06][BDRIP x264 1080p].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[UHA-WINGS][Vindland Saga][BDRIP x264 1080p]/[UHA-WINGS][Vindland Saga][18][BDRIP x264 1080p].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[UHA-WINGS][Vindland Saga][BDRIP x264 1080p]/[UHA-WINGS][Vindland Saga][13][BDRIP x264 1080p].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[UHA-WINGS][Vindland Saga][BDRIP x264 1080p]/[UHA-WINGS][Vindland Saga][04][BDRIP x264 1080p].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[UHA-WINGS][Vindland Saga][BDRIP x264 1080p]/[UHA-WINGS][Vindland Saga][21][BDRIP x264 1080p].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[UHA-WINGS][Vindland Saga][BDRIP x264 1080p]/[UHA-WINGS][Vindland Saga][20][BDRIP x264 1080p].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[UHA-WINGS][Vindland Saga][BDRIP x264 1080p]/[UHA-WINGS][Vindland Saga][05][BDRIP x264 1080p].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[UHA-WINGS][Vindland Saga][BDRIP x264 1080p]/[UHA-WINGS][Vindland Saga][12][BDRIP x264 1080p].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[UHA-WINGS][Vindland Saga][BDRIP x264 1080p]/[UHA-WINGS][Vindland Saga][19][BDRIP x264 1080p].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[UHA-WINGS][Vindland Saga][BDRIP x264 1080p]/[UHA-WINGS][Vindland Saga][24][BDRIP x264 1080p].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[UHA-WINGS][Vindland Saga][BDRIP x264 1080p]/[UHA-WINGS][Vindland Saga][16][BDRIP x264 1080p].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[UHA-WINGS][Vindland Saga][BDRIP x264 1080p]/[UHA-WINGS][Vindland Saga][01][BDRIP x264 1080p].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[UHA-WINGS][Vindland Saga][BDRIP x264 1080p]/[UHA-WINGS][Vindland Saga][17][BDRIP x264 1080p].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[UHA-WINGS][Vindland Saga][BDRIP x264 1080p]/[UHA-WINGS][Vindland Saga][02][BDRIP x264 1080p].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[UHA-WINGS][Vindland Saga][BDRIP x264 1080p]/[UHA-WINGS][Vindland Saga][09][BDRIP x264 1080p].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[UHA-WINGS][Vindland Saga][BDRIP x264 1080p]/[UHA-WINGS][Vindland Saga][15][BDRIP x264 1080p].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[UHA-WINGS][Vindland Saga][BDRIP x264 1080p]/[UHA-WINGS][Vindland Saga][14][BDRIP x264 1080p].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[UHA-WINGS][Vindland Saga][BDRIP x264 1080p]/[UHA-WINGS][Vindland Saga][08][BDRIP x264 1080p].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[UHA-WINGS][Vindland Saga][BDRIP x264 1080p]/[UHA-WINGS][Vindland Saga][03][BDRIP x264 1080p].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 我要【招架】一切~反誤解的世界最強想成為冒險家~ - 07 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Tsuki ga Michibiku Isekai Douchuu S2 - 23 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[HYSUB]Dungeon Meshi[05][BIG5_MP4][1920X1080].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 盾之勇者成名錄 Season 4 - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 我的英雄學院 FINAL SEASON - 164 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 戰國妖狐 - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Hitoribocchi no Isekai Kouryaku - 01 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 新人大叔冒險者,被最強隊伍操到死成無敵 - 05 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 靠廢柴技能【狀態異常】成為最強的我將蹂躪一切 - 08 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 轉生貴族憑鑑定技能扭轉人生 第二季 - 16 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 差點在迷宮深處被信任的夥伴殺掉,但靠著天賜技能「無限扭蛋」獲得等級 9999 的夥伴,我要向前隊友和世界展開復仇&「給他們好看!」 - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 我獨自升級 - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Nekomoe kissaten][Ishura][05][1080p][JPSC].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[HYSUB]Sono Bisque Doll wa Koi wo Suru[13][BIG5_MP4][1920X1080].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Nekomoe kissaten] Chi. Chikyuu no Undou ni Tsuite [03][WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Comicat][Ninja to Koroshiya no Futarigurashi][02][1080P][BIG5][MP4].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 我獨自升級 第二季 -起於闇影- - 25 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 最近的偵探真沒用 - 07 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 膽大黨 - 07 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Nekomoe kissaten][Ishura][10][1080p][JPSC].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Nekomoe kissaten][Dungeon Meshi][18][1080p][JPTC].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Maougun Saikyou no Majutsushi wa Ningen datta - 01 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Dynamis One] Tsuyokute New Saga - 07 (CR 1920x1080 AVC AAC MKV) [3E2D0ED7].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 我與尼特女忍者的莫名同居生活 - 07 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 小手指同學,請別亂摸 [年齡限制版] - 12 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 大江戶烈火殺手 - 鳳凰傳說 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 身為暗殺者的我明顯比勇者還強 - 09 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 素材採集家的異世界旅行記 - 10 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 我要【招架】一切~反誤解的世界最強想成為冒險家~ - 03 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Star.Wars.Visions.S01.1080p.DSNP.WEB-DL.DDP5.1.H.264-FLUX/Star.Wars.Visions.S01E02.Tatooine.Rhapsody.1080p.DSNP.WEB-DL.DDP5.1.H.264-FLUX.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Star.Wars.Visions.S01.1080p.DSNP.WEB-DL.DDP5.1.H.264-FLUX/Star.Wars.Visions.S01E05.The.Ninth.Jedi.1080p.DSNP.WEB-DL.DDP5.1.H.264-FLUX.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Star.Wars.Visions.S01.1080p.DSNP.WEB-DL.DDP5.1.H.264-FLUX/Star.Wars.Visions.S01E01.The.Duel.1080p.DSNP.WEB-DL.DDP5.1.H.264-FLUX.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Star.Wars.Visions.S01.1080p.DSNP.WEB-DL.DDP5.1.H.264-FLUX/Star.Wars.Visions.S01E08.Lop.Och.1080p.DSNP.WEB-DL.DDP5.1.H.264-FLUX.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Star.Wars.Visions.S01.1080p.DSNP.WEB-DL.DDP5.1.H.264-FLUX/Star.Wars.Visions.S01E03.The.Twins.1080p.DSNP.WEB-DL.DDP5.1.H.264-FLUX.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Star.Wars.Visions.S01.1080p.DSNP.WEB-DL.DDP5.1.H.264-FLUX/Star.Wars.Visions.S01E06.T0-B1.1080p.DSNP.WEB-DL.DDP5.1.H.264-FLUX.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Star.Wars.Visions.S01.1080p.DSNP.WEB-DL.DDP5.1.H.264-FLUX/Star.Wars.Visions.S01E04.The.Village.Bride.1080p.DSNP.WEB-DL.DDP5.1.H.264-FLUX.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Star.Wars.Visions.S01.1080p.DSNP.WEB-DL.DDP5.1.H.264-FLUX/Star.Wars.Visions.S01E07.The.Elder.1080p.DSNP.WEB-DL.DDP5.1.H.264-FLUX.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Star.Wars.Visions.S01.1080p.DSNP.WEB-DL.DDP5.1.H.264-FLUX/Star.Wars.Visions.S01E09.Akakiri.1080p.DSNP.WEB-DL.DDP5.1.H.264-FLUX.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 膽大黨 第二季 - 16 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 貴族轉生~得天眷顧一出生就獲得最強力量~ - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Lilith-Raws] Mushoku Tensei S02 - 15 [Baha][WebDL 1080p AVC AAC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[HYSUB]Dungeon Meshi[13][BIG5_MP4][1920X1080].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 新人大叔冒險者,被最強隊伍操到死成無敵 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Skymoon-Raws] SPY×FAMILY - 19 [ViuTV][WEB-DL][CHT][1080p][AVC AAC][MP4+ASS]/[Skymoon-Raws] SPY×FAMILY - 19 [ViuTV][WEB-DL][1080p][AVC AAC].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 藍色管弦樂 第二季 - 13 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 和機器人啪啪啪能算在經驗人數裡嗎?? [年齡限制版] - 03 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 盾之勇者成名錄 Season 4 - 06 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 身為暗殺者的我明顯比勇者還強 - 12 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 聽說你們要結婚!? - 04 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] Silent Witch 沉默魔女的祕密 - 11 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 我獨自升級 - 06 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Hametsu no Oukoku [01-12][WebRip 1080p HEVC-10bit AAC ASSx2]/[LoliHouse] Hametsu no Oukoku - 08 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Hametsu no Oukoku [01-12][WebRip 1080p HEVC-10bit AAC ASSx2]/[LoliHouse] Hametsu no Oukoku - 04 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Hametsu no Oukoku [01-12][WebRip 1080p HEVC-10bit AAC ASSx2]/[LoliHouse] Hametsu no Oukoku - 05 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Hametsu no Oukoku [01-12][WebRip 1080p HEVC-10bit AAC ASSx2]/[LoliHouse] Hametsu no Oukoku - 01 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Hametsu no Oukoku [01-12][WebRip 1080p HEVC-10bit AAC ASSx2]/[LoliHouse] Hametsu no Oukoku - 12 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Hametsu no Oukoku [01-12][WebRip 1080p HEVC-10bit AAC ASSx2]/[LoliHouse] Hametsu no Oukoku - 09 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Hametsu no Oukoku [01-12][WebRip 1080p HEVC-10bit AAC ASSx2]/[LoliHouse] Hametsu no Oukoku - 07 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Hametsu no Oukoku [01-12][WebRip 1080p HEVC-10bit AAC ASSx2]/[LoliHouse] Hametsu no Oukoku - 03 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Hametsu no Oukoku [01-12][WebRip 1080p HEVC-10bit AAC ASSx2]/[LoliHouse] Hametsu no Oukoku - 10 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Hametsu no Oukoku [01-12][WebRip 1080p HEVC-10bit AAC ASSx2]/[LoliHouse] Hametsu no Oukoku - 11 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Hametsu no Oukoku [01-12][WebRip 1080p HEVC-10bit AAC ASSx2]/[LoliHouse] Hametsu no Oukoku - 06 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Hametsu no Oukoku [01-12][WebRip 1080p HEVC-10bit AAC ASSx2]/[LoliHouse] Hametsu no Oukoku - 02 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Skymoon-Raws] Kaguya-sama wa Kokurasetai S03 - 10 [ViuTV][WEB-DL][CHT][1080p][AVC AAC][MP4+ASS]/[Skymoon-Raws] Kaguya-sama wa Kokurasetai S03 - 10 [ViuTV][WEB-DL][1080p][AVC AAC].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 靠死亡遊戲混飯吃。 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/はねバド! 2018 1080P BDrip HEVC FLAC 2.0-SweetDreamDay/はねバド! EP07 (BDrip HEVC FLAC SUP).mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/はねバド! 2018 1080P BDrip HEVC FLAC 2.0-SweetDreamDay/はねバド! EP012 (BDrip HEVC FLAC SUP).mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/はねバド! 2018 1080P BDrip HEVC FLAC 2.0-SweetDreamDay/はねバド! EP04 (BDrip HEVC FLAC SUP).mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/はねバド! 2018 1080P BDrip HEVC FLAC 2.0-SweetDreamDay/はねバド! EP011 (BDrip HEVC FLAC SUP).mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/はねバド! 2018 1080P BDrip HEVC FLAC 2.0-SweetDreamDay/はねバド! EP01 (BDrip HEVC FLAC SUP).mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/はねバド! 2018 1080P BDrip HEVC FLAC 2.0-SweetDreamDay/はねバド! EP02 (BDrip HEVC FLAC SUP).mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/はねバド! 2018 1080P BDrip HEVC FLAC 2.0-SweetDreamDay/はねバド! EP08 (BDrip HEVC FLAC SUP).mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/はねバド! 2018 1080P BDrip HEVC FLAC 2.0-SweetDreamDay/映像特典/『もりバド!』浜松合宿編~インターハイ2018の聖地へ~パッケージ特別編② (BDrip HEVC FLAC).mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/はねバド! 2018 1080P BDrip HEVC FLAC 2.0-SweetDreamDay/映像特典/Blu-ray&DVD VOLUME1 CM コニーx志波姬x多賀城 (BDrip HEVC FLAC).mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/はねバド! 2018 1080P BDrip HEVC FLAC 2.0-SweetDreamDay/映像特典/Blu-ray&DVD VOLUME1 CM 石澤望x倉石監督 (BDrip HEVC FLAC).mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/はねバド! 2018 1080P BDrip HEVC FLAC 2.0-SweetDreamDay/映像特典/オープニングムービー(クレジット有) (BDrip HEVC FLAC).mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/はねバド! 2018 1080P BDrip HEVC FLAC 2.0-SweetDreamDay/映像特典/Blu-ray&DVD VOLUME1 CM 羽咲綾乃x荒垣なぎさ(アナザーver.) (BDrip HEVC FLAC).mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/はねバド! 2018 1080P BDrip HEVC FLAC 2.0-SweetDreamDay/映像特典/Blu-ray&DVD VOLUME1 CM 羽咲綾乃x荒垣なぎさ(スタンダードver.) (BDrip HEVC FLAC).mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/はねバド! 2018 1080P BDrip HEVC FLAC 2.0-SweetDreamDay/映像特典/『もりバド!』浜松合宿編~インターハイ2018の聖地へ~パッケージ特別編① (BDrip HEVC FLAC).mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/はねバド! 2018 1080P BDrip HEVC FLAC 2.0-SweetDreamDay/映像特典/#5 エンディングムービー (BDrip HEVC FLAC).mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/はねバド! 2018 1080P BDrip HEVC FLAC 2.0-SweetDreamDay/映像特典/Blu-ray&DVD Vol.1 発売記念イベント『もりバド!』夏のオープン戦 第一部 (BDrip HEVC FLAC).mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/はねバド! 2018 1080P BDrip HEVC FLAC 2.0-SweetDreamDay/映像特典/エンディングムービー (BDrip HEVC FLAC).mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/はねバド! 2018 1080P BDrip HEVC FLAC 2.0-SweetDreamDay/映像特典/オープニングムービー(クレジット無) (BDrip HEVC FLAC).mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/はねバド! 2018 1080P BDrip HEVC FLAC 2.0-SweetDreamDay/映像特典/Blu-ray&DVD VOLUME1 CM 荒垣なぎさx泉理子 (BDrip HEVC FLAC).mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/はねバド! 2018 1080P BDrip HEVC FLAC 2.0-SweetDreamDay/映像特典/Blu-ray&DVD Vol.1 発売記念イベント『もりバド!』夏のオープン戦 第二部 (BDrip HEVC FLAC).mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/はねバド! 2018 1080P BDrip HEVC FLAC 2.0-SweetDreamDay/映像特典/PV (BDrip HEVC FLAC).mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/はねバド! 2018 1080P BDrip HEVC FLAC 2.0-SweetDreamDay/映像特典/ティザーPV (BDrip HEVC FLAC).mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/はねバド! 2018 1080P BDrip HEVC FLAC 2.0-SweetDreamDay/映像特典/Blu-ray&DVD VOLUME1 CM 芹ヶ谷薫子x立花健太郎 (BDrip HEVC FLAC).mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/はねバド! 2018 1080P BDrip HEVC FLAC 2.0-SweetDreamDay/はねバド! EP06 (BDrip HEVC FLAC SUP).mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/はねバド! 2018 1080P BDrip HEVC FLAC 2.0-SweetDreamDay/はねバド! EP013 (BDrip HEVC FLAC SUP).mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/はねバド! 2018 1080P BDrip HEVC FLAC 2.0-SweetDreamDay/はねバド! EP05 (BDrip HEVC FLAC SUP).mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/はねバド! 2018 1080P BDrip HEVC FLAC 2.0-SweetDreamDay/はねバド! EP010 (BDrip HEVC FLAC SUP).mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/はねバド! 2018 1080P BDrip HEVC FLAC 2.0-SweetDreamDay/はねバド! EP03 (BDrip HEVC FLAC SUP).mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/はねバド! 2018 1080P BDrip HEVC FLAC 2.0-SweetDreamDay/はねバド! EP09 (BDrip HEVC FLAC SUP).mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 我獨自升級 第二季 -起於闇影- - 21 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 黃昏旅店 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Ghost.in.the.Shell.SAC.2nd.GIG.Individual.Eleven.2006.1080p.BluRay.x265.10bit-WiKi/Ghost.in.the.Shell.SAC.2nd.GIG.Individual.Eleven.2006.1080p.BluRay.x265.10bit-WiKi.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 歲月流逝飯菜依舊美味 - 04 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 最近的偵探真沒用 - 03 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 膽大黨 - 03 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Nekomoe kissaten&LoliHouse] Ao no Hako - 04 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[BeanSub][Ao no Exorcist _Yosuga Hen][01][BIG5][1080P][x264_AAC].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 無職轉生~到了異世界就拿出真本事 第二季 - 17 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 妻子變成小學生。 - 07 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[NEO·QSW]劇場版 天元突破グレンラガン[UHDRIP HEVC DTS-7.1ch DOLBY ATMOS SDR 2160P&BDRIP HEVC DTS-5.1ch 1080P]/[NEO·QSW]劇場版 天元突破グレンラガン 螺巌編[UHDRIP HEVC DTS-7.1ch DOLBY ATMOS SDR 2160P].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[NEO·QSW]劇場版 天元突破グレンラガン[UHDRIP HEVC DTS-7.1ch DOLBY ATMOS SDR 2160P&BDRIP HEVC DTS-5.1ch 1080P]/[NEO·QSW]劇場版 天元突破グレンラガン 紅蓮篇[UHDRIP HEVC DTS-7.1ch DOLBY ATMOS SDR 2160P].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Kowloon Generic Romance - 11 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 勇氣爆發 BANG BRAVERN - 09 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Nekomoe kissaten][Unnamed Memory][01][1080p][JPSC].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Nekomoe kissaten][Silent Witch - Chinmoku no Majo no Kakushigoto][04][1080p][JPSC].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 在沖繩喜歡上的女孩方言講得太過令人困擾 - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Sakurato] Zenshuu. [02][HEVC-10bit 1080p AAC][CHS&CHT].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Nekomoe kissaten&LoliHouse] Kaii to Otome to Kamikakushi - 02 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Tensei Shitara Slime Datta Ken 3rd Season - 59 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] LAZARUS 拉撒路 - 05 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Nekomoe kissaten&LoliHouse] Mushoku Tensei S2 - 13 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Shin Samurai-den YAIBA - 11 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/The.Boys.S03.2160p.AMZN.WEB-DL.DDP5.1.HDR.H.265-BillyButcher/The.Boys.S03E08.The.Instant.White-Hot.Wild.2160p.AMZN.WEB-DL.DDP5.1.HDR.H.265-BillyButcher.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Around 40 Otoko no Isekai Tsuuhan - 10 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 香格里拉・開拓異境~糞作獵手挑戰神作~ 第二季 - 25 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 香格里拉・開拓異境~糞作獵手挑戰神作~ - 14 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 勇氣爆發 BANG BRAVERN - 12 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 魔都精兵的奴隸 第二季 - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Specials/S00E08 - 4-PCT #4 - Now I Can Relax!!, Nothing is More Expensive Than Free, Instinct, Turn Out.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Specials/S00E05 - 4-PCT #1 - Steel and Alchemists, The Freezer, State Alchemist Exam.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Specials/S00E10 - 4-PCT #6 - Fluffy, Mr Train, Mach!!, Memories With My Father.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Specials/Extras/Fifth Season Opening Theme - Rain by Sid.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Specials/Extras/Fourth Season Opening Theme - Period by Chemistry.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Specials/Extras/First Season Ending Theme - USO by Sid.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Specials/Extras/Fourth Season Ending Theme - Shunkan Sentimental by Scandal.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Specials/Extras/Third Season Opening Theme - Golden Time Lover by Sukima Switch.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Specials/Extras/First Season Opening Theme - again by Yui.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Specials/Extras/Making of Sacred Star of Milos.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Specials/Extras/Second Season Opening Theme - HOLOGRAM by NICO Touches the Walls.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Specials/Extras/Fifth Season Ending Theme - Ray of Light by Shoko Nakagawa.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Specials/Extras/Third Season Ending Theme - Tsunaida Te by Lil' B.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Specials/Extras/Second Season Ending Theme - Let it Out by Miho Fukuhara.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Specials/S00E13 - 4-PCT #9 - I Can Do It Myself!, Terrifiying Little Boy!!, Run Away!!, Dealing With Adults.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Specials/S00E16 - 4-PCT #12 - Kiss if Death, The Road to Reunion, The Delighful Bradley Family, Earth-Friendly Terrorism.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Specials/S00E07 - 4-PCT #3 - God!!, I Don't Think I Can Win, Why Didn't You Say So, Mustang In It Deep.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Specials/S00E15 - 4-PCT #11 - There'll Be No Undoing It!!, In The Bathroom, Beginnings of Love, The Legs are Just Decorative.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Specials/S00E17 - 4-PCT #13 - It's Out!, You Can Do It If You Try, Stop Selim, Rebecca.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Specials/S00E09 - 4-PCT #5 - Identity, Love is Blind, Combustable Garbage, My Preference.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Specials/S00E02 - OVA - Simple People.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Specials/S00E21 - The Sacred Star of Milos (1080p BluRay x265 ImE).mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Specials/S00E04 - OVA - Yet Another Man's Battlefield.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Specials/S00E20 - 4-PCT #16 - Power of a God, Man Inside Pride, Worst Strategy In History, Old Man!!, Leading Edge of Fasion.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Specials/S00E19 - 4-PCT #15 - Come Over To My Place, Sparkle, The Death of Old Man Fu!!, The Dealth of Buccaneer!!, His Name is.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Specials/S00E06 - 4-PCT #2 - Overdoing It, The Cursed House, Self-Introductions, The Perfect Woman.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Specials/S00E14 - 4-PCT #10 - Something Warm, Kimblee Behind You Behind You!!, Humiliation!!, The Weather Man.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Specials/S00E11 - 4-PCT #7 - Agar Noodles, Vaunted Father, !!!, Wall-to-Wall.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Specials/S00E18 - 4-PCT #14 - Step Forward!!, Going Back is a Bother, Sharp-Shooting, Combination.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Specials/S00E03 - OVA - The Tale of Teacher.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Specials/S00E01 - OVA - The Blind Alchemist.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Specials/S00E12 - 4-PCT #8 - Good Boy and Girls Don't Trry This At Home!, Healthy Appetite, Beautiful Memories, Smolder Garbage.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E58 - (58) - Sacrifices (1080p BluRay x265 ImE).mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E32 - (32) - The Führer's Son (1080p BluRay x265 ImE).mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E27 - (27) - Interlude Party (1080p BluRay x265 ImE).mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E22 - (22) - Backs in the Distance (1080p BluRay x265 ImE).mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E43 - (43) - Bite of the Ant (1080p BluRay x265 ImE).mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E42 - (42) - Signs of a Counteroffensive (1080p BluRay x265 ImE).mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E63 - (63) - The Other Side of the Gateway (1080p BluRay x265 ImE).mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E59 - (59) - Lost Light (1080p BluRay x265 ImE).mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E52 - (52) - Combined Strength (1080p BluRay x265 ImE).mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E11 - (11) - Miracle at Rush Valley (1080p BluRay x265 ImE).mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E64 - (64) - Journey's End (1080p BluRay x265 ImE).mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E28 - (28) - Father (1080p BluRay x265 ImE).mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E16 - (16) - Footsteps of a Comrade-in-Arms (1080p BluRay x265 ImE).mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E13 - (13) - Beasts of Dublith (1080p BluRay x265 ImE).mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E53 - (53) - Flame of Vengeance (1080p BluRay x265 ImE).mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E56 - (56) - The Return of the Führer (1080p BluRay x265 ImE).mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E40 - (40) - Homunculus (The Dwarf in the Flask) (1080p BluRay x265 ImE).mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E51 - (51) - The Immortal Legion (1080p BluRay x265 ImE).mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E05 - (5) - Rain of Sorrows (1080p BluRay x265 ImE).mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E54 - (54) - Beyond the Inferno (1080p BluRay x265 ImE).mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E24 - (24) - Inside the Belly (1080p BluRay x265 ImE).mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E10 - (10) - Separate Destinations (1080p BluRay x265 ImE).mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E38 - (38) - Conflict at Baschool (1080p BluRay x265 ImE).mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E46 - (46) - Looming Shadows (1080p BluRay x265 ImE).mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E14 - (14) - Those Who Lurk Underground (1080p BluRay x265 ImE).mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E07 - (7) - Hidden Truths (1080p BluRay x265 ImE).mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E04 - (4) - An Alchemist's Anguish (1080p BluRay x265 ImE).mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E60 - (60) - Eye of Heaven, Gateway of Earth (1080p BluRay x265 ImE).mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E01 - (1) - Fullmetal Alchemist (1080p BluRay x265 ImE).mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E23 - (23) - Girl on the Battlefield (1080p BluRay x265 ImE).mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E62 - (62) - A Fierce Counterattack (1080p BluRay x265 ImE).mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E41 - (41) - The Abyss (1080p BluRay x265 ImE).mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E36 - (36) - Family Portrait (1080p BluRay x265 ImE).mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E45 - (45) - The Promised Day (1080p BluRay x265 ImE).mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E31 - (31) - The 520 Cenz Promise (1080p BluRay x265 ImE).mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E02 - (2) - The First Day (1080p BluRay x265 ImE).mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E19 - (19) - Death of the Undying (1080p BluRay x265 ImE).mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E37 - (37) - The First Homunculus (1080p BluRay x265 ImE).mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E06 - (6) - Road of Hope (1080p BluRay x265 ImE).mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E30 - (30) - The Ishvalan War of Extermination (1080p BluRay x265 ImE).mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E50 - (50) - Upheaval in Central (1080p BluRay x265 ImE).mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E12 - (12) - One Is All, All Is One (1080p BluRay x265 ImE).mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E35 - (35) - The Shape of This Country (1080p BluRay x265 ImE).mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E47 - (47) - Emissary of Darkness (1080p BluRay x265 ImE).mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E21 - (21) - Advance of the Fool (1080p BluRay x265 ImE).mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E29 - (29) - Struggle of the Fool (1080p BluRay x265 ImE).mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E33 - (33) - The Northern Wall of Briggs (1080p BluRay x265 ImE).mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E08 - (8) - The Fifth Laboratory (1080p BluRay x265 ImE).mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E49 - (49) - Filial Affection (1080p BluRay x265 ImE).mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E15 - (15) - Envoy from the East (1080p BluRay x265 ImE).mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E44 - (44) - Revving at Full Throttle (1080p BluRay x265 ImE).mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E17 - (17) - Cold Flame (1080p BluRay x265 ImE).mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E25 - (25) - Doorway of Darkness (1080p BluRay x265 ImE).mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E39 - (39) - Daydream (1080p BluRay x265 ImE).mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E26 - (26) - Reunion (1080p BluRay x265 ImE).mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E03 - (3) - City of Heresy (1080p BluRay x265 ImE).mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E48 - (48) - The Oath in the Tunnel (1080p BluRay x265 ImE).mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E57 - (57) - Eternal Leave (1080p BluRay x265 ImE).mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E34 - (34) - Ice Queen (1080p BluRay x265 ImE).mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E18 - (18) - The Arrogant Palm of a Small Human (1080p BluRay x265 ImE).mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E09 - (9) - Created Feelings (1080p BluRay x265 ImE).mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E20 - (20) - Father Before the Grave (1080p BluRay x265 ImE).mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E55 - (55) - The Adults' Way of Life (1080p BluRay x265 ImE).mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Fullmetal Alchemist Brotherhood (2009) Season 1 S01 (1080p BluRay x265 HEVC 10bit AAC 2.0 ImE)/Fullmetal Alchemist Brotherhood (2009) - S01E61 - (61) - He Who Would Swallow God (1080p BluRay x265 ImE).mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 記憶縫線 YOUR FORMA - 06 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 忍者與殺手的兩人生活 - 10 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 擁有超常技能的異世界流浪美食家 S2 - 20 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 瞬間治癒卻被當成廢物踢出隊伍的天才治療師,改當無照治療師快樂過活 - 11 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 貫徹輔助魔法支援弱小隊友的宮廷魔法師,慘遭驅逐後目標成為最強冒險者 - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Nekomoe kissaten][Ao no Hako][05][1080p][JPSC].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Mikata ga Yowasugite Hojo Maho ni Tesshite ita Kyutei Mahoshi - 12 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[HYSUB]Sono Bisque Doll wa Koi wo Suru[01~12][BIG5_MP4][1920X1080]/[HYSUB]Sono Bisque Doll wa Koi wo Suru[02][BIG5_MP4][1920X1080].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[HYSUB]Sono Bisque Doll wa Koi wo Suru[01~12][BIG5_MP4][1920X1080]/[HYSUB]Sono Bisque Doll wa Koi wo Suru[01v2][BIG5_MP4][1920X1080].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[HYSUB]Sono Bisque Doll wa Koi wo Suru[01~12][BIG5_MP4][1920X1080]/[HYSUB]Sono Bisque Doll wa Koi wo Suru[04][BIG5_MP4][1920X1080].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[HYSUB]Sono Bisque Doll wa Koi wo Suru[01~12][BIG5_MP4][1920X1080]/[HYSUB]Sono Bisque Doll wa Koi wo Suru[11][BIG5_MP4][1920X1080].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[HYSUB]Sono Bisque Doll wa Koi wo Suru[01~12][BIG5_MP4][1920X1080]/[HYSUB]Sono Bisque Doll wa Koi wo Suru[12][BIG5_MP4][1920X1080][END].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[HYSUB]Sono Bisque Doll wa Koi wo Suru[01~12][BIG5_MP4][1920X1080]/[HYSUB]Sono Bisque Doll wa Koi wo Suru[07][BIG5_MP4][1920X1080].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[HYSUB]Sono Bisque Doll wa Koi wo Suru[01~12][BIG5_MP4][1920X1080]/[HYSUB]Sono Bisque Doll wa Koi wo Suru[08][BIG5_MP4][1920X1080].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[HYSUB]Sono Bisque Doll wa Koi wo Suru[01~12][BIG5_MP4][1920X1080]/[HYSUB]Sono Bisque Doll wa Koi wo Suru[03][BIG5_MP4][1920X1080].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[HYSUB]Sono Bisque Doll wa Koi wo Suru[01~12][BIG5_MP4][1920X1080]/[HYSUB]Sono Bisque Doll wa Koi wo Suru[05][BIG5_MP4][1920X1080].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[HYSUB]Sono Bisque Doll wa Koi wo Suru[01~12][BIG5_MP4][1920X1080]/[HYSUB]Sono Bisque Doll wa Koi wo Suru[10][BIG5_MP4][1920X1080].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[HYSUB]Sono Bisque Doll wa Koi wo Suru[01~12][BIG5_MP4][1920X1080]/[HYSUB]Sono Bisque Doll wa Koi wo Suru[06][BIG5_MP4][1920X1080].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[HYSUB]Sono Bisque Doll wa Koi wo Suru[01~12][BIG5_MP4][1920X1080]/[HYSUB]Sono Bisque Doll wa Koi wo Suru[09][BIG5_MP4][1920X1080].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 最強肉盾的迷宮攻略~擁有稀少技能體力 9999 的肉盾,被勇者隊伍辭退了~ - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 香格里拉・開拓異境~糞作獵手挑戰神作~ 第二季 - 19 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Sakurato][20210111] Mushoku Tensei Isekai Ittara Honki Dasu [01-11 Fin][TVRip][1080p@60FPS][CHT]/[Sakurato] Mushoku Tensei Isekai Ittara Honki Dasu [08v2][AVC-8bit 1080p@60FPS AAC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Sakurato][20210111] Mushoku Tensei Isekai Ittara Honki Dasu [01-11 Fin][TVRip][1080p@60FPS][CHT]/[Sakurato] Mushoku Tensei Isekai Ittara Honki Dasu [09v2][AVC-8bit 1080p@60FPS AAC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Sakurato][20210111] Mushoku Tensei Isekai Ittara Honki Dasu [01-11 Fin][TVRip][1080p@60FPS][CHT]/[Sakurato] Mushoku Tensei Isekai Ittara Honki Dasu [10v2][AVC-8bit 1080p@60FPS AAC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Sakurato][20210111] Mushoku Tensei Isekai Ittara Honki Dasu [01-11 Fin][TVRip][1080p@60FPS][CHT]/[Sakurato] Mushoku Tensei Isekai Ittara Honki Dasu [06v2][AVC-8bit 1080p@60FPS AAC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Sakurato][20210111] Mushoku Tensei Isekai Ittara Honki Dasu [01-11 Fin][TVRip][1080p@60FPS][CHT]/[Sakurato] Mushoku Tensei Isekai Ittara Honki Dasu [11v2][AVC-8bit 1080p@60FPS AAC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Sakurato][20210111] Mushoku Tensei Isekai Ittara Honki Dasu [01-11 Fin][TVRip][1080p@60FPS][CHT]/[Sakurato] Mushoku Tensei Isekai Ittara Honki Dasu [07v2][AVC-8bit 1080p@60FPS AAC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Sakurato][20210111] Mushoku Tensei Isekai Ittara Honki Dasu [01-11 Fin][TVRip][1080p@60FPS][CHT]/[Sakurato] Mushoku Tensei Isekai Ittara Honki Dasu [04v2][AVC-8bit 1080p@60FPS AAC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Sakurato][20210111] Mushoku Tensei Isekai Ittara Honki Dasu [01-11 Fin][TVRip][1080p@60FPS][CHT]/[Sakurato] Mushoku Tensei Isekai Ittara Honki Dasu [05v2][AVC-8bit 1080p@60FPS AAC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Sakurato][20210111] Mushoku Tensei Isekai Ittara Honki Dasu [01-11 Fin][TVRip][1080p@60FPS][CHT]/[Sakurato] Mushoku Tensei Isekai Ittara Honki Dasu [02v2][AVC-8bit 1080p@60FPS AAC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Sakurato][20210111] Mushoku Tensei Isekai Ittara Honki Dasu [01-11 Fin][TVRip][1080p@60FPS][CHT]/[Sakurato] Mushoku Tensei Isekai Ittara Honki Dasu [03v2][AVC-8bit 1080p@60FPS AAC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Sakurato][20210111] Mushoku Tensei Isekai Ittara Honki Dasu [01-11 Fin][TVRip][1080p@60FPS][CHT]/[Sakurato] Mushoku Tensei Isekai Ittara Honki Dasu [01v2][AVC-8bit 1080p@60FPS AAC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 治癒魔法的錯誤使用法 - 11 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 葬送的芙莉蓮 - 28 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[DMG][Isekai_Ojisan][01-13 END][1080P][BIG5][MP4]/[DMG][Isekai_Ojisan][03][1080P][BIG5].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[DMG][Isekai_Ojisan][01-13 END][1080P][BIG5][MP4]/[DMG][Isekai_Ojisan][08][1080P][BIG5].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[DMG][Isekai_Ojisan][01-13 END][1080P][BIG5][MP4]/[DMG][Isekai_Ojisan][05][1080P][BIG5].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[DMG][Isekai_Ojisan][01-13 END][1080P][BIG5][MP4]/[DMG][Isekai_Ojisan][10][1080P][BIG5].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[DMG][Isekai_Ojisan][01-13 END][1080P][BIG5][MP4]/[DMG][Isekai_Ojisan][13 END][1080P][BIG5].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[DMG][Isekai_Ojisan][01-13 END][1080P][BIG5][MP4]/[DMG][Isekai_Ojisan][09][1080P][BIG5].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[DMG][Isekai_Ojisan][01-13 END][1080P][BIG5][MP4]/[DMG][Isekai_Ojisan][02][1080P][BIG5].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[DMG][Isekai_Ojisan][01-13 END][1080P][BIG5][MP4]/[DMG][Isekai_Ojisan][04][1080P][BIG5].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[DMG][Isekai_Ojisan][01-13 END][1080P][BIG5][MP4]/[DMG][Isekai_Ojisan][11][1080P][BIG5].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[DMG][Isekai_Ojisan][01-13 END][1080P][BIG5][MP4]/[DMG][Isekai_Ojisan][01][1080P][BIG5].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[DMG][Isekai_Ojisan][01-13 END][1080P][BIG5][MP4]/[DMG][Isekai_Ojisan][12][1080P][BIG5].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[DMG][Isekai_Ojisan][01-13 END][1080P][BIG5][MP4]/[DMG][Isekai_Ojisan][07][1080P][BIG5].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[DMG][Isekai_Ojisan][01-13 END][1080P][BIG5][MP4]/[DMG][Isekai_Ojisan][06][1080P][BIG5].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 機械臂 - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Kekkon suru tte, Hontou desu ka - 07 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 在地下城尋求邂逅是否搞錯了什麼 第五季 - 07 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 怪獸 8 號 - 09 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Lilith-Raws] Kantei Skill - 03 [Baha][WebDL 1080p AVC AAC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 水屬性的魔法師 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 終末起點 - 07 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 香格里拉・開拓異境~糞作獵手挑戰神作~ 第二季 - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/《咒術迴戰 第二季》- 閑話 - 前編/《咒術迴戰 第二季》- 閑話 - 前編 (日語原聲)【Ani-One Asia ULTRA】.mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[XKsub&LoliHouse] Blue Lock [22-24][WebRip 1080p HEVC-10bit AAC ASSx2]/[XKsub&LoliHouse] Blue Lock - 24 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[XKsub&LoliHouse] Blue Lock [22-24][WebRip 1080p HEVC-10bit AAC ASSx2]/[XKsub&LoliHouse] Blue Lock - 23 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[XKsub&LoliHouse] Blue Lock [22-24][WebRip 1080p HEVC-10bit AAC ASSx2]/[XKsub&LoliHouse] Blue Lock - 22 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 離開 A 級隊伍的我,和從前的弟子往迷宮深處邁進 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Skymoon-Raws] SPY×FAMILY - 16 [ViuTV][WEB-DL][CHT][1080p][AVC AAC][MP4+ASS]/[Skymoon-Raws] SPY×FAMILY - 16 [ViuTV][WEB-DL][1080p][AVC AAC].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Godzilla.The.Planet.Eater.2018.1080p.NF.WEBRip.DDP5.1.x264-NTG/Godzilla.The.Planet.Eater.2018.1080p.NF.WEB-DL.DDP5.1.x264-NTG.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Tensei Shitara Slime Datta Ken 3rd Season - 65 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Nekomoe kissaten&LoliHouse] Sousou no Frieren - 28 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/【搬运】[我的妻子没有感情][僕の妻は感情がない][01][1080P][繁体]/【搬运】[我的妻子没有感情][僕の妻は感情がない][01][1080P][繁体].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 遲早是最強的鍊金術師? - 06 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[SweetSub] CENCOROLL CONNECT [BDRip][1080P][AVC 8bit][CHT]/[SweetSub] CENCOROLL CONNECT [BDRip][1080P][AVC 8bit][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] Re:從零開始的異世界生活 第三季 - 14 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Nekomoe kissaten][Silent Witch - Chinmoku no Majo no Kakushigoto][01][1080p][JPTC].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Nekomoe kissaten][Tower of God S2][12][1080p][CHS].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[KitaujiSub&LoliHouse] Suicide Squad Isekai - 09 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 新人大叔冒險者,被最強隊伍操到死成無敵 - 12 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 身為暗殺者的我明顯比勇者還強 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 我要【招架】一切~反誤解的世界最強想成為冒險家~ - 10 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 素材採集家的異世界旅行記 - 03 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Eternal][Modaete yo, Adam-kun][06][GB][720P][Uncensored].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Secret.Level.S01.1080p.AMZN.WEB-DL.DDP5.1.Atmos.H.264-FLUX/Secret.Level.S01E11.Exodus.Odyssey.1080p.AMZN.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Secret.Level.S01.1080p.AMZN.WEB-DL.DDP5.1.Atmos.H.264-FLUX/Secret.Level.S01E10.Mega.Man.Start.1080p.AMZN.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Secret.Level.S01.1080p.AMZN.WEB-DL.DDP5.1.Atmos.H.264-FLUX/Secret.Level.S01E14.Honor.of.Kings.The.Way.of.All.Things.1080p.AMZN.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Secret.Level.S01.1080p.AMZN.WEB-DL.DDP5.1.Atmos.H.264-FLUX/Secret.Level.S01E07.Crossfire.Good.Conflict.1080p.AMZN.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Secret.Level.S01.1080p.AMZN.WEB-DL.DDP5.1.Atmos.H.264-FLUX/Secret.Level.S01E13.Concord.Tale.of.the.Implacable.1080p.AMZN.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Secret.Level.S01.1080p.AMZN.WEB-DL.DDP5.1.Atmos.H.264-FLUX/Secret.Level.S01E15.Playtime.Fulfillment.1080p.AMZN.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Secret.Level.S01.1080p.AMZN.WEB-DL.DDP5.1.Atmos.H.264-FLUX/Secret.Level.S01E04.Unreal.Tournament.Xan.1080p.AMZN.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Secret.Level.S01.1080p.AMZN.WEB-DL.DDP5.1.Atmos.H.264-FLUX/Secret.Level.S01E06.PAC-MAN.Circle.1080p.AMZN.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Secret.Level.S01.1080p.AMZN.WEB-DL.DDP5.1.Atmos.H.264-FLUX/Secret.Level.S01E08.Armored.Core.Asset.Management.1080p.AMZN.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Secret.Level.S01.1080p.AMZN.WEB-DL.DDP5.1.Atmos.H.264-FLUX/Secret.Level.S01E01.Dungeons.and.Dragons.The.Queens.Cradle.1080p.AMZN.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Secret.Level.S01.1080p.AMZN.WEB-DL.DDP5.1.Atmos.H.264-FLUX/Secret.Level.S01E05.Warhammer.40000.And.They.Shall.Know.No.Fear.1080p.AMZN.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Secret.Level.S01.1080p.AMZN.WEB-DL.DDP5.1.Atmos.H.264-FLUX/Secret.Level.S01E03.New.World.The.Once.and.Future.King.1080p.AMZN.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Secret.Level.S01.1080p.AMZN.WEB-DL.DDP5.1.Atmos.H.264-FLUX/Secret.Level.S01E02.Sifu.It.Takes.a.Life.1080p.AMZN.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Secret.Level.S01.1080p.AMZN.WEB-DL.DDP5.1.Atmos.H.264-FLUX/Secret.Level.S01E12.Spelunky.Tally.1080p.AMZN.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Secret.Level.S01.1080p.AMZN.WEB-DL.DDP5.1.Atmos.H.264-FLUX/Secret.Level.S01E09.The.Outer.Worlds.The.Company.We.Keep.1080p.AMZN.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Baki.2018.S01.Part2.NF.1080p.WEB-DL.AAC.H.264@BWE/[第 2 部分.Ep14] 刃牙 - 不被允许的自由.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Baki.2018.S01.Part2.NF.1080p.WEB-DL.AAC.H.264@BWE/[第 2 部分.Ep24] 刃牙 - 败北.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Baki.2018.S01.Part2.NF.1080p.WEB-DL.AAC.H.264@BWE/[第 2 部分.Ep18] 刃牙 - 谢谢.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Baki.2018.S01.Part2.NF.1080p.WEB-DL.AAC.H.264@BWE/[第 2 部分.Ep22] 刃牙 - 超雄对决.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Baki.2018.S01.Part2.NF.1080p.WEB-DL.AAC.H.264@BWE/[第 2 部分.Ep20] 刃牙 - SAGA.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Baki.2018.S01.Part2.NF.1080p.WEB-DL.AAC.H.264@BWE/[第 2 部分.Ep23] 刃牙 - 动真格的攻击.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Baki.2018.S01.Part2.NF.1080p.WEB-DL.AAC.H.264@BWE/[第 2 部分.Ep26] 刃牙 - 大擂台赛.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Baki.2018.S01.Part2.NF.1080p.WEB-DL.AAC.H.264@BWE/[第 2 部分.Ep19] 刃牙 - 你要认输吗?.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Baki.2018.S01.Part2.NF.1080p.WEB-DL.AAC.H.264@BWE/[第 2 部分.Ep25] 刃牙 - 神与鬼.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Baki.2018.S01.Part2.NF.1080p.WEB-DL.AAC.H.264@BWE/[第 2 部分.Ep17] 刃牙 - 父亲!!.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Baki.2018.S01.Part2.NF.1080p.WEB-DL.AAC.H.264@BWE/[第 2 部分.Ep21] 刃牙 - 制裁.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Baki.2018.S01.Part2.NF.1080p.WEB-DL.AAC.H.264@BWE/[第 2 部分.Ep15] 刃牙 - 超级体力.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Baki.2018.S01.Part2.NF.1080p.WEB-DL.AAC.H.264@BWE/[第 2 部分.Ep16] 刃牙 - 斩击.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 我獨自升級 第二季 -起於闇影- - 15 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 小手指同學,請別亂摸 [年齡限制版] - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] WIND BREAKER—防風少年— - 06 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 新人大叔冒險者,被最強隊伍操到死成無敵 - 09 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 青梅竹馬的戀愛喜劇無法成立 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/《BLEACH 死神 千年血戰篇》#12/《BLEACH 死神 千年血戰篇》#12 (日語原聲)【Ani-One Asia ULTRA】.mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Class no Daikirai na Joshi to Kekkon suru Koto ni Natta. - 07 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 使人誤解的工房主~關於原英雄隊伍的雜役人員,實際上除了戰鬥能力外全是SSS的故事~ - 06 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[HYSUB]Dungeon Meshi[03][BIG5_MP4][1920X1080].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 最後可以再拜託您一件事嗎? - 10 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] GNOSIA - 05 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 膽大黨 - 10 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Oooku [WebRip 1080p HEVC-10bit AAC]/[LoliHouse] Oooku - 09 [WebRip 1080p HEVC-10bit AAC SRTx4].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Oooku [WebRip 1080p HEVC-10bit AAC]/[LoliHouse] Oooku - 01 [WebRip 1080p HEVC-10bit AAC SRTx4].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Oooku [WebRip 1080p HEVC-10bit AAC]/[LoliHouse] Oooku - 05 [WebRip 1080p HEVC-10bit AAC SRTx4].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Oooku [WebRip 1080p HEVC-10bit AAC]/[LoliHouse] Oooku - 04 [WebRip 1080p HEVC-10bit AAC SRTx4].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Oooku [WebRip 1080p HEVC-10bit AAC]/[LoliHouse] Oooku - 08 [WebRip 1080p HEVC-10bit AAC SRTx4].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Oooku [WebRip 1080p HEVC-10bit AAC]/[LoliHouse] Oooku - 02 [WebRip 1080p HEVC-10bit AAC SRTx4].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Oooku [WebRip 1080p HEVC-10bit AAC]/[LoliHouse] Oooku - 06 [WebRip 1080p HEVC-10bit AAC SRTx4].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Oooku [WebRip 1080p HEVC-10bit AAC]/[LoliHouse] Oooku - 10 [WebRip 1080p HEVC-10bit AAC SRTx4].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Oooku [WebRip 1080p HEVC-10bit AAC]/[LoliHouse] Oooku - 03 [WebRip 1080p HEVC-10bit AAC SRTx4].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Oooku [WebRip 1080p HEVC-10bit AAC]/[LoliHouse] Oooku - 07 [WebRip 1080p HEVC-10bit AAC SRTx4].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 膽大黨 第二季 - 22 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 靠廢柴技能【狀態異常】成為最強的我將蹂躪一切 - 04 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[orion origin] Boukyaku Battery [05] [1080p] [H265 AAC] [CHT&JPN].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Beheneko - 01 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[BeanSub&FZSD][Kimetsu_no_Yaiba][61][GB][1080P][x264_AAC].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Skymoon-Raws] Kaguya-sama wa Kokurasetai S03 - 08 [ViuTV][WEB-DL][CHT][1080p][AVC AAC][MP4+ASS]/[Skymoon-Raws] Kaguya-sama wa Kokurasetai S03 - 08 [ViuTV][WEB-DL][1080p][AVC AAC].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Nekomoe kissaten][Ninja Kamui][09][1080p][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Party kara Tsuihou sareta Sono Chiyushi, Jitsu wa Saikyou ni Tsuki - 04 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 和雨.和你 - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Nekomoe kissaten&LoliHouse] Dungeon Meshi - 12 [WebRip 1080p HEVC-10bit AAC EAC3 ASSx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Re Monster - 10 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Ore dake Level Up na Ken - 16 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Skymoon-Raws] Dungeon ni Deai wo Motomeru no wa Machigatteiru no Darou ka V - Hoojou no Megami-hen - 14 [ViuTV][WEB-DL][CHT][SRT][1080p][AVC AAC].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 戀上換裝娃娃 Season 2 - 24 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Tensei Shitara Slime Datta Ken 3rd Season - 51 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Kaijuu 8-gou - 14 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Nekomoe kissaten][Ao no Hako][22][1080p][JPSC].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 貫徹輔助魔法支援弱小隊友的宮廷魔法師,慘遭驅逐後目標成為最強冒險者 - 11 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 轉生貴族憑鑑定技能扭轉人生 - 06 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Sakurato] Modaete yo, Adam-kun [01][AVC-8bit 1080p AAC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Around 40 Otoko no Isekai Tsuuhan - 03 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 醜男真戰士 - 05 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 因為不是真正的夥伴而被逐出勇者隊伍,流落到邊境展開慢活人生 第二季(僅限港澳台地區) - 01 [1080P][Bilibili][WEB-DL][AAC AVC][CHT CHS][V2].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Nekomoe kissaten][Chi. Chikyuu no Undou ni Tsuite][06][1080p][JPSC].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 勇氣爆發 BANG BRAVERN - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 地獄模式 ~喜歡挑戰特殊成就的玩家在廢設定的異世界成為無雙~ - 03 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[BeanSub&FZSD][Kimetsu_no_Yaiba][56][BIG5][1080P][x264_AAC].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[HYSUB]The Fable[01][BIG5_MP4][1920X1080].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Mato Seihei no Slave [01-12][WebRip 1080p HEVC-10bit AAC]/[LoliHouse] Mato Seihei no Slave - 08 [WebRip 1080p HEVC-10bit AAC SRT].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Mato Seihei no Slave [01-12][WebRip 1080p HEVC-10bit AAC]/[LoliHouse] Mato Seihei no Slave - 09 [WebRip 1080p HEVC-10bit AAC SRT].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Mato Seihei no Slave [01-12][WebRip 1080p HEVC-10bit AAC]/[LoliHouse] Mato Seihei no Slave - 10 [WebRip 1080p HEVC-10bit AAC SRT].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Mato Seihei no Slave [01-12][WebRip 1080p HEVC-10bit AAC]/[LoliHouse] Mato Seihei no Slave - 06 [WebRip 1080p HEVC-10bit AAC SRT].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Mato Seihei no Slave [01-12][WebRip 1080p HEVC-10bit AAC]/[LoliHouse] Mato Seihei no Slave - 11 [WebRip 1080p HEVC-10bit AAC SRT].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Mato Seihei no Slave [01-12][WebRip 1080p HEVC-10bit AAC]/[LoliHouse] Mato Seihei no Slave - 07 [WebRip 1080p HEVC-10bit AAC SRT].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Mato Seihei no Slave [01-12][WebRip 1080p HEVC-10bit AAC]/[LoliHouse] Mato Seihei no Slave - 12 [WebRip 1080p HEVC-10bit AAC SRT].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Mato Seihei no Slave [01-12][WebRip 1080p HEVC-10bit AAC]/[LoliHouse] Mato Seihei no Slave - 04 [WebRip 1080p HEVC-10bit AAC SRT].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Mato Seihei no Slave [01-12][WebRip 1080p HEVC-10bit AAC]/[LoliHouse] Mato Seihei no Slave - 05 [WebRip 1080p HEVC-10bit AAC SRT].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Mato Seihei no Slave [01-12][WebRip 1080p HEVC-10bit AAC]/[LoliHouse] Mato Seihei no Slave - 02 [WebRip 1080p HEVC-10bit AAC SRT].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Mato Seihei no Slave [01-12][WebRip 1080p HEVC-10bit AAC]/[LoliHouse] Mato Seihei no Slave - 03 [WebRip 1080p HEVC-10bit AAC SRT].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Mato Seihei no Slave [01-12][WebRip 1080p HEVC-10bit AAC]/[LoliHouse] Mato Seihei no Slave - 01 [WebRip 1080p HEVC-10bit AAC SRT].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Skymoon-Raws] Kaguya-sama wa Kokurasetai S03 - 07 [ViuTV][WEB-DL][CHT][1080p][AVC AAC][MP4+ASS]/[Skymoon-Raws] Kaguya-sama wa Kokurasetai S03 - 07 [ViuTV][WEB-DL][1080p][AVC AAC].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Blue.Eye.Samurai.S01.2023.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-ADWeb/Blue.Eye.Samurai.S01E05.2023.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-ADWeb.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Blue.Eye.Samurai.S01.2023.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-ADWeb/Blue.Eye.Samurai.S01E01.2023.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-ADWeb.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Blue.Eye.Samurai.S01.2023.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-ADWeb/Blue.Eye.Samurai.S01E06.2023.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-ADWeb.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Blue.Eye.Samurai.S01.2023.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-ADWeb/Blue.Eye.Samurai.S01E02.2023.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-ADWeb.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Blue.Eye.Samurai.S01.2023.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-ADWeb/Blue.Eye.Samurai.S01E04.2023.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-ADWeb.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Blue.Eye.Samurai.S01.2023.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-ADWeb/Blue.Eye.Samurai.S01E08.2023.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-ADWeb.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Blue.Eye.Samurai.S01.2023.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-ADWeb/Blue.Eye.Samurai.S01E03.2023.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-ADWeb.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Blue.Eye.Samurai.S01.2023.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-ADWeb/Blue.Eye.Samurai.S01E07.2023.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-ADWeb.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Dont be a simp] Ore dake Level Up na Ken Season 2 - 01-13 [CR WebRip 1080p HEVC-10bit AAC Multi-Subs]/[Dont be a simp] Ore dake Level Up na Ken Season 2 - 12 [CR WebRip 1080p HEVC-10bit AAC Multi-Subs].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Dont be a simp] Ore dake Level Up na Ken Season 2 - 01-13 [CR WebRip 1080p HEVC-10bit AAC Multi-Subs]/[Dont be a simp] Ore dake Level Up na Ken Season 2 - 06 [CR WebRip 1080p HEVC-10bit AAC Multi-Subs].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Dont be a simp] Ore dake Level Up na Ken Season 2 - 01-13 [CR WebRip 1080p HEVC-10bit AAC Multi-Subs]/[Dont be a simp] Ore dake Level Up na Ken Season 2 - 13 [CR WebRip 1080p HEVC-10bit AAC Multi-Subs].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Dont be a simp] Ore dake Level Up na Ken Season 2 - 01-13 [CR WebRip 1080p HEVC-10bit AAC Multi-Subs]/[Dont be a simp] Ore dake Level Up na Ken Season 2 - 07 [CR WebRip 1080p HEVC-10bit AAC Multi-Subs].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Dont be a simp] Ore dake Level Up na Ken Season 2 - 01-13 [CR WebRip 1080p HEVC-10bit AAC Multi-Subs]/[Dont be a simp] Ore dake Level Up na Ken Season 2 - 01 [CR WebRip 1080p HEVC-10bit AAC Multi-Subs].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Dont be a simp] Ore dake Level Up na Ken Season 2 - 01-13 [CR WebRip 1080p HEVC-10bit AAC Multi-Subs]/[Dont be a simp] Ore dake Level Up na Ken Season 2 - 04 [CR WebRip 1080p HEVC-10bit AAC Multi-Subs].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Dont be a simp] Ore dake Level Up na Ken Season 2 - 01-13 [CR WebRip 1080p HEVC-10bit AAC Multi-Subs]/[Dont be a simp] Ore dake Level Up na Ken Season 2 - 09 [CR WebRip 1080p HEVC-10bit AAC Multi-Subs].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Dont be a simp] Ore dake Level Up na Ken Season 2 - 01-13 [CR WebRip 1080p HEVC-10bit AAC Multi-Subs]/[Dont be a simp] Ore dake Level Up na Ken Season 2 - 10 [CR WebRip 1080p HEVC-10bit AAC Multi-Subs].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Dont be a simp] Ore dake Level Up na Ken Season 2 - 01-13 [CR WebRip 1080p HEVC-10bit AAC Multi-Subs]/[Dont be a simp] Ore dake Level Up na Ken Season 2 - 02 [CR WebRip 1080p HEVC-10bit AAC Multi-Subs].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Dont be a simp] Ore dake Level Up na Ken Season 2 - 01-13 [CR WebRip 1080p HEVC-10bit AAC Multi-Subs]/[Dont be a simp] Ore dake Level Up na Ken Season 2 - 08 [CR WebRip 1080p HEVC-10bit AAC Multi-Subs].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Dont be a simp] Ore dake Level Up na Ken Season 2 - 01-13 [CR WebRip 1080p HEVC-10bit AAC Multi-Subs]/[Dont be a simp] Ore dake Level Up na Ken Season 2 - 05 [CR WebRip 1080p HEVC-10bit AAC Multi-Subs].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Dont be a simp] Ore dake Level Up na Ken Season 2 - 01-13 [CR WebRip 1080p HEVC-10bit AAC Multi-Subs]/[Dont be a simp] Ore dake Level Up na Ken Season 2 - 11 [CR WebRip 1080p HEVC-10bit AAC Multi-Subs].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Dont be a simp] Ore dake Level Up na Ken Season 2 - 01-13 [CR WebRip 1080p HEVC-10bit AAC Multi-Subs]/[Dont be a simp] Ore dake Level Up na Ken Season 2 - 03 [CR WebRip 1080p HEVC-10bit AAC Multi-Subs].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 擁有超常技能的異世界流浪美食家 S2 - 14 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 結緣甘神神社 - 08 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] Re:從零開始的異世界生活 第三季 - 07 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Gachiakuta - 01 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 水屬性的魔法師 - 09 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Skymoon-Raws] Kaguya-sama wa Kokurasetai S03 - 01 [ViuTV][WEB-DL][CHT][1080p][AVC AAC][MP4+ASS]/[Skymoon-Raws] Kaguya-sama wa Kokurasetai S03 - 01 [ViuTV][WEB-DL][1080p][AVC AAC].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Katainaka no Ossan, Kensei ni Naru - 04 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 怪獸 8 號 第二季 - 20 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 香格里拉・開拓異境~糞作獵手挑戰神作~ - 20 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 香格里拉・開拓異境~糞作獵手挑戰神作~ 第二季 - 11 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 29 歲單身中堅冒險家的日常 - 04 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] S 級怪獸《貝希摩斯》被誤認成小貓,成為精靈女孩的騎士(寵物)一起生活 - 04 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 葬送的芙莉蓮 - 20 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 九龍大眾浪漫 - 04 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 氣絕勇者與暗殺公主 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 結緣甘神神社 - 13 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 異世界悠閒紀行~邊養娃邊當冒險者~ - 05 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Nekomoe kissaten][Tower of God S2][18][1080p][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] DDDD 惡魔的破壞 [特別篇] - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[BeanSub&FZSD][BLEACH_Sennen_Kessen-hen][38][BIG5][1080P][x264_AAC].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 水屬性的魔法師 - 12 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 被逐出隊伍的治癒師,其實是最強 - 03 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 刀劍神域外傳 Gun Gale Online II - 08 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 治癒魔法的錯誤使用法 - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 無職轉生~到了異世界就拿出真本事 第二季 - 23 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Lilith-Raws] Re:Monster - 02 [Baha][WebDL 1080p AVC AAC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 地下城中的人 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Tensei Shitara Slime Datta Ken 3rd Season - 55 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 忍者與殺手的兩人生活 - 07 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 瞬間治癒卻被當成廢物踢出隊伍的天才治療師,改當無照治療師快樂過活 - 06 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Amagami-san Chi no Enmusubi - 05 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] LAZARUS 拉撒路 - 09 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[BeanSub&FZSD][BLEACH_Sennen_Kessen-hen][34][BIG5][1080P][x264_AAC].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 記憶縫線 YOUR FORMA - 11 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[DHR][NanKoko][01-12][BIG5][720P][AVC_AAC][MP4]/[DHR][NanKoko][09][BIG5][720P][AVC_AAC].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[DHR][NanKoko][01-12][BIG5][720P][AVC_AAC][MP4]/[DHR][NanKoko][06][BIG5][720P][AVC_AAC].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[DHR][NanKoko][01-12][BIG5][720P][AVC_AAC][MP4]/[DHR][NanKoko][10][BIG5][720P][AVC_AAC].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[DHR][NanKoko][01-12][BIG5][720P][AVC_AAC][MP4]/[DHR][NanKoko][05][BIG5][720P][AVC_AAC].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[DHR][NanKoko][01-12][BIG5][720P][AVC_AAC][MP4]/[DHR][NanKoko][03][BIG5][720P][AVC_AAC].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[DHR][NanKoko][01-12][BIG5][720P][AVC_AAC][MP4]/[DHR][NanKoko][08][BIG5][720P][AVC_AAC].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[DHR][NanKoko][01-12][BIG5][720P][AVC_AAC][MP4]/[DHR][NanKoko][12][BIG5][720P][AVC_AAC].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[DHR][NanKoko][01-12][BIG5][720P][AVC_AAC][MP4]/[DHR][NanKoko][07][BIG5][720P][AVC_AAC].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[DHR][NanKoko][01-12][BIG5][720P][AVC_AAC][MP4]/[DHR][NanKoko][11][BIG5][720P][AVC_AAC].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[DHR][NanKoko][01-12][BIG5][720P][AVC_AAC][MP4]/[DHR][NanKoko][04][BIG5][720P][AVC_AAC].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[DHR][NanKoko][01-12][BIG5][720P][AVC_AAC][MP4]/[DHR][NanKoko][01][BIG5][720P][AVC_AAC].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[DHR][NanKoko][01-12][BIG5][720P][AVC_AAC][MP4]/[DHR][NanKoko][02][BIG5][720P][AVC_AAC].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 我的妻子不具感情 - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Shin Samurai-den YAIBA - 06 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[BeanSub&FZSD][Kimetsu_no_Yaiba][58][BIG5][1080P][x264_AAC].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[HYSUB]Sono Bisque Doll wa Koi wo Suru[16][BIG5_MP4][1920X1080].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] LAZARUS 拉撒路 - 12 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Shangri-La Frontier - 40 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[BeanSub][Ao no Exorcist _Shimane Illuminati Hen][03][BIG5][1080P][x264_AAC].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 怪獸 8 號 第二季 - 18 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 香格里拉・開拓異境~糞作獵手挑戰神作~ - 18 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 葬送的芙莉蓮 - 18 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] ULTRAMAN [WebRip 1080p HEVC-10bit AAC SRTx4] v2/[LoliHouse] ULTRAMAN - 09 [WebRip 1080p HEVC-10bit AAC SRTx4].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] ULTRAMAN [WebRip 1080p HEVC-10bit AAC SRTx4] v2/[LoliHouse] ULTRAMAN - 12 [WebRip 1080p HEVC-10bit AAC SRTx4].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] ULTRAMAN [WebRip 1080p HEVC-10bit AAC SRTx4] v2/[LoliHouse] ULTRAMAN - 05 [WebRip 1080p HEVC-10bit AAC SRTx4].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] ULTRAMAN [WebRip 1080p HEVC-10bit AAC SRTx4] v2/[LoliHouse] ULTRAMAN - 01 [WebRip 1080p HEVC-10bit AAC SRTx4].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] ULTRAMAN [WebRip 1080p HEVC-10bit AAC SRTx4] v2/[LoliHouse] ULTRAMAN - 04 [WebRip 1080p HEVC-10bit AAC SRTx4].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] ULTRAMAN [WebRip 1080p HEVC-10bit AAC SRTx4] v2/[LoliHouse] ULTRAMAN - 13 [WebRip 1080p HEVC-10bit AAC SRTx4].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] ULTRAMAN [WebRip 1080p HEVC-10bit AAC SRTx4] v2/[LoliHouse] ULTRAMAN - 08 [WebRip 1080p HEVC-10bit AAC SRTx4].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] ULTRAMAN [WebRip 1080p HEVC-10bit AAC SRTx4] v2/[LoliHouse] ULTRAMAN - 06 [WebRip 1080p HEVC-10bit AAC SRTx4].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] ULTRAMAN [WebRip 1080p HEVC-10bit AAC SRTx4] v2/[LoliHouse] ULTRAMAN - 02 [WebRip 1080p HEVC-10bit AAC SRTx4].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] ULTRAMAN [WebRip 1080p HEVC-10bit AAC SRTx4] v2/[LoliHouse] ULTRAMAN - 11 [WebRip 1080p HEVC-10bit AAC SRTx4].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] ULTRAMAN [WebRip 1080p HEVC-10bit AAC SRTx4] v2/[LoliHouse] ULTRAMAN - 10 [WebRip 1080p HEVC-10bit AAC SRTx4].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] ULTRAMAN [WebRip 1080p HEVC-10bit AAC SRTx4] v2/[LoliHouse] ULTRAMAN - 07 [WebRip 1080p HEVC-10bit AAC SRTx4].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] ULTRAMAN [WebRip 1080p HEVC-10bit AAC SRTx4] v2/[LoliHouse] ULTRAMAN - 03 [WebRip 1080p HEVC-10bit AAC SRTx4].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 杖與劍的魔劍譚 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 怪獸 8 號 - 05 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Tensei Shitara Slime Datta Ken 3rd Season - 72 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 一拳超人(第三季) - 28 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Nekomoe kissaten][Tower of God S2][10][1080p][CHS].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] Re:從零開始的異世界生活 第三季 - 03 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 葬送的芙莉蓮 - 24 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Nekomoe kissaten&LoliHouse] Sono Bisque Doll wa Koi wo Suru - 14 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[BeanSub&FZSD][BLEACH_Sennen_Kessen-hen][36][BIG5][1080P][x264_AAC].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Nekomoe kissaten][Dungeon Meshi][21][1080p][JPTC].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 香格里拉・開拓異境~糞作獵手挑戰神作~ - 24 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[BeanSub][Ao no Exorcist _Shimane Illuminati Hen][01][BIG5][1080P][x264_AAC].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 被逐出隊伍的治癒師,其實是最強 - 07 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 終末起點 - 10 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 一拳超人(第三季) - 33 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 結緣甘神神社 - 17 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Terminator.Zero.S01.2024.1080p.NF.WEB-DL.x264.DDP5.1-ADWeb/Terminator.Zero.S01E08.2024.1080p.NF.WEB-DL.x264.DDP5.1-ADWeb.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Terminator.Zero.S01.2024.1080p.NF.WEB-DL.x264.DDP5.1-ADWeb/Terminator.Zero.S01E06.2024.1080p.NF.WEB-DL.x264.DDP5.1-ADWeb.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Terminator.Zero.S01.2024.1080p.NF.WEB-DL.x264.DDP5.1-ADWeb/Terminator.Zero.S01E07.2024.1080p.NF.WEB-DL.x264.DDP5.1-ADWeb.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Terminator.Zero.S01.2024.1080p.NF.WEB-DL.x264.DDP5.1-ADWeb/Terminator.Zero.S01E04.2024.1080p.NF.WEB-DL.x264.DDP5.1-ADWeb.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Terminator.Zero.S01.2024.1080p.NF.WEB-DL.x264.DDP5.1-ADWeb/Terminator.Zero.S01E05.2024.1080p.NF.WEB-DL.x264.DDP5.1-ADWeb.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Terminator.Zero.S01.2024.1080p.NF.WEB-DL.x264.DDP5.1-ADWeb/Terminator.Zero.S01E02.2024.1080p.NF.WEB-DL.x264.DDP5.1-ADWeb.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Terminator.Zero.S01.2024.1080p.NF.WEB-DL.x264.DDP5.1-ADWeb/Terminator.Zero.S01E03.2024.1080p.NF.WEB-DL.x264.DDP5.1-ADWeb.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Terminator.Zero.S01.2024.1080p.NF.WEB-DL.x264.DDP5.1-ADWeb/Terminator.Zero.S01E01.2024.1080p.NF.WEB-DL.x264.DDP5.1-ADWeb.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 異世界悠閒紀行~邊養娃邊當冒險者~ - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 在地下城尋求邂逅是否搞錯了什麼 第五季 - 10 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Grand Blue S2 - 03 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[UHA-WINGS][Kakegurui XX][01-12][x264 1080p][tc_jp]/[UHA-WINGS][Kakegurui XX][06][x264 1080p][tc_jp].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[UHA-WINGS][Kakegurui XX][01-12][x264 1080p][tc_jp]/[UHA-WINGS][Kakegurui XX][02][x264 1080p][tc_jp].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[UHA-WINGS][Kakegurui XX][01-12][x264 1080p][tc_jp]/[UHA-WINGS][Kakegurui XX][12][x264 1080p][tc_jp].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[UHA-WINGS][Kakegurui XX][01-12][x264 1080p][tc_jp]/[UHA-WINGS][Kakegurui XX][05][x264 1080p][tc_jp].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[UHA-WINGS][Kakegurui XX][01-12][x264 1080p][tc_jp]/[UHA-WINGS][Kakegurui XX][11][x264 1080p][tc_jp].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[UHA-WINGS][Kakegurui XX][01-12][x264 1080p][tc_jp]/[UHA-WINGS][Kakegurui XX][01][x264 1080p][tc_jp].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[UHA-WINGS][Kakegurui XX][01-12][x264 1080p][tc_jp]/[UHA-WINGS][Kakegurui XX][09][x264 1080p][tc_jp].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[UHA-WINGS][Kakegurui XX][01-12][x264 1080p][tc_jp]/[UHA-WINGS][Kakegurui XX][07][x264 1080p][tc_jp].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[UHA-WINGS][Kakegurui XX][01-12][x264 1080p][tc_jp]/[UHA-WINGS][Kakegurui XX][03][x264 1080p][tc_jp].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[UHA-WINGS][Kakegurui XX][01-12][x264 1080p][tc_jp]/[UHA-WINGS][Kakegurui XX][08][x264 1080p][tc_jp].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[UHA-WINGS][Kakegurui XX][01-12][x264 1080p][tc_jp]/[UHA-WINGS][Kakegurui XX][04][x264 1080p][tc_jp].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[UHA-WINGS][Kakegurui XX][01-12][x264 1080p][tc_jp]/[UHA-WINGS][Kakegurui XX][10][x264 1080p][tc_jp].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 身為暗殺者的我明顯比勇者還強 - 05 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 盾之勇者成名錄 Season 4 - 11 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 龍族II 悼亡者之瞳 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[2021][Kaifuku Jutsushi no Yarinaoshi][BDRIP][1080P][1-12Fin+SP]/[Kaifuku Jutsushi no Yarinaoshi][05][BDRIP][1080P][H264_FLAC].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[2021][Kaifuku Jutsushi no Yarinaoshi][BDRIP][1080P][1-12Fin+SP]/[Kaifuku Jutsushi no Yarinaoshi][03][BDRIP][1080P][H264_FLAC].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[2021][Kaifuku Jutsushi no Yarinaoshi][BDRIP][1080P][1-12Fin+SP]/[Kaifuku Jutsushi no Yarinaoshi][Vol.02][SP01][PV #01][BDRIP][1080P][H264_FLAC].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[2021][Kaifuku Jutsushi no Yarinaoshi][BDRIP][1080P][1-12Fin+SP]/[Kaifuku Jutsushi no Yarinaoshi][09][BDRIP][1080P][H264_FLAC].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[2021][Kaifuku Jutsushi no Yarinaoshi][BDRIP][1080P][1-12Fin+SP]/[Kaifuku Jutsushi no Yarinaoshi][12][BDRIP][1080P][H264_FLAC].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[2021][Kaifuku Jutsushi no Yarinaoshi][BDRIP][1080P][1-12Fin+SP]/[Kaifuku Jutsushi no Yarinaoshi][04][BDRIP][1080P][H264_FLAC].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[2021][Kaifuku Jutsushi no Yarinaoshi][BDRIP][1080P][1-12Fin+SP]/[Kaifuku Jutsushi no Yarinaoshi][02][BDRIP][1080P][H264_FLAC].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[2021][Kaifuku Jutsushi no Yarinaoshi][BDRIP][1080P][1-12Fin+SP]/[Kaifuku Jutsushi no Yarinaoshi][Vol.01][SP02][NCED][BDRIP][1080P][H264_FLAC].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[2021][Kaifuku Jutsushi no Yarinaoshi][BDRIP][1080P][1-12Fin+SP]/[Kaifuku Jutsushi no Yarinaoshi][Vol.03][SP01][TV-CM][BDRIP][1080P][H264_FLAC].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[2021][Kaifuku Jutsushi no Yarinaoshi][BDRIP][1080P][1-12Fin+SP]/[Kaifuku Jutsushi no Yarinaoshi][08][BDRIP][1080P][H264_FLAC].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[2021][Kaifuku Jutsushi no Yarinaoshi][BDRIP][1080P][1-12Fin+SP]/[Kaifuku Jutsushi no Yarinaoshi][Vol.01][SP01][NCOP][BDRIP][1080P][H264_FLAC].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[2021][Kaifuku Jutsushi no Yarinaoshi][BDRIP][1080P][1-12Fin+SP]/[Kaifuku Jutsushi no Yarinaoshi][07][BDRIP][1080P][H264_FLAC].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[2021][Kaifuku Jutsushi no Yarinaoshi][BDRIP][1080P][1-12Fin+SP]/[Kaifuku Jutsushi no Yarinaoshi][01][BDRIP][1080P][H264_FLAC].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[2021][Kaifuku Jutsushi no Yarinaoshi][BDRIP][1080P][1-12Fin+SP]/[Kaifuku Jutsushi no Yarinaoshi][Logo][BDRIP][1080P][H264_FLAC].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[2021][Kaifuku Jutsushi no Yarinaoshi][BDRIP][1080P][1-12Fin+SP]/[Kaifuku Jutsushi no Yarinaoshi][10][BDRIP][1080P][H264_FLAC].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[2021][Kaifuku Jutsushi no Yarinaoshi][BDRIP][1080P][1-12Fin+SP]/[Kaifuku Jutsushi no Yarinaoshi][06][BDRIP][1080P][H264_FLAC].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[2021][Kaifuku Jutsushi no Yarinaoshi][BDRIP][1080P][1-12Fin+SP]/[Kaifuku Jutsushi no Yarinaoshi][Producer Logo][BDRIP][1080P][H264_FLAC].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[2021][Kaifuku Jutsushi no Yarinaoshi][BDRIP][1080P][1-12Fin+SP]/[Kaifuku Jutsushi no Yarinaoshi][Vol.02][SP02][PV #02][BDRIP][1080P][H264_FLAC].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[2021][Kaifuku Jutsushi no Yarinaoshi][BDRIP][1080P][1-12Fin+SP]/[Kaifuku Jutsushi no Yarinaoshi][Vol.03][SP02][Blu-ray & DVD Selling Notice CM][BDRIP][1080P][H264_FLAC].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[2021][Kaifuku Jutsushi no Yarinaoshi][BDRIP][1080P][1-12Fin+SP]/[Kaifuku Jutsushi no Yarinaoshi][11][BDRIP][1080P][H264_FLAC].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] Re:Monster - 07 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[BeanSub][Ao no Exorcist _Shimane Illuminati Hen][07][BIG5][1080P][x264_AAC].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 判處勇者刑 - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 異世界的處置依社畜而定 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 素材採集家的異世界旅行記 - 07 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Pantheon.S02.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb/Pantheon.S02E04.Olivia.&.Farhad.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Pantheon.S02.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb/Pantheon.S02E07.The.World.to.Come.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Pantheon.S02.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb/Pantheon.S02E03.Joey.Coupet.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Pantheon.S02.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb/Pantheon.S02E01.The.Gods.Have.Not.Died.in.Vain.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Pantheon.S02.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb/Pantheon.S02E08.Deep.Time.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Pantheon.S02.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb/Pantheon.S02E05.Yair.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Pantheon.S02.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb/Pantheon.S02E02.Crack.Integrity.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Pantheon.S02.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb/Pantheon.S02E06.Apokalypsis.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Mugen Gacha - 12 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 青梅竹馬的戀愛喜劇無法成立 - 05 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 男女之間存在純友情嗎?(不,不存在!) - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[BeanSub&FZSD][BLEACH_Sennen_Kessen-hen][39-40][GB][1080P][MP4]/[BeanSub&FZSD][BLEACH_Sennen_Kessen-hen][40][GB][1080P][x264_AAC].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[BeanSub&FZSD][BLEACH_Sennen_Kessen-hen][39-40][GB][1080P][MP4]/[BeanSub&FZSD][BLEACH_Sennen_Kessen-hen][39][GB][1080P][x264_AAC].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[HYSUB]Dungeon Meshi[15][BIG5_MP4][1920X1080].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] FARMAGIA 魔農傳記 - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Nekomoe kissaten&LoliHouse] Megami no Cafe Terrace - 14 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Skymoon-Raws] Jujutsu Kaisen S2 - 01 [ViuTV][WEB-DL][CHT][1080p][AVC AAC][MP4+ASS]/[Skymoon-Raws] Jujutsu Kaisen S2 - 01 [ViuTV][WEB-DL][1080p][AVC AAC].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Nekomoe kissaten][Ishura][08][1080p][JPSC].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Nekomoe kissaten][Tower of God S2][19][1080p][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/《BLEACH 死神 千年血戰篇》#2/《BLEACH 死神 千年血戰篇》#2 (日語原聲)【Ani-One Asia ULTRA】.mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[BeanSub][Ao no Exorcist _Shimane Illuminati Hen][05][BIG5][1080P][x264_AAC].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Nekomoe kissaten][Ninja Kamui][01][1080p][CHS].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] GNOSIA - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 休假的壞人先生 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Shangri-La Frontier - 32 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Ore dake Level Up na Ken - 09 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 聽說你們要結婚!? - 08 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[orion origin] Boukyaku Battery [09] [1080p] [H265 AAC] [CHT&JPN].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 不中用的前輩。 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 我獨自升級 - 11 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] Silent Witch 沉默魔女的祕密 - 06 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 歲月流逝飯菜依舊美味 - 08 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[HYSUB]The Fable[02][BIG5_MP4][1920X1080].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 差點在迷宮深處被信任的夥伴殺掉,但靠著天賜技能「無限扭蛋」獲得等級 9999 的夥伴,我要向前隊友和世界展開復仇&「給他們好看!」 - 11 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Dymy][Kimetsu no Yaiba - Yuukaku Hen][01-11][BIG5][1920X1080]/[Dymy][Kimetsu no Yaiba - Yuukaku Hen][10][BIG5][1920X1080].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Dymy][Kimetsu no Yaiba - Yuukaku Hen][01-11][BIG5][1920X1080]/[Dymy][Kimetsu no Yaiba - Yuukaku Hen][06][BIG5][1920X1080].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Dymy][Kimetsu no Yaiba - Yuukaku Hen][01-11][BIG5][1920X1080]/[Dymy][Kimetsu no Yaiba - Yuukaku Hen][07][BIG5][1920X1080].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Dymy][Kimetsu no Yaiba - Yuukaku Hen][01-11][BIG5][1920X1080]/[Dymy][Kimetsu no Yaiba - Yuukaku Hen][01][BIG5][1920X1080].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Dymy][Kimetsu no Yaiba - Yuukaku Hen][01-11][BIG5][1920X1080]/[Dymy][Kimetsu no Yaiba - Yuukaku Hen][08][BIG5][1920X1080].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Dymy][Kimetsu no Yaiba - Yuukaku Hen][01-11][BIG5][1920X1080]/[Dymy][Kimetsu no Yaiba - Yuukaku Hen][02][BIG5][1920X1080].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Dymy][Kimetsu no Yaiba - Yuukaku Hen][01-11][BIG5][1920X1080]/[Dymy][Kimetsu no Yaiba - Yuukaku Hen][04][BIG5][1920X1080].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Dymy][Kimetsu no Yaiba - Yuukaku Hen][01-11][BIG5][1920X1080]/[Dymy][Kimetsu no Yaiba - Yuukaku Hen][09][BIG5][1920X1080].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Dymy][Kimetsu no Yaiba - Yuukaku Hen][01-11][BIG5][1920X1080]/[Dymy][Kimetsu no Yaiba - Yuukaku Hen][11][END][BIG5][1920X1080].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Dymy][Kimetsu no Yaiba - Yuukaku Hen][01-11][BIG5][1920X1080]/[Dymy][Kimetsu no Yaiba - Yuukaku Hen][03][BIG5][1920X1080].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Dymy][Kimetsu no Yaiba - Yuukaku Hen][01-11][BIG5][1920X1080]/[Dymy][Kimetsu no Yaiba - Yuukaku Hen][05][BIG5][1920X1080].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Izure Saikyou no Renkinjutsushi - 01 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] WIND BREAKER—防風少年— - 07 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[BeanSub&FZSD][Jigokuraku][17][GB][1080P][x264_AAC].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[HYSUB]Dungeon Meshi[23][BIG5_MP4][1920X1080].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 新人大叔冒險者,被最強隊伍操到死成無敵 - 08 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 最後可以再拜託您一件事嗎? - 11 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 使人誤解的工房主~關於原英雄隊伍的雜役人員,實際上除了戰鬥能力外全是SSS的故事~ - 07 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Nekomoe kissaten][Ishura][11][1080p][JPSC].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Nekomoe kissaten][Dungeon Meshi][19][1080p][JPTC].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[orion origin] Boukyaku Battery [04] [1080p] [H265 AAC] [CHT&JPN].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 我獨自升級 第二季 -起於闇影- - 14 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 素材採集家的異世界旅行記 - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/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", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Record.of.Ragnarok.S02E01.1080p.NF.WEB-DL.DUAL.DDP2.0.H.264-SMURF/Record.of.Ragnarok.S02E06.Conflicting.Motives.1080p.NF.WEB-DL.DUAL.DDP2.0.H.264-SMURF.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Record.of.Ragnarok.S02E01.1080p.NF.WEB-DL.DUAL.DDP2.0.H.264-SMURF/Record.of.Ragnarok.S02E05.Requiem.1080p.NF.WEB-DL.DUAL.DDP2.0.H.264-SMURF.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Record.of.Ragnarok.S02E01.1080p.NF.WEB-DL.DUAL.DDP2.0.H.264-SMURF/Record.of.Ragnarok.S02E03.Birth.of.a.Monster.1080p.NF.WEB-DL.DUAL.DDP2.0.H.264-SMURF.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Record.of.Ragnarok.S02E01.1080p.NF.WEB-DL.DUAL.DDP2.0.H.264-SMURF/Record.of.Ragnarok.S02E01.Good.vs.Evil.1080p.NF.WEB-DL.DUAL.DDP2.0.H.264-SMURF.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Record.of.Ragnarok.S02E01.1080p.NF.WEB-DL.DUAL.DDP2.0.H.264-SMURF/Record.of.Ragnarok.S02E07.Hundred.Seals.1080p.NF.WEB-DL.DUAL.DDP2.0.H.264-SMURF.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Record.of.Ragnarok.S02E01.1080p.NF.WEB-DL.DUAL.DDP2.0.H.264-SMURF/Record.of.Ragnarok.S02E09.Resonance.1080p.NF.WEB-DL.DUAL.DDP2.0.H.264-SMURF.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Record.of.Ragnarok.S02E01.1080p.NF.WEB-DL.DUAL.DDP2.0.H.264-SMURF/Record.of.Ragnarok.S02E10.The.Brink.1080p.NF.WEB-DL.DUAL.DDP2.0.H.264-SMURF.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Record.of.Ragnarok.S02E01.1080p.NF.WEB-DL.DUAL.DDP2.0.H.264-SMURF/Record.of.Ragnarok.S02E02.The.Indomitable.War.God.1080p.NF.WEB-DL.DUAL.DDP2.0.H.264-SMURF.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Record.of.Ragnarok.S02E01.1080p.NF.WEB-DL.DUAL.DDP2.0.H.264-SMURF/Record.of.Ragnarok.S02E08.The.Pinnacle.of.1116.1080p.NF.WEB-DL.DUAL.DDP2.0.H.264-SMURF.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[KyokuSai] Adam's Sweet Agony [06][720P][WEB-DL][UNC].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 我要【招架】一切~反誤解的世界最強想成為冒險家~ - 11 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Yuusha Kei ni Shosu Choubatsu Yuusha 9004-tai Keimu Kiroku - 01 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 完美到難以接近的聖女遭到解除婚約後被賣到鄰國 - 05 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Skymoon-Raws] Mushoku Tensei 2nd Season - 00 [ViuTV][WEB-DL][CHT][1080p][AVC AAC][MP4+ASS]/[Skymoon-Raws] Mushoku Tensei 2nd Season - 00 [ViuTV][WEB-DL][1080p][AVC AAC].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Mobile.Suit.Gundam.Hathaway’s.Flash.2021.BluRay.1080p.10bit.TrueHD(Atmos).7.1.x265-beAst/Mobile.Suit.Gundam.Hathaway’s.Flash.2021.BluRay.1080p.10bit.TrueHD(Atmos).7.1.x265-beAst.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] Silent Witch 沉默魔女的祕密 - 03 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/The.Apothecary.Diaries.S02E16.Festering.Resentment.1080p.NF.WEB-DL.JPN.AAC2.0.H.264.MSubs-ToonsHub.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[CASO&Airota&LoliHouse] Spice and Wolf (2024) [01-25][WebRip 1080p HEVC-10bit AAC ASSx2]/[CASO&Airota&LoliHouse] Spice and Wolf (2024) - 13 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[CASO&Airota&LoliHouse] Spice and Wolf (2024) [01-25][WebRip 1080p HEVC-10bit AAC ASSx2]/[CASO&Airota&LoliHouse] Spice and Wolf (2024) - 08 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[CASO&Airota&LoliHouse] Spice and Wolf (2024) [01-25][WebRip 1080p HEVC-10bit AAC ASSx2]/[CASO&Airota&LoliHouse] Spice and Wolf (2024) - 17 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[CASO&Airota&LoliHouse] Spice and Wolf (2024) [01-25][WebRip 1080p HEVC-10bit AAC ASSx2]/[CASO&Airota&LoliHouse] Spice and Wolf (2024) - 04 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[CASO&Airota&LoliHouse] Spice and Wolf (2024) [01-25][WebRip 1080p HEVC-10bit AAC ASSx2]/[CASO&Airota&LoliHouse] Spice and Wolf (2024) - 23 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[CASO&Airota&LoliHouse] Spice and Wolf (2024) [01-25][WebRip 1080p HEVC-10bit AAC ASSx2]/[CASO&Airota&LoliHouse] Spice and Wolf (2024) - 05 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[CASO&Airota&LoliHouse] Spice and Wolf (2024) [01-25][WebRip 1080p HEVC-10bit AAC ASSx2]/[CASO&Airota&LoliHouse] Spice and Wolf (2024) - 22 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[CASO&Airota&LoliHouse] Spice and Wolf (2024) [01-25][WebRip 1080p HEVC-10bit AAC ASSx2]/[CASO&Airota&LoliHouse] Spice and Wolf (2024) - 01 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[CASO&Airota&LoliHouse] Spice and Wolf (2024) [01-25][WebRip 1080p HEVC-10bit AAC ASSx2]/[CASO&Airota&LoliHouse] Spice and Wolf (2024) - 09 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[CASO&Airota&LoliHouse] Spice and Wolf (2024) [01-25][WebRip 1080p HEVC-10bit AAC ASSx2]/[CASO&Airota&LoliHouse] Spice and Wolf (2024) - 12 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[CASO&Airota&LoliHouse] Spice and Wolf (2024) [01-25][WebRip 1080p HEVC-10bit AAC ASSx2]/[CASO&Airota&LoliHouse] Spice and Wolf (2024) - 16 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[CASO&Airota&LoliHouse] Spice and Wolf (2024) [01-25][WebRip 1080p HEVC-10bit AAC ASSx2]/[CASO&Airota&LoliHouse] Spice and Wolf (2024) - 20 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[CASO&Airota&LoliHouse] Spice and Wolf (2024) [01-25][WebRip 1080p HEVC-10bit AAC ASSx2]/[CASO&Airota&LoliHouse] Spice and Wolf (2024) - 07 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[CASO&Airota&LoliHouse] Spice and Wolf (2024) [01-25][WebRip 1080p HEVC-10bit AAC ASSx2]/[CASO&Airota&LoliHouse] Spice and Wolf (2024) - 24 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[CASO&Airota&LoliHouse] Spice and Wolf (2024) [01-25][WebRip 1080p HEVC-10bit AAC ASSx2]/[CASO&Airota&LoliHouse] Spice and Wolf (2024) - 03 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[CASO&Airota&LoliHouse] Spice and Wolf (2024) [01-25][WebRip 1080p HEVC-10bit AAC ASSx2]/[CASO&Airota&LoliHouse] Spice and Wolf (2024) - 18 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[CASO&Airota&LoliHouse] Spice and Wolf (2024) [01-25][WebRip 1080p HEVC-10bit AAC ASSx2]/[CASO&Airota&LoliHouse] Spice and Wolf (2024) - 10 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[CASO&Airota&LoliHouse] Spice and Wolf (2024) [01-25][WebRip 1080p HEVC-10bit AAC ASSx2]/[CASO&Airota&LoliHouse] Spice and Wolf (2024) - 14 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[CASO&Airota&LoliHouse] Spice and Wolf (2024) [01-25][WebRip 1080p HEVC-10bit AAC ASSx2]/[CASO&Airota&LoliHouse] Spice and Wolf (2024) - 11 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[CASO&Airota&LoliHouse] Spice and Wolf (2024) [01-25][WebRip 1080p HEVC-10bit AAC ASSx2]/[CASO&Airota&LoliHouse] Spice and Wolf (2024) - 15 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[CASO&Airota&LoliHouse] Spice and Wolf (2024) [01-25][WebRip 1080p HEVC-10bit AAC ASSx2]/[CASO&Airota&LoliHouse] Spice and Wolf (2024) - 21 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[CASO&Airota&LoliHouse] Spice and Wolf (2024) [01-25][WebRip 1080p HEVC-10bit AAC ASSx2]/[CASO&Airota&LoliHouse] Spice and Wolf (2024) - 06 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[CASO&Airota&LoliHouse] Spice and Wolf (2024) [01-25][WebRip 1080p HEVC-10bit AAC ASSx2]/[CASO&Airota&LoliHouse] Spice and Wolf (2024) - 25 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[CASO&Airota&LoliHouse] Spice and Wolf (2024) [01-25][WebRip 1080p HEVC-10bit AAC ASSx2]/[CASO&Airota&LoliHouse] Spice and Wolf (2024) - 19 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[CASO&Airota&LoliHouse] Spice and Wolf (2024) [01-25][WebRip 1080p HEVC-10bit AAC ASSx2]/[CASO&Airota&LoliHouse] Spice and Wolf (2024) - 02 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 膽大黨 - 11 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/KENGAN.ASHURA.S02.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG/KENGAN.ASHURA.S02E23.Wholehearted.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/KENGAN.ASHURA.S02.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG/KENGAN.ASHURA.S02E11.Rebel.Flag.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/KENGAN.ASHURA.S02.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG/KENGAN.ASHURA.S02E22.Wakatsuki.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/KENGAN.ASHURA.S02.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG/KENGAN.ASHURA.S02E26.The.Finals.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/KENGAN.ASHURA.S02.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG/KENGAN.ASHURA.S02E02.Blast.Core.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/KENGAN.ASHURA.S02.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG/KENGAN.ASHURA.S02E25.Giant.Star.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/KENGAN.ASHURA.S02.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG/KENGAN.ASHURA.S02E10.Life.and.Death.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/KENGAN.ASHURA.S02.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG/KENGAN.ASHURA.S02E03.The.Clown.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/KENGAN.ASHURA.S02.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG/KENGAN.ASHURA.S02E12.Melee.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/KENGAN.ASHURA.S02.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG/KENGAN.ASHURA.S02E01.Omen.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/KENGAN.ASHURA.S02.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG/KENGAN.ASHURA.S02E21.Farewell.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/KENGAN.ASHURA.S02.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG/KENGAN.ASHURA.S02E06.An.Old.Friend.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/KENGAN.ASHURA.S02.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG/KENGAN.ASHURA.S02E07.Hell.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/KENGAN.ASHURA.S02.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG/KENGAN.ASHURA.S02E28.Finale.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/KENGAN.ASHURA.S02.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG/KENGAN.ASHURA.S02E13.Headstrong.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/KENGAN.ASHURA.S02.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG/KENGAN.ASHURA.S02E05.Suicide.Attack.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/KENGAN.ASHURA.S02.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG/KENGAN.ASHURA.S02E19.Predicament.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/KENGAN.ASHURA.S02.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG/KENGAN.ASHURA.S02E09.Superiority.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/KENGAN.ASHURA.S02.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG/KENGAN.ASHURA.S02E04.Dignity.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/KENGAN.ASHURA.S02.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG/KENGAN.ASHURA.S02E27.Victory.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/KENGAN.ASHURA.S02.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG/KENGAN.ASHURA.S02E24.Supreme.Strength.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/KENGAN.ASHURA.S02.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG/KENGAN.ASHURA.S02E08.Resurrection.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Sakurato] City the Animation [01][HEVC-10bit 1080P AAC][CHS&CHT].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] GNOSIA - 04 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 靠廢柴技能【狀態異常】成為最強的我將蹂躪一切 - 05 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Psycho-Pass.Sinners.of.the.System.Case.1-3.2019.HK.1080p.BluRay.DualAudio.DTS-HD.MA.5.1.x265.10bit-monster6688/Psycho-Pass.Sinners.of.the.System.Case.1-3.2019.HK.1080p.BluRay.DualAudio.DTS-HD.MA.5.1.x265.10bit-monster6688.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Tsuki ga Michibiku Isekai Douchuu S2 - 12 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 膽大黨 第二季 - 23 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Skymoon-Raws] Mushoku Tensei 2nd Season - 03 [ViuTV][WEB-DL][CHT][1080p][AVC AAC][MP4+ASS]/[Skymoon-Raws] Mushoku Tensei 2nd Season - 03 [ViuTV][WEB-DL][1080p][AVC AAC].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Skymoon-Raws] Bofuri S02 - 03 [ViuTV][CHT][WEB-DL][1080p][AVC AAC][MP4+ASS]/[Skymoon-Raws] Bofuri S02 - 03 [ViuTV][WEB-DL][1080p][AVC AAC].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[HYSUB]Sono Bisque Doll wa Koi wo Suru[20][BIG5_MP4][1920X1080].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 永遠的黃昏 - 09 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 地獄模式 ~喜歡挑戰特殊成就的玩家在廢設定的異世界成為無雙~ - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 孤單一人的異世界攻略 - 11 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 異世界自殺突擊隊 - 05 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Shangri-La Frontier - 45 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Nekomoe kissaten][Your Forma][12][1080p][JPSC].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] DanMachi S5 - 05 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 異國日記 - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 杖與劍的魔劍譚 - 04 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 地下城中的人 - 04 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 費馬的料理 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Tensei Shitara Slime Datta Ken 3rd Season - 50 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 貫徹輔助魔法支援弱小隊友的宮廷魔法師,慘遭驅逐後目標成為最強冒險者 - 10 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Around 40 Otoko no Isekai Tsuuhan - 02 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 醜男真戰士 - 04 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Skymoon-Raws] Kaijuu 8 gou - 13 [ViuTV][WEB-DL][CHT][SRT][1080p][AVC AAC].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[SweetSub&LoliHouse] Bâan - The Boundaries of Adulthood [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Nekomoe kissaten][Hibi wa Sugiredo Meshi Umashi][06][1080p][JPTC].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 被逐出隊伍的治癒師,其實是最強 - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 刀劍神域外傳 Gun Gale Online II - 09 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 一拳超人(第三季) - 36 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 結緣甘神神社 - 12 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[H-Enc] Souryo to Majiwaru Shikiyoku no Yoru ni... (BDRip 1080p HEVC FLAC)/Souryo to Majiwaru Shikiyoku no Yoru ni... - 09.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[H-Enc] Souryo to Majiwaru Shikiyoku no Yoru ni... (BDRip 1080p HEVC FLAC)/Souryo to Majiwaru Shikiyoku no Yoru ni... - 07.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[H-Enc] Souryo to Majiwaru Shikiyoku no Yoru ni... (BDRip 1080p HEVC FLAC)/Souryo to Majiwaru Shikiyoku no Yoru ni... - 11.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[H-Enc] Souryo to Majiwaru Shikiyoku no Yoru ni... (BDRip 1080p HEVC FLAC)/Souryo to Majiwaru Shikiyoku no Yoru ni... - 06.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[H-Enc] Souryo to Majiwaru Shikiyoku no Yoru ni... (BDRip 1080p HEVC FLAC)/Souryo to Majiwaru Shikiyoku no Yoru ni... - 01.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[H-Enc] Souryo to Majiwaru Shikiyoku no Yoru ni... (BDRip 1080p HEVC FLAC)/Souryo to Majiwaru Shikiyoku no Yoru ni... - 08.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[H-Enc] Souryo to Majiwaru Shikiyoku no Yoru ni... (BDRip 1080p HEVC FLAC)/Souryo to Majiwaru Shikiyoku no Yoru ni... - 10.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[H-Enc] Souryo to Majiwaru Shikiyoku no Yoru ni... (BDRip 1080p HEVC FLAC)/Souryo to Majiwaru Shikiyoku no Yoru ni... - 02.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[H-Enc] Souryo to Majiwaru Shikiyoku no Yoru ni... (BDRip 1080p HEVC FLAC)/Souryo to Majiwaru Shikiyoku no Yoru ni... - 05.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[H-Enc] Souryo to Majiwaru Shikiyoku no Yoru ni... (BDRip 1080p HEVC FLAC)/Souryo to Majiwaru Shikiyoku no Yoru ni... - 12.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[H-Enc] Souryo to Majiwaru Shikiyoku no Yoru ni... (BDRip 1080p HEVC FLAC)/Souryo to Majiwaru Shikiyoku no Yoru ni... - 04.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[H-Enc] Souryo to Majiwaru Shikiyoku no Yoru ni... (BDRip 1080p HEVC FLAC)/Souryo to Majiwaru Shikiyoku no Yoru ni... - 03.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 在地下城尋求邂逅是否搞錯了什麼 第五季 - 15 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 治癒魔法的錯誤使用法 - 03 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 無職轉生~到了異世界就拿出真本事 第二季 - 22 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[orion origin] Kaijuu 8 Gou [12] [END] [1080p] [H265 AAC] [CHT&JPN].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Nekomoe kissaten][Your Forma][02][1080p][JPTC].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Shin no Nakama 2nd - 09 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Katainaka no Ossan, Kensei ni Naru - 05 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 水屬性的魔法師 - 08 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 刀劍神域外傳 Gun Gale Online II - 12 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 最狂輔助職業【話術士】世界最強戰團聽我號令 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 擁有超常技能的異世界流浪美食家 S2 - 15 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 結緣甘神神社 - 09 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Nekomoe kissaten&LoliHouse] Dosanko Gal wa Namara Menkoi - 05 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Nekomoe kissaten][Kusuriya no Hitorigoto][18][1080p][JPTC].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] Re:從零開始的異世界生活 第三季 - 06 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[DMG][Sono_Bisque_Doll_wa_Koi_wo_Suru][01-12 END][1080P][HEVC_Ma10P][MKV]/[DMG][Sono_Bisque_Doll_wa_Koi_wo_Suru][05][1080P_Ma10P][HEVC_AAC](6D557DD3).mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[DMG][Sono_Bisque_Doll_wa_Koi_wo_Suru][01-12 END][1080P][HEVC_Ma10P][MKV]/[DMG][Sono_Bisque_Doll_wa_Koi_wo_Suru][07][1080P_Ma10P][HEVC_AAC](39D93280).mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[DMG][Sono_Bisque_Doll_wa_Koi_wo_Suru][01-12 END][1080P][HEVC_Ma10P][MKV]/[DMG][Sono_Bisque_Doll_wa_Koi_wo_Suru][11][1080P_Ma10P][HEVC_AAC](8FA0B618).mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[DMG][Sono_Bisque_Doll_wa_Koi_wo_Suru][01-12 END][1080P][HEVC_Ma10P][MKV]/[DMG][Sono_Bisque_Doll_wa_Koi_wo_Suru][10][1080P_Ma10P][HEVC_AAC](BC1C80E6).mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[DMG][Sono_Bisque_Doll_wa_Koi_wo_Suru][01-12 END][1080P][HEVC_Ma10P][MKV]/[DMG][Sono_Bisque_Doll_wa_Koi_wo_Suru][03][1080P_Ma10P][HEVC_AAC](56DB4442).mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[DMG][Sono_Bisque_Doll_wa_Koi_wo_Suru][01-12 END][1080P][HEVC_Ma10P][MKV]/[DMG][Sono_Bisque_Doll_wa_Koi_wo_Suru][12 END][1080P_Ma10P][HEVC_AAC](ECF54792).mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[DMG][Sono_Bisque_Doll_wa_Koi_wo_Suru][01-12 END][1080P][HEVC_Ma10P][MKV]/[DMG][Sono_Bisque_Doll_wa_Koi_wo_Suru][09][1080P_Ma10P][HEVC_AAC](8E806DDE).mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[DMG][Sono_Bisque_Doll_wa_Koi_wo_Suru][01-12 END][1080P][HEVC_Ma10P][MKV]/[DMG][Sono_Bisque_Doll_wa_Koi_wo_Suru][08][1080P_Ma10P][HEVC_AAC](42BD6F4D).mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[DMG][Sono_Bisque_Doll_wa_Koi_wo_Suru][01-12 END][1080P][HEVC_Ma10P][MKV]/[DMG][Sono_Bisque_Doll_wa_Koi_wo_Suru][06][1080P_Ma10P][HEVC_AAC](B2AC1FF9).mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[DMG][Sono_Bisque_Doll_wa_Koi_wo_Suru][01-12 END][1080P][HEVC_Ma10P][MKV]/[DMG][Sono_Bisque_Doll_wa_Koi_wo_Suru][02][1080P_Ma10P][HEVC_AAC](54121EBD).mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[DMG][Sono_Bisque_Doll_wa_Koi_wo_Suru][01-12 END][1080P][HEVC_Ma10P][MKV]/[DMG][Sono_Bisque_Doll_wa_Koi_wo_Suru][01][1080P_Ma10P][HEVC_AAC](6EDD0A83).mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[DMG][Sono_Bisque_Doll_wa_Koi_wo_Suru][01-12 END][1080P][HEVC_Ma10P][MKV]/[DMG][Sono_Bisque_Doll_wa_Koi_wo_Suru][04][1080P_Ma10P][HEVC_AAC](994D2BE2).mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 葬送的芙莉蓮 - 21 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Nekomoe kissaten&LoliHouse] Tokidoki Bosotto Russia-go de Dereru Tonari no Alya-san - 07 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] Fate/strange Fake - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 怪獸 8 號 第二季 - 21 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[DMG&LoliHouse] Spy x Family [01-25][WebRip 1080p HEVC-10bit AAC ASSx2]/[DMG&LoliHouse] Spy x Family - 25 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[DMG&LoliHouse] Spy x Family [01-25][WebRip 1080p HEVC-10bit AAC ASSx2]/[DMG&LoliHouse] Spy x Family - 02 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[DMG&LoliHouse] Spy x Family [01-25][WebRip 1080p HEVC-10bit AAC ASSx2]/[DMG&LoliHouse] Spy x Family - 19 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[DMG&LoliHouse] Spy x Family [01-25][WebRip 1080p HEVC-10bit AAC ASSx2]/[DMG&LoliHouse] Spy x Family - 21 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[DMG&LoliHouse] Spy x Family [01-25][WebRip 1080p HEVC-10bit AAC ASSx2]/[DMG&LoliHouse] Spy x Family - 06 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[DMG&LoliHouse] Spy x Family [01-25][WebRip 1080p HEVC-10bit AAC ASSx2]/[DMG&LoliHouse] Spy x Family - 15 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[DMG&LoliHouse] Spy x Family [01-25][WebRip 1080p HEVC-10bit AAC ASSx2]/[DMG&LoliHouse] Spy x Family - 11 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[DMG&LoliHouse] Spy x Family [01-25][WebRip 1080p HEVC-10bit AAC ASSx2]/[DMG&LoliHouse] Spy x Family - 14 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[DMG&LoliHouse] Spy x Family [01-25][WebRip 1080p HEVC-10bit AAC ASSx2]/[DMG&LoliHouse] Spy x Family - 10 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[DMG&LoliHouse] Spy x Family [01-25][WebRip 1080p HEVC-10bit AAC ASSx2]/[DMG&LoliHouse] Spy x Family - 24 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[DMG&LoliHouse] Spy x Family [01-25][WebRip 1080p HEVC-10bit AAC ASSx2]/[DMG&LoliHouse] Spy x Family - 18 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[DMG&LoliHouse] Spy x Family [01-25][WebRip 1080p HEVC-10bit AAC ASSx2]/[DMG&LoliHouse] Spy x Family - 03 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[DMG&LoliHouse] Spy x Family [01-25][WebRip 1080p HEVC-10bit AAC ASSx2]/[DMG&LoliHouse] Spy x Family - 20 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[DMG&LoliHouse] Spy x Family [01-25][WebRip 1080p HEVC-10bit AAC ASSx2]/[DMG&LoliHouse] Spy x Family - 07 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[DMG&LoliHouse] Spy x Family [01-25][WebRip 1080p HEVC-10bit AAC ASSx2]/[DMG&LoliHouse] Spy x Family - 16 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[DMG&LoliHouse] Spy x Family [01-25][WebRip 1080p HEVC-10bit AAC ASSx2]/[DMG&LoliHouse] Spy x Family - 12 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[DMG&LoliHouse] Spy x Family [01-25][WebRip 1080p HEVC-10bit AAC ASSx2]/[DMG&LoliHouse] Spy x Family - 09 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[DMG&LoliHouse] Spy x Family [01-25][WebRip 1080p HEVC-10bit AAC ASSx2]/[DMG&LoliHouse] Spy x Family - 01 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[DMG&LoliHouse] Spy x Family [01-25][WebRip 1080p HEVC-10bit AAC ASSx2]/[DMG&LoliHouse] Spy x Family - 05 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[DMG&LoliHouse] Spy x Family [01-25][WebRip 1080p HEVC-10bit AAC ASSx2]/[DMG&LoliHouse] Spy x Family - 22 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[DMG&LoliHouse] Spy x Family [01-25][WebRip 1080p HEVC-10bit AAC ASSx2]/[DMG&LoliHouse] Spy x Family - 04 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[DMG&LoliHouse] Spy x Family [01-25][WebRip 1080p HEVC-10bit AAC ASSx2]/[DMG&LoliHouse] Spy x Family - 23 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[DMG&LoliHouse] Spy x Family [01-25][WebRip 1080p HEVC-10bit AAC ASSx2]/[DMG&LoliHouse] Spy x Family - 17 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[DMG&LoliHouse] Spy x Family [01-25][WebRip 1080p HEVC-10bit AAC ASSx2]/[DMG&LoliHouse] Spy x Family - 08 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[DMG&LoliHouse] Spy x Family [01-25][WebRip 1080p HEVC-10bit AAC ASSx2]/[DMG&LoliHouse] Spy x Family - 13 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 香格里拉・開拓異境~糞作獵手挑戰神作~ - 21 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Airota][ZatsuTabi][01][1080p HEVC-10bit AAC ASS].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 異世界自殺突擊隊 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Sakurato][20230703] Fuufu Koukan: Modorenai Yoru [01-08 Fin][TVRip][1080p][CHS]/[Sakurato] Fuufu Koukan: Modorenai Yoru [06][AVC-8bit 1080p AAC][CHS].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Sakurato][20230703] Fuufu Koukan: Modorenai Yoru [01-08 Fin][TVRip][1080p][CHS]/[Sakurato] Fuufu Koukan: Modorenai Yoru [08v2][AVC-8bit 1080p AAC][CHS].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Sakurato][20230703] Fuufu Koukan: Modorenai Yoru [01-08 Fin][TVRip][1080p][CHS]/[Sakurato] Fuufu Koukan: Modorenai Yoru [07][AVC-8bit 1080p AAC][CHS].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Sakurato][20230703] Fuufu Koukan: Modorenai Yoru [01-08 Fin][TVRip][1080p][CHS]/[Sakurato] Fuufu Koukan: Modorenai Yoru [01][AVC-8bit 1080p AAC][CHS].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Sakurato][20230703] Fuufu Koukan: Modorenai Yoru [01-08 Fin][TVRip][1080p][CHS]/[Sakurato] Fuufu Koukan: Modorenai Yoru [04][AVC-8bit 1080p AAC][CHS].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Sakurato][20230703] Fuufu Koukan: Modorenai Yoru [01-08 Fin][TVRip][1080p][CHS]/[Sakurato] Fuufu Koukan: Modorenai Yoru [02][AVC-8bit 1080p AAC][CHS].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Sakurato][20230703] Fuufu Koukan: Modorenai Yoru [01-08 Fin][TVRip][1080p][CHS]/[Sakurato] Fuufu Koukan: Modorenai Yoru [05][AVC-8bit 1080p AAC][CHS].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Sakurato][20230703] Fuufu Koukan: Modorenai Yoru [01-08 Fin][TVRip][1080p][CHS]/[Sakurato] Fuufu Koukan: Modorenai Yoru [03][AVC-8bit 1080p AAC][CHS].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Made.in.Abyss.Wandering.Twilight.2019.1080p.BluRay.x264.DTS-WiKi/Sample/Made.in.Abyss.Wandering.Twilight.2019.1080p.BluRay.x264.DTS-WiKi.sample.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Made.in.Abyss.Wandering.Twilight.2019.1080p.BluRay.x264.DTS-WiKi/Made.in.Abyss.Wandering.Twilight.2019.1080p.BluRay.x264.DTS-WiKi.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] LAZARUS 拉撒路 - 13 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 妻子變成小學生。 - 11 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 葬送的芙莉蓮 - 19 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 異國日記 - 06 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 香格里拉・開拓異境~糞作獵手挑戰神作~ - 19 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Skymoon-Raws] Re:Zero kara Hajimeru Isekai Seikatsu 3rd Season - 10 [ViuTV][WEB-DL][CHT][SRT][1080p][AVC AAC].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 記憶縫線 YOUR FORMA - 10 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[UHA-WINGS][Overtake!][x264 1080p][CHT]/[UHA-WINGS][Overtake!][10][x264 1080p][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[UHA-WINGS][Overtake!][x264 1080p][CHT]/[UHA-WINGS][Overtake!][06][x264 1080p][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[UHA-WINGS][Overtake!][x264 1080p][CHT]/[UHA-WINGS][Overtake!][11][x264 1080p][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[UHA-WINGS][Overtake!][x264 1080p][CHT]/[UHA-WINGS][Overtake!][01][x264 1080p][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[UHA-WINGS][Overtake!][x264 1080p][CHT]/[UHA-WINGS][Overtake!][07][x264 1080p][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[UHA-WINGS][Overtake!][x264 1080p][CHT]/[UHA-WINGS][Overtake!][12][x264 1080p][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[UHA-WINGS][Overtake!][x264 1080p][CHT]/[UHA-WINGS][Overtake!][04][x264 1080p][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[UHA-WINGS][Overtake!][x264 1080p][CHT]/[UHA-WINGS][Overtake!][02][x264 1080p][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[UHA-WINGS][Overtake!][x264 1080p][CHT]/[UHA-WINGS][Overtake!][08][x264 1080p][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[UHA-WINGS][Overtake!][x264 1080p][CHT]/[UHA-WINGS][Overtake!][05][x264 1080p][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[UHA-WINGS][Overtake!][x264 1080p][CHT]/[UHA-WINGS][Overtake!][03][x264 1080p][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[UHA-WINGS][Overtake!][x264 1080p][CHT]/[UHA-WINGS][Overtake!][09][x264 1080p][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 忍者與殺手的兩人生活 - 06 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 瞬間治癒卻被當成廢物踢出隊伍的天才治療師,改當無照治療師快樂過活 - 07 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] LAZARUS 拉撒路 - 08 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Amagami-san Chi no Enmusubi - 04 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 我的妻子不具感情 - 03 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 轉生貴族憑鑑定技能扭轉人生 - 03 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Shin Samurai-den YAIBA - 07 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Around 40 Otoko no Isekai Tsuuhan - 06 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Made.in.Abyss.Dawn.of.the.Deep.Soul.2020.1080p.BluRay.x264-WiKi/Sample/Made.in.Abyss.Dawn.of.the.Deep.Soul.2020.1080p.BluRay.x264-WiKi.Sample.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Made.in.Abyss.Dawn.of.the.Deep.Soul.2020.1080p.BluRay.x264-WiKi/Made.in.Abyss.Dawn.of.the.Deep.Soul.2020.1080p.BluRay.x264-WiKi.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[BeanSub&FZSD][Jujutsu_Kaisen][51][GB][1080P][x264_AAC].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 勇氣爆發 BANG BRAVERN - 04 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Nekomoe kissaten&LoliHouse] Dungeon Meshi - 17 [WebRip 1080p HEVC-10bit AAC EAC3 ASSx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 一拳超人(第三季) - 32 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 在地下城尋求邂逅是否搞錯了什麼 第五季 - 11 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Lilith-Raws] Rinkai! - 01 [Baha][WebDL 1080p AVC AAC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 被逐出隊伍的治癒師,其實是最強 - 06 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[BeanSub&FZSD][Jigokuraku][14][GB][1080P][x264_AAC].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 終末起點 - 11 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Grand Blue S2 - 02 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 黃昏光影 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 治癒魔法的錯誤使用法 - 07 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 一拳超人(第三季) - 29 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 遲早是最強的鍊金術師? - 10 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Sakurato][20220107] Shuumatsu no Harem [1-11 Fin][TV][AVC-8bit 1080P AAC][CHT]/[Sakurato] Shuumatsu no Harem [05][AVC-8bit 1080P AAC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Sakurato][20220107] Shuumatsu no Harem [1-11 Fin][TV][AVC-8bit 1080P AAC][CHT]/[Sakurato] Shuumatsu no Harem [03][AVC-8bit 1080P AAC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Sakurato][20220107] Shuumatsu no Harem [1-11 Fin][TV][AVC-8bit 1080P AAC][CHT]/[Sakurato] Shuumatsu no Harem [09][AVC-8bit 1080P AAC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Sakurato][20220107] Shuumatsu no Harem [1-11 Fin][TV][AVC-8bit 1080P AAC][CHT]/[Sakurato] Shuumatsu no Harem [04][AVC-8bit 1080P AAC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Sakurato][20220107] Shuumatsu no Harem [1-11 Fin][TV][AVC-8bit 1080P AAC][CHT]/[Sakurato] Shuumatsu no Harem [02][AVC-8bit 1080P AAC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Sakurato][20220107] Shuumatsu no Harem [1-11 Fin][TV][AVC-8bit 1080P AAC][CHT]/[Sakurato] Shuumatsu no Harem [08][AVC-8bit 1080P AAC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Sakurato][20220107] Shuumatsu no Harem [1-11 Fin][TV][AVC-8bit 1080P AAC][CHT]/[Sakurato] Shuumatsu no Harem [07][AVC-8bit 1080P AAC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Sakurato][20220107] Shuumatsu no Harem [1-11 Fin][TV][AVC-8bit 1080P AAC][CHT]/[Sakurato] Shuumatsu no Harem [01][AVC-8bit 1080P AAC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Sakurato][20220107] Shuumatsu no Harem [1-11 Fin][TV][AVC-8bit 1080P AAC][CHT]/[Sakurato] Shuumatsu no Harem [10][AVC-8bit 1080P AAC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Sakurato][20220107] Shuumatsu no Harem [1-11 Fin][TV][AVC-8bit 1080P AAC][CHT]/[Sakurato] Shuumatsu no Harem [06][AVC-8bit 1080P AAC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Sakurato][20220107] Shuumatsu no Harem [1-11 Fin][TV][AVC-8bit 1080P AAC][CHT]/[Sakurato] Shuumatsu no Harem [11][AVC-8bit 1080P AAC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Nekomoe kissaten&LoliHouse] Dosanko Gal wa Namara Menkoi - 01 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] Re:從零開始的異世界生活 第三季 - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Skymoon-Raws] SPY×FAMILY - 23 [ViuTV][WEB-DL][CHT][1080p][AVC AAC][MP4+ASS]/[Skymoon-Raws] SPY×FAMILY - 23 [ViuTV][WEB-DL][1080p][AVC AAC].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Katainaka no Ossan, Kensei ni Naru - 01 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[BeanSub&FZSD][Kimetsu_no_Yaiba][62][BIG5][1080P][x264_AAC].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 香格里拉・開拓異境~糞作獵手挑戰神作~ - 25 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 香格里拉・開拓異境~糞作獵手挑戰神作~ 第二季 - 14 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 葬送的芙莉蓮 - 25 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 29 歲單身中堅冒險家的日常 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 野原廣志 午餐的流派 - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Izure Saikyou no Renkinjutsushi - 05 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Nekomoe kissaten][Boku no Kokoro no Yabai Yatsu][22][1080p][JPSC].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Nekomoe kissaten&LoliHouse] Pon no Michi - 07 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/《盾之勇者成名錄 第二季》#12/《盾之勇者成名錄 第二季》#12 (日語原聲)【Ani-One ULTRA】.mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Nekomoe kissaten][Ame to Kimi to][05][1080p][JPSC].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Nekomoe kissaten][Chi. Chikyuu no Undou ni Tsuite][01][1080p][JPSC].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Baki.2018.S01.Part1.1080p.NF.WEB-DL.AAC.H.264@BWE/[第 1 部分.Ep6] 刃牙 - 片平警官的报告.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Baki.2018.S01.Part1.1080p.NF.WEB-DL.AAC.H.264@BWE/[第 1 部分.Ep9] 刃牙 - 激愤的神心会.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Baki.2018.S01.Part1.1080p.NF.WEB-DL.AAC.H.264@BWE/[第 1 部分.Ep5] 刃牙 - 想要更多吗?.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Baki.2018.S01.Part1.1080p.NF.WEB-DL.AAC.H.264@BWE/[第 1 部分.Ep13] 刃牙 - 奥利弗先生.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Baki.2018.S01.Part1.1080p.NF.WEB-DL.AAC.H.264@BWE/[第 1 部分.Ep7] 刃牙 - 最强的组合.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Baki.2018.S01.Part1.1080p.NF.WEB-DL.AAC.H.264@BWE/[第 1 部分.Ep8] 刃牙 - 比赛与决斗.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Baki.2018.S01.Part1.1080p.NF.WEB-DL.AAC.H.264@BWE/[第 1 部分.Ep12] 刃牙 - 糖果.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Baki.2018.S01.Part1.1080p.NF.WEB-DL.AAC.H.264@BWE/[第 1 部分.Ep10] 刃牙 - 空中决战.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Baki.2018.S01.Part1.1080p.NF.WEB-DL.AAC.H.264@BWE/[第 1 部分.Ep3] 刃牙 - 他们终于来了!.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Baki.2018.S01.Part1.1080p.NF.WEB-DL.AAC.H.264@BWE/[第 1 部分.Ep2] 刃牙 - 黑格斗.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Baki.2018.S01.Part1.1080p.NF.WEB-DL.AAC.H.264@BWE/[第 1 部分.Ep1] 刃牙 - 共时现象.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Baki.2018.S01.Part1.1080p.NF.WEB-DL.AAC.H.264@BWE/[第 1 部分.Ep4] 刃牙 - 比赛开始.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Baki.2018.S01.Part1.1080p.NF.WEB-DL.AAC.H.264@BWE/[第 1 部分.Ep11] 刃牙 - 虎杀.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/《不要欺負我,長瀞同學 2nd Attack》#1/《不要欺負我,長瀞同學 2nd Attack》#1 (日語原聲)【Ani-One Asia】.mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Lilith-Raws] Re:Monster - 01 [Baha][WebDL 1080p AVC AAC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 身為暗殺者的我明顯比勇者還強 - 04 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 素材採集家的異世界旅行記 - 06 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[orion origin] Boukyaku Battery [08] [1080p] [H265 AAC] [CHT&JPN].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/KENGAN.ASHURA.S02.Part2.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG/KENGAN.ASHURA.S02E21.Farewell.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/KENGAN.ASHURA.S02.Part2.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG/KENGAN.ASHURA.S02E22.Wakatsuki.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/KENGAN.ASHURA.S02.Part2.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG/KENGAN.ASHURA.S02E23.Wholehearted.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/KENGAN.ASHURA.S02.Part2.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG/KENGAN.ASHURA.S02E24.Supreme.Strength.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/KENGAN.ASHURA.S02.Part2.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG/KENGAN.ASHURA.S02E26.The.Finals.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/KENGAN.ASHURA.S02.Part2.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG/KENGAN.ASHURA.S02E25.Giant.Star.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/KENGAN.ASHURA.S02.Part2.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG/KENGAN.ASHURA.S02E27.Victory.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/KENGAN.ASHURA.S02.Part2.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG/KENGAN.ASHURA.S02E16.Culmination.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/KENGAN.ASHURA.S02.Part2.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG/KENGAN.ASHURA.S02E19.Predicament.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/KENGAN.ASHURA.S02.Part2.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG/KENGAN.ASHURA.S02E20.Demon.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/KENGAN.ASHURA.S02.Part2.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG/KENGAN.ASHURA.S02E28.Finale.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/KENGAN.ASHURA.S02.Part2.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG/KENGAN.ASHURA.S02E17.Gathering.Clouds.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/KENGAN.ASHURA.S02.Part2.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG/KENGAN.ASHURA.S02E14.Reflecting.Water.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/KENGAN.ASHURA.S02.Part2.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG/KENGAN.ASHURA.S02E13.Headstrong.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/KENGAN.ASHURA.S02.Part2.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG/KENGAN.ASHURA.S02E18.The.Floating.Cloud.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/KENGAN.ASHURA.S02.Part2.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG/KENGAN.ASHURA.S02E15.Ace.In.The.Hole.1080p.NF.WEB-DL.DDP5.1.H.264-VARYG.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 判處勇者刑 - 03 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[orion origin] Lv2 kara Cheat datta Moto Yuusha Kouho no Mattari Isekai Life [03] [1080p] [H265 AAC] [CHT&JPN].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] Silent Witch 沉默魔女的祕密 - 07 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 歲月流逝飯菜依舊美味 - 09 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 我獨自升級 - 10 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 我內心的糟糕念頭 第二季 - 23 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Skymoon-Raws] Shin Samurai-den YAIBA - 03 [ViuTV][WEB-DL][CHT][SRT][1080p][AVC AAC].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 差點在迷宮深處被信任的夥伴殺掉,但靠著天賜技能「無限扭蛋」獲得等級 9999 的夥伴,我要向前隊友和世界展開復仇&「給他們好看!」 - 10 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 聽說你們要結婚!? - 12 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 戀上換裝娃娃 Season 2 - 21 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/The.Legend.of.Vox.Machina.S01.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb/The.Legend.of.Vox.Machina.S01E07.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/The.Legend.of.Vox.Machina.S01.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb/The.Legend.of.Vox.Machina.S01E03.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/The.Legend.of.Vox.Machina.S01.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb/The.Legend.of.Vox.Machina.S01E12.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/The.Legend.of.Vox.Machina.S01.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb/The.Legend.of.Vox.Machina.S01E02.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/The.Legend.of.Vox.Machina.S01.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb/The.Legend.of.Vox.Machina.S01E06.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/The.Legend.of.Vox.Machina.S01.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb/The.Legend.of.Vox.Machina.S01E11.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/The.Legend.of.Vox.Machina.S01.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb/The.Legend.of.Vox.Machina.S01E09.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/The.Legend.of.Vox.Machina.S01.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb/The.Legend.of.Vox.Machina.S01E04.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/The.Legend.of.Vox.Machina.S01.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb/The.Legend.of.Vox.Machina.S01E05.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/The.Legend.of.Vox.Machina.S01.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb/The.Legend.of.Vox.Machina.S01E01.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/The.Legend.of.Vox.Machina.S01.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb/The.Legend.of.Vox.Machina.S01E08.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/The.Legend.of.Vox.Machina.S01.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb/The.Legend.of.Vox.Machina.S01E10.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 歲月流逝飯菜依舊美味 - 12 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Nekomoe kissaten&LoliHouse] Dandadan - 24 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Sakurato.sub][Tensei Shitara Slime Datta Ken][OVA01][BIG5][1080P]/[Sakurato.sub][Tensei Shitara Slime Datta Ken][OVA01][BIG5][1080P].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Record.of.Ragnarok.S02.1080p.NF.WEB-DL.AAC2.0.H.264-VARYG/Record.of.Ragnarok.S02E01.Good.vs.Evil.1080p.NF.WEB-DL.AAC2.0.H.264-VARYG.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Record.of.Ragnarok.S02.1080p.NF.WEB-DL.AAC2.0.H.264-VARYG/Record.of.Ragnarok.S02E03.Birth.of.a.Monster.1080p.NF.WEB-DL.AAC2.0.H.264-VARYG.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Record.of.Ragnarok.S02.1080p.NF.WEB-DL.AAC2.0.H.264-VARYG/Record.of.Ragnarok.S02E09.Resonance.1080p.NF.WEB-DL.AAC2.0.H.264-VARYG.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Record.of.Ragnarok.S02.1080p.NF.WEB-DL.AAC2.0.H.264-VARYG/Record.of.Ragnarok.S02E13.The.strongest.puberty.in.history.1080p.NF.WEB-DL.AAC2.0.H.264-VARYG.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Record.of.Ragnarok.S02.1080p.NF.WEB-DL.AAC2.0.H.264-VARYG/Record.of.Ragnarok.S02E07.Hundred.Seals.1080p.NF.WEB-DL.AAC2.0.H.264-VARYG.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Record.of.Ragnarok.S02.1080p.NF.WEB-DL.AAC2.0.H.264-VARYG/Record.of.Ragnarok.S02E15.The.Way.of.Light.1080p.NF.WEB-DL.AAC2.0.H.264-VARYG.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Record.of.Ragnarok.S02.1080p.NF.WEB-DL.AAC2.0.H.264-VARYG/Record.of.Ragnarok.S02E04.The.Final.Labor.1080p.NF.WEB-DL.AAC2.0.H.264-VARYG.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Record.of.Ragnarok.S02.1080p.NF.WEB-DL.AAC2.0.H.264-VARYG/Record.of.Ragnarok.S02E11.Round.Six.1080p.NF.WEB-DL.AAC2.0.H.264-VARYG.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Record.of.Ragnarok.S02.1080p.NF.WEB-DL.AAC2.0.H.264-VARYG/Record.of.Ragnarok.S02E02.The.Indomitable.War.God.1080p.NF.WEB-DL.AAC2.0.H.264-VARYG.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Record.of.Ragnarok.S02.1080p.NF.WEB-DL.AAC2.0.H.264-VARYG/Record.of.Ragnarok.S02E14.Legend.of.the.Underworld.1080p.NF.WEB-DL.AAC2.0.H.264-VARYG.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Record.of.Ragnarok.S02.1080p.NF.WEB-DL.AAC2.0.H.264-VARYG/Record.of.Ragnarok.S02E12.Zero.1080p.NF.WEB-DL.AAC2.0.H.264-VARYG.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Record.of.Ragnarok.S02.1080p.NF.WEB-DL.AAC2.0.H.264-VARYG/Record.of.Ragnarok.S02E10.The.Brink.1080p.NF.WEB-DL.AAC2.0.H.264-VARYG.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Record.of.Ragnarok.S02.1080p.NF.WEB-DL.AAC2.0.H.264-VARYG/Record.of.Ragnarok.S02E05.Requiem.1080p.NF.WEB-DL.AAC2.0.H.264-VARYG.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Record.of.Ragnarok.S02.1080p.NF.WEB-DL.AAC2.0.H.264-VARYG/Record.of.Ragnarok.S02E06.Conflicting.Motives.1080p.NF.WEB-DL.AAC2.0.H.264-VARYG.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Record.of.Ragnarok.S02.1080p.NF.WEB-DL.AAC2.0.H.264-VARYG/Record.of.Ragnarok.S02E08.The.Pinnacle.of.1116.1080p.NF.WEB-DL.AAC2.0.H.264-VARYG.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Nekomoe kissaten][Ao no Hako][20][1080p][JPTC].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Sakurato.sub][Psycho-Pass 3][08][CHT][1080P]/[Sakurato.sub][Psycho-Pass 3][08][CHT][1080P].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 聽說你們要結婚!? - 09 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Nekomoe kissaten][Chi. Chikyuu no Undou ni Tsuite][04][1080p][JPTC].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 靠廢柴技能【狀態異常】成為最強的我將蹂躪一切 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 怪獸 8 號 第二季 - 特別篇 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Tsuki ga Michibiku Isekai Douchuu S2 - 16 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 我的妻子不具感情 - 10 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Shin Samurai-den YAIBA - 14 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[DMG&LoliHouse] Spy x Family - 19/[DMG&LoliHouse] Spy x Family - 19 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 杖與劍的魔劍譚 - 08 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Sakurato] Haite Kudasai, Takamine-san [06][AVC-8bit 1080p AAC][CHT&JPN].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] DanMachi S5 - 09 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 香格里拉・開拓異境~糞作獵手挑戰神作~ 第二季 - 20 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Dont be a simp] Ao no Hako - 23 [NF WebRip 1080p HEVC-10bit E-AC-3 Multi-Subs].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 永遠的黃昏 - 05 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] NUKITASHI 住在拔作島上的我該如何是好? [年齡限制版] - 03 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 貫徹輔助魔法支援弱小隊友的宮廷魔法師,慘遭驅逐後目標成為最強冒險者 - 07 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Mars.Express.2023.1080p.BluRay.x265.10bit.DTS-WiKi/Mars.Express.2023.1080p.BluRay.x265.10bit.DTS-WiKi.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Nekomoe kissaten][Chi. Chikyuu no Undou ni Tsuite][02][1080p][JPTC].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 妻子變成小學生。 - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Nekomoe kissaten&LoliHouse] Shoushimin Series - 01 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[猫眼三姐妹].Cats.Eye.S01.2025.1080p.DSNP.WEB-DL.H264.AAC-CMCTV/[猫眼三姐妹].Cats.Eye.S01E06.2025.1080p.DSNP.WEB-DL.H264.AAC-CMCTV.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[猫眼三姐妹].Cats.Eye.S01.2025.1080p.DSNP.WEB-DL.H264.AAC-CMCTV/[猫眼三姐妹].Cats.Eye.S01E09.2025.1080p.DSNP.WEB-DL.H264.AAC-CMCTV.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[猫眼三姐妹].Cats.Eye.S01.2025.1080p.DSNP.WEB-DL.H264.AAC-CMCTV/[猫眼三姐妹].Cats.Eye.S01E11.2025.1080p.DSNP.WEB-DL.H264.AAC-CMCTV.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[猫眼三姐妹].Cats.Eye.S01.2025.1080p.DSNP.WEB-DL.H264.AAC-CMCTV/[猫眼三姐妹].Cats.Eye.S01E01.2025.1080p.DSNP.WEB-DL.H264.AAC-CMCTV.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[猫眼三姐妹].Cats.Eye.S01.2025.1080p.DSNP.WEB-DL.H264.AAC-CMCTV/[猫眼三姐妹].Cats.Eye.S01E07.2025.1080p.DSNP.WEB-DL.H264.AAC-CMCTV.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[猫眼三姐妹].Cats.Eye.S01.2025.1080p.DSNP.WEB-DL.H264.AAC-CMCTV/[猫眼三姐妹].Cats.Eye.S01E10.2025.1080p.DSNP.WEB-DL.H264.AAC-CMCTV.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[猫眼三姐妹].Cats.Eye.S01.2025.1080p.DSNP.WEB-DL.H264.AAC-CMCTV/[猫眼三姐妹].Cats.Eye.S01E08.2025.1080p.DSNP.WEB-DL.H264.AAC-CMCTV.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[猫眼三姐妹].Cats.Eye.S01.2025.1080p.DSNP.WEB-DL.H264.AAC-CMCTV/[猫眼三姐妹].Cats.Eye.S01E03.2025.1080p.DSNP.WEB-DL.H264.AAC-CMCTV.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[猫眼三姐妹].Cats.Eye.S01.2025.1080p.DSNP.WEB-DL.H264.AAC-CMCTV/[猫眼三姐妹].Cats.Eye.S01E04.2025.1080p.DSNP.WEB-DL.H264.AAC-CMCTV.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[猫眼三姐妹].Cats.Eye.S01.2025.1080p.DSNP.WEB-DL.H264.AAC-CMCTV/[猫眼三姐妹].Cats.Eye.S01E02.2025.1080p.DSNP.WEB-DL.H264.AAC-CMCTV.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[猫眼三姐妹].Cats.Eye.S01.2025.1080p.DSNP.WEB-DL.H264.AAC-CMCTV/[猫眼三姐妹].Cats.Eye.S01E12.2025.1080p.DSNP.WEB-DL.H264.AAC-CMCTV.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[猫眼三姐妹].Cats.Eye.S01.2025.1080p.DSNP.WEB-DL.H264.AAC-CMCTV/[猫眼三姐妹].Cats.Eye.S01E05.2025.1080p.DSNP.WEB-DL.H264.AAC-CMCTV.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Nekomoe kissaten][Tower of God S2][14][1080p][CHS].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Nekomoe kissaten][Tower of God S2][08][1080p][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Oshi no Ko - 15 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] Let′s Play 充滿挑戰的人生 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 結緣甘神神社 - 22 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 地下城中的人 - 08 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[BeanSub&FZSD][BLEACH_Sennen_Kessen-hen][32][GB][1080P][x264_AAC].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Kaijuu 8-gou - 19 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/《咒術迴戰 第二季》- 閑話 - 後編/《咒術迴戰 第二季》- 閑話 - 後編 (日語原聲)【Ani-One Asia ULTRA】.mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 香格里拉・開拓異境~糞作獵手挑戰神作~ 第二季 - 07 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Nekomoe kissaten][Chi. Chikyuu no Undou ni Tsuite][07][1080p][JPSC].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Nekomoe kissaten][Ao no Hako][19][1080p][JPTC].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/《夫婦以上,戀人未滿。》#11/《夫婦以上,戀人未滿。》#11 (日語原聲)【Ani-One Asia】.mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 九龍大眾浪漫 - 12 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Tensei Shitara Slime Datta Ken 3rd Season - 60 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Nozomanu Fushi no Boukensha - 01 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] Re:從零開始的異世界生活 第三季 - 11 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 關於我轉生變成史萊姆這檔事 第三季 - 70 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 刀劍神域外傳 Gun Gale Online II - 05 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Katainaka no Ossan, Kensei ni Naru - 12 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Nekomoe kissaten&VCB-Studio] ODDTAXI [Ma10p_1080p]/[Nekomoe kissaten&VCB-Studio] ODDTAXI [12][Ma10p_1080p][x265_flac_aac].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Nekomoe kissaten&VCB-Studio] ODDTAXI [Ma10p_1080p]/[Nekomoe kissaten&VCB-Studio] ODDTAXI [05][Ma10p_1080p][x265_flac_aac].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Nekomoe kissaten&VCB-Studio] ODDTAXI [Ma10p_1080p]/[Nekomoe kissaten&VCB-Studio] ODDTAXI [08][Ma10p_1080p][x265_flac_aac].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Nekomoe kissaten&VCB-Studio] ODDTAXI [Ma10p_1080p]/[Nekomoe kissaten&VCB-Studio] ODDTAXI [01][Ma10p_1080p][x265_flac_aac].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Nekomoe kissaten&VCB-Studio] ODDTAXI [Ma10p_1080p]/[Nekomoe kissaten&VCB-Studio] ODDTAXI [09][Ma10p_1080p][x265_flac_aac].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Nekomoe kissaten&VCB-Studio] ODDTAXI [Ma10p_1080p]/[Nekomoe kissaten&VCB-Studio] ODDTAXI [13][Ma10p_1080p][x265_flac_aac].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Nekomoe kissaten&VCB-Studio] ODDTAXI [Ma10p_1080p]/[Nekomoe kissaten&VCB-Studio] ODDTAXI [04][Ma10p_1080p][x265_flac_aac].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Nekomoe kissaten&VCB-Studio] ODDTAXI [Ma10p_1080p]/[Nekomoe kissaten&VCB-Studio] ODDTAXI [02][Ma10p_1080p][x265_flac_aac].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Nekomoe kissaten&VCB-Studio] ODDTAXI [Ma10p_1080p]/[Nekomoe kissaten&VCB-Studio] ODDTAXI [11][Ma10p_1080p][x265_flac_aac].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Nekomoe kissaten&VCB-Studio] ODDTAXI [Ma10p_1080p]/[Nekomoe kissaten&VCB-Studio] ODDTAXI [06][Ma10p_1080p][x265_flac_aac].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Nekomoe kissaten&VCB-Studio] ODDTAXI [Ma10p_1080p]/SPs/[Nekomoe kissaten&VCB-Studio] ODDTAXI [Audio Drama 02.5][Ma10p_1080p][x265_flac].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Nekomoe kissaten&VCB-Studio] ODDTAXI [Ma10p_1080p]/SPs/[Nekomoe kissaten&VCB-Studio] ODDTAXI [Audio Drama 07.8][Ma10p_1080p][x265_flac].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Nekomoe kissaten&VCB-Studio] ODDTAXI [Ma10p_1080p]/SPs/[Nekomoe kissaten&VCB-Studio] ODDTAXI [Audio Drama 03.5][Ma10p_1080p][x265_flac].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Nekomoe kissaten&VCB-Studio] ODDTAXI [Ma10p_1080p]/SPs/[Nekomoe kissaten&VCB-Studio] ODDTAXI [Picture Drama][Ma10p_1080p][x265_flac].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Nekomoe kissaten&VCB-Studio] ODDTAXI [Ma10p_1080p]/SPs/[Nekomoe kissaten&VCB-Studio] ODDTAXI [NCOP][Ma10p_1080p][x265_flac].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Nekomoe kissaten&VCB-Studio] ODDTAXI [Ma10p_1080p]/SPs/[Nekomoe kissaten&VCB-Studio] ODDTAXI [Audio Drama 06.7][Ma10p_1080p][x265_flac].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Nekomoe kissaten&VCB-Studio] ODDTAXI [Ma10p_1080p]/SPs/[Nekomoe kissaten&VCB-Studio] ODDTAXI [Audio Drama 01.3][Ma10p_1080p][x265_flac].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Nekomoe kissaten&VCB-Studio] ODDTAXI [Ma10p_1080p]/SPs/[Nekomoe kissaten&VCB-Studio] ODDTAXI [Audio Drama 12.11][Ma10p_1080p][x265_flac].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Nekomoe kissaten&VCB-Studio] ODDTAXI [Ma10p_1080p]/SPs/[Nekomoe kissaten&VCB-Studio] ODDTAXI [CM02][Ma10p_1080p][x265_flac].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Nekomoe kissaten&VCB-Studio] ODDTAXI [Ma10p_1080p]/SPs/[Nekomoe kissaten&VCB-Studio] ODDTAXI [Audio Drama 04.6][Ma10p_1080p][x265_flac].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Nekomoe kissaten&VCB-Studio] ODDTAXI [Ma10p_1080p]/SPs/[Nekomoe kissaten&VCB-Studio] ODDTAXI [Audio Drama 11.10][Ma10p_1080p][x265_flac].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Nekomoe kissaten&VCB-Studio] ODDTAXI [Ma10p_1080p]/SPs/[Nekomoe kissaten&VCB-Studio] ODDTAXI [Audio Drama 10.10][Ma10p_1080p][x265_flac].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Nekomoe kissaten&VCB-Studio] ODDTAXI [Ma10p_1080p]/SPs/[Nekomoe kissaten&VCB-Studio] ODDTAXI [NCED][Ma10p_1080p][x265_flac].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Nekomoe kissaten&VCB-Studio] ODDTAXI [Ma10p_1080p]/SPs/[Nekomoe kissaten&VCB-Studio] ODDTAXI [Audio Drama 08.8][Ma10p_1080p][x265_flac].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Nekomoe kissaten&VCB-Studio] ODDTAXI [Ma10p_1080p]/SPs/[Nekomoe kissaten&VCB-Studio] ODDTAXI [Audio Drama 13.13][Ma10p_1080p][x265_flac].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Nekomoe kissaten&VCB-Studio] ODDTAXI [Ma10p_1080p]/SPs/[Nekomoe kissaten&VCB-Studio] ODDTAXI [Audio Drama 05.6][Ma10p_1080p][x265_flac].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Nekomoe kissaten&VCB-Studio] ODDTAXI [Ma10p_1080p]/SPs/[Nekomoe kissaten&VCB-Studio] ODDTAXI [Audio Drama 09.9][Ma10p_1080p][x265_flac].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Nekomoe kissaten&VCB-Studio] ODDTAXI [Ma10p_1080p]/SPs/[Nekomoe kissaten&VCB-Studio] ODDTAXI [CM01][Ma10p_1080p][x265_flac].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Nekomoe kissaten&VCB-Studio] ODDTAXI [Ma10p_1080p]/[Nekomoe kissaten&VCB-Studio] ODDTAXI [10][Ma10p_1080p][x265_flac_aac].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Nekomoe kissaten&VCB-Studio] ODDTAXI [Ma10p_1080p]/[Nekomoe kissaten&VCB-Studio] ODDTAXI [07][Ma10p_1080p][x265_flac_aac].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Nekomoe kissaten&VCB-Studio] ODDTAXI [Ma10p_1080p]/[Nekomoe kissaten&VCB-Studio] ODDTAXI [03][Ma10p_1080p][x265_flac_aac].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Skymoon-Raws] Hoshi no Samidare - 01 [ViuTV][WEB-DL][CHT][1080p][AVC AAC][MP4+ASS]/[Skymoon-Raws] Hoshi no Samidare - 01 [ViuTV][WEB-DL][1080p][AVC AAC].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 名湯「異世界溫泉」開拓記~30 多歲溫泉狂熱者,轉生到悠閒的溫泉天國~ - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[orion origin] Ore wa Subete wo Parry Suru ~Gyaku Kanchigai no Sekai Saikyou wa Boukensha ni Naritai~ [01] [1080p] [H265 AAC] [CHT&JPN].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 最強肉盾的迷宮攻略~擁有稀少技能體力 9999 的肉盾,被勇者隊伍辭退了~ - 04 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] S 級怪獸《貝希摩斯》被誤認成小貓,成為精靈女孩的騎士(寵物)一起生活 - 09 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 咒術迴戰 死滅迴游 前篇 - 50 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Nekomoe kissaten&LoliHouse] 30-sai made Doutei dato Mahoutsukai ni Nareru Rashii - 01 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Kekkon suru tte, Hontou desu ka - 02 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 在地下城尋求邂逅是否搞錯了什麼 第五季 - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 葬送的芙莉蓮 第二季 - 30 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Shin no Nakama 2nd - 05 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Sakurato] Haite Kudasai, Takamine-san [12][AVC-8bit 1080p AAC][CHS&JPN].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[orion origin] Boukyaku Battery [10] [1080p] [H265 AAC] [CHT&JPN].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 水屬性的魔法師 - 04 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Katainaka no Ossan, Kensei ni Naru - 09 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Skymoon-Raws] Shin Samurai-den YAIBA - 12 [ViuTV][WEB-DL][CHT][SRT][1080p][AVC AAC].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 終末起點 - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 我要【招架】一切~反誤解的世界最強想成為冒險家~ - 06 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[BeanSub&FZSD][BLEACH_Sennen_Kessen-hen][28v2][GB][1080P][x264_AAC].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Tsuki ga Michibiku Isekai Douchuu S2 - 22 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 膽大黨 第二季 - 13 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Mobile.Suit.Gundam.GQuuuuuuX.S01E01.The.Red.Gundam.1080p.AMZN.WEB-DL.MULTi.DDP2.0.H.264-VARYG.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 轉生後的我成了英雄爸爸和精靈媽媽的女兒 - 03 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[KyokuSai] Adam's Sweet Agony [08][720P][WEB-DL].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 新人大叔冒險者,被最強隊伍操到死成無敵 - 04 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Nekomoe kissaten][Ao no Hako][17][1080p][JPSC].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Sword Art Online Alternative - Gun Gale Online II - 04 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[FZSD][Hime-sama Goumon no Jikan Desu][13][BIG5][1080P][x264_AAC].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/晚安世界.Good.Night.World.2023.S01.1080p.NF.WEB-DL.x264.DDP5.1-PTerWEB/Good.Night.World.2023.S01E03.1080p.NF.WEB-DL.x264.DDP5.1-PTerWEB.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/晚安世界.Good.Night.World.2023.S01.1080p.NF.WEB-DL.x264.DDP5.1-PTerWEB/Good.Night.World.2023.S01E07.1080p.NF.WEB-DL.x264.DDP5.1-PTerWEB.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/晚安世界.Good.Night.World.2023.S01.1080p.NF.WEB-DL.x264.DDP5.1-PTerWEB/Good.Night.World.2023.S01E10.1080p.NF.WEB-DL.x264.DDP5.1-PTerWEB.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/晚安世界.Good.Night.World.2023.S01.1080p.NF.WEB-DL.x264.DDP5.1-PTerWEB/Good.Night.World.2023.S01E11.1080p.NF.WEB-DL.x264.DDP5.1-PTerWEB.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/晚安世界.Good.Night.World.2023.S01.1080p.NF.WEB-DL.x264.DDP5.1-PTerWEB/Good.Night.World.2023.S01E02.1080p.NF.WEB-DL.x264.DDP5.1-PTerWEB.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/晚安世界.Good.Night.World.2023.S01.1080p.NF.WEB-DL.x264.DDP5.1-PTerWEB/Good.Night.World.2023.S01E06.1080p.NF.WEB-DL.x264.DDP5.1-PTerWEB.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/晚安世界.Good.Night.World.2023.S01.1080p.NF.WEB-DL.x264.DDP5.1-PTerWEB/Good.Night.World.2023.S01E08.1080p.NF.WEB-DL.x264.DDP5.1-PTerWEB.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/晚安世界.Good.Night.World.2023.S01.1080p.NF.WEB-DL.x264.DDP5.1-PTerWEB/Good.Night.World.2023.S01E04.1080p.NF.WEB-DL.x264.DDP5.1-PTerWEB.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/晚安世界.Good.Night.World.2023.S01.1080p.NF.WEB-DL.x264.DDP5.1-PTerWEB/Good.Night.World.2023.S01E01.1080p.NF.WEB-DL.x264.DDP5.1-PTerWEB.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/晚安世界.Good.Night.World.2023.S01.1080p.NF.WEB-DL.x264.DDP5.1-PTerWEB/Good.Night.World.2023.S01E05.1080p.NF.WEB-DL.x264.DDP5.1-PTerWEB.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/晚安世界.Good.Night.World.2023.S01.1080p.NF.WEB-DL.x264.DDP5.1-PTerWEB/Good.Night.World.2023.S01E12.1080p.NF.WEB-DL.x264.DDP5.1-PTerWEB.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/晚安世界.Good.Night.World.2023.S01.1080p.NF.WEB-DL.x264.DDP5.1-PTerWEB/Good.Night.World.2023.S01E09.1080p.NF.WEB-DL.x264.DDP5.1-PTerWEB.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[orion origin] Benriya Saitou-san, Isekai ni Iku [01-12] [WebRip] [1080p] [H265 AAC] [CHT]/[orion origin] Benriya Saitou-san, Isekai ni Iku [08] [1080p] [H265 AAC] [CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[orion origin] Benriya Saitou-san, Isekai ni Iku [01-12] [WebRip] [1080p] [H265 AAC] [CHT]/[orion origin] Benriya Saitou-san, Isekai ni Iku [02] [1080p] [H265 AAC] [CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[orion origin] Benriya Saitou-san, Isekai ni Iku [01-12] [WebRip] [1080p] [H265 AAC] [CHT]/[orion origin] Benriya Saitou-san, Isekai ni Iku [04] [1080p] [H265 AAC] [CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[orion origin] Benriya Saitou-san, Isekai ni Iku [01-12] [WebRip] [1080p] [H265 AAC] [CHT]/[orion origin] Benriya Saitou-san, Isekai ni Iku [09] [1080p] [H265 AAC] [CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[orion origin] Benriya Saitou-san, Isekai ni Iku [01-12] [WebRip] [1080p] [H265 AAC] [CHT]/[orion origin] Benriya Saitou-san, Isekai ni Iku [03] [1080p] [H265 AAC] [CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[orion origin] Benriya Saitou-san, Isekai ni Iku [01-12] [WebRip] [1080p] [H265 AAC] [CHT]/[orion origin] Benriya Saitou-san, Isekai ni Iku [05] [1080p] [H265 AAC] [CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[orion origin] Benriya Saitou-san, Isekai ni Iku [01-12] [WebRip] [1080p] [H265 AAC] [CHT]/[orion origin] Benriya Saitou-san, Isekai ni Iku [11] [1080p] [H265 AAC] [CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[orion origin] Benriya Saitou-san, Isekai ni Iku [01-12] [WebRip] [1080p] [H265 AAC] [CHT]/[orion origin] Benriya Saitou-san, Isekai ni Iku [12] [END] [1080p] [H265 AAC] [CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[orion origin] Benriya Saitou-san, Isekai ni Iku [01-12] [WebRip] [1080p] [H265 AAC] [CHT]/[orion origin] Benriya Saitou-san, Isekai ni Iku [06] [1080p] [H265 AAC] [CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[orion origin] Benriya Saitou-san, Isekai ni Iku [01-12] [WebRip] [1080p] [H265 AAC] [CHT]/[orion origin] Benriya Saitou-san, Isekai ni Iku [10] [1080p] [H265 AAC] [CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[orion origin] Benriya Saitou-san, Isekai ni Iku [01-12] [WebRip] [1080p] [H265 AAC] [CHT]/[orion origin] Benriya Saitou-san, Isekai ni Iku [01] [1080p] [H265 AAC] [CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[orion origin] Benriya Saitou-san, Isekai ni Iku [01-12] [WebRip] [1080p] [H265 AAC] [CHT]/[orion origin] Benriya Saitou-san, Isekai ni Iku [07] [1080p] [H265 AAC] [CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 盾之勇者成名錄 Season 4 - 03 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 使人誤解的工房主~關於原英雄隊伍的雜役人員,實際上除了戰鬥能力外全是SSS的故事~ - 10 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[HYSUB]Dungeon Meshi[19][BIG5_MP4][1920X1080].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 陰陽迴天 Re:Birth Verse - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 我與尼特女忍者的莫名同居生活 - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 最後可以再拜託您一件事嗎? - 06 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 我獨自升級 第二季 -起於闇影- - 18 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] WIND BREAKER—防風少年— - 10 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 我內心的糟糕念頭 第二季 - 17 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 輝夜姬想讓人告白 邁向大人的階梯 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Nekomoe kissaten&LoliHouse] Ame to Kimi to - 01 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 我獨自升級 第二季 -起於闇影- - 24 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 靠廢柴技能【狀態異常】成為最強的我將蹂躪一切 - 12 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 膽大黨 - 06 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Nekomoe kissaten&LoliHouse] Ao no Hako - 01 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 聽說你們要結婚!? - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[orion origin] Ore wa Subete wo Parry Suru ~Gyaku Kanchigai no Sekai Saikyou wa Boukensha ni Naritai~ [05] [1080p] [H265 AAC] [CHT&JPN].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 靠廢柴技能【狀態異常】成為最強的我將蹂躪一切 - 09 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Nekomoe kissaten][Ao no Hako][12][1080p][JPTC].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Pluto.S01.1080p.NF.WEB-DL.DDP5.1.H.264-QUiNTESSENCE/Pluto.S01E02.1080p.WEB.h264-QUiNTESSENCE.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Pluto.S01.1080p.NF.WEB-DL.DDP5.1.H.264-QUiNTESSENCE/Pluto.S01E03.1080p.WEB.h264-QUiNTESSENCE.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Pluto.S01.1080p.NF.WEB-DL.DDP5.1.H.264-QUiNTESSENCE/Pluto.S01E01.1080p.WEB.h264-QUiNTESSENCE.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Pluto.S01.1080p.NF.WEB-DL.DDP5.1.H.264-QUiNTESSENCE/Pluto.S01E04.1080p.WEB.h264-QUiNTESSENCE.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Pluto.S01.1080p.NF.WEB-DL.DDP5.1.H.264-QUiNTESSENCE/Pluto.S01E05.1080p.WEB.h264-QUiNTESSENCE.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Pluto.S01.1080p.NF.WEB-DL.DDP5.1.H.264-QUiNTESSENCE/Pluto.S01E07.1080p.WEB.h264-QUiNTESSENCE.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Pluto.S01.1080p.NF.WEB-DL.DDP5.1.H.264-QUiNTESSENCE/Pluto.S01E06.1080p.WEB.h264-QUiNTESSENCE.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Pluto.S01.1080p.NF.WEB-DL.DDP5.1.H.264-QUiNTESSENCE/Pluto.S01E08.1080p.WEB.h264-QUiNTESSENCE.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 我獨自升級 - 03 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Re Monster - 06 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[SweetSub&LoliHouse] Horimiya Piece [WebRip 1080p HEVC-10bit AAC ASSx2]/Bonus/[SweetSub&LoliHouse] Horimiya Piece - Web Preview 09 [Web-DL 1080p AVC-8bit AAC ASSx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[SweetSub&LoliHouse] Horimiya Piece [WebRip 1080p HEVC-10bit AAC ASSx2]/Bonus/[SweetSub&LoliHouse] Horimiya Piece - Web Preview 08 [Web-DL 1080p AVC-8bit AAC ASSx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[SweetSub&LoliHouse] Horimiya Piece [WebRip 1080p HEVC-10bit AAC ASSx2]/Bonus/[SweetSub&LoliHouse] Horimiya Piece - Web Preview 07 [Web-DL 1080p AVC-8bit AAC ASSx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[SweetSub&LoliHouse] Horimiya Piece [WebRip 1080p HEVC-10bit AAC ASSx2]/Bonus/[SweetSub&LoliHouse] Horimiya Piece - Web Preview 11 [Web-DL 1080p AVC-8bit AAC ASSx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[SweetSub&LoliHouse] Horimiya Piece [WebRip 1080p HEVC-10bit AAC ASSx2]/Bonus/[SweetSub&LoliHouse] Horimiya Piece - Web Preview 06 [Web-DL 1080p AVC-8bit AAC ASSx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[SweetSub&LoliHouse] Horimiya Piece [WebRip 1080p HEVC-10bit AAC ASSx2]/Bonus/[SweetSub&LoliHouse] Horimiya Piece - Web Preview 10 [Web-DL 1080p AVC-8bit AAC ASSx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[SweetSub&LoliHouse] Horimiya Piece [WebRip 1080p HEVC-10bit AAC ASSx2]/Bonus/[SweetSub&LoliHouse] Horimiya Piece - Web Preview 05 [Web-DL 1080p AVC-8bit AAC ASSx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[SweetSub&LoliHouse] Horimiya Piece [WebRip 1080p HEVC-10bit AAC ASSx2]/Bonus/[SweetSub&LoliHouse] Horimiya Piece - Web Preview 13 [Web-DL 1080p AVC-8bit AAC ASSx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[SweetSub&LoliHouse] Horimiya Piece [WebRip 1080p HEVC-10bit AAC ASSx2]/Bonus/[SweetSub&LoliHouse] Horimiya Piece - Web Preview 04 [Web-DL 1080p AVC-8bit AAC ASSx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[SweetSub&LoliHouse] Horimiya Piece [WebRip 1080p HEVC-10bit AAC ASSx2]/Bonus/[SweetSub&LoliHouse] Horimiya Piece - Web Preview 12 [Web-DL 1080p AVC-8bit AAC ASSx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[SweetSub&LoliHouse] Horimiya Piece [WebRip 1080p HEVC-10bit AAC ASSx2]/Bonus/[SweetSub&LoliHouse] Horimiya Piece - Final PV [Web-DL 1080p AVC-8bit AAC ASSx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[SweetSub&LoliHouse] Horimiya Piece [WebRip 1080p HEVC-10bit AAC ASSx2]/Bonus/[SweetSub&LoliHouse] Horimiya Piece - Web Preview 03 [Web-DL 1080p AVC-8bit AAC ASSx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[SweetSub&LoliHouse] Horimiya Piece [WebRip 1080p HEVC-10bit AAC ASSx2]/Bonus/[SweetSub&LoliHouse] Horimiya Piece - Web Preview 02 [Web-DL 1080p AVC-8bit AAC ASSx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[SweetSub&LoliHouse] Horimiya Piece [WebRip 1080p HEVC-10bit AAC ASSx2]/Bonus/[SweetSub&LoliHouse] Horimiya Piece - Web Preview 01 [Web-DL 1080p AVC-8bit AAC ASSx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[SweetSub&LoliHouse] Horimiya Piece [WebRip 1080p HEVC-10bit AAC ASSx2]/[SweetSub&LoliHouse] Horimiya Piece - 07 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[SweetSub&LoliHouse] Horimiya Piece [WebRip 1080p HEVC-10bit AAC ASSx2]/[SweetSub&LoliHouse] Horimiya Piece - 03 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[SweetSub&LoliHouse] Horimiya Piece [WebRip 1080p HEVC-10bit AAC ASSx2]/[SweetSub&LoliHouse] Horimiya Piece - 10 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[SweetSub&LoliHouse] Horimiya Piece [WebRip 1080p HEVC-10bit AAC ASSx2]/[SweetSub&LoliHouse] Horimiya Piece - 11 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[SweetSub&LoliHouse] Horimiya Piece [WebRip 1080p HEVC-10bit AAC ASSx2]/[SweetSub&LoliHouse] Horimiya Piece - 06 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[SweetSub&LoliHouse] Horimiya Piece [WebRip 1080p HEVC-10bit AAC ASSx2]/[SweetSub&LoliHouse] Horimiya Piece - 02 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[SweetSub&LoliHouse] Horimiya Piece [WebRip 1080p HEVC-10bit AAC ASSx2]/[SweetSub&LoliHouse] Horimiya Piece - 13 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[SweetSub&LoliHouse] Horimiya Piece [WebRip 1080p HEVC-10bit AAC ASSx2]/[SweetSub&LoliHouse] Horimiya Piece - 08 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[SweetSub&LoliHouse] Horimiya Piece [WebRip 1080p HEVC-10bit AAC ASSx2]/[SweetSub&LoliHouse] Horimiya Piece - 04 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[SweetSub&LoliHouse] Horimiya Piece [WebRip 1080p HEVC-10bit AAC ASSx2]/[SweetSub&LoliHouse] Horimiya Piece - 05 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[SweetSub&LoliHouse] Horimiya Piece [WebRip 1080p HEVC-10bit AAC ASSx2]/[SweetSub&LoliHouse] Horimiya Piece - 01 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[SweetSub&LoliHouse] Horimiya Piece [WebRip 1080p HEVC-10bit AAC ASSx2]/[SweetSub&LoliHouse] Horimiya Piece - 09 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[SweetSub&LoliHouse] Horimiya Piece [WebRip 1080p HEVC-10bit AAC ASSx2]/[SweetSub&LoliHouse] Horimiya Piece - 12 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 膽大黨 第二季 - 17 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 我要【招架】一切~反誤解的世界最強想成為冒險家~ - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 素材採集家的異世界旅行記 - 11 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Amagami-san Chi no Enmusubi [01-24][WebRip 1080p HEVC-10bit AAC]/[LoliHouse] Amagami-san Chi no Enmusubi - 11 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Amagami-san Chi no Enmusubi [01-24][WebRip 1080p HEVC-10bit AAC]/[LoliHouse] Amagami-san Chi no Enmusubi - 15 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Amagami-san Chi no Enmusubi [01-24][WebRip 1080p HEVC-10bit AAC]/[LoliHouse] Amagami-san Chi no Enmusubi - 06 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Amagami-san Chi no Enmusubi [01-24][WebRip 1080p HEVC-10bit AAC]/[LoliHouse] Amagami-san Chi no Enmusubi - 21 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Amagami-san Chi no Enmusubi [01-24][WebRip 1080p HEVC-10bit AAC]/[LoliHouse] Amagami-san Chi no Enmusubi - 02 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Amagami-san Chi no Enmusubi [01-24][WebRip 1080p HEVC-10bit AAC]/[LoliHouse] Amagami-san Chi no Enmusubi - 19 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Amagami-san Chi no Enmusubi [01-24][WebRip 1080p HEVC-10bit AAC]/[LoliHouse] Amagami-san Chi no Enmusubi - 07 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Amagami-san Chi no Enmusubi [01-24][WebRip 1080p HEVC-10bit AAC]/[LoliHouse] Amagami-san Chi no Enmusubi - 20 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Amagami-san Chi no Enmusubi [01-24][WebRip 1080p HEVC-10bit AAC]/[LoliHouse] Amagami-san Chi no Enmusubi - 18 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Amagami-san Chi no Enmusubi [01-24][WebRip 1080p HEVC-10bit AAC]/[LoliHouse] Amagami-san Chi no Enmusubi - 03 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Amagami-san Chi no Enmusubi [01-24][WebRip 1080p HEVC-10bit AAC]/[LoliHouse] Amagami-san Chi no Enmusubi - 24 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Amagami-san Chi no Enmusubi [01-24][WebRip 1080p HEVC-10bit AAC]/[LoliHouse] Amagami-san Chi no Enmusubi - 10 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Amagami-san Chi no Enmusubi [01-24][WebRip 1080p HEVC-10bit AAC]/[LoliHouse] Amagami-san Chi no Enmusubi - 14 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Amagami-san Chi no Enmusubi [01-24][WebRip 1080p HEVC-10bit AAC]/[LoliHouse] Amagami-san Chi no Enmusubi - 22 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Amagami-san Chi no Enmusubi [01-24][WebRip 1080p HEVC-10bit AAC]/[LoliHouse] Amagami-san Chi no Enmusubi - 05 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Amagami-san Chi no Enmusubi [01-24][WebRip 1080p HEVC-10bit AAC]/[LoliHouse] Amagami-san Chi no Enmusubi - 01 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Amagami-san Chi no Enmusubi [01-24][WebRip 1080p HEVC-10bit AAC]/[LoliHouse] Amagami-san Chi no Enmusubi - 12 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Amagami-san Chi no Enmusubi [01-24][WebRip 1080p HEVC-10bit AAC]/[LoliHouse] Amagami-san Chi no Enmusubi - 09 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Amagami-san Chi no Enmusubi [01-24][WebRip 1080p HEVC-10bit AAC]/[LoliHouse] Amagami-san Chi no Enmusubi - 16 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Amagami-san Chi no Enmusubi [01-24][WebRip 1080p HEVC-10bit AAC]/[LoliHouse] Amagami-san Chi no Enmusubi - 08 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Amagami-san Chi no Enmusubi [01-24][WebRip 1080p HEVC-10bit AAC]/[LoliHouse] Amagami-san Chi no Enmusubi - 13 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Amagami-san Chi no Enmusubi [01-24][WebRip 1080p HEVC-10bit AAC]/[LoliHouse] Amagami-san Chi no Enmusubi - 17 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Amagami-san Chi no Enmusubi [01-24][WebRip 1080p HEVC-10bit AAC]/[LoliHouse] Amagami-san Chi no Enmusubi - 23 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Amagami-san Chi no Enmusubi [01-24][WebRip 1080p HEVC-10bit AAC]/[LoliHouse] Amagami-san Chi no Enmusubi - 04 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 和機器人啪啪啪能算在經驗人數裡嗎?? [年齡限制版] - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Nekomoe kissaten][Megami no Cafe Terrace][06-09][1080p][JPTC]/[Nekomoe kissaten][Megami no Cafe Terrace][06][1080p][JPTC].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Nekomoe kissaten][Megami no Cafe Terrace][06-09][1080p][JPTC]/[Nekomoe kissaten][Megami no Cafe Terrace][07][1080p][JPTC].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Nekomoe kissaten][Megami no Cafe Terrace][06-09][1080p][JPTC]/[Nekomoe kissaten][Megami no Cafe Terrace][09][1080p][JPTC].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Nekomoe kissaten][Megami no Cafe Terrace][06-09][1080p][JPTC]/[Nekomoe kissaten][Megami no Cafe Terrace][08][1080p][JPTC].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 盾之勇者成名錄 Season 4 - 07 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Nekomoe kissaten][Watanare][01][1080p][JPTC].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Eternal][Modaete yo, Adam-kun][03.5][GB][720P][Onair].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] Re:Monster - 11 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Bastard.Heavy.Metal.Dark.Fantasy.S01.JAPANESE.1080p.NF.WEBRip.DDP2.0.x264-E.N.D[rartv]/Bastard.Heavy.Metal.Dark.Fantasy.S01E22.Conclusion.1080p.NF.WEB-DL.DUAL.DDP2.0.H.264-E.N.D.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Bastard.Heavy.Metal.Dark.Fantasy.S01.JAPANESE.1080p.NF.WEBRip.DDP2.0.x264-E.N.D[rartv]/Bastard.Heavy.Metal.Dark.Fantasy.S01E07.The.Demon.Beast.1080p.NF.WEB-DL.DUAL.DDP2.0.H.264-E.N.D.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Bastard.Heavy.Metal.Dark.Fantasy.S01.JAPANESE.1080p.NF.WEBRip.DDP2.0.x264-E.N.D[rartv]/Bastard.Heavy.Metal.Dark.Fantasy.S01E05.Showdown.1080p.NF.WEB-DL.DUAL.DDP2.0.H.264-E.N.D.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Bastard.Heavy.Metal.Dark.Fantasy.S01.JAPANESE.1080p.NF.WEBRip.DDP2.0.x264-E.N.D[rartv]/Bastard.Heavy.Metal.Dark.Fantasy.S01E17.Ring.1080p.NF.WEB-DL.DUAL.DDP2.0.H.264-E.N.D.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Bastard.Heavy.Metal.Dark.Fantasy.S01.JAPANESE.1080p.NF.WEBRip.DDP2.0.x264-E.N.D[rartv]/Bastard.Heavy.Metal.Dark.Fantasy.S01E06.Destiny.1080p.NF.WEB-DL.DUAL.DDP2.0.H.264-E.N.D.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Bastard.Heavy.Metal.Dark.Fantasy.S01.JAPANESE.1080p.NF.WEBRip.DDP2.0.x264-E.N.D[rartv]/Bastard.Heavy.Metal.Dark.Fantasy.S01E19.Empress.of.Thunder.1080p.NF.WEB-DL.DUAL.DDP2.0.H.264-E.N.D.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Bastard.Heavy.Metal.Dark.Fantasy.S01.JAPANESE.1080p.NF.WEBRip.DDP2.0.x264-E.N.D[rartv]/Bastard.Heavy.Metal.Dark.Fantasy.S01E23.Annihilation.1080p.NF.WEB-DL.DUAL.DDP2.0.H.264-E.N.D.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Bastard.Heavy.Metal.Dark.Fantasy.S01.JAPANESE.1080p.NF.WEBRip.DDP2.0.x264-E.N.D[rartv]/Bastard.Heavy.Metal.Dark.Fantasy.S01E08.The.Progenitor.1080p.NF.WEB-DL.DUAL.DDP2.0.H.264-E.N.D.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Bastard.Heavy.Metal.Dark.Fantasy.S01.JAPANESE.1080p.NF.WEBRip.DDP2.0.x264-E.N.D[rartv]/Bastard.Heavy.Metal.Dark.Fantasy.S01E21.Fierce.Battle.1080p.NF.WEB-DL.DUAL.DDP2.0.H.264-E.N.D.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Bastard.Heavy.Metal.Dark.Fantasy.S01.JAPANESE.1080p.NF.WEBRip.DDP2.0.x264-E.N.D[rartv]/Bastard.Heavy.Metal.Dark.Fantasy.S01E15.Triumphant.Return.1080p.NF.WEB-DL.DUAL.DDP2.0.H.264-E.N.D.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Bastard.Heavy.Metal.Dark.Fantasy.S01.JAPANESE.1080p.NF.WEBRip.DDP2.0.x264-E.N.D[rartv]/Bastard.Heavy.Metal.Dark.Fantasy.S01E11.Prophecy.1080p.NF.WEB-DL.DUAL.DDP2.0.H.264-E.N.D.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Bastard.Heavy.Metal.Dark.Fantasy.S01.JAPANESE.1080p.NF.WEBRip.DDP2.0.x264-E.N.D[rartv]/Bastard.Heavy.Metal.Dark.Fantasy.S01E09.Blue.Nail.1080p.NF.WEB-DL.DUAL.DDP2.0.H.264-E.N.D.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Bastard.Heavy.Metal.Dark.Fantasy.S01.JAPANESE.1080p.NF.WEBRip.DDP2.0.x264-E.N.D[rartv]/Bastard.Heavy.Metal.Dark.Fantasy.S01E18.Secrets.of.the.Sword.1080p.NF.WEB-DL.DUAL.DDP2.0.H.264-E.N.D.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Bastard.Heavy.Metal.Dark.Fantasy.S01.JAPANESE.1080p.NF.WEBRip.DDP2.0.x264-E.N.D[rartv]/Bastard.Heavy.Metal.Dark.Fantasy.S01E03.Abduction.1080p.NF.WEB-DL.DUAL.DDP2.0.H.264-E.N.D.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Bastard.Heavy.Metal.Dark.Fantasy.S01.JAPANESE.1080p.NF.WEBRip.DDP2.0.x264-E.N.D[rartv]/Bastard.Heavy.Metal.Dark.Fantasy.S01E01.The.Arrival.1080p.NF.WEB-DL.DUAL.DDP2.0.H.264-E.N.D.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Bastard.Heavy.Metal.Dark.Fantasy.S01.JAPANESE.1080p.NF.WEBRip.DDP2.0.x264-E.N.D[rartv]/Bastard.Heavy.Metal.Dark.Fantasy.S01E20.Tyranny.1080p.NF.WEB-DL.DUAL.DDP2.0.H.264-E.N.D.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Bastard.Heavy.Metal.Dark.Fantasy.S01.JAPANESE.1080p.NF.WEBRip.DDP2.0.x264-E.N.D[rartv]/Bastard.Heavy.Metal.Dark.Fantasy.S01E10.The.Goddess.of.Thunder.1080p.NF.WEB-DL.DUAL.DDP2.0.H.264-E.N.D.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Bastard.Heavy.Metal.Dark.Fantasy.S01.JAPANESE.1080p.NF.WEBRip.DDP2.0.x264-E.N.D[rartv]/Bastard.Heavy.Metal.Dark.Fantasy.S01E24.End.1080p.NF.WEB-DL.DUAL.DDP2.0.H.264-E.N.D.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Bastard.Heavy.Metal.Dark.Fantasy.S01.JAPANESE.1080p.NF.WEBRip.DDP2.0.x264-E.N.D[rartv]/Bastard.Heavy.Metal.Dark.Fantasy.S01E16.Incantation.1080p.NF.WEB-DL.DUAL.DDP2.0.H.264-E.N.D.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Bastard.Heavy.Metal.Dark.Fantasy.S01.JAPANESE.1080p.NF.WEBRip.DDP2.0.x264-E.N.D[rartv]/Bastard.Heavy.Metal.Dark.Fantasy.S01E12.Life.or.Death.1080p.NF.WEB-DL.DUAL.DDP2.0.H.264-E.N.D.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Bastard.Heavy.Metal.Dark.Fantasy.S01.JAPANESE.1080p.NF.WEBRip.DDP2.0.x264-E.N.D[rartv]/Bastard.Heavy.Metal.Dark.Fantasy.S01E14.Moved.to.Tears.1080p.NF.WEB-DL.DUAL.DDP2.0.H.264-E.N.D.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Bastard.Heavy.Metal.Dark.Fantasy.S01.JAPANESE.1080p.NF.WEBRip.DDP2.0.x264-E.N.D[rartv]/Bastard.Heavy.Metal.Dark.Fantasy.S01E13.Wavering.1080p.NF.WEB-DL.DUAL.DDP2.0.H.264-E.N.D.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Bastard.Heavy.Metal.Dark.Fantasy.S01.JAPANESE.1080p.NF.WEBRip.DDP2.0.x264-E.N.D[rartv]/Bastard.Heavy.Metal.Dark.Fantasy.S01E04.Invasion.1080p.NF.WEB-DL.DUAL.DDP2.0.H.264-E.N.D.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/Bastard.Heavy.Metal.Dark.Fantasy.S01.JAPANESE.1080p.NF.WEBRip.DDP2.0.x264-E.N.D[rartv]/Bastard.Heavy.Metal.Dark.Fantasy.S01E02.Rampage.1080p.NF.WEB-DL.DUAL.DDP2.0.H.264-E.N.D.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 我與尼特女忍者的莫名同居生活 - 06 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Eternal][Modaete yo, Adam-kun][05][GB][720P][Uncensored].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 身為暗殺者的我明顯比勇者還強 - 08 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 秒殺外掛太強了,異世界的傢伙們根本就不是對手。 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Izure Saikyou no Renkinjutsushi - 12 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 我內心的糟糕念頭 第二季 - 13 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Nekomoe kissaten][Dungeon Meshi][14][1080p][JPTC].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 我獨自升級 第二季 -起於闇影- - 20 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 膽大黨 - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 最近的偵探真沒用 - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 我獨自升級 - 07.5 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 歲月流逝飯菜依舊美味 - 05 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[HYSUB]Sono Bisque Doll wa Koi wo Suru[19][BIG5_MP4][1920X1080].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Tensei Kizoku, Kantei Skill de Nariagaru - 02 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Nekomoe kissaten][Tower of God S2][09][1080p][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 聽說你們要結婚!? - 05 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 我獨自升級 - 07 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[BeanSub&FZSD][BLEACH_Sennen_Kessen-hen][31][GB][1080P][x264_AAC].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 怪獸 8 號 第二季 - 15 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 香格里拉・開拓異境~糞作獵手挑戰神作~ 第二季 - 24 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 香格里拉・開拓異境~糞作獵手挑戰神作~ - 15 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Skymoon-Raws] Shangri-La Frontier 2nd Season - 05 [ViuTV][WEB-DL][CHT][SRT][1080p][AVC AAC].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Nekomoe kissaten][Dungeon Meshi][20][1080p][JPTC].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Shin Samurai-den YAIBA - 10 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Fate strange Fake - 06 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 永遠的黃昏 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 忍者與殺手的兩人生活 - 11 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 擁有超常技能的異世界流浪美食家 S2 - 21 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 瞬間治癒卻被當成廢物踢出隊伍的天才治療師,改當無照治療師快樂過活 - 10 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 貫徹輔助魔法支援弱小隊友的宮廷魔法師,慘遭驅逐後目標成為最強冒險者 - 03 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] NUKITASHI 住在拔作島上的我該如何是好? [年齡限制版] - 07 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Nekomoe kissaten&LoliHouse] Ishura - 07 [WebRip 1080p HEVC-10bit AAC ASSx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 魔都精兵的奴隸 第二季 - 03 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[orion origin] Wind Breaker [01] [1080p] [H265 AAC] [CHT&JPN].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 記憶縫線 YOUR FORMA - 07 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Lilith-Raws] Kantei Skill - 10 [Baha][WebDL 1080p AVC AAC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 勇氣爆發 BANG BRAVERN - 08 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Lolihouse] Ghost in the Shell SAC_2045 Season2 [WebRip 1080p HEVC-10bit AAC EAC3]/[Lolihouse] Ghost in the Shell SAC_2045 Season2 - 08 [WebRip 1080p HEVC-10bit AAC EAC3 SRTx4].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Lolihouse] Ghost in the Shell SAC_2045 Season2 [WebRip 1080p HEVC-10bit AAC EAC3]/[Lolihouse] Ghost in the Shell SAC_2045 Season2 - 04 [WebRip 1080p HEVC-10bit AAC EAC3 SRTx4].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Lolihouse] Ghost in the Shell SAC_2045 Season2 [WebRip 1080p HEVC-10bit AAC EAC3]/[Lolihouse] Ghost in the Shell SAC_2045 Season2 - 01 [WebRip 1080p HEVC-10bit AAC EAC3 SRTx4].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Lolihouse] Ghost in the Shell SAC_2045 Season2 [WebRip 1080p HEVC-10bit AAC EAC3]/[Lolihouse] Ghost in the Shell SAC_2045 Season2 - 05 [WebRip 1080p HEVC-10bit AAC EAC3 SRTx4].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Lolihouse] Ghost in the Shell SAC_2045 Season2 [WebRip 1080p HEVC-10bit AAC EAC3]/[Lolihouse] Ghost in the Shell SAC_2045 Season2 - 12 [WebRip 1080p HEVC-10bit AAC EAC3 SRTx4].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Lolihouse] Ghost in the Shell SAC_2045 Season2 [WebRip 1080p HEVC-10bit AAC EAC3]/[Lolihouse] Ghost in the Shell SAC_2045 Season2 - 09 [WebRip 1080p HEVC-10bit AAC EAC3 SRTx4].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Lolihouse] Ghost in the Shell SAC_2045 Season2 [WebRip 1080p HEVC-10bit AAC EAC3]/[Lolihouse] Ghost in the Shell SAC_2045 Season2 - 03 [WebRip 1080p HEVC-10bit AAC EAC3 SRTx4].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Lolihouse] Ghost in the Shell SAC_2045 Season2 [WebRip 1080p HEVC-10bit AAC EAC3]/[Lolihouse] Ghost in the Shell SAC_2045 Season2 - 07 [WebRip 1080p HEVC-10bit AAC EAC3 SRTx4].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Lolihouse] Ghost in the Shell SAC_2045 Season2 [WebRip 1080p HEVC-10bit AAC EAC3]/[Lolihouse] Ghost in the Shell SAC_2045 Season2 - 10 [WebRip 1080p HEVC-10bit AAC EAC3 SRTx4].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Lolihouse] Ghost in the Shell SAC_2045 Season2 [WebRip 1080p HEVC-10bit AAC EAC3]/[Lolihouse] Ghost in the Shell SAC_2045 Season2 - 11 [WebRip 1080p HEVC-10bit AAC EAC3 SRTx4].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Lolihouse] Ghost in the Shell SAC_2045 Season2 [WebRip 1080p HEVC-10bit AAC EAC3]/[Lolihouse] Ghost in the Shell SAC_2045 Season2 - 02 [WebRip 1080p HEVC-10bit AAC EAC3 SRTx4].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Lolihouse] Ghost in the Shell SAC_2045 Season2 [WebRip 1080p HEVC-10bit AAC EAC3]/[Lolihouse] Ghost in the Shell SAC_2045 Season2 - 06 [WebRip 1080p HEVC-10bit AAC EAC3 SRTx4].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 無職轉生~到了異世界就拿出真本事 第二季 - 16 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Dont be a simp] Ao no Hako - 25 [NF WebRip 1080p HEVC-10bit E-AC-3 Multi-Subs].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Nekomoe kissaten&LoliHouse] Dungeon Meshi - 04 [WebRip 1080p HEVC-10bit AAC EAC3 ASSx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Eternal][Modaete yo, Adam-kun][05][GB][720P][Premium].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] LAZARUS 拉撒路 - 04 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 香格里拉・開拓異境~糞作獵手挑戰神作~ 第二季 - 03 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/The.First.Slam.Dunk.2022.2160p.BluRay.DoVi.x265.10bit.Atmos.TrueHD7.1-WiKi/The.First.Slam.Dunk.2022.2160p.BluRay.DoVi.x265.10bit.Atmos.TrueHD7.1-WiKi.mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 刀劍神域外傳 Gun Gale Online II - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Nekomoe kissaten][Ishura][02][1080p][JPSC].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Tensei Shitara Slime Datta Ken 3rd Season - 64 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 遲早是最強的鍊金術師? - 07 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[KissSub][Dosanko Gal wa Namara Menkoi][09][1080P][GB][MP4].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 殺手旅店 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] Re:從零開始的異世界生活 第三季 - 15 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 治癒魔法的錯誤使用法 - 10 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 群花綻放、彷如修羅 - 01 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 尋神的旅途 - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 香格里拉・開拓異境~糞作獵手挑戰神作~ 第二季 - 18 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Nekomoe kissaten] Appare-Ranman! [BDRip]/[Nekomoe kissaten] Appare-Ranman! [04][BDRip 1080p HEVC-10bit FLAC].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Nekomoe kissaten] Appare-Ranman! [BDRip]/[Nekomoe kissaten] Appare-Ranman! [07][BDRip 1080p HEVC-10bit FLAC].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Nekomoe kissaten] Appare-Ranman! [BDRip]/[Nekomoe kissaten] Appare-Ranman! [02][BDRip 1080p HEVC-10bit FLAC].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Nekomoe kissaten] Appare-Ranman! [BDRip]/[Nekomoe kissaten] Appare-Ranman! [01][BDRip 1080p HEVC-10bit FLAC].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Nekomoe kissaten] Appare-Ranman! [BDRip]/[Nekomoe kissaten] Appare-Ranman! [08][BDRip 1080p HEVC-10bit FLAC].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Nekomoe kissaten] Appare-Ranman! [BDRip]/[Nekomoe kissaten] Appare-Ranman! [13][BDRip 1080p HEVC-10bit FLAC].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Nekomoe kissaten] Appare-Ranman! [BDRip]/[Nekomoe kissaten] Appare-Ranman! [10][BDRip 1080p HEVC-10bit FLAC].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Nekomoe kissaten] Appare-Ranman! [BDRip]/SPs/[Nekomoe kissaten] Appare-Ranman! [BDCMs][BDRip 1080p HEVC-10bit FLAC].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Nekomoe kissaten] Appare-Ranman! [BDRip]/SPs/[Nekomoe kissaten] Appare-Ranman! [PV][03][BDRip 1080p HEVC-10bit FLAC].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Nekomoe kissaten] Appare-Ranman! [BDRip]/SPs/[Nekomoe kissaten] Appare-Ranman! [TVCMs][BDRip 1080p HEVC-10bit FLAC].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Nekomoe kissaten] Appare-Ranman! [BDRip]/SPs/[Nekomoe kissaten] Appare-Ranman! [NCED][BDRip 1080p HEVC-10bit FLAC].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Nekomoe kissaten] Appare-Ranman! [BDRip]/SPs/[Nekomoe kissaten] Appare-Ranman! [NCOP][BDRip 1080p HEVC-10bit FLAC].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Nekomoe kissaten] Appare-Ranman! [BDRip]/SPs/[Nekomoe kissaten] Appare-Ranman! [OST Making][BDRip 1080p HEVC-10bit FLAC].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Nekomoe kissaten] Appare-Ranman! [BDRip]/SPs/[Nekomoe kissaten] Appare-Ranman! [PV][01][BDRip 1080p HEVC-10bit FLAC].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Nekomoe kissaten] Appare-Ranman! [BDRip]/SPs/[Nekomoe kissaten] Appare-Ranman! [PV][02][BDRip 1080p HEVC-10bit FLAC].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Nekomoe kissaten] Appare-Ranman! [BDRip]/[Nekomoe kissaten] Appare-Ranman! [06][BDRip 1080p HEVC-10bit FLAC].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Nekomoe kissaten] Appare-Ranman! [BDRip]/[Nekomoe kissaten] Appare-Ranman! [05][BDRip 1080p HEVC-10bit FLAC].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Nekomoe kissaten] Appare-Ranman! [BDRip]/[Nekomoe kissaten] Appare-Ranman! [03][BDRip 1080p HEVC-10bit FLAC].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Nekomoe kissaten] Appare-Ranman! [BDRip]/[Nekomoe kissaten] Appare-Ranman! [11][BDRip 1080p HEVC-10bit FLAC].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Nekomoe kissaten] Appare-Ranman! [BDRip]/[Nekomoe kissaten] Appare-Ranman! [09][BDRip 1080p HEVC-10bit FLAC].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[Nekomoe kissaten] Appare-Ranman! [BDRip]/[Nekomoe kissaten] Appare-Ranman! [12][BDRip 1080p HEVC-10bit FLAC].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 怪獸 8 號 - 08 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 終末起點 - 06 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 一拳超人(第三季) - 25 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[LoliHouse] Kekkon suru tte, Hontou desu ka - 06 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/anime/[ANi] 在地下城尋求邂逅是否搞錯了什麼 第五季 - 06 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "destination_path": null, + "reason": "Anime files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/others/STARS-993/hhd800.com@STARS-993.mp4", + "destination_path": null, + "reason": "Other files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/others/STARS-766/hhd800.com@STARS-766.mp4", + "destination_path": null, + "reason": "Other files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/others/SSIS-951/hhd800.com@SSIS-951.mp4", + "destination_path": null, + "reason": "Other files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/others/YMDD-199.mp4", + "destination_path": null, + "reason": "Other files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/others/STARS-851/hhd800.com@STARS-851.mp4", + "destination_path": null, + "reason": "Other files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/others/DVAJ-633/hhd800.com@DVAJ-633.mp4", + "destination_path": null, + "reason": "Other files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/others/START-373/hhd800.com@START-373.mp4", + "destination_path": null, + "reason": "Other files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/others/PFES-005_uncensored/hhd800.com@PFES-005_uncensored.mp4", + "destination_path": null, + "reason": "Other files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/others/KWBD-396/hhd800.com@KWBD-396.mp4", + "destination_path": null, + "reason": "Other files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/others/JUL-834/hhd800.com@JUL-834.mp4", + "destination_path": null, + "reason": "Other files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/others/PRED-465/hhd800.com@PRED-465.mp4", + "destination_path": null, + "reason": "Other files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/others/MIDV-824-C_GG5/gg5.co@MIDV-824-C_GG5.mp4", + "destination_path": null, + "reason": "Other files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/others/c800.me@MXGS-910_nomask/hhd000.com_免翻_墙免费访问全球最大情_色网站P_ornhub_可看收费内容_MXGS-910.mp4", + "destination_path": null, + "reason": "Other files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/others/ADN-115_uncensored.mp4", + "destination_path": null, + "reason": "Other files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/others/START-194/hhd800.com@START-194.mp4", + "destination_path": null, + "reason": "Other files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/others/STARS-817/hhd800.com@STARS-817.mp4", + "destination_path": null, + "reason": "Other files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/others/IPZZ-708/hhd800.com@IPZZ-708.mp4", + "destination_path": null, + "reason": "Other files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/others/IPZZ-708/18+游戏大全(996gg.cc)-七龍珠H版-三國志H版-三國群淫傳等.mp4", + "destination_path": null, + "reason": "Other files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/others/STARS-918/hhd800.com@STARS-918.mp4", + "destination_path": null, + "reason": "Other files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/others/SSIS-532-C_X1080X/hhd800.com@SSIS-532-C_X1080X.mp4", + "destination_path": null, + "reason": "Other files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/others/STARS-703/hhd800.com@STARS-703.mp4", + "destination_path": null, + "reason": "Other files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/others/FWAY-065/hhd800.com@FWAY-065.mp4", + "destination_path": null, + "reason": "Other files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/others/SSIS-745-C_GG5/gg5.co@SSIS-745-C_GG5.mp4", + "destination_path": null, + "reason": "Other files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/others/EBWH-044-C_GG5/gg5.co@EBWH-044-C_GG5.mp4", + "destination_path": null, + "reason": "Other files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/others/STARS-729-C_X1080X/hhd800.com@STARS-729-C_X1080X.mp4", + "destination_path": null, + "reason": "Other files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/others/PBD-460/hhd800.com@PBD-460.mp4", + "destination_path": null, + "reason": "Other files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/others/EBWH-066-C_GG5/gg5.co@EBWH-066-C_GG5.mp4", + "destination_path": null, + "reason": "Other files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/others/MIDE-733.mp4", + "destination_path": null, + "reason": "Other files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/others/JUR-390ch/JUR-390ch.mp4", + "destination_path": null, + "reason": "Other files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/others/SSIS-531/hhd800.com@SSIS-531.mp4", + "destination_path": null, + "reason": "Other files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/others/STARS-796-C_GG5/gg5.co@STARS-796-C_GG5.mp4", + "destination_path": null, + "reason": "Other files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/others/JUR-442/hhd800.com@JUR-442.mp4", + "destination_path": null, + "reason": "Other files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/others/IPZZ-729ch/IPZZ-729ch.mp4", + "destination_path": null, + "reason": "Other files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/others/CAWD-658/hhd800.com@CAWD-658.mp4", + "destination_path": null, + "reason": "Other files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/others/hdd600.com@KMHRS-023_UNCENSORED_LEAKED_NOWATERMARK.mp4", + "destination_path": null, + "reason": "Other files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/others/SONE-785ch/SONE-785ch.mp4", + "destination_path": null, + "reason": "Other files not organized in v1", + "has_conflict": false, + "conflict_reason": null + }, + { + "operation_type": "no-op", + "source_path": "/mnt/Downloads/others/STARS-638/hhd800.com@STARS-638.mp4", + "destination_path": null, + "reason": "Other files not organized in v1", + "has_conflict": false, + "conflict_reason": null + } + ], + "summary": { + "total": 4669, + "move": 0, + "rename": 0, + "quarantine": 0, + "no-op": 4669 + } +} \ No newline at end of file diff --git a/pyproject.toml b/pyproject.toml index b0f9190..edd5bf3 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -7,7 +7,6 @@ requires-python = ">=3.10" dependencies = [ "click>=8.1.0", "pyyaml>=6.0", - "ffmpeg-python>=0.2.0", ] [project.optional-dependencies] diff --git a/src/vlm/analysis.py b/src/vlm/analysis.py index f1d1b24..1548375 100644 --- a/src/vlm/analysis.py +++ b/src/vlm/analysis.py @@ -68,65 +68,39 @@ def analyze_series_completeness(episodes: list[SeriesIdentity]) -> list[SeasonCo def detect_duplicates( - identities: list[MovieIdentity | SeriesIdentity], - files: list[VideoFile] + identity_file_pairs: list[tuple[MovieIdentity | SeriesIdentity, VideoFile]], ) -> list[DuplicateGroup]: """Detect duplicate video files and provide quality comparison data. - + Groups files by normalized identity (title+year for movies, title+season+episode for series) and identifies groups with multiple files as potential duplicates. - + Uses (identity, file) pairs so that same filename under different paths are + not conflated. + Args: - identities: List of parsed identities (movies or series) - files: List of video files corresponding to the identities - + identity_file_pairs: List of (identity, video_file) in matching order + Returns: List of DuplicateGroup objects for files with duplicates """ - # Create a mapping from original filename to VideoFile for quick lookup - file_map = {file.filename: file for file in files} - - # Group identities by normalized identity groups: dict[tuple, list[tuple[MovieIdentity | SeriesIdentity, VideoFile]]] = {} - - for identity in identities: - # Create grouping key based on identity type + + for identity, video_file in identity_file_pairs: if isinstance(identity, MovieIdentity): - # For movies: group by (title, year) - # Skip if year is None (needs review) if identity.year is None: continue - key = ('movie', identity.title, identity.year) + key = ("movie", identity.title, identity.year) + if key not in groups: + groups[key] = [] + groups[key].append((identity, video_file)) else: # SeriesIdentity - # For series: group by (title, season, episode) - # Skip if season is None or episodes is empty (needs review) if identity.season is None or not identity.episodes: continue - # For multi-episode files, use the first episode for grouping - # Each episode in the list should be treated separately for episode in identity.episodes: - key = ('series', identity.title, identity.season, episode) - - # Get the corresponding VideoFile - video_file = file_map.get(identity.original_filename) - if video_file is None: - continue - - # Add to group + key = ("series", identity.title, identity.season, episode) if key not in groups: groups[key] = [] groups[key].append((identity, video_file)) - continue - - # Get the corresponding VideoFile for movies - video_file = file_map.get(identity.original_filename) - if video_file is None: - continue - - # Add to group - if key not in groups: - groups[key] = [] - groups[key].append((identity, video_file)) # Filter groups to only those with multiple files (duplicates) duplicate_groups = [] diff --git a/src/vlm/cli.py b/src/vlm/cli.py index 15574ed..60f15c0 100644 --- a/src/vlm/cli.py +++ b/src/vlm/cli.py @@ -5,6 +5,7 @@ It implements global options (--config, --log-level) and error handling. """ import sys +import traceback from pathlib import Path from typing import Optional @@ -12,7 +13,9 @@ import click import yaml from vlm.config import Config, load_config, create_default_config, validate_config +from vlm.context import CLIContext, pass_context from vlm.logging_config import setup_logging, get_logger +from vlm.utils import format_size def default_config_path() -> Path: @@ -20,17 +23,6 @@ def default_config_path() -> Path: return Path.home() / ".vlm" / "config.yaml" -class CLIContext: - """Context object to pass configuration and logger between commands.""" - - def __init__(self, config: Config, logger): - self.config = config - self.logger = logger - - -pass_context = click.make_pass_decorator(CLIContext) - - @click.group() @click.option( '--config', @@ -105,6 +97,7 @@ def main(ctx, config: Path, log_level: Optional[str]): ctx.obj = CLIContext(config=cfg, logger=logger) except Exception as e: + traceback.print_exc(file=sys.stderr) click.echo(f"Error initializing VLM: {e}", err=True) sys.exit(1) @@ -154,118 +147,15 @@ def scan( vlm scan --reuse-from old.csv # Reuse prior metadata cache vlm scan --force-refresh-metadata # Re-run ffprobe for all files """ - from vlm.scanner import scan_library, save_inventory_csv, load_inventory_csv - - config = ctx.config - logger = ctx.logger - try: - # Display scan start message - click.echo(f"Scanning library at: {config.library_root}") - click.echo("This may take a while for large libraries...") - click.echo() - - progress_state: dict[str, Optional[click.ProgressBar]] = {"bar": None} - progress_position = {"current": 0} - - def _scan_progress(processed: int, total: int) -> None: - if total <= 0: - return - if progress_state["bar"] is None: - bar = click.progressbar( - length=total, - label="Scanning files", - show_pos=True, - ) - progress_state["bar"] = bar.__enter__() - - step = processed - progress_position["current"] - if step > 0 and progress_state["bar"] is not None: - progress_state["bar"].update(step) - progress_position["current"] = processed - - metadata_cache = None - cache_source = None - if not force_refresh_metadata: - cache_source = reuse_from if reuse_from is not None else (output if output.exists() else None) - - if metadata and force_refresh_metadata: - click.echo("Forcing metadata refresh for all files (cache disabled).") - click.echo() - - if metadata and cache_source is not None: - click.echo(f"Loading metadata cache from: {cache_source}") - try: - cached_files = load_inventory_csv(cache_source) - metadata_cache = {str(vf.path): vf for vf in cached_files} - click.echo(f"Loaded metadata cache entries: {len(metadata_cache)}") - click.echo() - except Exception as e: - click.echo(f"Warning: could not load metadata cache: {e}") - click.echo("Continuing without cache.") - click.echo() - - # Perform the scan - try: - video_files = scan_library( - config.library_root, - config, - progress_callback=_scan_progress, - include_video_metadata=metadata, - metadata_cache=metadata_cache - ) - finally: - if progress_state["bar"] is not None: - progress_state["bar"].__exit__(None, None, None) - click.echo() - - # Display summary - click.echo(f"Scan complete!") - click.echo(f" Total files found: {len(video_files)}") - - # Count by category - categories = {} - total_size = 0 - for vf in video_files: - categories[vf.category] = categories.get(vf.category, 0) + 1 - total_size += vf.size_bytes - - click.echo(f" Total size: {_format_size(total_size)}") - click.echo() - click.echo("Files by category:") - for category in sorted(categories.keys()): - click.echo(f" {category}: {categories[category]}") - - # Save inventory to CSV - click.echo() - click.echo(f"Saving inventory to: {output}") - save_inventory_csv(video_files, output, config.library_root) - click.echo(f"Inventory saved successfully!") - - logger.info(f"Scan completed: {len(video_files)} files found, saved to {output}") - + from vlm.commands.scan import scan_cmd + scan_cmd(ctx, output, metadata, reuse_from, force_refresh_metadata) except Exception as e: click.echo(f"Error during scan: {e}", err=True) - logger.error(f"Scan failed: {e}", exc_info=True) + ctx.logger.error(f"Scan failed: {e}", exc_info=True) sys.exit(1) -def _format_size(size_bytes: int) -> str: - """Format file size in human-readable format. - - Args: - size_bytes: Size in bytes - - Returns: - Formatted string (e.g., "1.5 GB", "234.2 MB") - """ - for unit in ['B', 'KB', 'MB', 'GB', 'TB']: - if size_bytes < 1024.0: - return f"{size_bytes:.1f} {unit}" - size_bytes /= 1024.0 - return f"{size_bytes:.1f} PB" - - @main.command() @click.option( '--input', @@ -337,7 +227,7 @@ def parse(ctx: CLIContext, input: Path, output: Path): category = vf['category'] if category == 'movie': - identity = parse_movie(filename) + identity = parse_movie(filename, extensions=config.video_extensions) movie_identities.append({ 'path': vf['path'], 'filename': filename, @@ -349,7 +239,7 @@ def parse(ctx: CLIContext, input: Path, output: Path): }) elif category == 'series': - identity = parse_series(filename) + identity = parse_series(filename, extensions=config.video_extensions) series_identities.append({ 'path': vf['path'], 'filename': filename, @@ -543,12 +433,14 @@ def enrich( progress_state: dict[str, Optional[click.ProgressBar]] = {"bar": None} progress_position = {"current": 0} + progress_bucket = {"value": -1} + is_tty = bool(getattr(sys.stderr, "isatty", lambda: False)()) - def _enrich_progress(processed: int, total_count: int, _metrics: dict[str, int]) -> None: + def _enrich_progress(processed: int, total_count: int, metrics: dict[str, int]) -> None: if total_count <= 0: return - if progress_state["bar"] is None: + if is_tty and progress_state["bar"] is None: bar = click.progressbar( length=total_count, label="Enriching records", @@ -561,6 +453,19 @@ def enrich( progress_state["bar"].update(step) progress_position["current"] = processed + if not is_tty: + percent = int(processed * 100 / total_count) + bucket = percent // 5 + if bucket > progress_bucket["value"] or processed == total_count: + progress_bucket["value"] = bucket + click.echo( + "Progress: " + f"{processed}/{total_count} ({percent}%) " + f"api_calls={metrics.get('api_calls', 0)} " + f"cache_hits={metrics.get('cache_hits', 0)} " + f"failed={metrics.get('failed', 0)}" + ) + try: if total == 0: click.echo("No movie/series/anime records found to enrich.") @@ -596,6 +501,11 @@ def enrich( click.echo(f" Failed requests: {stats['failed']}") click.echo(f" Skipped: {stats['skipped']}") click.echo(f" Needs review: {stats['needs_review']}") + skip_reasons = stats.get("skip_reasons", {}) + if isinstance(skip_reasons, dict): + non_zero = [f"{name}={count}" for name, count in sorted(skip_reasons.items()) if int(count) > 0] + if non_zero: + click.echo(f" Skip reasons: {' '.join(non_zero)}") failed_items = stats.get('failed_items', []) if isinstance(failed_items, list) and failed_items: click.echo(" Failure sample:") @@ -640,8 +550,14 @@ def enrich( default=Path('analysis.json'), help='Path to save analysis results (default: analysis.json)' ) +@click.option( + '--inventory', + type=click.Path(exists=True, path_type=Path), + default=None, + help='Optional inventory CSV to merge size/resolution/codec for duplicate quality comparison' +) @pass_context -def analyze(ctx: CLIContext, input: Path, output: Path): +def analyze(ctx: CLIContext, input: Path, output: Path, inventory: Optional[Path]): """Analyze completeness and duplicates. Detects episode gaps in series and identifies potential duplicate files. @@ -651,185 +567,23 @@ def analyze(ctx: CLIContext, input: Path, output: Path): vlm analyze # Use default files vlm analyze --input my_identities.json # Custom input + vlm analyze --inventory inventory.csv # Merge metadata for quality comparison vlm analyze --output my_analysis.json # Custom output """ - import json - from datetime import datetime, timezone - from vlm.analysis import analyze_series_completeness, detect_duplicates - from vlm.models import SeriesIdentity, MovieIdentity, VideoFile - - config = ctx.config - logger = ctx.logger - try: - # Display analyze start message - click.echo(f"Analyzing identities from: {input}") - click.echo() - - # Load identities from JSON - with open(input, 'r', encoding='utf-8') as jsonfile: - identities_data = json.load(jsonfile) - - # Extract movies and series - movies_data = identities_data.get('movies', []) - series_data = identities_data.get('series', []) - - click.echo(f"Loaded {len(movies_data)} movies and {len(series_data)} series") - click.echo() - - # Convert to identity objects - 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'] - )) - - # Create VideoFile objects for duplicate detection - # We need to reconstruct basic VideoFile info from the identities data - video_files = [] - for m in movies_data: - video_files.append(VideoFile( - path=Path(m['path']), - filename=m['filename'], - size_bytes=0, # Not available from identities file - modified_timestamp=datetime.now(timezone.utc), - category=m['category'], - resolution=None, - codec=None, - duration_seconds=None, - bitrate_kbps=None - )) - - for s in series_data: - video_files.append(VideoFile( - path=Path(s['path']), - filename=s['filename'], - size_bytes=0, # Not available from identities file - modified_timestamp=datetime.now(timezone.utc), - category=s['category'], - resolution=None, - codec=None, - duration_seconds=None, - bitrate_kbps=None - )) - - # Analyze series completeness - click.echo("Analyzing series completeness...") - completeness_results = analyze_series_completeness(series_identities) - - # Detect duplicates - click.echo("Detecting duplicates...") - all_identities = movie_identities + series_identities - duplicate_groups = detect_duplicates(all_identities, video_files) - - # Display analysis summary - click.echo() - click.echo("Analysis complete!") - click.echo() - click.echo("Results:") - click.echo(f" Series with episode gaps: {len(completeness_results)}") - - if completeness_results: - total_missing = sum(len(c.episodes_missing) for c in completeness_results) - click.echo(f" - Total missing episodes: {total_missing}") - - click.echo(f" Duplicate groups found: {len(duplicate_groups)}") - - if duplicate_groups: - total_duplicates = sum(len(g.files) for g in duplicate_groups) - click.echo(f" - Total duplicate files: {total_duplicates}") - - # Save analysis results to JSON - click.echo() - click.echo(f"Saving analysis results to: {output}") - - # Ensure output directory exists - output.parent.mkdir(parents=True, exist_ok=True) - - # Build JSON structure - generation_timestamp = datetime.now(timezone.utc).strftime("%Y-%m-%dT%H:%M:%S") - - # Convert completeness results to dict - completeness_list = [] - for c in completeness_results: - completeness_list.append({ - 'series_title': c.series_title, - 'season': c.season, - 'episodes_found': c.episodes_found, - 'episodes_missing': c.episodes_missing - }) - - # Convert duplicate groups to dict - duplicates_list = [] - for d in duplicate_groups: - # Get identity info - if isinstance(d.identity, MovieIdentity): - identity_info = { - 'type': 'movie', - 'title': d.identity.title, - 'year': d.identity.year - } - else: # SeriesIdentity - identity_info = { - 'type': 'series', - 'title': d.identity.title, - 'season': d.identity.season, - 'episodes': d.identity.episodes - } - - duplicates_list.append({ - 'identity': identity_info, - 'files': [str(f.path) for f in d.files], - 'quality_comparison': d.quality_comparison - }) - - analysis_data = { - 'metadata': { - 'generated': generation_timestamp, - 'source_identities': str(input), - 'total_movies': len(movies_data), - 'total_series': len(series_data) - }, - 'completeness': completeness_list, - 'duplicates': duplicates_list - } - - # Write JSON file with pretty formatting - with open(output, 'w', encoding='utf-8') as jsonfile: - json.dump(analysis_data, jsonfile, indent=2, ensure_ascii=False) - - click.echo(f"Analysis results saved successfully!") - - logger.info(f"Analysis completed: {len(completeness_results)} incomplete series, {len(duplicate_groups)} duplicate groups, saved to {output}") - + from vlm.commands.analyze import analyze_cmd + analyze_cmd(ctx, input, output, inventory) except FileNotFoundError: click.echo(f"Error: Input file not found: {input}", err=True) - logger.error(f"Input file not found: {input}") + ctx.logger.error(f"Input file not found: {input}") sys.exit(1) - except json.JSONDecodeError as e: click.echo(f"Error: Failed to parse JSON file: {e}", err=True) - logger.error(f"JSON parsing failed: {e}", exc_info=True) + ctx.logger.error(f"JSON parsing failed: {e}", exc_info=True) sys.exit(1) - except Exception as e: click.echo(f"Error during analysis: {e}", err=True) - logger.error(f"Analysis failed: {e}", exc_info=True) + ctx.logger.error(f"Analysis failed: {e}", exc_info=True) sys.exit(1) @@ -859,192 +613,20 @@ def plan(ctx: CLIContext, input: Path, output: Path): vlm plan --input my_identities.json # Custom input vlm plan --output my_plan.json # Custom output """ - import json - from vlm.planner import generate_plan, save_plan - from vlm.models import MovieIdentity, SeriesIdentity, VideoFile - from datetime import datetime, timezone - - config = ctx.config - logger = ctx.logger - try: - # Display plan start message - click.echo(f"Generating execution plan from: {input}") - click.echo() - - # Load identities from JSON - with open(input, 'r', encoding='utf-8') as jsonfile: - identities_data = json.load(jsonfile) - - # Extract movies and series - movies_data = identities_data.get('movies', []) - series_data = identities_data.get('series', []) - anime_data = identities_data.get('anime', []) - other_data = identities_data.get('other', []) - - click.echo(f"Loaded {len(movies_data)} movies, {len(series_data)} series, {len(anime_data)} anime, {len(other_data)} other") - click.echo() - - # Build list of (VideoFile, Identity) tuples for plan generator - identities_list = [] - - # Process movies - for m in movies_data: - is_approved = m.get('review_status') == 'approved' - video_file = VideoFile( - path=Path(m['path']), - filename=m['filename'], - size_bytes=0, # Not available from identities file - modified_timestamp=datetime.now(timezone.utc), - category=m['category'], - resolution=None, - codec=None, - duration_seconds=None, - bitrate_kbps=None - ) - - movie_identity = MovieIdentity( - title=m.get('display_title', m['title']), - year=m.get('year'), - confidence=m['confidence'], - needs_review=(m['needs_review'] and not is_approved), - original_filename=m['filename'], - canonical_id=m.get('canonical_id'), - title_zh=m.get('title_zh'), - title_en=m.get('title_en'), - translation_source=m.get('translation_source'), - reputation_score=m.get('reputation_score'), - reputation_votes=m.get('reputation_votes'), - reputation_source=m.get('reputation_source'), - review_status=m.get('review_status', 'pending'), - enrichment_confidence=m.get('enrichment_confidence'), - provider_metadata=m.get('provider_metadata', {}) - ) - - identities_list.append((video_file, movie_identity)) - - # Process series - for s in series_data: - is_approved = s.get('review_status') == 'approved' - video_file = VideoFile( - path=Path(s['path']), - filename=s['filename'], - size_bytes=0, # Not available from identities file - modified_timestamp=datetime.now(timezone.utc), - category=s['category'], - resolution=None, - codec=None, - duration_seconds=None, - bitrate_kbps=None - ) - - series_identity = SeriesIdentity( - title=s.get('display_title', s['title']), - season=s.get('season'), - episodes=s.get('episodes', []), - confidence=s['confidence'], - needs_review=(s['needs_review'] and not is_approved), - original_filename=s['filename'], - canonical_id=s.get('canonical_id'), - title_zh=s.get('title_zh'), - title_en=s.get('title_en'), - translation_source=s.get('translation_source'), - reputation_score=s.get('reputation_score'), - reputation_votes=s.get('reputation_votes'), - reputation_source=s.get('reputation_source'), - review_status=s.get('review_status', 'pending'), - enrichment_confidence=s.get('enrichment_confidence'), - provider_metadata=s.get('provider_metadata', {}) - ) - - identities_list.append((video_file, series_identity)) - - # Process anime (no identity in v1) - for a in anime_data: - video_file = VideoFile( - path=Path(a['path']), - filename=a['filename'], - size_bytes=0, - modified_timestamp=datetime.now(timezone.utc), - category=a['category'], - resolution=None, - codec=None, - duration_seconds=None, - bitrate_kbps=None - ) - - identities_list.append((video_file, None)) - - # Process other (no identity) - for o in other_data: - video_file = VideoFile( - path=Path(o['path']), - filename=o['filename'], - size_bytes=0, - modified_timestamp=datetime.now(timezone.utc), - category=o['category'], - resolution=None, - codec=None, - duration_seconds=None, - bitrate_kbps=None - ) - - identities_list.append((video_file, None)) - - # Generate execution plan - click.echo("Generating execution plan...") - execution_plan = generate_plan(identities_list, config) - - # Display plan summary - click.echo() - click.echo("Plan generation complete!") - click.echo() - click.echo("Operation summary:") - click.echo(f" Total operations: {execution_plan.summary['total']}") - click.echo(f" Move operations: {execution_plan.summary['move']}") - click.echo(f" Rename operations: {execution_plan.summary['rename']}") - click.echo(f" Quarantine operations: {execution_plan.summary['quarantine']}") - click.echo(f" No-op (skipped): {execution_plan.summary['no-op']}") - - # Count conflicts - conflicts = sum(1 for op in execution_plan.operations if op.has_conflict) - if conflicts > 0: - click.echo() - click.echo(f" ⚠️ Conflicts detected: {conflicts}") - click.echo(" Review the plan file for details on conflicting operations.") - - # Save execution plan to JSON - click.echo() - click.echo(f"Saving execution plan to: {output}") - - # Ensure output directory exists - output.parent.mkdir(parents=True, exist_ok=True) - - save_plan(execution_plan, output) - - click.echo(f"Execution plan saved successfully!") - click.echo() - click.echo("Next steps:") - click.echo(f" 1. Review the plan: {output}") - click.echo(f" 2. Edit the plan if needed (it's JSON)") - click.echo(f" 3. Dry-run: vlm execute --plan {output}") - click.echo(f" 4. Execute: vlm execute --plan {output} --confirm") - - logger.info(f"Plan generated: {execution_plan.summary['total']} operations, {conflicts} conflicts, saved to {output}") - + from vlm.commands.plan import plan_cmd + plan_cmd(ctx, input, output) except FileNotFoundError: click.echo(f"Error: Input file not found: {input}", err=True) - logger.error(f"Input file not found: {input}") + ctx.logger.error(f"Input file not found: {input}") sys.exit(1) - except json.JSONDecodeError as e: click.echo(f"Error: Failed to parse JSON file: {e}", err=True) - logger.error(f"JSON parsing failed: {e}", exc_info=True) + ctx.logger.error(f"JSON parsing failed: {e}", exc_info=True) sys.exit(1) - except Exception as e: click.echo(f"Error during plan generation: {e}", err=True) - logger.error(f"Plan generation failed: {e}", exc_info=True) + ctx.logger.error(f"Plan generation failed: {e}", exc_info=True) sys.exit(1) @@ -1266,7 +848,7 @@ def quarantine_list(ctx: CLIContext, category: Optional[str]): click.echo(f" Category: {entry.category}") click.echo(f" Original: {entry.original_path}") click.echo(f" Quarantine: {entry.quarantine_path}") - click.echo(f" Size: {_format_size(entry.size_bytes)}") + click.echo(f" Size: {format_size(entry.size_bytes)}") click.echo(f" Quarantined: {entry.quarantined_at.strftime('%Y-%m-%d %H:%M:%S')}") if entry.reason: click.echo(f" Reason: {entry.reason}") @@ -2246,7 +1828,8 @@ def config_cmd(ctx: CLIContext): default=default_config_path, help='Path where configuration file should be created' ) -def config_init(path: Path): +@pass_context +def config_init(ctx: CLIContext, path: Path): """Initialize configuration file with defaults.""" try: if path.exists(): diff --git a/src/vlm/commands/__init__.py b/src/vlm/commands/__init__.py new file mode 100644 index 0000000..b03a0d9 --- /dev/null +++ b/src/vlm/commands/__init__.py @@ -0,0 +1,5 @@ +"""CLI command implementations. + +Each module provides *_cmd(ctx, ...) functions that are invoked by cli.py +after Click parses options and passes context. +""" diff --git a/src/vlm/commands/analyze.py b/src/vlm/commands/analyze.py new file mode 100644 index 0000000..54a886a --- /dev/null +++ b/src/vlm/commands/analyze.py @@ -0,0 +1,116 @@ +"""Analyze command implementation.""" + +import json +from pathlib import Path +from typing import Optional + +import click + +from vlm.analysis import analyze_series_completeness, detect_duplicates +from vlm.context import CLIContext +from vlm.io import identities_to_analysis_input, load_identities_json, load_inventory_csv +from vlm.models import MovieIdentity, SeriesIdentity +from vlm.utils import utc_now + + +def analyze_cmd( + ctx: CLIContext, + input: Path, + output: Path, + inventory: Optional[Path], +) -> None: + """Run analysis: completeness and duplicate detection.""" + config = ctx.config + logger = ctx.logger + + click.echo(f"Analyzing identities from: {input}") + if inventory: + click.echo(f"Merging metadata from inventory: {inventory}") + click.echo() + + identities_data = load_identities_json(input) + movies_data = identities_data.get("movies", []) + series_data = identities_data.get("series", []) + + click.echo(f"Loaded {len(movies_data)} movies and {len(series_data)} series") + click.echo() + + inventory_files = load_inventory_csv(inventory) if inventory else None + movie_identities, series_identities, video_files = identities_to_analysis_input( + identities_data, inventory_files=inventory_files + ) + + 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:])) + ) + duplicate_groups = detect_duplicates(identity_file_pairs) + + click.echo() + click.echo("Analysis complete!") + click.echo() + click.echo("Results:") + click.echo(f" Series with episode gaps: {len(completeness_results)}") + if completeness_results: + total_missing = sum(len(c.episodes_missing) for c in completeness_results) + click.echo(f" - Total missing episodes: {total_missing}") + click.echo(f" Duplicate groups found: {len(duplicate_groups)}") + if duplicate_groups: + total_duplicates = sum(len(g.files) for g in duplicate_groups) + click.echo(f" - Total duplicate files: {total_duplicates}") + + click.echo() + click.echo(f"Saving analysis results to: {output}") + output.parent.mkdir(parents=True, exist_ok=True) + + generation_timestamp = utc_now().strftime("%Y-%m-%dT%H:%M:%S") + completeness_list = [ + { + "series_title": c.series_title, + "season": c.season, + "episodes_found": c.episodes_found, + "episodes_missing": c.episodes_missing, + } + for c in completeness_results + ] + duplicates_list = [] + for d in duplicate_groups: + if isinstance(d.identity, MovieIdentity): + identity_info = {"type": "movie", "title": d.identity.title, "year": d.identity.year} + else: + identity_info = { + "type": "series", + "title": d.identity.title, + "season": d.identity.season, + "episodes": d.identity.episodes, + } + duplicates_list.append( + { + "identity": identity_info, + "files": [str(f.path) for f in d.files], + "quality_comparison": d.quality_comparison, + } + ) + analysis_data = { + "metadata": { + "generated": generation_timestamp, + "source_identities": str(input), + "total_movies": len(movies_data), + "total_series": len(series_data), + }, + "completeness": completeness_list, + "duplicates": duplicates_list, + } + with open(output, "w", encoding="utf-8") as jsonfile: + json.dump(analysis_data, jsonfile, indent=2, ensure_ascii=False) + + click.echo("Analysis results saved successfully!") + logger.info( + f"Analysis completed: {len(completeness_results)} incomplete series, " + f"{len(duplicate_groups)} duplicate groups, saved to {output}" + ) diff --git a/src/vlm/commands/plan.py b/src/vlm/commands/plan.py new file mode 100644 index 0000000..459907c --- /dev/null +++ b/src/vlm/commands/plan.py @@ -0,0 +1,69 @@ +"""Plan command implementation.""" + +from pathlib import Path + +import click + +from vlm.context import CLIContext +from vlm.io import identities_to_plan_input, load_identities_json +from vlm.planner import generate_plan, save_plan + + +def plan_cmd(ctx: CLIContext, input: Path, output: Path) -> None: + """Generate execution plan from identities.""" + config = ctx.config + logger = ctx.logger + + click.echo(f"Generating execution plan from: {input}") + click.echo() + + identities_data = load_identities_json(input) + movies_data = identities_data.get("movies", []) + series_data = identities_data.get("series", []) + anime_data = identities_data.get("anime", []) + other_data = identities_data.get("other", []) + + click.echo( + f"Loaded {len(movies_data)} movies, {len(series_data)} series, " + f"{len(anime_data)} anime, {len(other_data)} other" + ) + click.echo() + + identities_list = identities_to_plan_input(identities_data) + + click.echo("Generating execution plan...") + execution_plan = generate_plan(identities_list, config) + + click.echo() + click.echo("Plan generation complete!") + click.echo() + click.echo("Operation summary:") + click.echo(f" Total operations: {execution_plan.summary['total']}") + click.echo(f" Move operations: {execution_plan.summary['move']}") + click.echo(f" Rename operations: {execution_plan.summary['rename']}") + click.echo(f" Quarantine operations: {execution_plan.summary['quarantine']}") + click.echo(f" No-op (skipped): {execution_plan.summary['no-op']}") + + conflicts = sum(1 for op in execution_plan.operations if op.has_conflict) + if conflicts > 0: + click.echo() + click.echo(f" ⚠️ Conflicts detected: {conflicts}") + click.echo(" Review the plan file for details on conflicting operations.") + + click.echo() + click.echo(f"Saving execution plan to: {output}") + output.parent.mkdir(parents=True, exist_ok=True) + save_plan(execution_plan, output) + + click.echo("Execution plan saved successfully!") + click.echo() + click.echo("Next steps:") + click.echo(f" 1. Review the plan: {output}") + click.echo(" 2. Edit the plan if needed (it's JSON)") + click.echo(f" 3. Dry-run: vlm execute --plan {output}") + click.echo(f" 4. Execute: vlm execute --plan {output} --confirm") + + logger.info( + f"Plan generated: {execution_plan.summary['total']} operations, " + f"{conflicts} conflicts, saved to {output}" + ) diff --git a/src/vlm/commands/scan.py b/src/vlm/commands/scan.py new file mode 100644 index 0000000..365b96c --- /dev/null +++ b/src/vlm/commands/scan.py @@ -0,0 +1,97 @@ +"""Scan command implementation.""" + +import sys +from pathlib import Path +from typing import Optional + +import click + +from vlm.context import CLIContext +from vlm.scanner import load_inventory_csv, save_inventory_csv, scan_library +from vlm.utils import format_size + + +def scan_cmd( + ctx: CLIContext, + output: Path, + metadata: bool, + reuse_from: Optional[Path], + force_refresh_metadata: bool, +) -> None: + """Run scan: discover video files and save inventory.""" + config = ctx.config + logger = ctx.logger + + click.echo(f"Scanning library at: {config.library_root}") + click.echo("This may take a while for large libraries...") + click.echo() + + progress_state: dict[str, Optional[click.ProgressBar]] = {"bar": None} + progress_position = {"current": 0} + + def _scan_progress(processed: int, total: int) -> None: + if total <= 0: + return + if progress_state["bar"] is None: + bar = click.progressbar( + length=total, + label="Scanning files", + show_pos=True, + ) + progress_state["bar"] = bar.__enter__() + step = processed - progress_position["current"] + if step > 0 and progress_state["bar"] is not None: + progress_state["bar"].update(step) + progress_position["current"] = processed + + metadata_cache = None + cache_source = None + if not force_refresh_metadata: + cache_source = reuse_from if reuse_from is not None else (output if output.exists() else None) + + if metadata and force_refresh_metadata: + click.echo("Forcing metadata refresh for all files (cache disabled).") + click.echo() + + if metadata and cache_source is not None: + click.echo(f"Loading metadata cache from: {cache_source}") + try: + cached_files = load_inventory_csv(cache_source) + metadata_cache = {str(vf.path): vf for vf in cached_files} + click.echo(f"Loaded metadata cache entries: {len(metadata_cache)}") + click.echo() + except Exception as e: + click.echo(f"Warning: could not load metadata cache: {e}") + click.echo("Continuing without cache.") + click.echo() + + try: + video_files = scan_library( + config.library_root, + config, + progress_callback=_scan_progress, + include_video_metadata=metadata, + metadata_cache=metadata_cache, + ) + finally: + if progress_state["bar"] is not None: + progress_state["bar"].__exit__(None, None, None) + click.echo() + + click.echo("Scan complete!") + click.echo(f" Total files found: {len(video_files)}") + categories = {} + total_size = 0 + for vf in video_files: + categories[vf.category] = categories.get(vf.category, 0) + 1 + total_size += vf.size_bytes + click.echo(f" Total size: {format_size(total_size)}") + click.echo() + click.echo("Files by category:") + for category in sorted(categories.keys()): + click.echo(f" {category}: {categories[category]}") + click.echo() + click.echo(f"Saving inventory to: {output}") + save_inventory_csv(video_files, output, config.library_root) + click.echo("Inventory saved successfully!") + logger.info(f"Scan completed: {len(video_files)} files found, saved to {output}") diff --git a/src/vlm/config.py b/src/vlm/config.py index 72fa6f1..68df8c2 100644 --- a/src/vlm/config.py +++ b/src/vlm/config.py @@ -37,6 +37,10 @@ class Config: translation_mode: str = "bidirectional" translation_fallback_machine: bool = True tmdb_api_key: Optional[str] = None + tmdb_bearer_token: Optional[str] = None + tmdb_language: str = "zh-CN" + tmdb_region: Optional[str] = None + tmdb_include_adult: bool = False openai_api_key: Optional[str] = None reputation_min_votes: int = 50 reputation_low_score_threshold: float = 6.0 @@ -82,11 +86,14 @@ def load_config(path: Path) -> Config: "anime": ["anime"] }) - enrichment = data.get("enrichment", {}) + enrichment = data.get("enrichment") + if enrichment is None: + enrichment = data.get("enrich", {}) translation = enrichment.get("translation", {}) api_keys = enrichment.get("api_keys", {}) reputation = enrichment.get("reputation", {}) naming = enrichment.get("naming", {}) + tmdb = enrichment.get("tmdb", {}) return Config( library_root=library_root, @@ -110,6 +117,10 @@ def load_config(path: Path) -> Config: translation_mode=translation.get("mode", "bidirectional"), translation_fallback_machine=translation.get("fallback_machine", True), tmdb_api_key=api_keys.get("tmdb"), + tmdb_bearer_token=api_keys.get("tmdb_bearer"), + tmdb_language=tmdb.get("language", "zh-CN"), + tmdb_region=tmdb.get("region"), + tmdb_include_adult=tmdb.get("include_adult", False), openai_api_key=api_keys.get("openai"), reputation_min_votes=reputation.get("min_votes", 50), reputation_low_score_threshold=reputation.get("low_score_threshold", 6.0), @@ -125,6 +136,38 @@ def create_default_config(path: Path) -> Config: video_extensions=[".mp4", ".mkv", ".avi", ".mov", ".wmv", ".flv", ".webm", ".m4v"], ) + enrichment_content = { + "enabled": default_config.enrichment_enabled, + "incremental": default_config.enrichment_incremental, + "refresh_mode": default_config.enrichment_refresh_mode, + "providers": default_config.enrichment_providers, + "cache_db": str(default_config.enrichment_cache_db), + "max_concurrency": default_config.enrichment_max_concurrency, + "min_match_score": default_config.enrichment_min_match_score, + "translation": { + "mode": default_config.translation_mode, + "fallback_machine": default_config.translation_fallback_machine, + }, + "api_keys": { + "tmdb": default_config.tmdb_api_key, + "tmdb_bearer": default_config.tmdb_bearer_token, + "openai": default_config.openai_api_key, + }, + "tmdb": { + "language": default_config.tmdb_language, + "region": default_config.tmdb_region, + "include_adult": default_config.tmdb_include_adult, + }, + "reputation": { + "min_votes": default_config.reputation_min_votes, + "low_score_threshold": default_config.reputation_low_score_threshold, + "policy": default_config.reputation_policy, + }, + "naming": { + "title_format": default_config.naming_title_format, + }, + } + yaml_content = { "library_root": str(default_config.library_root), "video_extensions": default_config.video_extensions, @@ -137,31 +180,9 @@ def create_default_config(path: Path) -> Config: "quarantine_dir": default_config.quarantine_dir, "log_level": default_config.log_level, "categories": default_config.categories, - "enrichment": { - "enabled": default_config.enrichment_enabled, - "incremental": default_config.enrichment_incremental, - "refresh_mode": default_config.enrichment_refresh_mode, - "providers": default_config.enrichment_providers, - "cache_db": str(default_config.enrichment_cache_db), - "max_concurrency": default_config.enrichment_max_concurrency, - "min_match_score": default_config.enrichment_min_match_score, - "translation": { - "mode": default_config.translation_mode, - "fallback_machine": default_config.translation_fallback_machine, - }, - "api_keys": { - "tmdb": default_config.tmdb_api_key, - "openai": default_config.openai_api_key, - }, - "reputation": { - "min_votes": default_config.reputation_min_votes, - "low_score_threshold": default_config.reputation_low_score_threshold, - "policy": default_config.reputation_policy, - }, - "naming": { - "title_format": default_config.naming_title_format, - }, - }, + "enrichment": enrichment_content, + # Backward-compatible alias for users who prefer `enrich`. + "enrich": enrichment_content, } path.parent.mkdir(parents=True, exist_ok=True) @@ -287,5 +308,11 @@ def validate_config(config: Config) -> list[str]: errors.append("reputation_min_votes must be >= 0") if not (0.0 <= config.reputation_low_score_threshold <= 10.0): errors.append("reputation_low_score_threshold must be between 0.0 and 10.0") + if not isinstance(config.tmdb_language, str) or not config.tmdb_language.strip(): + errors.append("tmdb_language must be a non-empty string") + if config.tmdb_region is not None and not isinstance(config.tmdb_region, str): + errors.append("tmdb_region must be a string when set") + if not isinstance(config.tmdb_include_adult, bool): + errors.append("tmdb_include_adult must be a boolean") return errors diff --git a/src/vlm/context.py b/src/vlm/context.py new file mode 100644 index 0000000..246eb9d --- /dev/null +++ b/src/vlm/context.py @@ -0,0 +1,16 @@ +"""CLI context shared by cli.py and command modules.""" + +import click + +from vlm.config import Config + + +class CLIContext: + """Context object to pass configuration and logger between commands.""" + + def __init__(self, config: Config, logger): + self.config = config + self.logger = logger + + +pass_context = click.make_pass_decorator(CLIContext) diff --git a/src/vlm/enrichment.py b/src/vlm/enrichment.py index b1eebf5..a559d61 100644 --- a/src/vlm/enrichment.py +++ b/src/vlm/enrichment.py @@ -12,7 +12,7 @@ from urllib.request import urlopen, Request from vlm.cache import EnrichmentCache from vlm.config import Config -from vlm.providers import ProviderResult, TMDBProvider +from vlm.providers import ProviderResult, TMDBAuthError, TMDBProvider, TMDBProviderError from vlm.parser import normalize_title RefreshMode = str @@ -59,6 +59,7 @@ def enrich_identities_data( "failed": 0, "api_calls": 0, "failed_items": [], + "skip_reasons": {}, } refresh_all = refresh_mode == "refresh_all" @@ -69,6 +70,7 @@ def enrich_identities_data( title = record.get("title") or _fallback_title_from_filename(record.get("filename")) if not title: stats["skipped"] = int(stats["skipped"]) + 1 + _increment_skip_reason(stats, "invalid_input") stats["processed"] = int(stats["processed"]) + 1 _emit_progress(stats, progress_callback) continue @@ -92,7 +94,7 @@ def enrich_identities_data( _emit_progress(stats, progress_callback) continue - payload, api_calls, failures = _enrich_record( + payload, api_calls, failures, skip_reason = _enrich_record( record, media_type, providers, @@ -100,26 +102,12 @@ def enrich_identities_data( request_timeout=request_timeout, retries=retries, ) - stats["api_calls"] = int(stats["api_calls"]) + api_calls - if failures: - failed_items = stats["failed_items"] - assert isinstance(failed_items, list) - failed_items.extend(failures) - stats["failed"] = int(stats["failed"]) + len(failures) _apply_payload(record, payload) cache.put_identity(identity_key, fingerprint, payload) - - if payload.get("enriched"): - stats["enriched"] = int(stats["enriched"]) + 1 - else: - stats["skipped"] = int(stats["skipped"]) + 1 - - if record.get("needs_review"): - stats["needs_review"] = int(stats["needs_review"]) + 1 - - stats["processed"] = int(stats["processed"]) + 1 - _emit_progress(stats, progress_callback) + _update_stats_after_enrich( + stats, payload, failures, api_calls, record, progress_callback, skip_reason + ) metadata = identities_data.setdefault("metadata", {}) metadata["enriched"] = True @@ -154,6 +142,33 @@ def _emit_progress(stats: dict[str, int | list[dict[str, str]]], progress_callba ) +def _update_stats_after_enrich( + stats: dict[str, int | list[dict[str, str]]], + payload: dict, + failures: list[dict[str, str]], + api_calls: int, + record: dict, + progress_callback: Optional[ProgressCallback], + skip_reason: str, +) -> None: + """Update stats and emit progress after enriching a single record.""" + stats["api_calls"] = int(stats["api_calls"]) + api_calls + if failures: + failed_items = stats["failed_items"] + assert isinstance(failed_items, list) + failed_items.extend(failures) + stats["failed"] = int(stats["failed"]) + len(failures) + if payload.get("enriched"): + stats["enriched"] = int(stats["enriched"]) + 1 + else: + stats["skipped"] = int(stats["skipped"]) + 1 + _increment_skip_reason(stats, skip_reason or "no_match") + if record.get("needs_review"): + stats["needs_review"] = int(stats["needs_review"]) + 1 + stats["processed"] = int(stats["processed"]) + 1 + _emit_progress(stats, progress_callback) + + def _build_providers(config: Config, *, request_timeout: int, retries: int) -> list: providers = [] unsupported: list[str] = [] @@ -163,6 +178,10 @@ def _build_providers(config: Config, *, request_timeout: int, retries: int) -> l providers.append( TMDBProvider( config.tmdb_api_key, + bearer_token=config.tmdb_bearer_token, + language=config.tmdb_language, + region=config.tmdb_region, + include_adult=config.tmdb_include_adult, timeout_seconds=request_timeout, retries=retries, min_interval_seconds=0.25, @@ -187,37 +206,57 @@ def _enrich_record( *, request_timeout: int, retries: int, -) -> tuple[dict, int, list[dict[str, str]]]: +) -> tuple[dict, int, list[dict[str, str]], str]: title = record.get("title") year = record.get("year") if media_type == "movie" else None provider_results: list[ProviderResult] = [] failures: list[dict[str, str]] = [] api_calls = 0 + configured_provider_count = 0 for provider in providers: - api_calls += 1 + if not _provider_is_configured(provider, config): + continue + + configured_provider_count += 1 try: result = provider.enrich(title=title, media_type=media_type, year=year) + except TMDBAuthError as exc: + raise RuntimeError(str(exc)) from exc + except TMDBProviderError as exc: + failures.append( + { + "path": str(record.get("path", "")), + "title": str(title), + "provider": provider.name, + "reason": str(exc), + } + ) + api_calls += provider.last_request_count + continue except Exception as exc: failures.append( { "path": str(record.get("path", "")), "title": str(title), - "provider": getattr(provider, "name", "unknown"), + "provider": provider.name, "reason": str(exc), } ) + api_calls += provider.last_request_count continue + api_calls += provider.last_request_count if result: provider_results.append(result) merged = _merge_provider_results(provider_results) # Optional AI fallback for missing translated titles. - if config.translation_fallback_machine: + if config.translation_fallback_machine and config.openai_api_key: if not merged.get("title_zh"): + api_calls += 1 translated = _translate_with_openai( title, target_language="Chinese (Simplified)", @@ -225,12 +264,12 @@ def _enrich_record( timeout_seconds=request_timeout, retries=retries, ) - api_calls += 1 if translated: merged["title_zh"] = translated merged["translation_source"] = merged.get("translation_source") or "openai" if not merged.get("title_en"): + api_calls += 1 translated = _translate_with_openai( title, target_language="English", @@ -238,7 +277,6 @@ def _enrich_record( timeout_seconds=request_timeout, retries=retries, ) - api_calls += 1 if translated: merged["title_en"] = translated merged["translation_source"] = merged.get("translation_source") or "openai" @@ -266,7 +304,55 @@ def _enrich_record( merged["enriched"] = bool(provider_results or merged.get("translation_source")) merged["display_title"] = _build_display_title(record, merged, config) - return merged, api_calls, failures + skip_reason = _determine_skip_reason( + provider_results=provider_results, + failures=failures, + configured_provider_count=configured_provider_count, + api_calls=api_calls, + ) + + return merged, api_calls, failures, skip_reason + + +def _determine_skip_reason( + *, + provider_results: list[ProviderResult], + failures: list[dict[str, str]], + configured_provider_count: int, + api_calls: int, +) -> str: + if provider_results: + return "" + if configured_provider_count == 0 and api_calls == 0: + return "no_key" + if failures: + for failure in failures: + reason = str(failure.get("reason", "")).lower() + if "rate limit" in reason or "(429)" in reason: + return "rate_limited" + if "authentication failed" in reason or "(401/403)" in reason: + return "auth_error" + return "provider_error" + return "no_match" + + +def _increment_skip_reason(stats: dict[str, int | list[dict[str, str]]], reason: str) -> None: + if not reason: + return + current = stats.get("skip_reasons") + if not isinstance(current, dict): + current = {} + stats["skip_reasons"] = current + current[reason] = int(current.get(reason, 0)) + 1 + + +def _provider_is_configured(provider: object, config: Config) -> bool: + provider_name = provider.name.lower() + + if provider_name == "tmdb": + return bool(config.tmdb_bearer_token or config.tmdb_api_key) + + return True def _merge_provider_results(results: list[ProviderResult]) -> dict: diff --git a/src/vlm/executor.py b/src/vlm/executor.py index 6587c12..d9619ed 100644 --- a/src/vlm/executor.py +++ b/src/vlm/executor.py @@ -16,6 +16,7 @@ from uuid import uuid4 from .logging_config import get_logger, log_operation from .models import ExecutionPlan, FileOperation, OperationResult, RollbackLog +from .utils import ensure_utc, utc_now class ExecutionEngine: @@ -86,7 +87,7 @@ class ExecutionEngine: rollback_log = RollbackLog( log_id=str(uuid4()), execution_plan_id=plan.plan_id, - executed_at=datetime.now(), + executed_at=utc_now(), operations=successful_operations ) @@ -116,8 +117,8 @@ class ExecutionEngine: Returns: OperationResult with success status and any error message """ - executed_at = datetime.now() - + executed_at = utc_now() + # Handle no-op operations if operation.operation_type == "no-op": log_operation( @@ -385,19 +386,19 @@ class ExecutionEngine: conflict_reason=None ) - # Reconstruct OperationResult + # Reconstruct OperationResult (normalize naive datetime to UTC) op_result = OperationResult( operation=file_op, success=op_data["success"], error_message=op_data["error_message"], - executed_at=datetime.fromisoformat(op_data["executed_at"]) + executed_at=ensure_utc(datetime.fromisoformat(op_data["executed_at"])) ) operations.append(op_result) rollback_log = RollbackLog( log_id=log_data["log_id"], execution_plan_id=log_data["execution_plan_id"], - executed_at=datetime.fromisoformat(log_data["executed_at"]), + executed_at=ensure_utc(datetime.fromisoformat(log_data["executed_at"])), operations=operations ) @@ -468,7 +469,7 @@ class ExecutionEngine: OperationResult indicating success or failure of the rollback """ operation = original_result.operation - executed_at = datetime.now() + executed_at = utc_now() # Skip no-op operations if operation.operation_type == "no-op": diff --git a/src/vlm/io.py b/src/vlm/io.py new file mode 100644 index 0000000..fc38fdb --- /dev/null +++ b/src/vlm/io.py @@ -0,0 +1,188 @@ +"""Unified I/O layer for inventory and identities data.""" + +from __future__ import annotations + +import json +from pathlib import Path +from typing import Union + +from vlm.models import MovieIdentity, SeriesIdentity, VideoFile +from vlm.utils import utc_now + +# Re-export scanner CSV functions so CLI and others use a single I/O entry point +from vlm.scanner import load_inventory_csv, save_inventory_csv + +__all__ = [ + "load_inventory_csv", + "save_inventory_csv", + "load_identities_json", + "save_identities_json", + "identities_to_plan_input", + "identities_to_analysis_input", +] + + +def load_identities_json(path: Path) -> dict: + """Load identities from JSON file.""" + with open(path, "r", encoding="utf-8") as f: + return json.load(f) + + +def save_identities_json(data: dict, path: Path) -> None: + """Save identities dict to JSON file.""" + path.parent.mkdir(parents=True, exist_ok=True) + with open(path, "w", encoding="utf-8") as f: + json.dump(data, f, indent=2, ensure_ascii=False) + + +def _video_file_from_record(record: dict) -> VideoFile: + """Build a minimal VideoFile from an identities record (no inventory metadata).""" + return VideoFile( + path=Path(record["path"]), + filename=record["filename"], + size_bytes=0, + modified_timestamp=utc_now(), + category=record["category"], + resolution=None, + codec=None, + duration_seconds=None, + bitrate_kbps=None, + ) + + +def _movie_identity_from_record(m: dict) -> MovieIdentity: + """Build MovieIdentity from identities JSON record.""" + is_approved = m.get("review_status") == "approved" + return MovieIdentity( + title=m.get("display_title", m["title"]), + year=m.get("year"), + confidence=m["confidence"], + needs_review=(m["needs_review"] and not is_approved), + original_filename=m["filename"], + canonical_id=m.get("canonical_id"), + title_zh=m.get("title_zh"), + title_en=m.get("title_en"), + translation_source=m.get("translation_source"), + reputation_score=m.get("reputation_score"), + reputation_votes=m.get("reputation_votes"), + reputation_source=m.get("reputation_source"), + review_status=m.get("review_status", "pending"), + enrichment_confidence=m.get("enrichment_confidence"), + provider_metadata=m.get("provider_metadata", {}), + ) + + +def _series_identity_from_record(s: dict) -> SeriesIdentity: + """Build SeriesIdentity from identities JSON record.""" + is_approved = s.get("review_status") == "approved" + return SeriesIdentity( + title=s.get("display_title", s["title"]), + season=s.get("season"), + episodes=s.get("episodes", []), + confidence=s["confidence"], + needs_review=(s["needs_review"] and not is_approved), + original_filename=s["filename"], + canonical_id=s.get("canonical_id"), + title_zh=s.get("title_zh"), + title_en=s.get("title_en"), + translation_source=s.get("translation_source"), + reputation_score=s.get("reputation_score"), + reputation_votes=s.get("reputation_votes"), + reputation_source=s.get("reputation_source"), + review_status=s.get("review_status", "pending"), + enrichment_confidence=s.get("enrichment_confidence"), + provider_metadata=s.get("provider_metadata", {}), + ) + + +def identities_to_plan_input( + data: dict, +) -> 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]]] = [] + movies_data = data.get("movies", []) + series_data = data.get("series", []) + anime_data = data.get("anime", []) + other_data = data.get("other", []) + + for m in movies_data: + result.append((_video_file_from_record(m), _movie_identity_from_record(m))) + for s in series_data: + result.append((_video_file_from_record(s), _series_identity_from_record(s))) + for a in anime_data: + result.append((_video_file_from_record(a), None)) + for o in other_data: + result.append((_video_file_from_record(o), None)) + + return result + + +def identities_to_analysis_input( + data: dict, + 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.""" + 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} + 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) + 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 diff --git a/src/vlm/models.py b/src/vlm/models.py index fcc605a..cc819ac 100644 --- a/src/vlm/models.py +++ b/src/vlm/models.py @@ -41,7 +41,12 @@ class VideoFile: @dataclass class MovieIdentity: """Represents the parsed identity of a movie file. - + + review_status (pending/approved/rejected) and needs_review overlap in meaning: + needs_review is True when (review_status == 'pending') and parsing or + enrichment indicates the record should be reviewed; once approved, needs_review + is typically False. + Attributes: title: Extracted movie title (normalized) year: Extracted release year (None if not found) @@ -69,7 +74,11 @@ class MovieIdentity: @dataclass class SeriesIdentity: """Represents the parsed identity of a TV series episode file. - + + review_status (pending/approved/rejected) and needs_review overlap in meaning: + needs_review is True when (review_status == 'pending') and parsing or + enrichment indicates the record should be reviewed. + Attributes: title: Extracted series title (normalized) season: Extracted season number (None if not found) diff --git a/src/vlm/parser.py b/src/vlm/parser.py index 442c5d5..5b73007 100644 --- a/src/vlm/parser.py +++ b/src/vlm/parser.py @@ -9,6 +9,11 @@ from typing import Optional from vlm.models import MovieIdentity, SeriesIdentity +# Default extensions used when extensions param is not provided (matches config default) +DEFAULT_VIDEO_EXTENSIONS = [ + ".mp4", ".mkv", ".avi", ".mov", ".wmv", ".flv", ".webm", ".m4v" +] + # Quality tags to remove from titles QUALITY_TAGS = [ @@ -80,7 +85,10 @@ def normalize_title(title: str) -> str: return title.strip() -def parse_movie(filename: str) -> MovieIdentity: +def parse_movie( + filename: str, + extensions: Optional[list[str]] = None, +) -> MovieIdentity: """Parse a movie filename to extract title and year. Supports patterns: @@ -91,14 +99,17 @@ def parse_movie(filename: str) -> MovieIdentity: Args: filename: Movie filename to parse + extensions: Video extensions to strip (default: DEFAULT_VIDEO_EXTENSIONS) Returns: MovieIdentity with extracted information """ + if extensions is None: + extensions = DEFAULT_VIDEO_EXTENSIONS # Remove file extension name_without_ext = filename - for ext in ['.mp4', '.mkv', '.avi', '.mov', '.wmv', '.flv', '.webm', '.m4v']: - if name_without_ext.lower().endswith(ext): + for ext in extensions: + if name_without_ext.lower().endswith(ext.lower()): name_without_ext = name_without_ext[:-len(ext)] break @@ -148,7 +159,10 @@ def parse_movie(filename: str) -> MovieIdentity: ) -def parse_series(filename: str) -> SeriesIdentity: +def parse_series( + filename: str, + extensions: Optional[list[str]] = None, +) -> SeriesIdentity: """Parse a series filename to extract title, season, and episode numbers. Supports patterns: @@ -160,14 +174,17 @@ def parse_series(filename: str) -> SeriesIdentity: Args: filename: Series filename to parse + extensions: Video extensions to strip (default: DEFAULT_VIDEO_EXTENSIONS) Returns: SeriesIdentity with extracted information """ + if extensions is None: + extensions = DEFAULT_VIDEO_EXTENSIONS # Remove file extension name_without_ext = filename - for ext in ['.mp4', '.mkv', '.avi', '.mov', '.wmv', '.flv', '.webm', '.m4v']: - if name_without_ext.lower().endswith(ext): + for ext in extensions: + if name_without_ext.lower().endswith(ext.lower()): name_without_ext = name_without_ext[:-len(ext)] break diff --git a/src/vlm/planner.py b/src/vlm/planner.py index c2f9ac6..dea0521 100644 --- a/src/vlm/planner.py +++ b/src/vlm/planner.py @@ -11,6 +11,7 @@ from pathlib import Path from typing import Union from vlm.config import Config +from vlm.utils import ensure_utc, utc_now from vlm.models import ( ExecutionPlan, FileOperation, @@ -48,7 +49,7 @@ def generate_plan( return ExecutionPlan( plan_id=str(uuid.uuid4()), - created_at=datetime.now(), + created_at=utc_now(), operations=operations, summary=summary ) @@ -391,10 +392,11 @@ def load_plan(input_path: Path) -> ExecutionPlan: for op in plan_dict["operations"] ] - # Reconstruct ExecutionPlan + # Reconstruct ExecutionPlan (normalize naive datetime to UTC for backward compatibility) + created_at = ensure_utc(datetime.fromisoformat(plan_dict["created_at"])) return ExecutionPlan( plan_id=plan_dict["plan_id"], - created_at=datetime.fromisoformat(plan_dict["created_at"]), + created_at=created_at, operations=operations, summary=plan_dict["summary"] ) diff --git a/src/vlm/providers/__init__.py b/src/vlm/providers/__init__.py index c40cf0f..22c9ece 100644 --- a/src/vlm/providers/__init__.py +++ b/src/vlm/providers/__init__.py @@ -1,10 +1,12 @@ """Provider implementations for enrichment.""" from vlm.providers.base import EnrichmentProvider, ProviderResult -from vlm.providers.tmdb import TMDBProvider +from vlm.providers.tmdb import TMDBAuthError, TMDBProvider, TMDBProviderError __all__ = [ "EnrichmentProvider", "ProviderResult", "TMDBProvider", + "TMDBAuthError", + "TMDBProviderError", ] diff --git a/src/vlm/providers/base.py b/src/vlm/providers/base.py index 0a63fe4..326448a 100644 --- a/src/vlm/providers/base.py +++ b/src/vlm/providers/base.py @@ -26,6 +26,7 @@ class EnrichmentProvider(Protocol): """Protocol for title/score providers.""" name: str + last_request_count: int # API request count for the last enrich() call (reset at start of each call) def enrich(self, *, title: str, media_type: str, year: Optional[int] = None) -> Optional[ProviderResult]: """Return normalized metadata for a single identity.""" diff --git a/src/vlm/providers/tmdb.py b/src/vlm/providers/tmdb.py index 241dadd..5a1e6c1 100644 --- a/src/vlm/providers/tmdb.py +++ b/src/vlm/providers/tmdb.py @@ -3,14 +3,25 @@ from __future__ import annotations import json +import re import time -from typing import Optional +from difflib import SequenceMatcher +from typing import Any, Optional +from urllib.error import HTTPError, URLError from urllib.parse import urlencode -from urllib.request import urlopen, Request +from urllib.request import Request, urlopen from vlm.providers.base import ProviderResult +class TMDBAuthError(RuntimeError): + """Raised when TMDB credentials are invalid.""" + + +class TMDBProviderError(RuntimeError): + """Raised for TMDB errors that should be reported as provider failures.""" + + class TMDBProvider: """Fetch translations and reputation data from TMDB.""" @@ -19,48 +30,66 @@ class TMDBProvider: def __init__( self, api_key: Optional[str], + *, + bearer_token: Optional[str] = None, language: str = "zh-CN", + region: Optional[str] = None, + include_adult: bool = False, timeout_seconds: int = 6, retries: int = 2, min_interval_seconds: float = 0.25, + backoff_base_seconds: float = 0.5, + backoff_max_seconds: float = 4.0, ) -> None: self.api_key = api_key + self.bearer_token = bearer_token self.language = language + self.region = region + self.include_adult = include_adult self.base_url = "https://api.themoviedb.org/3" self.timeout_seconds = timeout_seconds self.retries = retries self.min_interval_seconds = min_interval_seconds + self.backoff_base_seconds = backoff_base_seconds + self.backoff_max_seconds = backoff_max_seconds self._last_request_at = 0.0 + self.last_request_count = 0 def enrich(self, *, title: str, media_type: str, year: Optional[int] = None) -> Optional[ProviderResult]: - if not self.api_key: + self.last_request_count = 0 + if not (self.bearer_token or self.api_key): return None search_type = "tv" if media_type in {"series", "anime", "tv"} else "movie" - query_params = { - "api_key": self.api_key, + query_params: dict[str, Any] = { "query": title, "language": self.language, + "include_adult": str(self.include_adult).lower(), } + if self.region: + query_params["region"] = self.region if year and search_type == "movie": query_params["year"] = year - search_data = self._get_json(f"{self.base_url}/search/{search_type}", query_params) + search_data = self._get_json(f"/search/{search_type}", query_params) if not search_data: return None results = search_data.get("results", []) - if not results: + if not isinstance(results, list) or not results: + return None + + candidate, match_score = self._pick_best_candidate(results, title, year) + if not candidate: return None - candidate = results[0] tmdb_id = candidate.get("id") if tmdb_id is None: return None details = self._get_json( - f"{self.base_url}/{search_type}/{tmdb_id}", - {"api_key": self.api_key, "language": self.language}, + f"/{search_type}/{tmdb_id}", + {"language": self.language}, ) if not details: details = candidate @@ -79,10 +108,78 @@ class TMDBProvider: reputation_score=float(vote_average) if vote_average is not None else None, reputation_votes=int(vote_count) if vote_count is not None else None, reputation_source=self.name, - match_score=float(candidate.get("popularity", 0.0)) if candidate.get("popularity") is not None else None, + match_score=round(match_score, 3), raw_metadata={"media_type": search_type, "id": str(tmdb_id)}, ) + def _pick_best_candidate( + self, + results: list[dict[str, Any]], + query_title: str, + query_year: Optional[int], + ) -> tuple[Optional[dict[str, Any]], float]: + query_norm = self._normalize_title(query_title) + best_candidate: Optional[dict[str, Any]] = None + best_score = -1.0 + + for result in results: + candidates = [ + result.get("title"), + result.get("name"), + result.get("original_title"), + result.get("original_name"), + ] + title_score = 0.0 + for candidate_title in candidates: + if not isinstance(candidate_title, str) or not candidate_title.strip(): + continue + candidate_norm = self._normalize_title(candidate_title) + if not candidate_norm: + continue + ratio = SequenceMatcher(None, query_norm, candidate_norm).ratio() + if ratio > title_score: + title_score = ratio + + year_bonus = 0.0 + if query_year is not None: + release = result.get("release_date") or result.get("first_air_date") + candidate_year = self._extract_year(release) + if candidate_year is None: + year_bonus = -0.1 + else: + delta = abs(candidate_year - query_year) + if delta == 0: + year_bonus = 0.2 + elif delta == 1: + year_bonus = 0.1 + else: + year_bonus = -0.2 + + popularity = result.get("popularity") + popularity_bonus = 0.0 + if isinstance(popularity, (int, float)): + popularity_bonus = min(float(popularity) / 1000.0, 0.1) + + total_score = title_score + year_bonus + popularity_bonus + if total_score > best_score: + best_score = total_score + best_candidate = result + + return best_candidate, max(best_score, 0.0) + + def _normalize_title(self, text: str) -> str: + lowered = text.lower().strip() + stripped = re.sub(r"[^\w\s]", " ", lowered) + return " ".join(stripped.split()) + + def _extract_year(self, date_text: Any) -> Optional[int]: + if not isinstance(date_text, str) or len(date_text) < 4: + return None + try: + return int(date_text[:4]) + except (ValueError, TypeError): + return None + def _wait_for_rate_limit(self) -> None: if self.min_interval_seconds <= 0: return @@ -91,18 +188,73 @@ class TMDBProvider: if elapsed < self.min_interval_seconds: time.sleep(self.min_interval_seconds - elapsed) - def _get_json(self, url: str, params: dict) -> Optional[dict]: - full_url = f"{url}?{urlencode(params)}" - request = Request(full_url, headers={"Accept": "application/json"}) + def _sleep_backoff(self, attempt: int, retry_after: Optional[float] = None) -> None: + if retry_after is not None and retry_after > 0: + time.sleep(min(retry_after, self.backoff_max_seconds)) + return + delay = min(self.backoff_base_seconds * (2 ** attempt), self.backoff_max_seconds) + time.sleep(delay) - for _ in range(max(self.retries + 1, 1)): + def _get_json(self, path: str, params: dict[str, Any]) -> Optional[dict]: + request_params = dict(params) + if not self.bearer_token and self.api_key: + request_params["api_key"] = self.api_key + + full_url = f"{self.base_url}{path}?{urlencode(request_params)}" + headers = {"Accept": "application/json"} + if self.bearer_token: + headers["Authorization"] = f"Bearer {self.bearer_token}" + + for attempt in range(max(self.retries + 1, 1)): self._wait_for_rate_limit() + self.last_request_count += 1 + request = Request(full_url, headers=headers) try: with urlopen(request, timeout=self.timeout_seconds) as response: payload = response.read().decode("utf-8") self._last_request_at = time.monotonic() - return json.loads(payload) - except Exception: + parsed = json.loads(payload) + if isinstance(parsed, dict): + return parsed + return None + except HTTPError as exc: self._last_request_at = time.monotonic() - continue + code = exc.code + if code in (401, 403): + raise TMDBAuthError( + "TMDB authentication failed (401/403). " + "Configure enrichment.api_keys.tmdb_bearer or enrichment.api_keys.tmdb." + ) from exc + if code == 404: + return None + if code == 429: + if attempt < self.retries: + retry_after = None + try: + retry_after_header = exc.headers.get("Retry-After") + retry_after = float(retry_after_header) if retry_after_header else None + except Exception: + retry_after = None + self._sleep_backoff(attempt, retry_after=retry_after) + continue + raise TMDBProviderError("TMDB rate limit exceeded (429)") from exc + if 500 <= code < 600 and attempt < self.retries: + self._sleep_backoff(attempt) + continue + if 500 <= code < 600: + raise TMDBProviderError(f"TMDB server error ({code})") from exc + raise TMDBProviderError(f"TMDB request failed with HTTP {code}") from exc + except URLError as exc: + self._last_request_at = time.monotonic() + if attempt < self.retries: + self._sleep_backoff(attempt) + continue + raise TMDBProviderError(f"TMDB network error: {exc}") from exc + except Exception as exc: + self._last_request_at = time.monotonic() + if attempt < self.retries: + self._sleep_backoff(attempt) + continue + raise TMDBProviderError(f"TMDB unexpected error: {exc}") from exc + return None diff --git a/src/vlm/quarantine.py b/src/vlm/quarantine.py index e40efcb..d158e38 100644 --- a/src/vlm/quarantine.py +++ b/src/vlm/quarantine.py @@ -16,6 +16,7 @@ from pathlib import Path from typing import Optional from .config import Config +from .utils import utc_now from .logging_config import get_logger, log_operation from .models import QuarantineEntry, QuarantineManifest, OperationResult, FileOperation @@ -58,7 +59,7 @@ class QuarantineManager: Raises: ValueError: If file is in anime or other category (not supported in v1) """ - executed_at = datetime.now() + executed_at = utc_now() # Verify file exists if not file_path.exists(): @@ -526,7 +527,7 @@ class QuarantineManager: Returns: OperationResult indicating success or failure """ - executed_at = datetime.now() + executed_at = utc_now() # Verify quarantine file exists if not quarantine_path.exists(): diff --git a/src/vlm/state.py b/src/vlm/state.py index 5ce04d7..59cf9b3 100644 --- a/src/vlm/state.py +++ b/src/vlm/state.py @@ -10,6 +10,7 @@ from pathlib import Path from typing import Optional from vlm.models import FileState, StateStore +from vlm.utils import ensure_utc, utc_now # Valid status values @@ -32,20 +33,20 @@ def load_state(path: Path) -> StateStore: with open(path, 'r', encoding='utf-8') as f: data = json.load(f) - # Parse states dictionary + # Parse states dictionary (normalize naive datetime to UTC) states = {} for file_path_str, state_data in data.get('states', {}).items(): states[file_path_str] = FileState( file_path=Path(state_data['file_path']), status=state_data['status'], reason=state_data.get('reason'), - updated_at=datetime.fromisoformat(state_data['updated_at']) + updated_at=ensure_utc(datetime.fromisoformat(state_data['updated_at'])) ) return StateStore( states=states, version=data.get('version', '1.0'), - last_updated=datetime.fromisoformat(data['last_updated']) + last_updated=ensure_utc(datetime.fromisoformat(data['last_updated'])) ) @@ -101,7 +102,7 @@ class StateManager: self.store = StateStore( states={}, version='1.0', - last_updated=datetime.now() + last_updated=utc_now() ) def get_file_state(self, file_path: Path) -> Optional[FileState]: @@ -136,7 +137,7 @@ class StateManager: ) file_path_str = str(file_path) - now = datetime.now() + now = utc_now() self.store.states[file_path_str] = FileState( file_path=file_path, @@ -170,7 +171,7 @@ class StateManager: file_path_str = str(file_path) if file_path_str in self.store.states: del self.store.states[file_path_str] - self.store.last_updated = datetime.now() + self.store.last_updated = utc_now() def save(self) -> None: """Save the current state store to disk.""" diff --git a/src/vlm/utils.py b/src/vlm/utils.py new file mode 100644 index 0000000..91f3dbc --- /dev/null +++ b/src/vlm/utils.py @@ -0,0 +1,24 @@ +"""Shared utilities for Video Library Manager.""" + +from datetime import datetime, timezone + + +def utc_now() -> datetime: + """Return current UTC time (timezone-aware).""" + return datetime.now(timezone.utc) + + +def ensure_utc(dt: datetime) -> datetime: + """Ensure datetime is timezone-aware UTC (for backward compatibility with naive ISO strings).""" + if dt.tzinfo is None: + return dt.replace(tzinfo=timezone.utc) + return dt.astimezone(timezone.utc) + + +def format_size(size_bytes: int) -> str: + """Format file size in human-readable format (e.g. 1.5 GB, 234.2 MB).""" + for unit in ["B", "KB", "MB", "GB", "TB"]: + if size_bytes < 1024.0: + return f"{size_bytes:.1f} {unit}" + size_bytes /= 1024.0 + return f"{size_bytes:.1f} PB" diff --git a/tests/test_analysis.py b/tests/test_analysis.py index dcd145d..5e991a2 100644 --- a/tests/test_analysis.py +++ b/tests/test_analysis.py @@ -216,7 +216,7 @@ class TestDuplicateDetection: ), ] - result = detect_duplicates(identities, files) + result = detect_duplicates(list(zip(identities, files))) # Should find one duplicate group (The Matrix) assert len(result) == 1 @@ -260,7 +260,7 @@ class TestDuplicateDetection: ), ] - result = detect_duplicates(identities, files) + result = detect_duplicates(list(zip(identities, files))) # Should find one duplicate group (S01E01) assert len(result) == 1 @@ -282,7 +282,7 @@ class TestDuplicateDetection: VideoFile(Path("/movies/Movie.B.2021.mkv"), "Movie.B.2021.mkv", 1000000000, datetime.now(), "movie"), ] - result = detect_duplicates(identities, files) + result = detect_duplicates(list(zip(identities, files))) assert len(result) == 0 @@ -298,7 +298,7 @@ class TestDuplicateDetection: VideoFile(Path("/movies/Unknown.Movie.2.mkv"), "Unknown.Movie.2.mkv", 1000000000, datetime.now(), "movie"), ] - result = detect_duplicates(identities, files) + result = detect_duplicates(list(zip(identities, files))) # Should not detect duplicates for files needing review assert len(result) == 0 @@ -315,7 +315,7 @@ class TestDuplicateDetection: VideoFile(Path("/series/Unknown.Show.Episode.1.mkv"), "Unknown.Show.Episode.1.mkv", 1000000000, datetime.now(), "series"), ] - result = detect_duplicates(identities, files) + result = detect_duplicates(list(zip(identities, files))) assert len(result) == 0 @@ -331,7 +331,7 @@ class TestDuplicateDetection: VideoFile(Path("/series/Show.Name.Season.1.mkv"), "Show.Name.Season.1.mkv", 1000000000, datetime.now(), "series"), ] - result = detect_duplicates(identities, files) + result = detect_duplicates(list(zip(identities, files))) assert len(result) == 0 @@ -367,7 +367,7 @@ class TestDuplicateDetection: ), ] - result = detect_duplicates(identities, files) + result = detect_duplicates(list(zip(identities, files))) assert len(result) == 1 comparison = result[0].quality_comparison @@ -400,7 +400,7 @@ class TestDuplicateDetection: VideoFile(Path("/series/Show.S01E02.mkv"), "Show.S01E02.mkv", 1000000000, datetime.now(), "series"), ] - result = detect_duplicates(identities, files) + result = detect_duplicates(list(zip(identities, files))) # Should find duplicates for both E01 and E02 assert len(result) == 2 @@ -417,7 +417,7 @@ class TestDuplicateDetection: VideoFile(Path("/movies/The.Thing.2011.mkv"), "The.Thing.2011.mkv", 1000000000, datetime.now(), "movie"), ] - result = detect_duplicates(identities, files) + result = detect_duplicates(list(zip(identities, files))) assert len(result) == 0 @@ -433,7 +433,7 @@ class TestDuplicateDetection: VideoFile(Path("/series/Show.S02E01.mkv"), "Show.S02E01.mkv", 1000000000, datetime.now(), "series"), ] - result = detect_duplicates(identities, files) + result = detect_duplicates(list(zip(identities, files))) assert len(result) == 0 diff --git a/tests/test_analysis_properties.py b/tests/test_analysis_properties.py index 3e1d965..9399328 100644 --- a/tests/test_analysis_properties.py +++ b/tests/test_analysis_properties.py @@ -231,7 +231,7 @@ def test_property_12_duplicate_detection_movies(title, year, duplicate_count): )) # Detect duplicates - result = detect_duplicates(identities, files) + result = detect_duplicates(list(zip(identities, files))) # Should find exactly one duplicate group assert len(result) == 1 @@ -277,7 +277,7 @@ def test_property_13_duplicate_detection_series(title, season, episode, duplicat )) # Detect duplicates - result = detect_duplicates(identities, files) + result = detect_duplicates(list(zip(identities, files))) # Should find exactly one duplicate group assert len(result) == 1 @@ -338,7 +338,7 @@ def test_property_14_duplicate_quality_comparison(title, year, file_count): )) # Detect duplicates - result = detect_duplicates(identities, files) + result = detect_duplicates(list(zip(identities, files))) # Should have quality comparison data assert len(result) == 1 diff --git a/tests/test_cli_enrich.py b/tests/test_cli_enrich.py index ff9cfb5..921493c 100644 --- a/tests/test_cli_enrich.py +++ b/tests/test_cli_enrich.py @@ -134,3 +134,48 @@ enrichment: assert result.exit_code == 1 assert "mutually exclusive" in result.output + + +def test_enrich_prints_text_progress_when_not_tty(tmp_path): + """Non-TTY execution should emit textual progress updates.""" + library_root = tmp_path / "library" + library_root.mkdir(parents=True) + + config_file = tmp_path / "config.yaml" + config_file.write_text( + f""" +library_root: {library_root} +categories: + movie: [movie, movies] + series: [series, tv, shows] + anime: [anime] +enrichment: + cache_db: {tmp_path / 'cache.db'} +""".strip() + ) + + identities_file = tmp_path / "identities.json" + identities_file.write_text(json.dumps({ + "metadata": {}, + "movies": [ + { + "path": "/library/movie/Test.2024.mkv", + "filename": "Test.2024.mkv", + "category": "movie", + "title": "Test", + "year": 2024, + "confidence": 0.9, + "needs_review": False, + } + ], + "series": [], + "anime": [], + "other": [], + })) + + runner = CliRunner() + result = runner.invoke(main, ["--config", str(config_file), "enrich", "--input", str(identities_file)]) + + assert result.exit_code == 0 + assert "Progress: 1/1 (100%)" in result.output + assert "Skip reasons: no_key=1" in result.output diff --git a/tests/test_cli_scan.py b/tests/test_cli_scan.py index 47fe30c..6af8b06 100644 --- a/tests/test_cli_scan.py +++ b/tests/test_cli_scan.py @@ -27,8 +27,8 @@ categories: ) runner = CliRunner() - with patch("vlm.scanner.scan_library", return_value=[]) as mock_scan, patch( - "vlm.scanner.save_inventory_csv" + with patch("vlm.commands.scan.scan_library", return_value=[]) as mock_scan, patch( + "vlm.commands.scan.save_inventory_csv" ) as mock_save: result = runner.invoke( main, @@ -69,9 +69,9 @@ categories: ) runner = CliRunner() - with patch("vlm.scanner.load_inventory_csv") as mock_load_cache, patch( - "vlm.scanner.scan_library", return_value=[] - ) as mock_scan, patch("vlm.scanner.save_inventory_csv") as mock_save: + with patch("vlm.commands.scan.load_inventory_csv") as mock_load_cache, patch( + "vlm.commands.scan.scan_library", return_value=[] + ) as mock_scan, patch("vlm.commands.scan.save_inventory_csv") as mock_save: result = runner.invoke( main, [ diff --git a/tests/test_config.py b/tests/test_config.py index 703f4c6..082fbab 100644 --- a/tests/test_config.py +++ b/tests/test_config.py @@ -180,6 +180,48 @@ categories: assert config.categories["movie"] == ["movie", "movies", "films"] assert config.categories["series"] == ["series", "tv", "shows"] + def test_load_config_with_tmdb_settings(self, tmp_path): + """Test loading TMDB auth and query preferences from config.""" + config_file = tmp_path / "config.yaml" + config_file.write_text(""" +library_root: /test/library +enrichment: + api_keys: + tmdb_bearer: bearer-token + tmdb: + language: zh-TW + region: TW + include_adult: false +""") + + config = load_config(config_file) + + assert config.tmdb_bearer_token == "bearer-token" + assert config.tmdb_language == "zh-TW" + assert config.tmdb_region == "TW" + assert config.tmdb_include_adult is False + + def test_load_config_with_enrich_alias(self, tmp_path): + """Test loading enrichment settings from `enrich` alias.""" + config_file = tmp_path / "config.yaml" + config_file.write_text(""" +library_root: /test/library +enrich: + enabled: false + providers: [tmdb] + api_keys: + tmdb_bearer: alias-bearer-token + tmdb: + language: en-US +""") + + config = load_config(config_file) + + assert config.enrichment_enabled is False + assert config.enrichment_providers == ["tmdb"] + assert config.tmdb_bearer_token == "alias-bearer-token" + assert config.tmdb_language == "en-US" + class TestCreateDefaultConfig: """Test create_default_config function.""" @@ -211,6 +253,8 @@ class TestCreateDefaultConfig: assert 'templates' in data assert 'log_level' in data assert 'quarantine_dir' in data + assert 'enrichment' in data + assert 'enrich' in data def test_create_default_config_creates_parent_dirs(self, tmp_path): """Test that create_default_config creates parent directories.""" diff --git a/tests/test_enrichment.py b/tests/test_enrichment.py index 1725dc7..cfca740 100644 --- a/tests/test_enrichment.py +++ b/tests/test_enrichment.py @@ -5,6 +5,7 @@ import pytest from vlm.config import Config from vlm.enrichment import _build_display_title, _build_providers, enrich_identities_data from vlm.providers.base import ProviderResult +from vlm.providers.tmdb import TMDBAuthError class DummyProvider: @@ -12,9 +13,11 @@ class DummyProvider: def __init__(self): self.calls = 0 + self.last_request_count = 0 def enrich(self, *, title: str, media_type: str, year=None): self.calls += 1 + self.last_request_count = 1 return ProviderResult( provider="dummy", canonical_id=f"dummy:{title}", @@ -83,6 +86,7 @@ def test_enrich_flags_low_reputation_for_review(tmp_path, monkeypatch): class LowScoreProvider(DummyProvider): def enrich(self, *, title: str, media_type: str, year=None): self.calls += 1 + self.last_request_count = 1 return ProviderResult( provider="dummy", canonical_id=f"dummy:{title}", @@ -192,9 +196,11 @@ def test_refresh_all_clears_stale_enrichment_fields(tmp_path, monkeypatch): def __init__(self): self.calls = 0 + self.last_request_count = 0 def enrich(self, *, title: str, media_type: str, year=None): self.calls += 1 + self.last_request_count = 1 if self.calls == 1: return ProviderResult( provider="dummy", @@ -264,3 +270,84 @@ def test_build_display_title_deduplicates_fallback_title(tmp_path): payload = {"title_zh": None, "title_en": None} assert _build_display_title(record, payload, config) == "Interstellar" + + +def test_enrich_without_provider_keys_does_not_count_api_calls(tmp_path): + """Missing provider keys should not inflate API call metrics.""" + config = Config( + library_root=tmp_path, + enrichment_cache_db=tmp_path / "cache.db", + enrichment_providers=["tmdb"], + translation_fallback_machine=True, + tmdb_api_key=None, + openai_api_key=None, + ) + + identities = { + "metadata": {}, + "movies": [ + { + "path": "/library/movie/Test.2020.mkv", + "filename": "Test.2020.mkv", + "category": "movie", + "title": "Test", + "year": 2020, + "confidence": 0.9, + "needs_review": False, + } + ], + "series": [], + "anime": [], + "other": [], + } + + _, stats = enrich_identities_data(identities, config, refresh_mode="refresh_all") + + assert stats["api_calls"] == 0 + assert stats["enriched"] == 0 + assert stats["skip_reasons"] == {"no_key": 1} + + +def test_enrich_auth_failure_stops_immediately(tmp_path, monkeypatch): + """Provider authentication errors should stop the run immediately.""" + + class AuthFailProvider: + name = "tmdb" + last_request_count = 1 + + def enrich(self, *, title: str, media_type: str, year=None): + raise TMDBAuthError("TMDB authentication failed (401/403)") + + config = Config( + library_root=tmp_path, + enrichment_cache_db=tmp_path / "cache.db", + enrichment_providers=["tmdb"], + tmdb_api_key="fake-key", + translation_fallback_machine=False, + ) + + monkeypatch.setattr( + "vlm.enrichment._build_providers", + lambda _config, request_timeout, retries: [AuthFailProvider()], + ) + + identities = { + "metadata": {}, + "movies": [ + { + "path": "/library/movie/Test.2020.mkv", + "filename": "Test.2020.mkv", + "category": "movie", + "title": "Test", + "year": 2020, + "confidence": 0.9, + "needs_review": False, + } + ], + "series": [], + "anime": [], + "other": [], + } + + with pytest.raises(RuntimeError, match="authentication failed"): + enrich_identities_data(identities, config, refresh_mode="refresh_all") diff --git a/tests/test_reports_integration.py b/tests/test_reports_integration.py index 680bd9c..0caf967 100644 --- a/tests/test_reports_integration.py +++ b/tests/test_reports_integration.py @@ -83,7 +83,7 @@ class TestReportsIntegration: ] # Detect duplicates - duplicates = detect_duplicates(identities, files) + duplicates = detect_duplicates(list(zip(identities, files))) # Generate text report library_root = Path("/mnt/nas/videos") diff --git a/tests/test_state.py b/tests/test_state.py index 1c00ca0..4fb9c50 100644 --- a/tests/test_state.py +++ b/tests/test_state.py @@ -2,7 +2,7 @@ import json import pytest -from datetime import datetime +from datetime import datetime, timezone from pathlib import Path from vlm.state import ( load_state, @@ -33,7 +33,8 @@ class TestLoadSaveState: assert loaded.states == {} assert loaded.version == '1.0' - assert loaded.last_updated == datetime(2024, 1, 1, 12, 0, 0) + # load_state normalizes naive ISO timestamps to UTC + assert loaded.last_updated == datetime(2024, 1, 1, 12, 0, 0, tzinfo=timezone.utc) def test_save_and_load_with_states(self, tmp_path): """Test saving and loading state store with file states.""" @@ -74,13 +75,14 @@ class TestLoadSaveState: assert state1.file_path == file1 assert state1.status == "reviewed" assert state1.reason == "Checked manually" - assert state1.updated_at == datetime(2024, 1, 1, 12, 0, 0) + # load_state normalizes naive ISO timestamps to UTC + assert state1.updated_at == datetime(2024, 1, 1, 12, 0, 0, tzinfo=timezone.utc) state2 = loaded.states[str(file2)] assert state2.file_path == file2 assert state2.status == "ignored" assert state2.reason is None - assert state2.updated_at == datetime(2024, 1, 2, 12, 0, 0) + assert state2.updated_at == datetime(2024, 1, 2, 12, 0, 0, tzinfo=timezone.utc) def test_save_creates_parent_directory(self, tmp_path): """Test that save_state creates parent directories if needed.""" diff --git a/uv.lock b/uv.lock new file mode 100644 index 0000000..6ec5d81 --- /dev/null +++ b/uv.lock @@ -0,0 +1,263 @@ +version = 1 +revision = 3 +requires-python = ">=3.10" + +[[package]] +name = "click" +version = "8.3.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "colorama", marker = "sys_platform == 'win32'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/3d/fa/656b739db8587d7b5dfa22e22ed02566950fbfbcdc20311993483657a5c0/click-8.3.1.tar.gz", hash = "sha256:12ff4785d337a1bb490bb7e9c2b1ee5da3112e94a8622f26a6c77f5d2fc6842a", size = 295065, upload-time = "2025-11-15T20:45:42.706Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/98/78/01c019cdb5d6498122777c1a43056ebb3ebfeef2076d9d026bfe15583b2b/click-8.3.1-py3-none-any.whl", hash = "sha256:981153a64e25f12d547d3426c367a4857371575ee7ad18df2a6183ab0545b2a6", size = 108274, upload-time = "2025-11-15T20:45:41.139Z" }, +] + +[[package]] +name = "colorama" +version = "0.4.6" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/d8/53/6f443c9a4a8358a93a6792e2acffb9d9d5cb0a5cfd8802644b7b1c9a02e4/colorama-0.4.6.tar.gz", hash = "sha256:08695f5cb7ed6e0531a20572697297273c47b8cae5a63ffc6d6ed5c201be6e44", size = 27697, upload-time = "2022-10-25T02:36:22.414Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/d1/d6/3965ed04c63042e047cb6a3e6ed1a63a35087b6a609aa3a15ed8ac56c221/colorama-0.4.6-py2.py3-none-any.whl", hash = "sha256:4f1d9991f5acc0ca119f9d443620b77f9d6b33703e51011c16baf57afb285fc6", size = 25335, upload-time = "2022-10-25T02:36:20.889Z" }, +] + +[[package]] +name = "exceptiongroup" +version = "1.3.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "typing-extensions", marker = "python_full_version < '3.13'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/50/79/66800aadf48771f6b62f7eb014e352e5d06856655206165d775e675a02c9/exceptiongroup-1.3.1.tar.gz", hash = "sha256:8b412432c6055b0b7d14c310000ae93352ed6754f70fa8f7c34141f91c4e3219", size = 30371, upload-time = "2025-11-21T23:01:54.787Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/8a/0e/97c33bf5009bdbac74fd2beace167cab3f978feb69cc36f1ef79360d6c4e/exceptiongroup-1.3.1-py3-none-any.whl", hash = "sha256:a7a39a3bd276781e98394987d3a5701d0c4edffb633bb7a5144577f82c773598", size = 16740, upload-time = "2025-11-21T23:01:53.443Z" }, +] + +[[package]] +name = "hypothesis" +version = "6.151.5" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "exceptiongroup", marker = "python_full_version < '3.11'" }, + { name = "sortedcontainers" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/4e/d7/c40dcd401cc360d8d084e584ffb7ab17255fde22e2b9cf2b53bf25aed629/hypothesis-6.151.5.tar.gz", hash = "sha256:ae3a0622f9693e6b19c697777c2c266c02801f9769ab7c2c37b7ec83d4743783", size = 475923, upload-time = "2026-02-03T19:33:55.845Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/c0/d9/53a8b53e75279a953fae608bd01025d9afcf393406c0da1dda1b7f5693c5/hypothesis-6.151.5-py3-none-any.whl", hash = "sha256:c0e15c91fa0e67bc0295551ef5041bebad42753b7977a610cd7a6ec1ad04ef13", size = 543338, upload-time = "2026-02-03T19:33:54.583Z" }, +] + +[[package]] +name = "iniconfig" +version = "2.3.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/72/34/14ca021ce8e5dfedc35312d08ba8bf51fdd999c576889fc2c24cb97f4f10/iniconfig-2.3.0.tar.gz", hash = "sha256:c76315c77db068650d49c5b56314774a7804df16fee4402c1f19d6d15d8c4730", size = 20503, upload-time = "2025-10-18T21:55:43.219Z" } +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 = "packaging" +version = "26.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/65/ee/299d360cdc32edc7d2cf530f3accf79c4fca01e96ffc950d8a52213bd8e4/packaging-26.0.tar.gz", hash = "sha256:00243ae351a257117b6a241061796684b084ed1c516a08c48a3f7e147a9d80b4", size = 143416, upload-time = "2026-01-21T20:50:39.064Z" } +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 = "pluggy" +version = "1.6.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/f9/e2/3e91f31a7d2b083fe6ef3fa267035b518369d9511ffab804f839851d2779/pluggy-1.6.0.tar.gz", hash = "sha256:7dcc130b76258d33b90f61b658791dede3486c3e6bfb003ee5c9bfb396dd22f3", size = 69412, upload-time = "2025-05-15T12:30:07.975Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/54/20/4d324d65cc6d9205fabedc306948156824eb9f0ee1633355a8f7ec5c66bf/pluggy-1.6.0-py3-none-any.whl", hash = "sha256:e920276dd6813095e9377c0bc5566d94c932c33b27a3e3945d8389c374dd4746", size = 20538, upload-time = "2025-05-15T12:30:06.134Z" }, +] + +[[package]] +name = "pygments" +version = "2.19.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/b0/77/a5b8c569bf593b0140bde72ea885a803b82086995367bf2037de0159d924/pygments-2.19.2.tar.gz", hash = "sha256:636cb2477cec7f8952536970bc533bc43743542f70392ae026374600add5b887", size = 4968631, upload-time = "2025-06-21T13:39:12.283Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/c7/21/705964c7812476f378728bdf590ca4b771ec72385c533964653c68e86bdc/pygments-2.19.2-py3-none-any.whl", hash = "sha256:86540386c03d588bb81d44bc3928634ff26449851e99741617ecb9037ee5ec0b", size = 1225217, upload-time = "2025-06-21T13:39:07.939Z" }, +] + +[[package]] +name = "pytest" +version = "9.0.2" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "colorama", marker = "sys_platform == 'win32'" }, + { name = "exceptiongroup", marker = "python_full_version < '3.11'" }, + { name = "iniconfig" }, + { name = "packaging" }, + { name = "pluggy" }, + { name = "pygments" }, + { name = "tomli", marker = "python_full_version < '3.11'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/d1/db/7ef3487e0fb0049ddb5ce41d3a49c235bf9ad299b6a25d5780a89f19230f/pytest-9.0.2.tar.gz", hash = "sha256:75186651a92bd89611d1d9fc20f0b4345fd827c41ccd5c299a868a05d70edf11", size = 1568901, upload-time = "2025-12-06T21:30:51.014Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/3b/ab/b3226f0bd7cdcf710fbede2b3548584366da3b19b5021e74f5bde2a8fa3f/pytest-9.0.2-py3-none-any.whl", hash = "sha256:711ffd45bf766d5264d487b917733b453d917afd2b0ad65223959f59089f875b", size = 374801, upload-time = "2025-12-06T21:30:49.154Z" }, +] + +[[package]] +name = "pyyaml" +version = "6.0.3" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/05/8e/961c0007c59b8dd7729d542c61a4d537767a59645b82a0b521206e1e25c2/pyyaml-6.0.3.tar.gz", hash = "sha256:d76623373421df22fb4cf8817020cbb7ef15c725b9d5e45f17e189bfc384190f", size = 130960, upload-time = "2025-09-25T21:33:16.546Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/f4/a0/39350dd17dd6d6c6507025c0e53aef67a9293a6d37d3511f23ea510d5800/pyyaml-6.0.3-cp310-cp310-macosx_10_13_x86_64.whl", hash = "sha256:214ed4befebe12df36bcc8bc2b64b396ca31be9304b8f59e25c11cf94a4c033b", size = 184227, upload-time = "2025-09-25T21:31:46.04Z" }, + { url = "https://files.pythonhosted.org/packages/05/14/52d505b5c59ce73244f59c7a50ecf47093ce4765f116cdb98286a71eeca2/pyyaml-6.0.3-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:02ea2dfa234451bbb8772601d7b8e426c2bfa197136796224e50e35a78777956", size = 174019, upload-time = "2025-09-25T21:31:47.706Z" }, + { url = "https://files.pythonhosted.org/packages/43/f7/0e6a5ae5599c838c696adb4e6330a59f463265bfa1e116cfd1fbb0abaaae/pyyaml-6.0.3-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:b30236e45cf30d2b8e7b3e85881719e98507abed1011bf463a8fa23e9c3e98a8", size = 740646, upload-time = "2025-09-25T21:31:49.21Z" }, + { url = "https://files.pythonhosted.org/packages/2f/3a/61b9db1d28f00f8fd0ae760459a5c4bf1b941baf714e207b6eb0657d2578/pyyaml-6.0.3-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:66291b10affd76d76f54fad28e22e51719ef9ba22b29e1d7d03d6777a9174198", size = 840793, upload-time = "2025-09-25T21:31:50.735Z" }, + { url = "https://files.pythonhosted.org/packages/7a/1e/7acc4f0e74c4b3d9531e24739e0ab832a5edf40e64fbae1a9c01941cabd7/pyyaml-6.0.3-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:9c7708761fccb9397fe64bbc0395abcae8c4bf7b0eac081e12b809bf47700d0b", size = 770293, upload-time = "2025-09-25T21:31:51.828Z" }, + { url = "https://files.pythonhosted.org/packages/8b/ef/abd085f06853af0cd59fa5f913d61a8eab65d7639ff2a658d18a25d6a89d/pyyaml-6.0.3-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:418cf3f2111bc80e0933b2cd8cd04f286338bb88bdc7bc8e6dd775ebde60b5e0", size = 732872, upload-time = "2025-09-25T21:31:53.282Z" }, + { url = "https://files.pythonhosted.org/packages/1f/15/2bc9c8faf6450a8b3c9fc5448ed869c599c0a74ba2669772b1f3a0040180/pyyaml-6.0.3-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:5e0b74767e5f8c593e8c9b5912019159ed0533c70051e9cce3e8b6aa699fcd69", size = 758828, upload-time = "2025-09-25T21:31:54.807Z" }, + { url = "https://files.pythonhosted.org/packages/a3/00/531e92e88c00f4333ce359e50c19b8d1de9fe8d581b1534e35ccfbc5f393/pyyaml-6.0.3-cp310-cp310-win32.whl", hash = "sha256:28c8d926f98f432f88adc23edf2e6d4921ac26fb084b028c733d01868d19007e", size = 142415, upload-time = "2025-09-25T21:31:55.885Z" }, + { url = "https://files.pythonhosted.org/packages/2a/fa/926c003379b19fca39dd4634818b00dec6c62d87faf628d1394e137354d4/pyyaml-6.0.3-cp310-cp310-win_amd64.whl", hash = "sha256:bdb2c67c6c1390b63c6ff89f210c8fd09d9a1217a465701eac7316313c915e4c", size = 158561, upload-time = "2025-09-25T21:31:57.406Z" }, + { url = "https://files.pythonhosted.org/packages/6d/16/a95b6757765b7b031c9374925bb718d55e0a9ba8a1b6a12d25962ea44347/pyyaml-6.0.3-cp311-cp311-macosx_10_13_x86_64.whl", hash = "sha256:44edc647873928551a01e7a563d7452ccdebee747728c1080d881d68af7b997e", size = 185826, upload-time = "2025-09-25T21:31:58.655Z" }, + { url = "https://files.pythonhosted.org/packages/16/19/13de8e4377ed53079ee996e1ab0a9c33ec2faf808a4647b7b4c0d46dd239/pyyaml-6.0.3-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:652cb6edd41e718550aad172851962662ff2681490a8a711af6a4d288dd96824", size = 175577, upload-time = "2025-09-25T21:32:00.088Z" }, + { url = "https://files.pythonhosted.org/packages/0c/62/d2eb46264d4b157dae1275b573017abec435397aa59cbcdab6fc978a8af4/pyyaml-6.0.3-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:10892704fc220243f5305762e276552a0395f7beb4dbf9b14ec8fd43b57f126c", size = 775556, upload-time = "2025-09-25T21:32:01.31Z" }, + { url = "https://files.pythonhosted.org/packages/10/cb/16c3f2cf3266edd25aaa00d6c4350381c8b012ed6f5276675b9eba8d9ff4/pyyaml-6.0.3-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:850774a7879607d3a6f50d36d04f00ee69e7fc816450e5f7e58d7f17f1ae5c00", size = 882114, upload-time = "2025-09-25T21:32:03.376Z" }, + { url = "https://files.pythonhosted.org/packages/71/60/917329f640924b18ff085ab889a11c763e0b573da888e8404ff486657602/pyyaml-6.0.3-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:b8bb0864c5a28024fac8a632c443c87c5aa6f215c0b126c449ae1a150412f31d", size = 806638, upload-time = "2025-09-25T21:32:04.553Z" }, + { url = "https://files.pythonhosted.org/packages/dd/6f/529b0f316a9fd167281a6c3826b5583e6192dba792dd55e3203d3f8e655a/pyyaml-6.0.3-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:1d37d57ad971609cf3c53ba6a7e365e40660e3be0e5175fa9f2365a379d6095a", size = 767463, upload-time = "2025-09-25T21:32:06.152Z" }, + { url = "https://files.pythonhosted.org/packages/f2/6a/b627b4e0c1dd03718543519ffb2f1deea4a1e6d42fbab8021936a4d22589/pyyaml-6.0.3-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:37503bfbfc9d2c40b344d06b2199cf0e96e97957ab1c1b546fd4f87e53e5d3e4", size = 794986, upload-time = "2025-09-25T21:32:07.367Z" }, + { url = "https://files.pythonhosted.org/packages/45/91/47a6e1c42d9ee337c4839208f30d9f09caa9f720ec7582917b264defc875/pyyaml-6.0.3-cp311-cp311-win32.whl", hash = "sha256:8098f252adfa6c80ab48096053f512f2321f0b998f98150cea9bd23d83e1467b", size = 142543, upload-time = "2025-09-25T21:32:08.95Z" }, + { url = "https://files.pythonhosted.org/packages/da/e3/ea007450a105ae919a72393cb06f122f288ef60bba2dc64b26e2646fa315/pyyaml-6.0.3-cp311-cp311-win_amd64.whl", hash = "sha256:9f3bfb4965eb874431221a3ff3fdcddc7e74e3b07799e0e84ca4a0f867d449bf", size = 158763, upload-time = "2025-09-25T21:32:09.96Z" }, + { url = "https://files.pythonhosted.org/packages/d1/33/422b98d2195232ca1826284a76852ad5a86fe23e31b009c9886b2d0fb8b2/pyyaml-6.0.3-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:7f047e29dcae44602496db43be01ad42fc6f1cc0d8cd6c83d342306c32270196", size = 182063, upload-time = "2025-09-25T21:32:11.445Z" }, + { url = "https://files.pythonhosted.org/packages/89/a0/6cf41a19a1f2f3feab0e9c0b74134aa2ce6849093d5517a0c550fe37a648/pyyaml-6.0.3-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:fc09d0aa354569bc501d4e787133afc08552722d3ab34836a80547331bb5d4a0", size = 173973, upload-time = "2025-09-25T21:32:12.492Z" }, + { url = "https://files.pythonhosted.org/packages/ed/23/7a778b6bd0b9a8039df8b1b1d80e2e2ad78aa04171592c8a5c43a56a6af4/pyyaml-6.0.3-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:9149cad251584d5fb4981be1ecde53a1ca46c891a79788c0df828d2f166bda28", size = 775116, upload-time = "2025-09-25T21:32:13.652Z" }, + { url = "https://files.pythonhosted.org/packages/65/30/d7353c338e12baef4ecc1b09e877c1970bd3382789c159b4f89d6a70dc09/pyyaml-6.0.3-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:5fdec68f91a0c6739b380c83b951e2c72ac0197ace422360e6d5a959d8d97b2c", size = 844011, upload-time = "2025-09-25T21:32:15.21Z" }, + { url = "https://files.pythonhosted.org/packages/8b/9d/b3589d3877982d4f2329302ef98a8026e7f4443c765c46cfecc8858c6b4b/pyyaml-6.0.3-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:ba1cc08a7ccde2d2ec775841541641e4548226580ab850948cbfda66a1befcdc", size = 807870, upload-time = "2025-09-25T21:32:16.431Z" }, + { url = "https://files.pythonhosted.org/packages/05/c0/b3be26a015601b822b97d9149ff8cb5ead58c66f981e04fedf4e762f4bd4/pyyaml-6.0.3-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:8dc52c23056b9ddd46818a57b78404882310fb473d63f17b07d5c40421e47f8e", size = 761089, upload-time = "2025-09-25T21:32:17.56Z" }, + { url = "https://files.pythonhosted.org/packages/be/8e/98435a21d1d4b46590d5459a22d88128103f8da4c2d4cb8f14f2a96504e1/pyyaml-6.0.3-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:41715c910c881bc081f1e8872880d3c650acf13dfa8214bad49ed4cede7c34ea", size = 790181, upload-time = "2025-09-25T21:32:18.834Z" }, + { url = "https://files.pythonhosted.org/packages/74/93/7baea19427dcfbe1e5a372d81473250b379f04b1bd3c4c5ff825e2327202/pyyaml-6.0.3-cp312-cp312-win32.whl", hash = "sha256:96b533f0e99f6579b3d4d4995707cf36df9100d67e0c8303a0c55b27b5f99bc5", size = 137658, upload-time = "2025-09-25T21:32:20.209Z" }, + { url = "https://files.pythonhosted.org/packages/86/bf/899e81e4cce32febab4fb42bb97dcdf66bc135272882d1987881a4b519e9/pyyaml-6.0.3-cp312-cp312-win_amd64.whl", hash = "sha256:5fcd34e47f6e0b794d17de1b4ff496c00986e1c83f7ab2fb8fcfe9616ff7477b", size = 154003, upload-time = "2025-09-25T21:32:21.167Z" }, + { url = "https://files.pythonhosted.org/packages/1a/08/67bd04656199bbb51dbed1439b7f27601dfb576fb864099c7ef0c3e55531/pyyaml-6.0.3-cp312-cp312-win_arm64.whl", hash = "sha256:64386e5e707d03a7e172c0701abfb7e10f0fb753ee1d773128192742712a98fd", size = 140344, upload-time = "2025-09-25T21:32:22.617Z" }, + { url = "https://files.pythonhosted.org/packages/d1/11/0fd08f8192109f7169db964b5707a2f1e8b745d4e239b784a5a1dd80d1db/pyyaml-6.0.3-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:8da9669d359f02c0b91ccc01cac4a67f16afec0dac22c2ad09f46bee0697eba8", size = 181669, upload-time = "2025-09-25T21:32:23.673Z" }, + { url = "https://files.pythonhosted.org/packages/b1/16/95309993f1d3748cd644e02e38b75d50cbc0d9561d21f390a76242ce073f/pyyaml-6.0.3-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:2283a07e2c21a2aa78d9c4442724ec1eb15f5e42a723b99cb3d822d48f5f7ad1", size = 173252, upload-time = "2025-09-25T21:32:25.149Z" }, + { url = "https://files.pythonhosted.org/packages/50/31/b20f376d3f810b9b2371e72ef5adb33879b25edb7a6d072cb7ca0c486398/pyyaml-6.0.3-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:ee2922902c45ae8ccada2c5b501ab86c36525b883eff4255313a253a3160861c", size = 767081, upload-time = "2025-09-25T21:32:26.575Z" }, + { url = "https://files.pythonhosted.org/packages/49/1e/a55ca81e949270d5d4432fbbd19dfea5321eda7c41a849d443dc92fd1ff7/pyyaml-6.0.3-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:a33284e20b78bd4a18c8c2282d549d10bc8408a2a7ff57653c0cf0b9be0afce5", size = 841159, upload-time = "2025-09-25T21:32:27.727Z" }, + { url = "https://files.pythonhosted.org/packages/74/27/e5b8f34d02d9995b80abcef563ea1f8b56d20134d8f4e5e81733b1feceb2/pyyaml-6.0.3-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:0f29edc409a6392443abf94b9cf89ce99889a1dd5376d94316ae5145dfedd5d6", size = 801626, upload-time = "2025-09-25T21:32:28.878Z" }, + { url = "https://files.pythonhosted.org/packages/f9/11/ba845c23988798f40e52ba45f34849aa8a1f2d4af4b798588010792ebad6/pyyaml-6.0.3-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:f7057c9a337546edc7973c0d3ba84ddcdf0daa14533c2065749c9075001090e6", size = 753613, upload-time = "2025-09-25T21:32:30.178Z" }, + { url = "https://files.pythonhosted.org/packages/3d/e0/7966e1a7bfc0a45bf0a7fb6b98ea03fc9b8d84fa7f2229e9659680b69ee3/pyyaml-6.0.3-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:eda16858a3cab07b80edaf74336ece1f986ba330fdb8ee0d6c0d68fe82bc96be", size = 794115, upload-time = "2025-09-25T21:32:31.353Z" }, + { url = "https://files.pythonhosted.org/packages/de/94/980b50a6531b3019e45ddeada0626d45fa85cbe22300844a7983285bed3b/pyyaml-6.0.3-cp313-cp313-win32.whl", hash = "sha256:d0eae10f8159e8fdad514efdc92d74fd8d682c933a6dd088030f3834bc8e6b26", size = 137427, upload-time = "2025-09-25T21:32:32.58Z" }, + { url = "https://files.pythonhosted.org/packages/97/c9/39d5b874e8b28845e4ec2202b5da735d0199dbe5b8fb85f91398814a9a46/pyyaml-6.0.3-cp313-cp313-win_amd64.whl", hash = "sha256:79005a0d97d5ddabfeeea4cf676af11e647e41d81c9a7722a193022accdb6b7c", size = 154090, upload-time = "2025-09-25T21:32:33.659Z" }, + { url = "https://files.pythonhosted.org/packages/73/e8/2bdf3ca2090f68bb3d75b44da7bbc71843b19c9f2b9cb9b0f4ab7a5a4329/pyyaml-6.0.3-cp313-cp313-win_arm64.whl", hash = "sha256:5498cd1645aa724a7c71c8f378eb29ebe23da2fc0d7a08071d89469bf1d2defb", size = 140246, upload-time = "2025-09-25T21:32:34.663Z" }, + { url = "https://files.pythonhosted.org/packages/9d/8c/f4bd7f6465179953d3ac9bc44ac1a8a3e6122cf8ada906b4f96c60172d43/pyyaml-6.0.3-cp314-cp314-macosx_10_13_x86_64.whl", hash = "sha256:8d1fab6bb153a416f9aeb4b8763bc0f22a5586065f86f7664fc23339fc1c1fac", size = 181814, upload-time = "2025-09-25T21:32:35.712Z" }, + { url = "https://files.pythonhosted.org/packages/bd/9c/4d95bb87eb2063d20db7b60faa3840c1b18025517ae857371c4dd55a6b3a/pyyaml-6.0.3-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:34d5fcd24b8445fadc33f9cf348c1047101756fd760b4dacb5c3e99755703310", size = 173809, upload-time = "2025-09-25T21:32:36.789Z" }, + { url = "https://files.pythonhosted.org/packages/92/b5/47e807c2623074914e29dabd16cbbdd4bf5e9b2db9f8090fa64411fc5382/pyyaml-6.0.3-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:501a031947e3a9025ed4405a168e6ef5ae3126c59f90ce0cd6f2bfc477be31b7", size = 766454, upload-time = "2025-09-25T21:32:37.966Z" }, + { url = "https://files.pythonhosted.org/packages/02/9e/e5e9b168be58564121efb3de6859c452fccde0ab093d8438905899a3a483/pyyaml-6.0.3-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:b3bc83488de33889877a0f2543ade9f70c67d66d9ebb4ac959502e12de895788", size = 836355, upload-time = "2025-09-25T21:32:39.178Z" }, + { url = "https://files.pythonhosted.org/packages/88/f9/16491d7ed2a919954993e48aa941b200f38040928474c9e85ea9e64222c3/pyyaml-6.0.3-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:c458b6d084f9b935061bc36216e8a69a7e293a2f1e68bf956dcd9e6cbcd143f5", size = 794175, upload-time = "2025-09-25T21:32:40.865Z" }, + { url = "https://files.pythonhosted.org/packages/dd/3f/5989debef34dc6397317802b527dbbafb2b4760878a53d4166579111411e/pyyaml-6.0.3-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:7c6610def4f163542a622a73fb39f534f8c101d690126992300bf3207eab9764", size = 755228, upload-time = "2025-09-25T21:32:42.084Z" }, + { url = "https://files.pythonhosted.org/packages/d7/ce/af88a49043cd2e265be63d083fc75b27b6ed062f5f9fd6cdc223ad62f03e/pyyaml-6.0.3-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:5190d403f121660ce8d1d2c1bb2ef1bd05b5f68533fc5c2ea899bd15f4399b35", size = 789194, upload-time = "2025-09-25T21:32:43.362Z" }, + { url = "https://files.pythonhosted.org/packages/23/20/bb6982b26a40bb43951265ba29d4c246ef0ff59c9fdcdf0ed04e0687de4d/pyyaml-6.0.3-cp314-cp314-win_amd64.whl", hash = "sha256:4a2e8cebe2ff6ab7d1050ecd59c25d4c8bd7e6f400f5f82b96557ac0abafd0ac", size = 156429, upload-time = "2025-09-25T21:32:57.844Z" }, + { url = "https://files.pythonhosted.org/packages/f4/f4/a4541072bb9422c8a883ab55255f918fa378ecf083f5b85e87fc2b4eda1b/pyyaml-6.0.3-cp314-cp314-win_arm64.whl", hash = "sha256:93dda82c9c22deb0a405ea4dc5f2d0cda384168e466364dec6255b293923b2f3", size = 143912, upload-time = "2025-09-25T21:32:59.247Z" }, + { url = "https://files.pythonhosted.org/packages/7c/f9/07dd09ae774e4616edf6cda684ee78f97777bdd15847253637a6f052a62f/pyyaml-6.0.3-cp314-cp314t-macosx_10_13_x86_64.whl", hash = "sha256:02893d100e99e03eda1c8fd5c441d8c60103fd175728e23e431db1b589cf5ab3", size = 189108, upload-time = "2025-09-25T21:32:44.377Z" }, + { url = "https://files.pythonhosted.org/packages/4e/78/8d08c9fb7ce09ad8c38ad533c1191cf27f7ae1effe5bb9400a46d9437fcf/pyyaml-6.0.3-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:c1ff362665ae507275af2853520967820d9124984e0f7466736aea23d8611fba", size = 183641, upload-time = "2025-09-25T21:32:45.407Z" }, + { url = "https://files.pythonhosted.org/packages/7b/5b/3babb19104a46945cf816d047db2788bcaf8c94527a805610b0289a01c6b/pyyaml-6.0.3-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:6adc77889b628398debc7b65c073bcb99c4a0237b248cacaf3fe8a557563ef6c", size = 831901, upload-time = "2025-09-25T21:32:48.83Z" }, + { url = "https://files.pythonhosted.org/packages/8b/cc/dff0684d8dc44da4d22a13f35f073d558c268780ce3c6ba1b87055bb0b87/pyyaml-6.0.3-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:a80cb027f6b349846a3bf6d73b5e95e782175e52f22108cfa17876aaeff93702", size = 861132, upload-time = "2025-09-25T21:32:50.149Z" }, + { url = "https://files.pythonhosted.org/packages/b1/5e/f77dc6b9036943e285ba76b49e118d9ea929885becb0a29ba8a7c75e29fe/pyyaml-6.0.3-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:00c4bdeba853cc34e7dd471f16b4114f4162dc03e6b7afcc2128711f0eca823c", size = 839261, upload-time = "2025-09-25T21:32:51.808Z" }, + { url = "https://files.pythonhosted.org/packages/ce/88/a9db1376aa2a228197c58b37302f284b5617f56a5d959fd1763fb1675ce6/pyyaml-6.0.3-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:66e1674c3ef6f541c35191caae2d429b967b99e02040f5ba928632d9a7f0f065", size = 805272, upload-time = "2025-09-25T21:32:52.941Z" }, + { url = "https://files.pythonhosted.org/packages/da/92/1446574745d74df0c92e6aa4a7b0b3130706a4142b2d1a5869f2eaa423c6/pyyaml-6.0.3-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:16249ee61e95f858e83976573de0f5b2893b3677ba71c9dd36b9cf8be9ac6d65", size = 829923, upload-time = "2025-09-25T21:32:54.537Z" }, + { url = "https://files.pythonhosted.org/packages/f0/7a/1c7270340330e575b92f397352af856a8c06f230aa3e76f86b39d01b416a/pyyaml-6.0.3-cp314-cp314t-win_amd64.whl", hash = "sha256:4ad1906908f2f5ae4e5a8ddfce73c320c2a1429ec52eafd27138b7f1cbe341c9", size = 174062, upload-time = "2025-09-25T21:32:55.767Z" }, + { 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 = "sortedcontainers" +version = "2.4.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/e8/c4/ba2f8066cceb6f23394729afe52f3bf7adec04bf9ed2c820b39e19299111/sortedcontainers-2.4.0.tar.gz", hash = "sha256:25caa5a06cc30b6b83d11423433f65d1f9d76c4c6a0c90e3379eaa43b9bfdb88", size = 30594, upload-time = "2021-05-16T22:03:42.897Z" } +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 = "tomli" +version = "2.4.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/82/30/31573e9457673ab10aa432461bee537ce6cef177667deca369efb79df071/tomli-2.4.0.tar.gz", hash = "sha256:aa89c3f6c277dd275d8e243ad24f3b5e701491a860d5121f2cdd399fbb31fc9c", size = 17477, upload-time = "2026-01-11T11:22:38.165Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/3c/d9/3dc2289e1f3b32eb19b9785b6a006b28ee99acb37d1d47f78d4c10e28bf8/tomli-2.4.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:b5ef256a3fd497d4973c11bf142e9ed78b150d36f5773f1ca6088c230ffc5867", size = 153663, upload-time = "2026-01-11T11:21:45.27Z" }, + { url = "https://files.pythonhosted.org/packages/51/32/ef9f6845e6b9ca392cd3f64f9ec185cc6f09f0a2df3db08cbe8809d1d435/tomli-2.4.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:5572e41282d5268eb09a697c89a7bee84fae66511f87533a6f88bd2f7b652da9", size = 148469, upload-time = "2026-01-11T11:21:46.873Z" }, + { url = "https://files.pythonhosted.org/packages/d6/c2/506e44cce89a8b1b1e047d64bd495c22c9f71f21e05f380f1a950dd9c217/tomli-2.4.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:551e321c6ba03b55676970b47cb1b73f14a0a4dce6a3e1a9458fd6d921d72e95", size = 236039, upload-time = "2026-01-11T11:21:48.503Z" }, + { url = "https://files.pythonhosted.org/packages/b3/40/e1b65986dbc861b7e986e8ec394598187fa8aee85b1650b01dd925ca0be8/tomli-2.4.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:5e3f639a7a8f10069d0e15408c0b96a2a828cfdec6fca05296ebcdcc28ca7c76", size = 243007, upload-time = "2026-01-11T11:21:49.456Z" }, + { url = "https://files.pythonhosted.org/packages/9c/6f/6e39ce66b58a5b7ae572a0f4352ff40c71e8573633deda43f6a379d56b3e/tomli-2.4.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:1b168f2731796b045128c45982d3a4874057626da0e2ef1fdd722848b741361d", size = 240875, upload-time = "2026-01-11T11:21:50.755Z" }, + { url = "https://files.pythonhosted.org/packages/aa/ad/cb089cb190487caa80204d503c7fd0f4d443f90b95cf4ef5cf5aa0f439b0/tomli-2.4.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:133e93646ec4300d651839d382d63edff11d8978be23da4cc106f5a18b7d0576", size = 246271, upload-time = "2026-01-11T11:21:51.81Z" }, + { url = "https://files.pythonhosted.org/packages/0b/63/69125220e47fd7a3a27fd0de0c6398c89432fec41bc739823bcc66506af6/tomli-2.4.0-cp311-cp311-win32.whl", hash = "sha256:b6c78bdf37764092d369722d9946cb65b8767bfa4110f902a1b2542d8d173c8a", size = 96770, upload-time = "2026-01-11T11:21:52.647Z" }, + { url = "https://files.pythonhosted.org/packages/1e/0d/a22bb6c83f83386b0008425a6cd1fa1c14b5f3dd4bad05e98cf3dbbf4a64/tomli-2.4.0-cp311-cp311-win_amd64.whl", hash = "sha256:d3d1654e11d724760cdb37a3d7691f0be9db5fbdaef59c9f532aabf87006dbaa", size = 107626, upload-time = "2026-01-11T11:21:53.459Z" }, + { url = "https://files.pythonhosted.org/packages/2f/6d/77be674a3485e75cacbf2ddba2b146911477bd887dda9d8c9dfb2f15e871/tomli-2.4.0-cp311-cp311-win_arm64.whl", hash = "sha256:cae9c19ed12d4e8f3ebf46d1a75090e4c0dc16271c5bce1c833ac168f08fb614", size = 94842, upload-time = "2026-01-11T11:21:54.831Z" }, + { url = "https://files.pythonhosted.org/packages/3c/43/7389a1869f2f26dba52404e1ef13b4784b6b37dac93bac53457e3ff24ca3/tomli-2.4.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:920b1de295e72887bafa3ad9f7a792f811847d57ea6b1215154030cf131f16b1", size = 154894, upload-time = "2026-01-11T11:21:56.07Z" }, + { url = "https://files.pythonhosted.org/packages/e9/05/2f9bf110b5294132b2edf13fe6ca6ae456204f3d749f623307cbb7a946f2/tomli-2.4.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:7d6d9a4aee98fac3eab4952ad1d73aee87359452d1c086b5ceb43ed02ddb16b8", size = 149053, upload-time = "2026-01-11T11:21:57.467Z" }, + { url = "https://files.pythonhosted.org/packages/e8/41/1eda3ca1abc6f6154a8db4d714a4d35c4ad90adc0bcf700657291593fbf3/tomli-2.4.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:36b9d05b51e65b254ea6c2585b59d2c4cb91c8a3d91d0ed0f17591a29aaea54a", size = 243481, upload-time = "2026-01-11T11:21:58.661Z" }, + { url = "https://files.pythonhosted.org/packages/d2/6d/02ff5ab6c8868b41e7d4b987ce2b5f6a51d3335a70aa144edd999e055a01/tomli-2.4.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:1c8a885b370751837c029ef9bc014f27d80840e48bac415f3412e6593bbc18c1", size = 251720, upload-time = "2026-01-11T11:22:00.178Z" }, + { url = "https://files.pythonhosted.org/packages/7b/57/0405c59a909c45d5b6f146107c6d997825aa87568b042042f7a9c0afed34/tomli-2.4.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:8768715ffc41f0008abe25d808c20c3d990f42b6e2e58305d5da280ae7d1fa3b", size = 247014, upload-time = "2026-01-11T11:22:01.238Z" }, + { url = "https://files.pythonhosted.org/packages/2c/0e/2e37568edd944b4165735687cbaf2fe3648129e440c26d02223672ee0630/tomli-2.4.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:7b438885858efd5be02a9a133caf5812b8776ee0c969fea02c45e8e3f296ba51", size = 251820, upload-time = "2026-01-11T11:22:02.727Z" }, + { url = "https://files.pythonhosted.org/packages/5a/1c/ee3b707fdac82aeeb92d1a113f803cf6d0f37bdca0849cb489553e1f417a/tomli-2.4.0-cp312-cp312-win32.whl", hash = "sha256:0408e3de5ec77cc7f81960c362543cbbd91ef883e3138e81b729fc3eea5b9729", size = 97712, upload-time = "2026-01-11T11:22:03.777Z" }, + { url = "https://files.pythonhosted.org/packages/69/13/c07a9177d0b3bab7913299b9278845fc6eaaca14a02667c6be0b0a2270c8/tomli-2.4.0-cp312-cp312-win_amd64.whl", hash = "sha256:685306e2cc7da35be4ee914fd34ab801a6acacb061b6a7abca922aaf9ad368da", size = 108296, upload-time = "2026-01-11T11:22:04.86Z" }, + { url = "https://files.pythonhosted.org/packages/18/27/e267a60bbeeee343bcc279bb9e8fbed0cbe224bc7b2a3dc2975f22809a09/tomli-2.4.0-cp312-cp312-win_arm64.whl", hash = "sha256:5aa48d7c2356055feef06a43611fc401a07337d5b006be13a30f6c58f869e3c3", size = 94553, upload-time = "2026-01-11T11:22:05.854Z" }, + { url = "https://files.pythonhosted.org/packages/34/91/7f65f9809f2936e1f4ce6268ae1903074563603b2a2bd969ebbda802744f/tomli-2.4.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:84d081fbc252d1b6a982e1870660e7330fb8f90f676f6e78b052ad4e64714bf0", size = 154915, upload-time = "2026-01-11T11:22:06.703Z" }, + { url = "https://files.pythonhosted.org/packages/20/aa/64dd73a5a849c2e8f216b755599c511badde80e91e9bc2271baa7b2cdbb1/tomli-2.4.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:9a08144fa4cba33db5255f9b74f0b89888622109bd2776148f2597447f92a94e", size = 149038, upload-time = "2026-01-11T11:22:07.56Z" }, + { url = "https://files.pythonhosted.org/packages/9e/8a/6d38870bd3d52c8d1505ce054469a73f73a0fe62c0eaf5dddf61447e32fa/tomli-2.4.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:c73add4bb52a206fd0c0723432db123c0c75c280cbd67174dd9d2db228ebb1b4", size = 242245, upload-time = "2026-01-11T11:22:08.344Z" }, + { url = "https://files.pythonhosted.org/packages/59/bb/8002fadefb64ab2669e5b977df3f5e444febea60e717e755b38bb7c41029/tomli-2.4.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:1fb2945cbe303b1419e2706e711b7113da57b7db31ee378d08712d678a34e51e", size = 250335, upload-time = "2026-01-11T11:22:09.951Z" }, + { url = "https://files.pythonhosted.org/packages/a5/3d/4cdb6f791682b2ea916af2de96121b3cb1284d7c203d97d92d6003e91c8d/tomli-2.4.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:bbb1b10aa643d973366dc2cb1ad94f99c1726a02343d43cbc011edbfac579e7c", size = 245962, upload-time = "2026-01-11T11:22:11.27Z" }, + { url = "https://files.pythonhosted.org/packages/f2/4a/5f25789f9a460bd858ba9756ff52d0830d825b458e13f754952dd15fb7bb/tomli-2.4.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:4cbcb367d44a1f0c2be408758b43e1ffb5308abe0ea222897d6bfc8e8281ef2f", size = 250396, upload-time = "2026-01-11T11:22:12.325Z" }, + { url = "https://files.pythonhosted.org/packages/aa/2f/b73a36fea58dfa08e8b3a268750e6853a6aac2a349241a905ebd86f3047a/tomli-2.4.0-cp313-cp313-win32.whl", hash = "sha256:7d49c66a7d5e56ac959cb6fc583aff0651094ec071ba9ad43df785abc2320d86", size = 97530, upload-time = "2026-01-11T11:22:13.865Z" }, + { url = "https://files.pythonhosted.org/packages/3b/af/ca18c134b5d75de7e8dc551c5234eaba2e8e951f6b30139599b53de9c187/tomli-2.4.0-cp313-cp313-win_amd64.whl", hash = "sha256:3cf226acb51d8f1c394c1b310e0e0e61fecdd7adcb78d01e294ac297dd2e7f87", size = 108227, upload-time = "2026-01-11T11:22:15.224Z" }, + { url = "https://files.pythonhosted.org/packages/22/c3/b386b832f209fee8073c8138ec50f27b4460db2fdae9ffe022df89a57f9b/tomli-2.4.0-cp313-cp313-win_arm64.whl", hash = "sha256:d20b797a5c1ad80c516e41bc1fb0443ddb5006e9aaa7bda2d71978346aeb9132", size = 94748, upload-time = "2026-01-11T11:22:16.009Z" }, + { url = "https://files.pythonhosted.org/packages/f3/c4/84047a97eb1004418bc10bdbcfebda209fca6338002eba2dc27cc6d13563/tomli-2.4.0-cp314-cp314-macosx_10_15_x86_64.whl", hash = "sha256:26ab906a1eb794cd4e103691daa23d95c6919cc2fa9160000ac02370cc9dd3f6", size = 154725, upload-time = "2026-01-11T11:22:17.269Z" }, + { url = "https://files.pythonhosted.org/packages/a8/5d/d39038e646060b9d76274078cddf146ced86dc2b9e8bbf737ad5983609a0/tomli-2.4.0-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:20cedb4ee43278bc4f2fee6cb50daec836959aadaf948db5172e776dd3d993fc", size = 148901, upload-time = "2026-01-11T11:22:18.287Z" }, + { url = "https://files.pythonhosted.org/packages/73/e5/383be1724cb30f4ce44983d249645684a48c435e1cd4f8b5cded8a816d3c/tomli-2.4.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:39b0b5d1b6dd03684b3fb276407ebed7090bbec989fa55838c98560c01113b66", size = 243375, upload-time = "2026-01-11T11:22:19.154Z" }, + { url = "https://files.pythonhosted.org/packages/31/f0/bea80c17971c8d16d3cc109dc3585b0f2ce1036b5f4a8a183789023574f2/tomli-2.4.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:a26d7ff68dfdb9f87a016ecfd1e1c2bacbe3108f4e0f8bcd2228ef9a766c787d", size = 250639, upload-time = "2026-01-11T11:22:20.168Z" }, + { url = "https://files.pythonhosted.org/packages/2c/8f/2853c36abbb7608e3f945d8a74e32ed3a74ee3a1f468f1ffc7d1cb3abba6/tomli-2.4.0-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:20ffd184fb1df76a66e34bd1b36b4a4641bd2b82954befa32fe8163e79f1a702", size = 246897, upload-time = "2026-01-11T11:22:21.544Z" }, + { url = "https://files.pythonhosted.org/packages/49/f0/6c05e3196ed5337b9fe7ea003e95fd3819a840b7a0f2bf5a408ef1dad8ed/tomli-2.4.0-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:75c2f8bbddf170e8effc98f5e9084a8751f8174ea6ccf4fca5398436e0320bc8", size = 254697, upload-time = "2026-01-11T11:22:23.058Z" }, + { url = "https://files.pythonhosted.org/packages/f3/f5/2922ef29c9f2951883525def7429967fc4d8208494e5ab524234f06b688b/tomli-2.4.0-cp314-cp314-win32.whl", hash = "sha256:31d556d079d72db7c584c0627ff3a24c5d3fb4f730221d3444f3efb1b2514776", size = 98567, upload-time = "2026-01-11T11:22:24.033Z" }, + { url = "https://files.pythonhosted.org/packages/7b/31/22b52e2e06dd2a5fdbc3ee73226d763b184ff21fc24e20316a44ccc4d96b/tomli-2.4.0-cp314-cp314-win_amd64.whl", hash = "sha256:43e685b9b2341681907759cf3a04e14d7104b3580f808cfde1dfdb60ada85475", size = 108556, upload-time = "2026-01-11T11:22:25.378Z" }, + { url = "https://files.pythonhosted.org/packages/48/3d/5058dff3255a3d01b705413f64f4306a141a8fd7a251e5a495e3f192a998/tomli-2.4.0-cp314-cp314-win_arm64.whl", hash = "sha256:3d895d56bd3f82ddd6faaff993c275efc2ff38e52322ea264122d72729dca2b2", size = 96014, upload-time = "2026-01-11T11:22:26.138Z" }, + { url = "https://files.pythonhosted.org/packages/b8/4e/75dab8586e268424202d3a1997ef6014919c941b50642a1682df43204c22/tomli-2.4.0-cp314-cp314t-macosx_10_15_x86_64.whl", hash = "sha256:5b5807f3999fb66776dbce568cc9a828544244a8eb84b84b9bafc080c99597b9", size = 163339, upload-time = "2026-01-11T11:22:27.143Z" }, + { url = "https://files.pythonhosted.org/packages/06/e3/b904d9ab1016829a776d97f163f183a48be6a4deb87304d1e0116a349519/tomli-2.4.0-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:c084ad935abe686bd9c898e62a02a19abfc9760b5a79bc29644463eaf2840cb0", size = 159490, upload-time = "2026-01-11T11:22:28.399Z" }, + { url = "https://files.pythonhosted.org/packages/e3/5a/fc3622c8b1ad823e8ea98a35e3c632ee316d48f66f80f9708ceb4f2a0322/tomli-2.4.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:0f2e3955efea4d1cfbcb87bc321e00dc08d2bcb737fd1d5e398af111d86db5df", size = 269398, upload-time = "2026-01-11T11:22:29.345Z" }, + { url = "https://files.pythonhosted.org/packages/fd/33/62bd6152c8bdd4c305ad9faca48f51d3acb2df1f8791b1477d46ff86e7f8/tomli-2.4.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:0e0fe8a0b8312acf3a88077a0802565cb09ee34107813bba1c7cd591fa6cfc8d", size = 276515, upload-time = "2026-01-11T11:22:30.327Z" }, + { url = "https://files.pythonhosted.org/packages/4b/ff/ae53619499f5235ee4211e62a8d7982ba9e439a0fb4f2f351a93d67c1dd2/tomli-2.4.0-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:413540dce94673591859c4c6f794dfeaa845e98bf35d72ed59636f869ef9f86f", size = 273806, upload-time = "2026-01-11T11:22:32.56Z" }, + { url = "https://files.pythonhosted.org/packages/47/71/cbca7787fa68d4d0a9f7072821980b39fbb1b6faeb5f5cf02f4a5559fa28/tomli-2.4.0-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:0dc56fef0e2c1c470aeac5b6ca8cc7b640bb93e92d9803ddaf9ea03e198f5b0b", size = 281340, upload-time = "2026-01-11T11:22:33.505Z" }, + { url = "https://files.pythonhosted.org/packages/f5/00/d595c120963ad42474cf6ee7771ad0d0e8a49d0f01e29576ee9195d9ecdf/tomli-2.4.0-cp314-cp314t-win32.whl", hash = "sha256:d878f2a6707cc9d53a1be1414bbb419e629c3d6e67f69230217bb663e76b5087", size = 108106, upload-time = "2026-01-11T11:22:34.451Z" }, + { url = "https://files.pythonhosted.org/packages/de/69/9aa0c6a505c2f80e519b43764f8b4ba93b5a0bbd2d9a9de6e2b24271b9a5/tomli-2.4.0-cp314-cp314t-win_amd64.whl", hash = "sha256:2add28aacc7425117ff6364fe9e06a183bb0251b03f986df0e78e974047571fd", size = 120504, upload-time = "2026-01-11T11:22:35.764Z" }, + { url = "https://files.pythonhosted.org/packages/b3/9f/f1668c281c58cfae01482f7114a4b88d345e4c140386241a1a24dcc9e7bc/tomli-2.4.0-cp314-cp314t-win_arm64.whl", hash = "sha256:2b1e3b80e1d5e52e40e9b924ec43d81570f0e7d09d11081b797bc4692765a3d4", size = 99561, upload-time = "2026-01-11T11:22:36.624Z" }, + { url = "https://files.pythonhosted.org/packages/23/d1/136eb2cb77520a31e1f64cbae9d33ec6df0d78bdf4160398e86eec8a8754/tomli-2.4.0-py3-none-any.whl", hash = "sha256:1f776e7d669ebceb01dee46484485f43a4048746235e683bcdffacdf1fb4785a", size = 14477, upload-time = "2026-01-11T11:22:37.446Z" }, +] + +[[package]] +name = "typing-extensions" +version = "4.15.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/72/94/1a15dd82efb362ac84269196e94cf00f187f7ed21c242792a923cdb1c61f/typing_extensions-4.15.0.tar.gz", hash = "sha256:0cea48d173cc12fa28ecabc3b837ea3cf6f38c6d1136f85cbaaf598984861466", size = 109391, upload-time = "2025-08-25T13:49:26.313Z" } +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 = "video-library-manager" +version = "0.1.0" +source = { editable = "." } +dependencies = [ + { name = "click" }, + { name = "pyyaml" }, +] + +[package.optional-dependencies] +dev = [ + { name = "hypothesis" }, + { name = "pytest" }, +] + +[package.metadata] +requires-dist = [ + { name = "click", specifier = ">=8.1.0" }, + { name = "hypothesis", marker = "extra == 'dev'", specifier = ">=6.82.0" }, + { name = "pytest", marker = "extra == 'dev'", specifier = ">=7.4.0" }, + { name = "pyyaml", specifier = ">=6.0" }, +] +provides-extras = ["dev"]